Home
last modified time | relevance | path

Searched refs:uncaught (Results 1 – 25 of 66) sorted by relevance

123

/third_party/node/test/parallel/
Dparallel.status43 test-domain-no-error-handler-abort-on-uncaught-0: PASS, FLAKY
44 test-domain-no-error-handler-abort-on-uncaught-1: PASS,FLAKY
45 test-domain-no-error-handler-abort-on-uncaught-2: PASS,FLAKY
46 test-domain-no-error-handler-abort-on-uncaught-3: PASS,FLAKY
47 test-domain-no-error-handler-abort-on-uncaught-4: PASS,FLAKY
48 test-domain-no-error-handler-abort-on-uncaught-5: PASS, FLAKY
49 test-domain-no-error-handler-abort-on-uncaught-6: PASS, FLAKY
50 test-domain-no-error-handler-abort-on-uncaught-7: PASS, FLAKY
51 test-domain-no-error-handler-abort-on-uncaught-8: PASS, FLAKY
52 test-domain-no-error-handler-abort-on-uncaught-9: PASS, FLAKY
[all …]
Dtest-throw-undefined-or-null-traced.mjs7 describe('--trace-uncaught', () => {
8 it('prints a trace on process exit for uncaught errors', async () => {
11 '--trace-uncaught',
Dtest-throw-error-with-getter-throw-traced.mjs7 describe('--trace-uncaught', () => {
8 it('prints a trace on process exit for uncaught errors', async () => {
10 '--trace-uncaught',
/third_party/node/test/abort/
Dabort.status16 test-abort-uncaught-exception: PASS, FLAKY
20 test-worker-abort-uncaught-exception: PASS, FLAKY
/third_party/node/test/message/
Deval_messages.out70 (Use `* --trace-uncaught ...` to show where the exception was thrown)
78 (Use `* --trace-uncaught ...` to show where the exception was thrown)
Dstdin_messages.out78 (Use `* --trace-uncaught ...` to show where the exception was thrown)
86 (Use `* --trace-uncaught ...` to show where the exception was thrown)
Dthrow_undefined.out6 (Use `* --trace-uncaught ...` to show where the exception was thrown)
Dthrow_null.out6 (Use `* --trace-uncaught ...` to show where the exception was thrown)
Dthrow_error_with_getter_throw.out6 (Use `* --trace-uncaught ...` to show where the exception was thrown)
/third_party/node/test/
Droot.status27 parallel/test-domain-abort-on-uncaught: SLOW
28 parallel/test-domain-uncaught-exception: SLOW
29 parallel/test-domain-with-abort-on-uncaught-exception: SLOW
137 parallel/test-worker-uncaught-exception: SLOW
138 parallel/test-worker-uncaught-exception-async: SLOW
DREADME.md18 | `abort` | Yes | Tests that use `--abort-on-uncaught-exception` and other situatio…
/third_party/node/doc/api/
Dreport.md20 A complete example report that was generated on an uncaught exception
36 "--report-uncaught-exception",
98 "message": "Error: *** test-exception.js: throwing uncaught Error",
414 node --report-uncaught-exception --report-on-signal \
418 * `--report-uncaught-exception` Enables report to be generated on
556 `reportOnUncaughtException` triggers diagnostic reporting on uncaught exception
575 // Trigger report only on uncaught exceptions.
596 NODE_OPTIONS="--report-uncaught-exception \
Dcli.md90 ### `--abort-on-uncaught-exception`
536 ### `--force-node-api-uncaught-exceptions-policy`
1156 ### `--report-uncaught-exception`
1163 description: Report is not generated if the uncaught exception is handled.
1171 description: changed from `--diagnostic-report-uncaught-exception` to
1172 `--report-uncaught-exception`.
1175 Enables report to be generated when the process exits due to an uncaught
1496 ### `--trace-uncaught`
1502 Print stack traces for uncaught exceptions; usually, the stack trace associated
1542 unhandled rejection as an uncaught exception. This is the default.
[all …]
Dprocess.md40 termination, such as calling [`process.exit()`][] or uncaught exceptions.
340 * `err` {Error} The uncaught exception.
349 The `'uncaughtException'` event is emitted when an uncaught JavaScript
416 Attempting to resume normally after an uncaught exception can be similar to
438 * `err` {Error} The uncaught exception.
2976 If `true`, a diagnostic report is generated on uncaught exception.
3444 that will be invoked when an uncaught exception occurs, which will receive the
3448 not be emitted. If `--abort-on-uncaught-exception` was passed from the
3812 * `1` **Uncaught Fatal Exception**: There was an uncaught exception,
3828 uncaught exception, but the internal fatal exception handler
[all …]
Dasync_hooks.md213 and exit. The exit path does follow that of an uncaught exception, but
216 with `--abort-on-uncaught-exception`, in which case a stack trace will be
609 If an uncaught exception occurs during execution of the callback, then `after`
Dasync_context.md664 // In case of an uncaught exception: Call the callback that was passed to
752 // In case of an uncaught exception: Call the callback that was passed to
Drepl.md150 #### Global uncaught exceptions
160 The REPL uses the [`domain`][] module to catch all uncaught exceptions for that
/third_party/node/deps/v8/src/debug/
Ddebug.cc2153 bool Debug::IsExceptionBlackboxed(bool uncaught) { in IsExceptionBlackboxed() argument
2163 if (!uncaught || !is_top_frame_blackboxed) return is_top_frame_blackboxed; in IsExceptionBlackboxed()
2194 bool uncaught = catch_type == Isolate::NOT_CAUGHT; in OnException() local
2209 uncaught = !isolate_->PromiseHasUserDefinedRejectHandler(jspromise); in OnException()
2211 uncaught = true; in OnException()
2217 if (!uncaught && !break_on_exception_) { in OnException()
2226 IsExceptionBlackboxed(uncaught))) { in OnException()
2241 v8::Utils::ToLocal(promise), uncaught, exception_type); in OnException()
Ddebug.h436 bool IsExceptionBlackboxed(bool uncaught);
/third_party/python/Doc/library/
Dcgitb.rst24 uncaught exception occurs, a detailed, formatted report will be displayed. The
/third_party/python/Misc/NEWS.d/
D3.7.0b4.rst218 Update difflib.mdiff() for :pep:`479`. Convert an uncaught StopIteration in a
D3.10.0b2.rst463 Avoid uncaught exceptions in ``AutoCompleteWindow.winconfig_event()``.
D3.8.0a2.rst48 When the main interpreter exits due to an uncaught KeyboardInterrupt, the
/third_party/node/test/fixtures/test-runner/output/
Dspec_reporter.snapshot294 … activity after the test ended. This activity created the error "Error: uncaught from outside of a…
Dspec_reporter_cli.snapshot294 … activity after the test ended. This activity created the error "Error: uncaught from outside of a…

123