Home
last modified time | relevance | path

Searched refs:runners (Results 1 – 25 of 549) sorted by relevance

12345678910>>...22

/third_party/typescript/src/testRunner/
Drunner.ts3 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/
Dimage_decoder_unittests.cc108 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/
Dtests.js32 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
Doptions.js30 runners: process.env.runners || process.env.runner || process.env.ru,
/third_party/node/tools/
Dbuild-addons.js52 const runners = [];
54 runners.push(runner(directoryQueue));
55 return Promise.all(runners);
/third_party/grpc/src/python/grpcio_tests/tests/stress/
Dclient.py123 runners = []
138 runners.append(runner)
140 for runner in runners:
152 for runner in runners:
/third_party/benchmark/src/
Dbenchmark.cc316 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/
DFlutterTestSuite.java8 import org.junit.runners.Suite;
9 import org.junit.runners.Suite.SuiteClasses;
/third_party/node/test/fixtures/source-map/
Dtabs.coffee21 race = (winner, runners...) ->
22 print winner, runners
Dtabs.js33 race = function(winner, ...runners) { argument
34 return print(winner, runners);
/third_party/python/Lib/asyncio/
D__init__.py15 from .runners import *
30 runners.__all__ +
/third_party/unity/examples/example_3/
Dreadme.txt11 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/
Dreadme.txt11 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/
Disolate.dart10 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/
Dengine.cc26 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/
Ddart_lifecycle_unittests.cc51 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/
Ddocker.rst5 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/
Dbuild_and_run_fuzzer.sh23 . tools/fuzzer/runners/$1.sh
/third_party/unity/examples/example_2/
Dreadme.txt5 together. Using the test fixture also makes writing test runners much easier.
/third_party/cJSON/tests/unity/examples/example_2/
Dreadme.txt5 together. Using the test fixture also makes writing test runners much easier.
/third_party/protobuf/java/core/src/test/java/com/google/protobuf/
DProto3LiteSchemaTest.java35 import org.junit.runners.JUnit4;
DProto2LiteSchemaTest.java35 import org.junit.runners.JUnit4;
DProto2SchemaTest.java35 import org.junit.runners.JUnit4;
DProto3SchemaTest.java35 import org.junit.runners.JUnit4;
/third_party/ejdb/src/bindings/ejdb2_react_native/tests/android/app/src/androidTest/java/com/test/
DDetoxTest.java9 import androidx.test.ext.junit.runners.AndroidJUnit4;

12345678910>>...22