Josh Snyder

Results 14 issues of Josh Snyder

Use case: I would like to access the peer certificate sent by a TLS client within my ASGI app. Issue: As far as I can tell, no information about the...

Right now, we do two passes to load pages: first an fadvise pass, then a pass where we actually fault the pages using mmap. If the OS is doing a...

Right now, testing whether happycache works correctly is a matter of manually looking at a dump file and saying "yep that looks right". There should be an automated test for...

Right now we use 1/4096 of a file's size in RAM. For a 64GB file, this is 16MB. For an 8TB file, this is 2GB of RAM. We can bound...

Right now we'll double-process files that are hard links, producing the same results. We could instead match hard links against a hash table and skip them.

``` Type "help", "copyright", "credits" or "license" for more information. >>> from plumbum.cmd import cat, head >>> from plumbum import FG >>> cat['/dev/urndom'] & FG(1) /bin/cat: /dev/urndom: No such file...

Bug

Virtual dependencies are metadata on a py_library that indicate the need for a given dependency, but do not resolve that dependency to a set of files. The virtual dependency is...

As discussed in [the encryption documentation](https://bcachefs.org/Encryption/), bcachefs uses deterministic nonces in encrypting its data. This leads to concerns about nonce reuse, which are discussed in the same documentation. The current...

When completing a multipart upload, S3 offers the client an ETag which it can use to verify the uploaded object. s3gof3r currently verifies that the ETag matches its expectations and...