| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent c988e7e commit 75073c5
12 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -4,7 +4,7 @@ | |||
| 4 | 4 | "test/**", | |
| 5 | 5 | "tools/**", | |
| 6 | 6 | "benchmark/**", | |
| 7 | - "deps/**" | ||
| 7 | + "deps/**", | ||
| 8 | 8 | ], | |
| 9 | 9 | "reporter": [ | |
| 10 | 10 | "html", | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -3622,6 +3622,42 @@ removed: v10.0.0 | |||
| 3622 | 3622 | ||
| 3623 | 3623 | The `node:repl` module was unable to parse data from the REPL history file. | |
| 3624 | 3624 | ||
| 3625 | + <a id="ERR_QUIC_CONNECTION_FAILED"></a> | ||
| 3626 | + | ||
| 3627 | + ### `ERR_QUIC_CONNECTION_FAILED` | ||
| 3628 | + | ||
| 3629 | + <!-- YAML | ||
| 3630 | + added: REPLACEME | ||
| 3631 | + --> | ||
| 3632 | + | ||
| 3633 | + > Stability: 1 - Experimental | ||
| 3634 | + | ||
| 3635 | + Establishing a QUIC connection failed. | ||
| 3636 | + | ||
| 3637 | + <a id="ERR_QUIC_ENDPOINT_CLOSED"></a> | ||
| 3638 | + | ||
| 3639 | + ### `ERR_QUIC_ENDPOINT_CLOSED` | ||
| 3640 | + | ||
| 3641 | + <!-- YAML | ||
| 3642 | + added: REPLACEME | ||
| 3643 | + --> | ||
| 3644 | + | ||
| 3645 | + > Stability: 1 - Experimental | ||
| 3646 | + | ||
| 3647 | + A QUIC Endpoint closed with an error. | ||
| 3648 | + | ||
| 3649 | + <a id="ERR_QUIC_OPEN_STREAM_FAILED"></a> | ||
| 3650 | + | ||
| 3651 | + ### `ERR_QUIC_OPEN_STREAM_FAILED` | ||
| 3652 | + | ||
| 3653 | + <!-- YAML | ||
| 3654 | + added: REPLACEME | ||
| 3655 | + --> | ||
| 3656 | + | ||
| 3657 | + > Stability: 1 - Experimental | ||
| 3658 | + | ||
| 3659 | + Opening a QUIC stream failed. | ||
| 3660 | + | ||
| 3625 | 3661 | <a id="ERR_SOCKET_CANNOT_SEND"></a> | |
| 3626 | 3662 | ||
| 3627 | 3663 | ### `ERR_SOCKET_CANNOT_SEND` | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1648,6 +1648,9 @@ E('ERR_PARSE_ARGS_UNKNOWN_OPTION', (option, allowPositionals) => { | |||
| 1648 | 1648 | E('ERR_PERFORMANCE_INVALID_TIMESTAMP', | |
| 1649 | 1649 | '%d is not a valid timestamp', TypeError); | |
| 1650 | 1650 | E('ERR_PERFORMANCE_MEASURE_INVALID_OPTIONS', '%s', TypeError); | |
| 1651 | + E('ERR_QUIC_CONNECTION_FAILED', 'QUIC connection failed', Error); | ||
| 1652 | + E('ERR_QUIC_ENDPOINT_CLOSED', 'QUIC endpoint closed: %s (%d)', Error); | ||
| 1653 | + E('ERR_QUIC_OPEN_STREAM_FAILED', 'Failed to open QUIC stream', Error); | ||
| 1651 | 1654 | E('ERR_REQUIRE_CYCLE_MODULE', '%s', Error); | |
| 1652 | 1655 | E('ERR_REQUIRE_ESM', | |
| 1653 | 1656 | function(filename, hasEsmSyntax, parentPath = null, packageJsonPath = null) { | |
| Back | FazBrowse Home | New Git URL |
0 commit comments