/third_party/typescript/src/testRunner/ |
D | runner.ts | 3 export let runners: RunnerBase[] = []; variable 7 function runTests(runners: RunnerBase[]) { 9 for (const runner of runners) { 83 runners?: string[]; property 140 const runnerConfig = testConfig.runners || testConfig.test; 142 if (testConfig.runners) { 159 runners.push(new CompilerBaselineRunner(CompilerTestType.Conformance)); 160 runners.push(new CompilerBaselineRunner(CompilerTestType.Regressions)); 163 runners.push(new CompilerBaselineRunner(CompilerTestType.OH)); 166 runners.push(new CompilerBaselineRunner(CompilerTestType.Conformance)); [all …]
|
/third_party/flutter/engine/flutter/lib/ui/painting/ |
D | image_decoder_unittests.cc | 108 TaskRunners runners(GetCurrentTestName(), // label in TEST_F() local 117 runners.GetIOTaskRunner()->PostTask([&]() { in TEST_F() 118 TestIOManager manager(runners.GetIOTaskRunner()); in TEST_F() 119 ImageDecoder decoder(std::move(runners), loop->GetTaskRunner(), in TEST_F() 128 TaskRunners runners(GetCurrentTestName(), // label in TEST_F() local 137 TestIOManager manager(runners.GetIOTaskRunner()); in TEST_F() 138 ImageDecoder decoder(runners, loop->GetTaskRunner(), in TEST_F() 147 ASSERT_TRUE(runners.GetUITaskRunner()->RunsTasksOnCurrentThread()); in TEST_F() 158 TaskRunners runners(GetCurrentTestName(), // label in TEST_F() local 172 runners, loop->GetTaskRunner(), io_manager->GetWeakIOManager()); in TEST_F() [all …]
|
/third_party/typescript/scripts/build/ |
D | tests.js | 32 const runners = cmdLineOptions.runners; 67 …if (tests || runners || light || testTimeout || taskConfigsFolder || keepFailed || shards || shard… 68 …writeTestConfigFile(tests, runners, light, taskConfigsFolder, workerCount, stackTraceLimit, testTi… 184 function writeTestConfigFile(tests, runners, light, taskConfigsFolder, workerCount, stackTraceLimit… argument 187 runners: runners ? runners.split(",") : undefined, property
|
D | options.js | 30 runners: process.env.runners || process.env.runner || process.env.ru,
|
/third_party/node/tools/ |
D | build-addons.js | 52 const runners = []; 54 runners.push(runner(directoryQueue)); 55 return Promise.all(runners);
|
/third_party/grpc/src/python/grpcio_tests/tests/stress/ |
D | client.py | 123 runners = [] 138 runners.append(runner) 140 for runner in runners: 152 for runner in runners:
|
/third_party/benchmark/src/ |
D | benchmark.cc | 316 std::vector<internal::BenchmarkRunner> runners; in RunBenchmarks() local 317 runners.reserve(benchmarks.size()); in RunBenchmarks() 323 runners.emplace_back(benchmark, reports_for_family); in RunBenchmarks() 324 int num_repeats_of_this_instance = runners.back().GetNumRepeats(); in RunBenchmarks() 329 assert(runners.size() == benchmarks.size() && "Unexpected runner count."); in RunBenchmarks() 333 for (size_t runner_index = 0, num_runners = runners.size(); in RunBenchmarks() 335 const internal::BenchmarkRunner& runner = runners[runner_index]; in RunBenchmarks() 349 internal::BenchmarkRunner& runner = runners[repetition_index]; in RunBenchmarks()
|
/third_party/flutter/engine/flutter/shell/platform/android/test/io/flutter/ |
D | FlutterTestSuite.java | 8 import org.junit.runners.Suite; 9 import org.junit.runners.Suite.SuiteClasses;
|
/third_party/node/test/fixtures/source-map/ |
D | tabs.coffee | 21 race = (winner, runners...) -> 22 print winner, runners
|
D | tabs.js | 33 race = function(winner, ...runners) { argument 34 return print(winner, runners);
|
/third_party/python/Lib/asyncio/ |
D | __init__.py | 15 from .runners import * 30 runners.__all__ +
|
/third_party/unity/examples/example_3/ |
D | readme.txt | 11 Unity's advanced features (automatically creating test runners, fancy summaries, etc.) 12 Without ruby, you have to maintain your own test runners. Do that for a while and you'll learn
|
/third_party/cJSON/tests/unity/examples/example_3/ |
D | readme.txt | 11 Unity's advanced features (automatically creating test runners, fancy summaries, etc.) 12 Without ruby, you have to maintain your own test runners. Do that for a while and you'll learn
|
/third_party/ejdb/src/bindings/ejdb2_dart/example/ |
D | isolate.dart | 10 final runners = Iterable<int>.generate(5).map((int index) { 13 await Future.wait(runners.map((Runner r) => r.finish));
|
/third_party/flutter/engine/flutter/shell/platform/fuchsia/flutter/ |
D | engine.cc | 26 const flutter::TaskRunners& runners) { in UpdateNativeThreadLabelNames() argument 36 set_thread_name(runners.GetPlatformTaskRunner(), label, ".platform"); in UpdateNativeThreadLabelNames() 37 set_thread_name(runners.GetUITaskRunner(), label, ".ui"); in UpdateNativeThreadLabelNames() 38 set_thread_name(runners.GetGPUTaskRunner(), label, ".gpu"); in UpdateNativeThreadLabelNames() 39 set_thread_name(runners.GetIOTaskRunner(), label, ".io"); in UpdateNativeThreadLabelNames()
|
/third_party/flutter/engine/flutter/runtime/ |
D | dart_lifecycle_unittests.cc | 51 TaskRunners runners("io.flutter.test", task_runner, task_runner, task_runner, in CreateAndRunRootIsolate() local 57 runners, // task_runners in CreateAndRunRootIsolate()
|
/third_party/mesa3d/docs/ci/ |
D | docker.rst | 5 VK-GL-CTS, on the shared GitLab runners provided by `freedesktop 20 have tags, so we can have DUT-specific jobs that only run on runners 74 ``runners.docker`` section of /etc/gitlab-runner/config.toml.
|
/third_party/grpc/tools/fuzzer/ |
D | build_and_run_fuzzer.sh | 23 . tools/fuzzer/runners/$1.sh
|
/third_party/unity/examples/example_2/ |
D | readme.txt | 5 together. Using the test fixture also makes writing test runners much easier.
|
/third_party/cJSON/tests/unity/examples/example_2/ |
D | readme.txt | 5 together. Using the test fixture also makes writing test runners much easier.
|
/third_party/protobuf/java/core/src/test/java/com/google/protobuf/ |
D | Proto3LiteSchemaTest.java | 35 import org.junit.runners.JUnit4;
|
D | Proto2LiteSchemaTest.java | 35 import org.junit.runners.JUnit4;
|
D | Proto2SchemaTest.java | 35 import org.junit.runners.JUnit4;
|
D | Proto3SchemaTest.java | 35 import org.junit.runners.JUnit4;
|
/third_party/ejdb/src/bindings/ejdb2_react_native/tests/android/app/src/androidTest/java/com/test/ |
D | DetoxTest.java | 9 import androidx.test.ext.junit.runners.AndroidJUnit4;
|