John Freeman
John Freeman
Is it possible to add [this interface](https://docs.oracle.com/javase/7/docs/api/java/util/NavigableSet.html) to existing fastutil ([AVL](http://fastutil.di.unimi.it/docs/it/unimi/dsi/fastutil/objects/ObjectAVLTreeSet.html),[RB](http://fastutil.di.unimi.it/docs/it/unimi/dsi/fastutil/objects/ObjectRBTreeSet.html))TreeSet implementations? The `lower` and `ceiling` methods can be mimicked with calls to `headSet().last()` and `tailSet().first()` respectively, but they probably...
This changeset introduces a `conanfile.py` (and a Conan recipe for RocksDB) to enable building the package with Conan, choosing more recent default versions of our dependencies. It removes almost all...
This is an issue to continue two conversations started in PR #4022. ## Randomized order within fee level We [might want](https://github.com/ripple/rippled/pull/4022#discussion_r766446460) dequeue transactions from the same fee level in a...
## High Level Overview of Change This is a second version of a message scheduler (formerly called peer scheduler). There is a long Markdown document walking through the motivation, intuition,...
I have a project A that uses Conan for most dependencies, but depends on one package B (not found in conan-center) as a submodule and imports it in CMake with...
Very small suggestion here: I'm creating a replacement CLI that needs to provide some new, more regular options, but also try to provide as many legacy, equivalent options as possible....
I moved the changes to a branch, killing the old pull request. This way you can rebase onto master for a clean log if you want.
Once we nail down a model, I'd like to see implementations in Java and C++. The model I'm working toward is general, not platform or language specific.
There should be a function to generate a configuration from environment variables. Overriding configuration in the environment is handy for - scripts that cannot create a configuration file (or cannot...