Home
last modified time | relevance | path

Searched full:path (Results 36901 - 36925 of 37931) sorted by relevance

1...<<1471147214731474147514761477147814791480>>...1518

/third_party/node/deps/openssl/config/archs/darwin64-arm64-cc/asm_avx2/include/openssl/
H A Dssl.h2405 * Loads the CT log list from the specified file path.
2411 int SSL_CTX_set_ctlog_list_file(SSL_CTX *ctx, const char *path);
/third_party/node/deps/openssl/config/archs/darwin64-x86_64-cc/no-asm/include/openssl/
H A Dssl.h2405 * Loads the CT log list from the specified file path.
2411 int SSL_CTX_set_ctlog_list_file(SSL_CTX *ctx, const char *path);
/third_party/node/deps/openssl/config/archs/linux-armv4/asm/include/openssl/
H A Dssl.h2405 * Loads the CT log list from the specified file path.
2411 int SSL_CTX_set_ctlog_list_file(SSL_CTX *ctx, const char *path);
/third_party/node/deps/openssl/config/archs/darwin64-arm64-cc/asm/include/openssl/
H A Dssl.h2405 * Loads the CT log list from the specified file path.
2411 int SSL_CTX_set_ctlog_list_file(SSL_CTX *ctx, const char *path);
/third_party/node/deps/openssl/config/archs/linux-elf/asm_avx2/include/openssl/
H A Dssl.h2405 * Loads the CT log list from the specified file path.
2411 int SSL_CTX_set_ctlog_list_file(SSL_CTX *ctx, const char *path);
/third_party/node/deps/v8/third_party/zlib/
H A Dzlib.h1305 ZEXTERN gzFile ZEXPORT gzopen OF((const char *path, const char *mode));
1922 ZEXTERN gzFile ZEXPORT gzopen_w OF((const wchar_t *path,
/third_party/node/doc/api/
H A Dassert.json611 "desc": "<p>Awaits the <code>asyncFn</code> promise or, if <code>asyncFn</code> is a function, immediately\ncalls the function and awaits the returned promise to complete. It will then\ncheck that the promise is not rejected.</p>\n<p>If <code>asyncFn</code> is a function and it throws an error synchronously,\n<code>assert.doesNotReject()</code> will return a rejected <code>Promise</code> with that error. If\nthe function does not return a promise, <code>assert.doesNotReject()</code> will return a\nrejected <code>Promise</code> with an <a href=\"errors.html#err_invalid_return_value\"><code>ERR_INVALID_RETURN_VALUE</code></a> error. In both cases\nthe error handler is skipped.</p>\n<p>Using <code>assert.doesNotReject()</code> is actually not useful because there is little\nbenefit in catching a rejection and then rejecting it again. Instead, consider\nadding a comment next to the specific code path that should not reject and keep\nerror messages as expressive as possible.</p>\n<p>If specified, <code>error</code> can be a <a href=\"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Classes\"><code>Class</code></a>, <a href=\"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions\"><code>RegExp</code></a>, or a validation\nfunction. See <a href=\"#assertthrowsfn-error-message\"><code>assert.throws()</code></a> for more details.</p>\n<p>Besides the async nature to await the completion behaves identically to\n<a href=\"#assertdoesnotthrowfn-error-message\"><code>assert.doesNotThrow()</code></a>.</p>\n<pre><code class=\"language-mjs\">import assert from 'node:assert/strict';\n\nawait assert.doesNotReject(\n async () => {\n throw new TypeError('Wrong value');\n },\n SyntaxError,\n);\n</code></pre>\n<pre><code class=\"language-cjs\">const assert = require('node:assert/strict');\n\n(async () => {\n await assert.doesNotReject(\n async () => {\n throw new TypeError('Wrong value');\n },\n SyntaxError,\n );\n})();\n</code></pre>\n<pre><code class=\"language-mjs\">import assert from 'node:assert/strict';\n\nassert.doesNotReject(Promise.reject(new TypeError('Wrong value')))\n .then(() => {\n // ...\n });\n</code></pre>\n<pre><code class=\"language-cjs\">const assert = require('node:assert/strict');\n\nassert.doesNotReject(Promise.reject(new TypeError('Wrong value')))\n .then(() => {\n // ...\n });\n</code></pre>"
658 "desc": "<p>Asserts that the function <code>fn</code> does not throw an error.</p>\n<p>Using <code>assert.doesNotThrow()</code> is actually not useful because there\nis no benefit in catching an error and then rethrowing it. Instead, consider\nadding a comment next to the specific code path that should not throw and keep\nerror messages as expressive as possible.</p>\n<p>When <code>assert.doesNotThrow()</code> is called, it will immediately call the <code>fn</code>\nfunction.</p>\n<p>If an error is thrown and it is the same type as that specified by the <code>error</code>\nparameter, then an <a href=\"#class-assertassertionerror\"><code>AssertionError</code></a> is thrown. If the error is of a\ndifferent type, or if the <code>error</code> parameter is undefined, the error is\npropagated back to the caller.</p>\n<p>If specified, <code>error</code> can be a <a href=\"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Classes\"><code>Class</code></a>, <a href=\"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions\"><code>RegExp</code></a>, or a validation\nfunction. See <a href=\"#assertthrowsfn-error-message\"><code>assert.throws()</code></a> for more details.</p>\n<p>The following, for instance, will throw the <a href=\"errors.html#class-typeerror\"><code>TypeError</code></a> because there is no\nmatching error type in the assertion:</p>\n<pre><code class=\"language-mjs\">import assert from 'node:assert/strict';\n\nassert.doesNotThrow(\n () => {\n throw new TypeError('Wrong value');\n },\n SyntaxError,\n);\n</code></pre>\n<pre><code class=\"language-cjs\">const assert = require('node:assert/strict');\n\nassert.doesNotThrow(\n () => {\n throw new TypeError('Wrong value');\n },\n SyntaxError,\n);\n</code></pre>\n<p>However, the following will result in an <a href=\"#class-assertassertionerror\"><code>AssertionError</code></a> with the message\n'Got unwanted exception...':</p>\n<pre><code class=\"language-mjs\">import assert from 'node:assert/strict';\n\nassert.doesNotThrow(\n () => {\n throw new TypeError('Wrong value');\n },\n TypeError,\n);\n</code></pre>\n<pre><code class=\"language-cjs\">const assert = require('node:assert/strict');\n\nassert.doesNotThrow(\n () => {\n throw new TypeError('Wrong value');\n },\n TypeError,\n);\n</code></pre>\n<p>If an <a href=\"#class-assertassertionerror\"><code>AssertionError</code></a> is thrown and a value is provided for the <code>message</code>\nparameter, the value of <code>message</code> will be appended to the <a href=\"#class-assertassertionerror\"><code>AssertionError</code></a>\nmessage:</p>\n<pre><code class=\"language-mjs\">import assert from 'node:assert/strict';\n\nassert.doesNotThrow(\n () => {\n throw new TypeError('Wrong value');\n },\n /Wrong value/,\n 'Whoops',\n);\n// Throws: AssertionError: Got unwanted exception: Whoops\n</code></pre>\n<pre><code class=\"language-cjs\">const assert = require('node:assert/strict');\n\nassert.doesNotThrow(\n () => {\n throw new TypeError('Wrong value');\n },\n /Wrong value/,\n 'Whoops',\n);\n// Throws: AssertionError: Got unwanted exception: Whoops\n</code></pre>"
H A Dassert.md1051 adding a comment next to the specific code path that should not reject and keep
1125 adding a comment next to the specific code path that should not throw and keep
/third_party/node/test/fixtures/snapshot/
H A Dmarked.js214 // we can ignore everything in base after the last slash of its path component,
1158 // do extended autolink path validation
/third_party/openGLES/extensions/ARB/
H A DARB_enhanced_layouts.txt862 shaders where each execution path accesses at most one input per each
864 generate link-time errors if they detect that every path through the
H A DARB_gl_spirv.txt1699 GLbyte* binary = LoadBinary(Path, &length);
2169 which path it takes to get to the LinkProgram step.
H A DARB_vertex_buffer_object.txt223 but this isn't a performance path anyways, and it adds a
249 parts of GL like the pixel path.
/third_party/node/deps/icu-small/source/common/
H A Dutext.cpp147 // Fast-path the common case. in utext_getPreviousNativeIndex()
248 // Fast path the common case. in utext_char32At()
/third_party/node/deps/icu-small/source/common/unicode/
H A Ducnv.h80 /** Maximum length of a converter name including path and terminating NULL @stable ICU 2.0 */
490 * @param packageName name of the package (equivalent to 'path' in udata_open() call)
/third_party/node/deps/openssl/config/archs/BSD-x86/no-asm/include/openssl/
H A Dssl.h2405 * Loads the CT log list from the specified file path.
2411 int SSL_CTX_set_ctlog_list_file(SSL_CTX *ctx, const char *path);
/third_party/node/deps/openssl/config/archs/BSD-x86_64/asm/include/openssl/
H A Dssl.h2405 * Loads the CT log list from the specified file path.
2411 int SSL_CTX_set_ctlog_list_file(SSL_CTX *ctx, const char *path);
/third_party/node/deps/openssl/config/archs/BSD-x86_64/asm_avx2/include/openssl/
H A Dssl.h2405 * Loads the CT log list from the specified file path.
2411 int SSL_CTX_set_ctlog_list_file(SSL_CTX *ctx, const char *path);
/third_party/node/deps/openssl/config/archs/BSD-x86/asm_avx2/include/openssl/
H A Dssl.h2405 * Loads the CT log list from the specified file path.
2411 int SSL_CTX_set_ctlog_list_file(SSL_CTX *ctx, const char *path);
/third_party/node/deps/openssl/config/archs/BSD-x86/asm/include/openssl/
H A Dssl.h2405 * Loads the CT log list from the specified file path.
2411 int SSL_CTX_set_ctlog_list_file(SSL_CTX *ctx, const char *path);
/third_party/node/deps/openssl/config/archs/aix64-gcc-as/asm/include/openssl/
H A Dssl.h2405 * Loads the CT log list from the specified file path.
2411 int SSL_CTX_set_ctlog_list_file(SSL_CTX *ctx, const char *path);
/third_party/node/deps/openssl/config/archs/aix64-gcc-as/asm_avx2/include/openssl/
H A Dssl.h2405 * Loads the CT log list from the specified file path.
2411 int SSL_CTX_set_ctlog_list_file(SSL_CTX *ctx, const char *path);
/third_party/node/deps/openssl/config/archs/VC-WIN32/asm/include/openssl/
H A Dssl.h2405 * Loads the CT log list from the specified file path.
2411 int SSL_CTX_set_ctlog_list_file(SSL_CTX *ctx, const char *path);
/third_party/node/deps/openssl/config/archs/VC-WIN32/asm_avx2/include/openssl/
H A Dssl.h2405 * Loads the CT log list from the specified file path.
2411 int SSL_CTX_set_ctlog_list_file(SSL_CTX *ctx, const char *path);
/third_party/node/deps/openssl/config/archs/VC-WIN32/no-asm/include/openssl/
H A Dssl.h2405 * Loads the CT log list from the specified file path.
2411 int SSL_CTX_set_ctlog_list_file(SSL_CTX *ctx, const char *path);
/third_party/node/deps/openssl/config/archs/VC-WIN64-ARM/no-asm/include/openssl/
H A Dssl.h2405 * Loads the CT log list from the specified file path.
2411 int SSL_CTX_set_ctlog_list_file(SSL_CTX *ctx, const char *path);

Completed in 176 milliseconds

1...<<1471147214731474147514761477147814791480>>...1518