Anna Henningsen
Anna Henningsen
Looking into it, I’m not sure what `UV_ERRNO_MAX` is exactly supposed to provide… it does *not* provide the maximum value of an entry in `UV_ERRNO_MAP`, because those errors are system...
Hi! Could you open a pull request against https://github.com/libuv/libuv/ with the libuv changes first? We generally avoid doing our own patches on top of libuv releases. (The libuv part also...
@bcoe I’d love to help, but the branches mentioned the issue are gone, and it appears quite a bit has happened in the semantic-release since the original report… do you...
The problem here is that the rows of the input matrix are cloned using `new_row = row[:]`, which works just fine as long as the input is formatted as a...
If I read your issue title correctly, you are assuming that the build failure is the result of `HOME` pointing to the nonexistent directory `/Users/josh/Documents/code/knotkit/`. However, the actual error line...
@vsemozhetbyt I think that’s just an API question, not a perf thing. Things we could do: - Make readline interfaces async-iterable, i.e. `for await (const line of readlineInterface)` - Or...
@joyeecheung Yeah ... I assume in the end any key that we can look up based on the `Isolate*` pointer, without needing the `Isolate` instance itself, will work? But obviously...
@nodejs/http2
@d3x0r It’s hard to tell without code, but a few things: - The original addon posted by @BSoD-Ultimate uses `uv_default_loop()`, so it won’t work with worker threads anyway. If you’re...
> I added `process._tickCallback()` on the return of onmessage, and promises no longer fail to resolve. @d3x0r Yes – please don’t do this. :smile: It’s an internal API and you...