Stu Hood

Results 255 comments of Stu Hood

There is also `allowZip64=True`: https://stackoverflow.com/questions/29830531/python-using-zip64-extensions-when-compressing-large-files ?

From profiling PEX, the breakdown of the warm (13 second) run is roughly: * 50% in `download_distributions` in a forked PIP * 15% in `install_distributions` in a forked PIP *...

The time inside `pip` (`20.0.2` is vendored) is (11s) mostly under https://github.com/pypa/pip/blob/20.0.2/src/pip/_internal/legacy_resolve.py, with: * 44% in `populate_link` * 35% in `prepare_linked_requirement` ~That code has since been refactored upstream, with the...

I'm planning to put this down for now, but I ran one more check to look into the connection between this issue and #1084: the default `Cache-Control:max-age=` which PIP uses...

I think that we should probably still open a ticket about the memory usage, as it is surprising. But yea, this is closer to reasonable.

I'd like to make some progress on this ticket in the interest of attempting to address the: ``` FATAL: exception not rethrown ``` ...error that has popped up recently in...

@hawkw : This is related to #1820 (which is maybe stale given [LocalKey](https://docs.rs/tokio/0.2.17/tokio/task/struct.LocalKey.html)?) where you mention that the `tracing` spans are "ambient". Does `tracing` have a hook into the tokio...

I'm not able to comment on the specific line, but: the major/minor version of scala should be suffixed onto the artifact name: ```diff - korean-text + korean-text_2.12 ```