paul fisher

Results 11 comments of paul fisher

After a few days of this change being in production for us, we’ve found that it’s reduced Casbin latency by about 60%!

Bump—I’ve signed the CLA. How do I get that check rerun? @the-knights-who-say-ni if i @ you will it do the thing

Removing reviewers who were added on account of a bad rebase. Sorry!

> Modifying the `MessageLoop` to use `setTimeout` when the window is hidden but to use `requestAnimationFrame`/`setImmediate` otherwise Isn’t this essentially equivalent to just using `setTimeout(..., 0)` all the time? Also:...

With pleasure! https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/3400146

The VFS change addresses this in part; I will probably expand essentially the same thing to the rest of the TileDB library in a follow-up.

An alternate, though broadly equivalent, solution would be to rename Rocket’s special `UnixListener` to something like `OwnedUnixListener` or `ManagedUnixListener` and add an `impl Listener for UnixListener` block (now referring to...

This is not specific to `typing_extensions.Protocol`. Take, for instance, these two completely empty protocols, which should accept all objects: ```python # typedmod.py import typing as t T_co = t.TypeVar("T_co", covariant=True)...

> What this suggests is that you could use the attributes of an empty protocol (like GenericEmpty above) to generate the list of things you need to ignore when checking...