Kuba Podgórski
Kuba Podgórski
Fixes https://github.com/kuba--/zip/issues/272
Pilosa uses `https://github.com/RoaringBitmap/roaring` to implement bitmap index, but in our case pilosa comes with huge overhead (we've already got rid of server part). Moreover, lot of syscalls in pilosa implementation...
We want to have local environment which is also scalable, but will not require any kubernetes installation. Of course we may have k8s configuration or docker-compose files what let people...
Based on [Q&A session](https://github.com/src-d/minutes/blob/master/languages/2019-09-24-qa-session.md), the current driver container management approach in Babelfish has some potential problems with compatibility across different OS. We agreed to switch to docker API as a...
Native parsers as processes should be also scalable (so far it's a single threaded, stdio process). This task is mainly about internal scalability mechanism. The implementation should be preceded by...
Investigate/research and design a new way to scale `bblfshd` without current internal implementation of container management with `libcontainer`. There are two layers of scalability: - scale drivers (we can hide...
This is hypothetical issue related to driver discovery by bblfshd. Because we want to get rid of container management part from bblfshd and make it just as a proxy we...
This is very generic task related to testing a new scalability mechanism (based on k8s, minikube, docker-compose, or any other provider). It may require to write a new tests or...
I wonder about following code in `tinfl_decompress` function: https://github.com/richgel999/miniz/blob/e71344bdd7e8e6c18fb67721db7a634ffa202f9e/miniz_tinfl.c#L363 Shall we fix it with: ```c rev_code >>= 1; tree_cur -= (rev_code & 1); ``` or it wasn't the intention, here?
This PR fixes multiline comments for python (and for languages where _begin_ and _end_ strings are the same). **It does not** fix #111 because python uses the same characters as...