Matti Picus
Matti Picus
[here](https://docs.microsoft.com/en-us/answers/questions/351487/createfilemapping-returns-1450.html) is a discussion of another case where `CreateFileMapping` returns a 1450 error. The chain of calls comes from `fake_mmap` in `object_manager/plasma`, and there seem to be more options at...
On windows sometimes there is a delay between when a process dies and when the resources can be recovered. At some point I added a `time.sleep(0.1)` after closing a cluster...
Numpy recently merged support for accelerated simd exp/log for float32 in prs numpy/numpy#13581 and others. We seem to have hit an issue numpy/numpy#13586 with clang 7.0, have you experienced anything...
> Not sure how this would make it any easier to find. The plugins page is a bit of a "wall of text". I also expected to find a FAQ...
Apparently there is a different endpoint for issue creation at `https://api.github.com/repos/${GITHUB_USERNAME}/${GIHUB_REPONAME}/import/issues`, see [this gist](https://gist.github.com/jonmagic/5282384165e0f86ef105). Since it does not send notifications, it is not subject to the secondary rate limit. I...
Pytorch faced this issue, here are a few of the [issues](https://github.com/pytorch/pytorch/issues?q=is%3Aissue+seo+). Besides aggressively adding the canonical links to all versions of the docs, they [added a robots.txt](https://github.com/pytorch/pytorch.github.io/pull/21) to disallow indexing...
The already-deployed docs can be modified using sed and regex like in [this pr to pytorch](https://github.com/pytorch/pytorch.github.io/pull/871) to add a javasript snippet.
The "sympy hermite" example shows what I meant about splitting the pages up: google is linking to the page title and not to the actual anchor for [hermite polynomials](https://docs.sympy.org/latest/modules/functions/special.html#hermite-polynomials) which...
The interspinx link mapping is done at doc build time. It is not dynamic. So if another project builds against a specific version's intersphinx mapping, and later that version of...
On conda the whole stack is built with the same compiler so this couldn't be some kind of mixture of runtimes getting malloc/free mixed up by passing objects across different...