/third_party/jerryscript/tests/jerry/es2015/ |
D | promise-race-iterator.js | 31 Promise.race({[Symbol.iterator]() { return {get next() { throw 5; }}} 37 Promise.race({ [Symbol.iterator] () { return { next () { return { get value () { throw 5 }}}}} 43 Promise.race({ [Symbol.iterator] () { return { next () { return { get done () { throw 5 }}}}} 49 Promise.race({ get [Symbol.iterator] () { throw 5 } 54 var fulfills = Promise.race(createIterable([ 58 var rejects = Promise.race(createIterable([ 68 Promise.race(createIterable([1,2,3], {'return': function () { closed = true; }}));
|
D | regression-test-issue-3409.js | 16 Promise.race([a]).then(function() {[] = []}); 17 Promise.race().then(function() {}, function() { throw "'this' had incorrect value!"}) 21 Promise.race([a, b]).then(function(x) { 24 Promise.race([b, a]).then(function(x) {}, function(x) {}); 25 Promise.race([, b, a]).then(function(x) {}, function(x) {}); 26 Promise.race(a).then(function(x) {}, function(x) {
|
D | regression-test-issue-3866.js | 18 Promise.race([a, b]); 19 Promise.race([b, a]); 20 Promise.race([, b, a]); 21 Promise.race().then(function() {}, function() {
|
D | regression-test-issue-3390.js | 17 Promise.race( [ a , b ] ).then ( function ( x ) { var a , b ; [ a , b ] = [ 1 , 2 ]; String( a === … 18 Promise.race( [ b , a ] ).then ( function ( x ) { String ( false ) ;}, function ( x ) { } ); 19 Promise.race( [ , b , a ] ).then ( function ( x ) { String ( x === undefined ) ; }, function ( x ) … 20 Promise.race( a ).then ( function ( x ) { String ( false ); }, function ( x ) { String ( x.name ===…
|
D | regression-test-issue-3411.js | 16 Promise.race([a]).then(function() {[] = []}); 17 Promise.race().then(function() {}, function() { throw "'this' had incorrect value!"})
|
D | regression-test-issue-2468.js | 16 Promise.race([]);
|
D | regression-test-issue-2486.js | 17 Promise.race([, [,] % {}]).then();
|
D | regression-test-issue-3478.js | 17 Promise.race([]);
|
D | regression-test-issue-1997.js | 18 Promise.race([a]).then();
|
/third_party/rust/crates/once_cell/ |
D | CHANGELOG.md | 9 - Add `race::OnceRef` for storing a `&'a T`. 58 - Added an `atomic-polyfill` optional dependency to compile `race` on platforms without atomics 70 - Fix `race::OnceBox<T>` to also impl `Default` even if `T` doesn't impl `Default`. 74 - Hide the `race` module behind (default) `race` feature. 75 Turns out that adding `race` by default was a breaking change on some platforms without atomics. 77 Technically, this is a breaking change for those who use `race` with `no_default_features`. 78 Given that the `race` module itself only several days old, the breakage is deemed acceptable. 83 - Stabilize `once_cell::race` module for "first one wins" no_std-compatible initialization flavor. 94 - document `once_cell::race` module. 100 - add new `once_cell::race` module for "first one wins" no_std-compatible initialization flavor.
|
D | Cargo.toml | 41 # Enables `once_cell::race::OnceBox` type. 42 alloc = ["race"] 44 # Enables `once_cell::race` module. 45 race = [] 52 # Uses `critical-section` to implement `sync` and `race` modules. in
|
/third_party/jerryscript/tests/jerry-test-suite/es2015/25/25.04/25.04.04/ |
D | 25.04.04-004.js | 19 Promise.race([a, b]).then(function(x) 27 Promise.race([b, a]).then(function(x) 35 Promise.race([ ,b, a]).then(function(x) 43 Promise.race(a).then(function(x)
|
/third_party/libabigail/tests/ |
D | test-valgrind-suppressions.supp | 45 suppress helgrind race report from elfutils's elf_version function. 51 suppress helgrind race report from elfutils's elf_begin function. 57 suppress helgrind another race report from elfutils. 69 suppress helgrind race report from inserting into an ostream
|
/third_party/node/test/fixtures/source-map/ |
D | tabs.js | 4 var cubes, list, math, num, number, opposite, race, square; 33 race = function(winner, ...runners) { function
|
/third_party/typescript/tests/baselines/reference/ |
D | jsdocTypeFromChainedAssignment3.types | 2 …ectAll = exports.reflect = exports.reduceRight = exports.reduce = exports.race = exports.queue = e… 3 …ectAll = exports.reflect = exports.reduceRight = exports.reduce = exports.race = exports.queue = e… 7 …ectAll = exports.reflect = exports.reduceRight = exports.reduce = exports.race = exports.queue = e… 11 …ectAll = exports.reflect = exports.reduceRight = exports.reduce = exports.race = exports.queue = e… 15 …ectAll = exports.reflect = exports.reduceRight = exports.reduce = exports.race = exports.queue = e… 19 …ectAll = exports.reflect = exports.reduceRight = exports.reduce = exports.race = exports.queue = e… 23 …ectAll = exports.reflect = exports.reduceRight = exports.reduce = exports.race = exports.queue = e… 27 …ectAll = exports.reflect = exports.reduceRight = exports.reduce = exports.race = exports.queue = e… 31 …ectAll = exports.reflect = exports.reduceRight = exports.reduce = exports.race = exports.queue = e… 35 …ectAll = exports.reflect = exports.reduceRight = exports.reduce = exports.race = exports.queue = e… [all …]
|
/third_party/glib/patch/ |
D | backport-tests-Add-a-test-for-GFileMonitor-deadlocks.patch | 10 the race condition has been hit (other than by hitting a deadlock). 44 + file = g_file_get_child (fixture->tmp_dir, "race-file"); 68 + * give a second chance at hitting the race condition. */
|
/third_party/ltp/lib/newlib_tests/ |
D | tst_fuzzy_sync02.c | 59 struct race { struct 69 static const struct race races[] = { argument
|
D | tst_fuzzy_sync01.c | 88 struct race { struct 96 static const struct race races[] = { argument
|
/third_party/node/tools/ |
D | find-inactive-collaborators.mjs | 33 await Promise.race([errorHandler, Promise.resolve()]); 37 await Promise.race([errorHandler, Promise.resolve()]); 47 return Promise.race([errorHandler, Promise.resolve(returnValue)]);
|
D | find-inactive-tsc.mjs | 35 await Promise.race([errorHandler, Promise.resolve()]); 39 await Promise.race([errorHandler, Promise.resolve()]); 46 return Promise.race([errorHandler, Promise.resolve(returnValue)]);
|
/third_party/libunwind/ |
D | .gitignore | 49 tests/Lrs-race 55 tests/rs-race
|
/third_party/typescript/tests/cases/compiler/ |
D | bluebirdStaticThis.ts | 67 … static race<R>(dit: typeof Promise, values: Promise.Thenable<Promise.Thenable<R>[]>): Promise<R>; 68 static race<R>(dit: typeof Promise, values: Promise.Thenable<R[]>): Promise<R>; 69 static race<R>(dit: typeof Promise, values: Promise.Thenable<R>[]): Promise<R>; 70 static race<R>(dit: typeof Promise, values: R[]): Promise<R>;
|
/third_party/mesa3d/src/util/sha1/ |
D | README | 4 - Some libraries suffer from race condition and other issues. For example see 5 commit ade3108bb5b0 ("util: Fix race condition on libgcrypt initialization").
|
/third_party/jerryscript/tests/jerry/fail/ |
D | regression-test-issue-3410.js | 17 Promise.race([a]).then(function() {
|
/third_party/ltp/testcases/kernel/fs/racer/ |
D | fs_racer_dir_test.sh | 27 mkdir race/$dir
|