Restioson
Restioson
"decoers" should read "decoders", I assume
Hi, I've tried to implement the ability to use a custom score function (`Fn(u8) -> f32`) for fuzzy queries, which take the DFA distance as the input and return the...
This PR will add non-deadlocking push/pop operations to queues -- they will never deadlock even if a concurrent push/pop stalls for whatever reason indefinitely.
Currently, the following table of benchmark results is feature in the [documentation](https://docs.rs/xactor/0.7.5/xactor/index.html#performance): | | Wait for response | Send only | |-- | -- | -- | Actix | 1548...
When `split_receiver` is used and the receiver is discarded, the `xtra_actor_request` span will still include the message handling time, which will lead to the containing span being longer than it...
I've refactored #68 to add a new method which allows you to specify IO permissions bitmap size, rather than incorporating it into the existing method. The existing method is now...
Similarly (but not the same afaict) to #130, Rodio panics on this trivial example: ```rust if let Some(device) = rodio::default_output_device() { if let Ok(file) = File::open("res/notification_sound_clearly.ogg") { if let Ok(src)...
It appears that the future returned from Pool::connection in the futures-03 branch borrows &self, whereas in the master branch it does not. This means that in order to spawn the...
This PR will add a basic userspace to flower -- just enough to jump into userspace (in code located inside the kernel) and do some things there. It will not...