Donald Stufft
Donald Stufft
Right now if you want software to be able to handle `OSFS` in addition to something like `S3FS` you have to use things like `makedir`, however there are no directories...
It would be great to be able to pass extra metadata to a file when stored in S3, something like `Content-Type` or `Cache-Control` or whatever. These parameters could be ignores...
There is a draft extension added by facebook called Cache-Control: immutable. If a response is served as immutable then that means it will never ever change no matter what. It...
It appears that while this does correct handle ``CacheControl: no-store`` on responses, it does *not* correctly handle ``CacheControl: no-cache``. Causing them to get cached in some cases.
This is primarily useful to add extra logic to _prevent_ the caching of a response, but the way it is implemented it can also be used to add extra logic...
Currently pip allows you to search a repository by running ``pip search``, which will then print out a bunch of packages that match, see for example: ``` $ pip search...
Make sure that when building ``pkg-config``, that we're using the ``make`` and other tools from our configured toolchain rather than using whatever we happen to find on ``$PATH``. Fixes #1065
It looks like when attempting to build pkgtool, rules_foreign_cc is not setting the ``CC`` variable, causing the pkgtool configure to search path for ``gcc``, ``clang``, etc, and using that if...
This may be too esoteric for you all to support, and I suspect the problem may be elsewhere but I'm not entirely sure so I figured I'd start here. I'm...