kc3-lang/brotli/.gitignore

Branch :


Log

Author Commit Date CI Message
a7b7839f 2022-12-21 02:52:31 Add *.d to gitignore (#975)
8f093f5e 2020-05-15 14:05:03 .gitignore: Ignore .obj files (#805) EDK II windows build produces .obj files in source tree
1e7ea1d8 2018-06-04 17:53:16 Inverse bazel project/workspace tree (#677) * Inverse bazel workspace tree. Now each subproject directly depends on root (c) project. This helps to mitigate Bazel bug bazelbuild/bazel#2391; short summary: Bazel does not work if referenced subproject `WORKSPACE` uses any repositories that embedding project does not. Bright side: building C project is much faster; no need to download closure, go and JDK...
03739d2b 2017-05-29 17:55:14 Update (#555) Update: * new CLI; bro -> brotli; + man page * JNI wrappers preparation (for bazel build) * add raw binary dictionary representation `dictionary.bin` * add ability to side-load brotli RFC dictionary * decoder persists last error now * fix `BrotliDecoderDecompress` documentation * go reader don't block until necessary * more consistent bazel target names * Java dictionary data compiled footprint reduced * Java tests refactoring
89a5b6e6 2016-12-20 08:40:47 Python: Simplify test suite generation by using unittest discovery (#485)
52ff8171 2016-06-24 15:32:51 Update build systems
b32cefe1 2016-06-17 16:24:51 Fix VS build problems: * rename build -> buildfiles to avoid clashing with BUILD * set binary mode for stdin/out in bro * convert bro to C
f9ab24a7 2016-06-16 11:06:47 Fix gitignore
83aa24dc 2015-05-07 16:53:43 Speed and memory usage improvements for the decoder. * Change order of members of bit reader state structure. * Remove unused includes for assert. Add BROTLI_DCHECK macros and use it instead of assert. * Do not calculate nbits in common case of ReadSymbol. * Introduce and use PREDICT_TRUE / PREDICT_FALSE macros. * Allocate less memory in the brotli decoder if it knows the result size beforehand. Before this, the decoder would always allocate 16MB if the encoder annotated the window size as 22 bit (which is the default), even if the file is only a few KB uncompressed. Now, it'll only allocate a ringbuffer as large as needed for the result file. But only if it can know the filesize, it's not possible to know that if there are multiple metablocks or too large uncompressed metablock.
906f4f52 2015-04-22 16:49:00 [python] prepend build/lib folder to PYTHONPATH before running tests
9efdff7f 2014-11-22 16:55:58 Add .gitignore file