-
Notifications
You must be signed in to change notification settings - Fork 30.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/nodejs/node into move_test_…
…to_run_sequentially
- Loading branch information
Showing
1,365 changed files
with
63,520 additions
and
22,542 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -380,6 +380,8 @@ Netto Farah <[email protected]> | |
Nicholas Kinsey <[email protected]> | ||
Nick Sia <[email protected]> <[email protected]> | ||
Nick Soggin <[email protected]> <[email protected]> | ||
Nicolas Stepien <[email protected]> | ||
Nicolas Stepien <[email protected]> <[email protected]> | ||
Nigel Kibodeaux <[email protected]> <[email protected]> | ||
Nikola Glavina <[email protected]> <[email protected]> | ||
Nikolai Vavilov <[email protected]> | ||
|
@@ -485,6 +487,7 @@ Sreepurna Jasti <[email protected]> <[email protected]> | |
Stanislav Opichal <[email protected]> | ||
Stefan Budeanu <[email protected]> <[email protected]> | ||
Stefan Bühler <[email protected]> | ||
Stefan Stojanovic <[email protected]> <[email protected]> | ||
Stephen Belanger <[email protected]> <[email protected]> | ||
Stephen Belanger <[email protected]> <[email protected]> | ||
Steve Mao <[email protected]> <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -735,7 +735,7 @@ Steven Vercruysse <[email protected]> | |
Aleksanteri Negru-Vode <[email protected]> | ||
Mathieu Darse <[email protected]> | ||
Connor Peet <[email protected]> | ||
Mayhem <[email protected]> | ||
Nicolas Stepien <[email protected]> | ||
Olov Lassus <[email protected]> | ||
Phillip Lamplugh <[email protected]> | ||
Kohei TAKATA <[email protected]> | ||
|
@@ -3517,7 +3517,7 @@ Brian Evans <[email protected]> | |
falsandtru <[email protected]> | ||
东灯 <[email protected]> | ||
Fabian Meyer <[email protected]> | ||
StefanStojanovic <[email protected].com> | ||
Stefan Stojanovic <stefan.stojanovic@janeasystems.com> | ||
Claudio Wunder <[email protected]> | ||
Shrujal Shah <[email protected]> | ||
Taha-Chaudhry <[email protected]> | ||
|
@@ -3575,5 +3575,11 @@ Takuro Sato <[email protected]> | |
Carter Snook <[email protected]> | ||
Nathanael Ruf <[email protected]> | ||
Vasili Skurydzin <[email protected]> | ||
翠 / green <[email protected]> | ||
Ulises Gascon <[email protected]> | ||
chlorine <[email protected]> | ||
Shi Lei <[email protected]> | ||
Deokjin Kim <[email protected]> | ||
Marco Ippolito <[email protected]> | ||
|
||
# Generated by tools/update-authors.mjs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -184,6 +184,8 @@ For information about the governance of the Node.js project, see | |
**Matteo Collina** <<[email protected]>> (he/him) | ||
* [mhdawson](https://github.com/mhdawson) - | ||
**Michael Dawson** <<[email protected]>> (he/him) | ||
* [RafaelGSS](https://github.com/RafaelGSS) - | ||
**Rafael Gonzaga** <<[email protected]>> (he/him) | ||
* [RaisinTen](https://github.com/RaisinTen) - | ||
**Darshan Sen** <<[email protected]>> (he/him) | ||
* [richardlau](https://github.com/richardlau) - | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
'use strict'; | ||
|
||
const common = require('../common.js'); | ||
const v8 = require('v8'); | ||
|
||
const bench = common.createBenchmark(main, { | ||
len: [256, 1024 * 16, 1024 * 512], | ||
n: [1e6] | ||
}); | ||
|
||
function main({ n, len }) { | ||
const typedArray = new BigUint64Array(len); | ||
bench.start(); | ||
for (let i = 0; i < n; i++) | ||
v8.serialize({ a: 1, b: typedArray }); | ||
bench.end(n); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.