Devin Smith
Devin Smith
I have a very similar questions, but for a different use case. I'm trying to optimize a random-access reader client. As @laudiacay said: > you can uniquely and in constant...
Naive Q: could the API be made to work with N applications of the existing logic? ``` bao encode f -n 2 --outboard f.2.obao # "Equivalent" to: # bao encode...
Sure. Here's an example project that I setup. [Docker Gradle Application Example](https://github.com/devinrsmith/docker-gradle-application-example) I like to keep my "this is an application" logic separate from the image building / image publishing....
There might be a few other places as well. The gradle application plugin also applies the distribution plugin. One thing that the distribution plugin does is include the `src/$distribution.name/dist` ([documented...
Really hoping this feature gets added. Would probably be good to have a test that demonstrated the use of a new (test-only) SPI - `config/src/test/resources/META-INF/services/com.typesafe.config.spi.ConfigProvider`.
First of all - rkv looks like a great project. I like the level of documentation. I was going to open an issue that was almost exactly the same as...
I did a quick survey of some other rust LMDB libraries - [lmdb](https://docs.rs/lmdb/0.8.0/lmdb/struct.RwTransaction.html#method.put) - uses trait `AsRef` for values [lmdb-zero](https://docs.rs/lmdb-zero/0.4.4/lmdb_zero/traits/trait.AsLmdbBytes.html): ``` pub trait AsLmdbBytes { fn as_lmdb_bytes(&self) -> &[u8]; }...
Thanks for the quick response. A proper solution for **runtime** *parameterized kernels* would solve a lot of my issues, and is the reason I'm manually parameterizing at install time. That...
I'm currently working around this by pulling out the directory from the kernel spec manager, and using it directly in my kernel.json file: ``` kernel_spec_manager = KernelSpecManager() destination = kernel_spec_manager._get_destination_dir(kernel_name=kernel_name,...