| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 7c8b5e5 commit eb55462
6 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -167,16 +167,16 @@ Depending on the host platform, the selection of toolchains may vary. | |||
| 167 | 167 | ||
| 168 | 168 | Binaries at <https://nodejs.org/download/release/> are produced on: | |
| 169 | 169 | ||
| 170 | - | Binary package | Platform and Toolchain | | ||
| 171 | - | --------------------- | ------------------------------------------------------------------------ | | ||
| 172 | - | aix-ppc64 | AIX 7.1 TL05 on PPC64BE with GCC 6 | | ||
| 173 | - | darwin-x64 (and .pkg) | macOS 10.15, Xcode Command Line Tools 11 with -mmacosx-version-min=10.13 | | ||
| 174 | - | linux-arm64 | CentOS 7 with devtoolset-8 / GCC 8 <sup>[8](#fn8)</sup> | | ||
| 175 | - | linux-armv7l | Cross-compiled on Ubuntu 18.04 x64 with [custom GCC toolchain](https://github.com/rvagg/rpi-newer-crosstools) | | ||
| 176 | - | linux-ppc64le | CentOS 7 with devtoolset-8 / GCC 8 <sup>[8](#fn8)</sup> | | ||
| 177 | - | linux-s390x | RHEL 7 with devtoolset-8 / GCC 8 <sup>[8](#fn8)</sup> | | ||
| 178 | - | linux-x64 | CentOS 7 with devtoolset-8 / GCC 8 <sup>[8](#fn8)</sup> | | ||
| 179 | - | win-x64 and win-x86 | Windows 2012 R2 (x64) with Visual Studio 2019 | | ||
| 170 | + | Binary package | Platform and Toolchain | | ||
| 171 | + | --------------------- | ------------------------------------------------------------------------------------------------------------- | | ||
| 172 | + | aix-ppc64 | AIX 7.1 TL05 on PPC64BE with GCC 6 | | ||
| 173 | + | darwin-x64 (and .pkg) | macOS 10.15, Xcode Command Line Tools 11 with -mmacosx-version-min=10.13 | | ||
| 174 | + | linux-arm64 | CentOS 7 with devtoolset-8 / GCC 8 <sup>[8](#fn8)</sup> | | ||
| 175 | + | linux-armv7l | Cross-compiled on Ubuntu 18.04 x64 with [custom GCC toolchain](https://github.com/rvagg/rpi-newer-crosstools) | | ||
| 176 | + | linux-ppc64le | CentOS 7 with devtoolset-8 / GCC 8 <sup>[8](#fn8)</sup> | | ||
| 177 | + | linux-s390x | RHEL 7 with devtoolset-8 / GCC 8 <sup>[8](#fn8)</sup> | | ||
| 178 | + | linux-x64 | CentOS 7 with devtoolset-8 / GCC 8 <sup>[8](#fn8)</sup> | | ||
| 179 | + | win-x64 and win-x86 | Windows 2012 R2 (x64) with Visual Studio 2019 | | ||
| 180 | 180 | ||
| 181 | 181 | <em id="fn8">8</em>: The Enterprise Linux devtoolset-8 allows us to compile | |
| 182 | 182 | binaries with GCC 8 but linked to the glibc and libstdc++ versions of the host | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1511,16 +1511,16 @@ the permissions for the file owner. The middle digit (`6` in the example), | |||
| 1511 | 1511 | specifies permissions for the group. The right-most digit (`5` in the example), | |
| 1512 | 1512 | specifies the permissions for others. | |
| 1513 | 1513 | ||
| 1514 | - | Number | Description | | ||
| 1515 | - | ------- | ------------------------ | | ||
| 1516 | - | `7` | read, write, and execute | | ||
| 1517 | - | `6` | read and write | | ||
| 1518 | - | `5` | read and execute | | ||
| 1519 | - | `4` | read only | | ||
| 1520 | - | `3` | write and execute | | ||
| 1521 | - | `2` | write only | | ||
| 1522 | - | `1` | execute only | | ||
| 1523 | - | `0` | no permission | | ||
| 1514 | + | Number | Description | | ||
| 1515 | + | ------ | ------------------------ | | ||
| 1516 | + | `7` | read, write, and execute | | ||
| 1517 | + | `6` | read and write | | ||
| 1518 | + | `5` | read and execute | | ||
| 1519 | + | `4` | read only | | ||
| 1520 | + | `3` | write and execute | | ||
| 1521 | + | `2` | write only | | ||
| 1522 | + | `1` | execute only | | ||
| 1523 | + | `0` | no permission | | ||
| 1524 | 1524 | ||
| 1525 | 1525 | For example, the octal value `0o765` means: | |
| 1526 | 1526 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1159,18 +1159,18 @@ Different Node.js build configurations support different sets of encodings. | |||
| 1159 | 1159 | ||
| 1160 | 1160 | #### Encodings supported when Node.js is built with the `small-icu` option | |
| 1161 | 1161 | ||
| 1162 | - | Encoding | Aliases | | ||
| 1163 | - | ----------- | --------------------------------- | | ||
| 1164 | - | `'utf-8'` | `'unicode-1-1-utf-8'`, `'utf8'` | | ||
| 1165 | - | `'utf-16le'` | `'utf-16'` | | ||
| 1166 | - | `'utf-16be'` | | | ||
| 1162 | + | Encoding | Aliases | | ||
| 1163 | + | ----------- | ------------------------------- | | ||
| 1164 | + | `'utf-8'` | `'unicode-1-1-utf-8'`, `'utf8'` | | ||
| 1165 | + | `'utf-16le'` | `'utf-16'` | | ||
| 1166 | + | `'utf-16be'` | | | ||
| 1167 | 1167 | ||
| 1168 | 1168 | #### Encodings supported when ICU is disabled | |
| 1169 | 1169 | ||
| 1170 | - | Encoding | Aliases | | ||
| 1171 | - | ----------- | --------------------------------- | | ||
| 1172 | - | `'utf-8'` | `'unicode-1-1-utf-8'`, `'utf8'` | | ||
| 1173 | - | `'utf-16le'` | `'utf-16'` | | ||
| 1170 | + | Encoding | Aliases | | ||
| 1171 | + | ----------- | ------------------------------- | | ||
| 1172 | + | `'utf-8'` | `'unicode-1-1-utf-8'`, `'utf8'` | | ||
| 1173 | + | `'utf-16le'` | `'utf-16'` | | ||
| 1174 | 1174 | ||
| 1175 | 1175 | The `'iso-8859-16'` encoding listed in the [WHATWG Encoding Standard][] | |
| 1176 | 1176 | is not supported. | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -93,56 +93,56 @@ The tools are currently assigned to Tiers as follows: | |||
| 93 | 93 | ||
| 94 | 94 | ## Tier 1 | |
| 95 | 95 | ||
| 96 | - | Tool Type | Tool/API Name | Regular Testing in Node.js CI | Integrated with Node.js | Target Tier | | ||
| 97 | - |-----------|---------------------------|-------------------------------|-------------------------|-------------| | ||
| 98 | - | FFDC | diagnostic report | Yes | Yes | 1 | | ||
| 99 | - | | | | | | | ||
| 96 | + | Tool Type | Tool/API Name | Regular Testing in Node.js CI | Integrated with Node.js | Target Tier | | ||
| 97 | + |-----------|---------------------------|-------------------------------|-------------------------|-------------| | ||
| 98 | + | FFDC | diagnostic report | Yes | Yes | 1 | | ||
| 99 | + | | | | | | | ||
| 100 | 100 | ||
| 101 | 101 | ## Tier 2 | |
| 102 | 102 | ||
| 103 | - | Tool Type | Tool/API Name | Regular Testing in Node.js CI | Integrated with Node.js | Target Tier | | ||
| 104 | - |-----------|---------------------------|-------------------------------|-------------------------|-------------| | ||
| 105 | - | | | | | | | ||
| 103 | + | Tool Type | Tool/API Name | Regular Testing in Node.js CI | Integrated with Node.js | Target Tier | | ||
| 104 | + |-----------|---------------|-------------------------------|-------------------------|-------------| | ||
| 105 | + | | | | | | | ||
| 106 | 106 | ||
| 107 | 107 | ## Tier 3 | |
| 108 | 108 | ||
| 109 | - | Tool Type | Tool/API Name | Regular Testing in Node.js CI | Integrated with Node.js | Target Tier | | ||
| 110 | - |-----------|--------------------------------------|-------------------------------|-------------------------|-------------| | ||
| 111 | - | Profiling | V8 CPU profiler | Partial (V8 Tests) | Yes | 1 | | ||
| 112 | - | Profiling | --prof/--prof-process flags | Yes | Yes | 1 | | ||
| 113 | - | Profiling | V8 CodeEventHandler API | Partial (V8 Tests) | Yes | 2 | | ||
| 114 | - | Profiling | V8 --interpreted-frames-native-stack | Yes | Yes | 2 | | ||
| 115 | - | Profiling | Linux perf | Yes | Partial | 2 | | ||
| 109 | + | Tool Type | Tool/API Name | Regular Testing in Node.js CI | Integrated with Node.js | Target Tier | | ||
| 110 | + |-----------|--------------------------------------|-------------------------------|-------------------------|-------------| | ||
| 111 | + | Profiling | V8 CPU profiler | Partial (V8 Tests) | Yes | 1 | | ||
| 112 | + | Profiling | --prof/--prof-process flags | Yes | Yes | 1 | | ||
| 113 | + | Profiling | V8 CodeEventHandler API | Partial (V8 Tests) | Yes | 2 | | ||
| 114 | + | Profiling | V8 --interpreted-frames-native-stack | Yes | Yes | 2 | | ||
| 115 | + | Profiling | Linux perf | Yes | Partial | 2 | | ||
| 116 | 116 | ||
| 117 | 117 | ## Tier 4 | |
| 118 | 118 | ||
| 119 | - | Tool Type | Tool/API Name | Regular Testing in Node.js CI | Integrated with Node.js | Target Tier | | ||
| 120 | - |-----------|---------------------------|-------------------------------|-------------------------|-------------| | ||
| 121 | - | | | | | | | ||
| 119 | + | Tool Type | Tool/API Name | Regular Testing in Node.js CI | Integrated with Node.js | Target Tier | | ||
| 120 | + |-----------|---------------|-------------------------------|-------------------------|-------------| | ||
| 121 | + | | | | | | | ||
| 122 | 122 | ||
| 123 | 123 | ## Not yet classified | |
| 124 | 124 | ||
| 125 | - | Tool Type | Tool/API Name | Regular Testing in Node.js CI | Integrated with Node.js | Target Tier | | ||
| 126 | - |-----------|---------------------------|-------------------------------|-------------------------|-------------| | ||
| 127 | - | FFDC | node-report | No | No | 1 | | ||
| 128 | - | Memory | mdb_V8 | No | No | 4 | | ||
| 129 | - | Memory | node-heapdump | No | No | 2 | | ||
| 130 | - | Memory | V8 heap profiler | No | Yes | 1 | | ||
| 131 | - | Memory | V8 sampling heap profiler | No | Yes | 1 | | ||
| 132 | - | AsyncFlow | Async Hooks (API) | ? | Yes | 1 | | ||
| 133 | - | Debugger | V8 Debug protocol (API) | No | Yes | 1 | | ||
| 134 | - | Debugger | Command line Debug Client | ? | Yes | 1 | | ||
| 135 | - | Debugger | llnode | ? | No | 2 | | ||
| 136 | - | Debugger | Chrome Dev tools | ? | No | 3 | | ||
| 137 | - | Debugger | Chakracore - time-travel | No | Data source only | too early | | ||
| 138 | - | Tracing | trace_events (API) | No | Yes | 1 | | ||
| 139 | - | Tracing | DTrace | No | Partial | 3 | | ||
| 140 | - | Tracing | LTTng | No | Removed? | N/A | | ||
| 141 | - | Tracing | ETW | No | Partial | 3 | | ||
| 142 | - | Tracing | Systemtap | No | Partial | ? | | ||
| 143 | - | Profiling | DTrace | No | Partial | 3 | | ||
| 144 | - | Profiling | Windows Xperf | No | ? | ? | | ||
| 145 | - | Profiling | 0x | No | No | 4 | | ||
| 146 | - | Profiling | node-clinic | No | No | too early | | ||
| 147 | - | F/P/T | appmetrics | No | No | ? | | ||
| 148 | - | M/T | eBPF tracing tool | No | No | ? | | ||
| 125 | + | Tool Type | Tool/API Name | Regular Testing in Node.js CI | Integrated with Node.js | Target Tier | | ||
| 126 | + |-----------|---------------------------|-------------------------------|-------------------------|-------------| | ||
| 127 | + | FFDC | node-report | No | No | 1 | | ||
| 128 | + | Memory | mdb_V8 | No | No | 4 | | ||
| 129 | + | Memory | node-heapdump | No | No | 2 | | ||
| 130 | + | Memory | V8 heap profiler | No | Yes | 1 | | ||
| 131 | + | Memory | V8 sampling heap profiler | No | Yes | 1 | | ||
| 132 | + | AsyncFlow | Async Hooks (API) | ? | Yes | 1 | | ||
| 133 | + | Debugger | V8 Debug protocol (API) | No | Yes | 1 | | ||
| 134 | + | Debugger | Command line Debug Client | ? | Yes | 1 | | ||
| 135 | + | Debugger | llnode | ? | No | 2 | | ||
| 136 | + | Debugger | Chrome Dev tools | ? | No | 3 | | ||
| 137 | + | Debugger | Chakracore - time-travel | No | Data source only | too early | | ||
| 138 | + | Tracing | trace_events (API) | No | Yes | 1 | | ||
| 139 | + | Tracing | DTrace | No | Partial | 3 | | ||
| 140 | + | Tracing | LTTng | No | Removed? | N/A | | ||
| 141 | + | Tracing | ETW | No | Partial | 3 | | ||
| 142 | + | Tracing | Systemtap | No | Partial | ? | | ||
| 143 | + | Profiling | DTrace | No | Partial | 3 | | ||
| 144 | + | Profiling | Windows Xperf | No | ? | ? | | ||
| 145 | + | Profiling | 0x | No | No | 4 | | ||
| 146 | + | Profiling | node-clinic | No | No | too early | | ||
| 147 | + | F/P/T | appmetrics | No | No | ? | | ||
| 148 | + | M/T | eBPF tracing tool | No | No | ? | | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -39,21 +39,21 @@ this guide. | |||
| 39 | 39 | * Use [language][]-aware fences. (<code>```js</code>) | |
| 40 | 40 | * For the [info string][], use one of the following. | |
| 41 | 41 | ||
| 42 | - | Meaning | Info string | | ||
| 43 | - | ------------- | ----------------- | | ||
| 44 | - | Bash | `bash` | | ||
| 45 | - | C | `c` | | ||
| 46 | - | C++ | `cpp` | | ||
| 47 | - | CoffeeScript | `coffee` | | ||
| 48 | - | Diff | `diff` | | ||
| 49 | - | HTTP | `http` | | ||
| 50 | - | JavaScript | `js` | | ||
| 51 | - | JSON | `json` | | ||
| 52 | - | Markdown | `markdown` | | ||
| 53 | - | Plaintext | `text` | | ||
| 54 | - | Powershell | `powershell` | | ||
| 55 | - | R | `r` | | ||
| 56 | - | Shell Session | `console` | | ||
| 42 | + | Meaning | Info string | | ||
| 43 | + | ------------- | ------------ | | ||
| 44 | + | Bash | `bash` | | ||
| 45 | + | C | `c` | | ||
| 46 | + | C++ | `cpp` | | ||
| 47 | + | CoffeeScript | `coffee` | | ||
| 48 | + | Diff | `diff` | | ||
| 49 | + | HTTP | `http` | | ||
| 50 | + | JavaScript | `js` | | ||
| 51 | + | JSON | `json` | | ||
| 52 | + | Markdown | `markdown` | | ||
| 53 | + | Plaintext | `text` | | ||
| 54 | + | Powershell | `powershell` | | ||
| 55 | + | R | `r` | | ||
| 56 | + | Shell Session | `console` | | ||
| 57 | 57 | ||
| 58 | 58 | If one of your language-aware fences needs an info string that is not | |
| 59 | 59 | already on this list, you may use `text` until the grammar gets added to | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -2,31 +2,31 @@ | |||
| 2 | 2 | ||
| 3 | 3 | Showing which kind of async resource is covered by which test: | |
| 4 | 4 | ||
| 5 | - | Resource Type | Test | | ||
| 6 | - |----------------------|--------------------------------------------| | ||
| 7 | - | CONNECTION | test-connection.ssl.js | | ||
| 8 | - | FSEVENTWRAP | test-fseventwrap.js | | ||
| 9 | - | FSREQCALLBACK | test-fsreqcallback-{access,readFile}.js | | ||
| 10 | - | GETADDRINFOREQWRAP | test-getaddrinforeqwrap.js | | ||
| 11 | - | GETNAMEINFOREQWRAP | test-getnameinforeqwrap.js | | ||
| 12 | - | HTTPINCOMINGMESSAGE | test-httpparser.request.js | | ||
| 13 | - | HTTPCLIENTREQUEST | test-httpparser.response.js | | ||
| 14 | - | Immediate | test-immediate.js | | ||
| 15 | - | JSSTREAM | TODO (crashes when accessing directly) | | ||
| 16 | - | PBKDF2REQUEST | test-crypto-pbkdf2.js | | ||
| 17 | - | PIPECONNECTWRAP | test-pipeconnectwrap.js | | ||
| 18 | - | PIPEWRAP | test-pipewrap.js | | ||
| 19 | - | PROCESSWRAP | test-pipewrap.js | | ||
| 20 | - | QUERYWRAP | test-querywrap.js | | ||
| 21 | - | RANDOMBYTESREQUEST | test-crypto-randomBytes.js | | ||
| 22 | - | SHUTDOWNWRAP | test-shutdownwrap.js | | ||
| 23 | - | SIGNALWRAP | test-signalwrap.js | | ||
| 24 | - | STATWATCHER | test-statwatcher.js | | ||
| 25 | - | TCPCONNECTWRAP | test-tcpwrap.js | | ||
| 26 | - | TCPWRAP | test-tcpwrap.js | | ||
| 27 | - | TLSWRAP | test-tlswrap.js | | ||
| 28 | - | TTYWRAP | test-ttywrap.{read,write}stream.js | | ||
| 29 | - | UDPSENDWRAP | test-udpsendwrap.js | | ||
| 30 | - | UDPWRAP | test-udpwrap.js | | ||
| 31 | - | WRITEWRAP | test-writewrap.js | | ||
| 32 | - | ZLIB | test-zlib.zlib-binding.deflate.js | | ||
| 5 | + | Resource Type | Test | | ||
| 6 | + |---------------------|-----------------------------------------| | ||
| 7 | + | CONNECTION | test-connection.ssl.js | | ||
| 8 | + | FSEVENTWRAP | test-fseventwrap.js | | ||
| 9 | + | FSREQCALLBACK | test-fsreqcallback-{access,readFile}.js | | ||
| 10 | + | GETADDRINFOREQWRAP | test-getaddrinforeqwrap.js | | ||
| 11 | + | GETNAMEINFOREQWRAP | test-getnameinforeqwrap.js | | ||
| 12 | + | HTTPINCOMINGMESSAGE | test-httpparser.request.js | | ||
| 13 | + | HTTPCLIENTREQUEST | test-httpparser.response.js | | ||
| 14 | + | Immediate | test-immediate.js | | ||
| 15 | + | JSSTREAM | TODO (crashes when accessing directly) | | ||
| 16 | + | PBKDF2REQUEST | test-crypto-pbkdf2.js | | ||
| 17 | + | PIPECONNECTWRAP | test-pipeconnectwrap.js | | ||
| 18 | + | PIPEWRAP | test-pipewrap.js | | ||
| 19 | + | PROCESSWRAP | test-pipewrap.js | | ||
| 20 | + | QUERYWRAP | test-querywrap.js | | ||
| 21 | + | RANDOMBYTESREQUEST | test-crypto-randomBytes.js | | ||
| 22 | + | SHUTDOWNWRAP | test-shutdownwrap.js | | ||
| 23 | + | SIGNALWRAP | test-signalwrap.js | | ||
| 24 | + | STATWATCHER | test-statwatcher.js | | ||
| 25 | + | TCPCONNECTWRAP | test-tcpwrap.js | | ||
| 26 | + | TCPWRAP | test-tcpwrap.js | | ||
| 27 | + | TLSWRAP | test-tlswrap.js | | ||
| 28 | + | TTYWRAP | test-ttywrap.{read,write}stream.js | | ||
| 29 | + | UDPSENDWRAP | test-udpsendwrap.js | | ||
| 30 | + | UDPWRAP | test-udpwrap.js | | ||
| 31 | + | WRITEWRAP | test-writewrap.js | | ||
| 32 | + | ZLIB | test-zlib.zlib-binding.deflate.js | | ||
| Back | FazBrowse Home | New Git URL |
0 commit comments