Home
last modified time | relevance | path

Searched refs:total_shards (Results 1 – 25 of 504) sorted by relevance

12345678910>>...21

/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/catapult/telemetry/telemetry/testing/
H A Drun_browser_tests.py57 def _TestIndicesForShard(total_shards, shard_index, num_tests): argument
65 return range(shard_index, num_tests, total_shards)
96 def _SplitShardsByTime(test_cases, total_shards, test_times, argument
100 for i in xrange(total_shards):
117 for i in xrange(total_shards):
133 total_shards, shard_index, test_times, debug_shard_distributions, argument
159 total_shards, shard_index, len(test_cases))
162 for i in xrange(total_shards):
164 total_shards, i, len(test_cases))
299 total_shards=options.total_shards, shard_index=options.shard_index,
[all …]
H A Dbrowser_test_runner_unittest.py395 def shardingRangeTestHelper(self, total_shards, num_tests): argument
397 for shard_index in xrange(0, total_shards):
399 total_shards, shard_index, num_tests))
421 for total_shards in xrange(1, 20):
423 self.shardingRangeTestHelper(total_shards, 101)
426 for total_shards in xrange(1, 6):
427 self.shardingRangeTestHelper(total_shards, 8)
434 def BaseShardingTest(self, total_shards, shard_index, failures, successes, argument
461 '--total-shards=%d' % total_shards,
/dports/www/chromium-legacy/chromium-88.0.4324.182/ios/build/bots/scripts/
H A Dshard_util.py164 def balance_into_sublists(test_counts, total_shards): argument
182 shards = [Shard() for i in range(total_shards)]
195 def shard_test_cases(args, shard_index, total_shards): argument
217 total_shards = int(total_shards)
219 sublists = balance_into_sublists(test_counts, total_shards)
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/build/android/pylib/local/device/
H A Dlocal_device_test_run.py44 def __init__(self, shard_index, total_shards): argument
47 % (shard_index, total_shards))
232 def _ApplyExternalSharding(self, tests, shard_index, total_shards): argument
234 shard_index, total_shards)
236 if total_shards < 0 or shard_index < 0 or total_shards <= shard_index:
237 raise InvalidShardingSettings(shard_index, total_shards)
241 if hash(self._GetUniqueTestName(t)) % total_shards == shard_index]
/dports/www/chromium-legacy/chromium-88.0.4324.182/build/android/pylib/local/device/
H A Dlocal_device_test_run.py44 def __init__(self, shard_index, total_shards): argument
47 % (shard_index, total_shards))
236 def _ApplyExternalSharding(self, tests, shard_index, total_shards): argument
238 shard_index, total_shards)
240 if total_shards < 0 or shard_index < 0 or total_shards <= shard_index:
241 raise InvalidShardingSettings(shard_index, total_shards)
246 total_shards == shard_index):
/dports/www/firefox/firefox-99.0/third_party/libwebrtc/build/android/pylib/local/device/
H A Dlocal_device_test_run.py44 def __init__(self, shard_index, total_shards): argument
47 % (shard_index, total_shards))
235 def _ApplyExternalSharding(self, tests, shard_index, total_shards): argument
237 shard_index, total_shards)
239 if total_shards < 0 or shard_index < 0 or total_shards <= shard_index:
240 raise InvalidShardingSettings(shard_index, total_shards)
245 total_shards == shard_index):
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/testing/scripts/
H A Drun_isolated_script_test.py69 def generate_sharding_args(self, total_shards, shard_index): argument
71 del total_shards, shard_index # unused
96 def generate_sharding_args(self, total_shards, shard_index): argument
98 del total_shards, shard_index # unused
H A Dgpu_integration_test_adapter.py20 def generate_sharding_args(self, total_shards, shard_index): argument
21 return ['--total-shards=%d' % total_shards,
H A Drun_telemetry_as_googletest.py50 def generate_sharding_args(self, total_shards, shard_index): argument
51 return ['--total-shards=%d' % total_shards,
/dports/www/chromium-legacy/chromium-88.0.4324.182/testing/scripts/
H A Drun_isolated_script_test.py70 def generate_sharding_args(self, total_shards, shard_index): argument
72 del total_shards, shard_index # unused
97 def generate_sharding_args(self, total_shards, shard_index): argument
99 del total_shards, shard_index # unused
H A Dgpu_integration_test_adapter.py20 def generate_sharding_args(self, total_shards, shard_index): argument
21 return ['--total-shards=%d' % total_shards,
H A Drun_telemetry_as_googletest.py50 def generate_sharding_args(self, total_shards, shard_index): argument
51 return ['--total-shards=%d' % total_shards,
/dports/lang/v8/v8-9.6.180.12/build/android/pylib/local/device/
H A Dlocal_device_test_run.py47 def __init__(self, shard_index, total_shards): argument
50 % (shard_index, total_shards))
246 def _ApplyExternalSharding(self, tests, shard_index, total_shards): argument
248 shard_index, total_shards)
250 if total_shards < 0 or shard_index < 0 or total_shards <= shard_index:
251 raise InvalidShardingSettings(shard_index, total_shards)
260 partitioned_tests = self._PartitionTests(grouped_tests, total_shards,
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/test/chromedriver/test/
H A Drun_webdriver_tests.py47 def __init__(self, total_shards, shard_index): argument
48 self.total_shards = total_shards
58 if self.total_shards == 1:
61 return (hash(test_path) % self.total_shards) == self.shard_index
247 total_shards = 1 variable
250 total_shards = int(env['GTEST_TOTAL_SHARDS']) variable
253 test_shard = TestShard(total_shards, shard_index)
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/blink/tools/blinkpy/web_tests/controllers/
H A Dweb_test_finder.py191 if self._options.shard_index is None and self._options.total_shards is None:
196 if self._options.total_shards is None:
198 if self._options.shard_index >= self._options.total_shards:
200 self._options.shard_index, self._options.total_shards))
202 … return self._split_into_chunks(test_names, self._options.shard_index, self._options.total_shards)
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/boringssl/src/third_party/googletest/test/
H A Dgoogletest-filter-unittest.py220 def RunWithSharding(total_shards, shard_index, command): argument
224 TOTAL_SHARDS_ENV_VAR: str(total_shards)}
292 def RunAndVerifyWithSharding(self, gtest_filter, total_shards, tests_to_run, argument
321 for i in range(0, total_shards):
322 (tests_run, exit_code) = RunWithSharding(total_shards, i, args)
/dports/multimedia/libgav1/libgav1-0.17.0/third_party/googletest/googletest/test/
H A Dgoogletest-filter-unittest.py220 def RunWithSharding(total_shards, shard_index, command): argument
224 TOTAL_SHARDS_ENV_VAR: str(total_shards)}
292 def RunAndVerifyWithSharding(self, gtest_filter, total_shards, tests_to_run, argument
321 for i in range(0, total_shards):
322 (tests_run, exit_code) = RunWithSharding(total_shards, i, args)
/dports/devel/string_theory/string_theory-3.4/test/gtest-1.10.0/test/
H A Dgoogletest-filter-unittest.py220 def RunWithSharding(total_shards, shard_index, command): argument
224 TOTAL_SHARDS_ENV_VAR: str(total_shards)}
292 def RunAndVerifyWithSharding(self, gtest_filter, total_shards, tests_to_run, argument
321 for i in range(0, total_shards):
322 (tests_run, exit_code) = RunWithSharding(total_shards, i, args)
/dports/science/ALPSCore/ALPSCore-2.2.0/common/deps/gtest-1.7.0/test/
H A Dgtest_filter_unittest.py215 def RunWithSharding(total_shards, shard_index, command): argument
219 TOTAL_SHARDS_ENV_VAR: str(total_shards)}
287 def RunAndVerifyWithSharding(self, gtest_filter, total_shards, tests_to_run, argument
315 for i in range(0, total_shards):
316 (tests_run, exit_code) = RunWithSharding(total_shards, i, args)
/dports/misc/adios2/ADIOS2-2.7.1/thirdparty/GTest/googletest/googletest/test/
H A Dgoogletest-filter-unittest.py220 def RunWithSharding(total_shards, shard_index, command): argument
224 TOTAL_SHARDS_ENV_VAR: str(total_shards)}
292 def RunAndVerifyWithSharding(self, gtest_filter, total_shards, tests_to_run, argument
321 for i in range(0, total_shards):
322 (tests_run, exit_code) = RunWithSharding(total_shards, i, args)
/dports/games/leela-zero/leela-zero-0.17/gtest/googletest/test/
H A Dgtest_filter_unittest.py219 def RunWithSharding(total_shards, shard_index, command): argument
223 TOTAL_SHARDS_ENV_VAR: str(total_shards)}
291 def RunAndVerifyWithSharding(self, gtest_filter, total_shards, tests_to_run, argument
320 for i in range(0, total_shards):
321 (tests_run, exit_code) = RunWithSharding(total_shards, i, args)
/dports/multimedia/gstreamer1-plugins-svt-av1/SVT-AV1-3971c982311d49f9355dc8dccdcf8d21b70fa624/third_party/googletest/test/
H A Dgoogletest-filter-unittest.py217 def RunWithSharding(total_shards, shard_index, command): argument
221 TOTAL_SHARDS_ENV_VAR: str(total_shards)}
289 def RunAndVerifyWithSharding(self, gtest_filter, total_shards, tests_to_run, argument
318 for i in range(0, total_shards):
319 (tests_run, exit_code) = RunWithSharding(total_shards, i, args)
/dports/math/pdal/PDAL-2.3.0/vendor/gtest/test/
H A Dgoogletest-filter-unittest.py220 def RunWithSharding(total_shards, shard_index, command): argument
224 TOTAL_SHARDS_ENV_VAR: str(total_shards)}
292 def RunAndVerifyWithSharding(self, gtest_filter, total_shards, tests_to_run, argument
321 for i in range(0, total_shards):
322 (tests_run, exit_code) = RunWithSharding(total_shards, i, args)
/dports/www/firefox-esr/firefox-91.8.0/security/nss/gtests/google_test/gtest/test/
H A Dgoogletest-filter-unittest.py220 def RunWithSharding(total_shards, shard_index, command): argument
224 TOTAL_SHARDS_ENV_VAR: str(total_shards)}
292 def RunAndVerifyWithSharding(self, gtest_filter, total_shards, tests_to_run, argument
321 for i in range(0, total_shards):
322 (tests_run, exit_code) = RunWithSharding(total_shards, i, args)
/dports/net/flower/flower-0.10/contrib/googletest-release-1.8.0/googletest/test/
H A Dgtest_filter_unittest.py218 def RunWithSharding(total_shards, shard_index, command): argument
222 TOTAL_SHARDS_ENV_VAR: str(total_shards)}
290 def RunAndVerifyWithSharding(self, gtest_filter, total_shards, tests_to_run, argument
318 for i in range(0, total_shards):
319 (tests_run, exit_code) = RunWithSharding(total_shards, i, args)

12345678910>>...21