Juan José
Juan José
By unref the `setInterval` in `lib/handlers/compile.js` the event loop could stop freely, and with that the `SetTestMode` becomes useless
I had to manually change the commit message in one PR, and totally forgot to continue the landing process with `git node land --continue` this may be helpful for new...
When `autoSelectFamily` is set to `true`, `net.connect` is supposed to try connecting to both IPv4 and IPv6, interleaving the address types. Instead, it appears that the array that holds the...
Frankly, I'm not completely sure about this one; this compiles but I never got the fast call invoked. Am I missing something here?
The final gyp file output is correct, this commit omits a unnecessary option validation. The `configure_v8` function will switch the option based on output. Even before this patch if `--v8-disable-object-print`...
This is WIP
The `uv_uptime` function is not the most used function in libuv, storing the uptime selection the whole execution does not make any sense. This patch will make libuv occupy a...
This is WIP with the intention of doing corrections if needed and may actually define the `uv_battery_info_t` struct and refine the implementation to handle all that the `getBattery` needs. Refs:...
This commits allows users to send `--expose-gc` via `NODE_OPTIONS` environment variable. Using `node --expose-gc` is possible but via `NODE_OPTIONS` won't work. ```sh NODE_OPTIONS='--expose-gc' node node: --expose-gc is not allowed in...