Eliza Weisman
Eliza Weisman
Since a guard has a reference to the slab and knows the index of the entry, it should be possible to add a method to mark the entry to be...
we should look into replacing the vector of pages with a growable `mmap`ed region. then, when we need more pages, rather than hitting malloc to make a big vec, we...
it's _probably_ a bad idea to try to run the `loom` tests in miri, since they are quite long & running code in miri is significantly slower than running actual...
Currently, looking up an item in the slab requires dereferencing three to four `Box`es: the box around the shard slice: https://github.com/hawkw/sharded-slab/blob/b16043361ef5cb74750b69f91f9dace15a40ee60/src/lib.rs#L202 the box around the page data slice (or _slices_,...
Issues like #9 could be avoided if we had a CI job that tried to cross-compile to a 32-bit platform.
## Motivation Tower has been used in production for over three years. Since the `Service` trait is intended to provide a common abstraction and compatibility interface across libraries, the definition...
In https://github.com/tower-rs/tower/pull/654#discussion_r824935110, @olix0r brought up the idea of using `thiserror` for `tower` middleware error types, instead of `BoxError`s everywhere: > I wonder if it's more or less onerous to take...
Currently, the `tower-reconnect` middleware tries to reconnect immediately if an error occurs _while_ connected, but propagates all errors if an error occurs while _connecting_. We should modify this middleware to:...
Issue Type: - [x] Bug report - [ ] Feature request **What happened**: Currently, HTTP/2 requests which send data frames longer than `(WINDOW_SIZE - RESPONSE_CLASSIFIER_BUFFER_SIZE)` can prevent Linkerd from discarding...
According to [the sbt documentation](http://www.scala-sbt.org/0.13/docs/Migrating-from-sbt-012x.html), > sbt 0.13’s introduction of multi-project `build.sbt` made the `Build` trait redundant. In addition, the auto plugin feature that’s now standard in sbt 0.13 enabled...