Trivikram Kamat
Trivikram Kamat
Should LRUCache fall back to using an Array if PointerArray for provided capacity throws RangeError? Verified that Array of size 4294967295 can be created in Node.js v12.22.1: ```console $ node...
Should LRUCache add `4294967295` as upper limit for capacity? Array of size 4294967296 can't be created in Node.js v14.17.0: ```console $ node Welcome to Node.js v14.17.0. Type ".help" for more...
> I am wondering whether throwing the error could be thrown from [here](https://github.com/Yomguithereal/mnemonist/blob/825538adaf1daee4b9ce3f6c073956ed4211ea1e/utils/typed-arrays.js#L38) instead of returning a `Float64Array` since it seems this function is overly optimistic :) Yup, any suggestion...
PR to throw error if array size > 4294967295 in getPointerArray is posted at https://github.com/Yomguithereal/mnemonist/pull/168 I'll keep this issue open to discuss solution if the platform doesn't support array length...
Created feature requests in individual repos to show Project Status table in top section of README: * https://github.com/open-telemetry/opentelemetry-java/issues/4611 * https://github.com/open-telemetry/opentelemetry-python/issues/2822 * https://github.com/open-telemetry/opentelemetry-js/issues/3095 * https://github.com/open-telemetry/opentelemetry-ruby/issues/1343 * https://github.com/open-telemetry/opentelemetry-rust/issues/838 * https://github.com/open-telemetry/opentelemetry-swift/issues/313 * https://github.com/open-telemetry/opentelemetry-erlang/issues/411...
> It appears that not all are in a table though, so that could get updated. Does that help? Yes. That's why I created issues with individual GitHub repos. I've...
Should the status page link to the docs instead of GitHub repo READMEs then?
The option `DeletePreviousComments` was added in https://github.com/jlhood/github-codebuild-logs/pull/21
PyGitHub revision 34d097ce doesn't have API to hide comment in IssueComment. Docs: https://pygithub.readthedocs.io/en/latest/github_objects/IssueComment.html
GitHub REST API v3 doesn't have an option to hide or minimize comment. Alternative solution is to update comment and collapse the comment content as follows: --- Outdated AWS CodeBuild...