Eliza Weisman

Results 175 issues of 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...

enhancement

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...

wontfix
tests

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_,...

enhancement

Issues like #9 could be avoided if we had a CI job that tried to cross-compile to a 32-bit platform.

tests

## 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...

A-service
P-high
I-needs-decision

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...

A-tower
I-needs-decision
C-musing

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:...

E-help-wanted
A-reconnect
C-feature-request
E-medium
T-middleware

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...

bug
h2

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...