Home
last modified time | relevance | path

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

/external/autotest/client/site_tests/graphics_dEQP/
Dgenerate_controlfiles.py46 …Test('bvt', Suite.bvtcq, shards=1, hasty=False, time='FAST', tag='bvt', …
47 …Test('dEQP-GLES2-master', Suite.daily, shards=1, hasty=False, time='LENGTHY', tag='gles2-ma…
48 …Test('dEQP-GLES2-master', Suite.bvtpb, shards=10, hasty=True, time='FAST', tag='gles2-ma…
52 …Test('dEQP-GLES2.stress', Suite.daily, shards=1, hasty=False, time='LONG', tag='stress',…
53 …Test('dEQP-GLES3.accuracy', Suite.none, shards=1, hasty=False, time='FAST', tag=None, …
54 …Test('dEQP-GLES3-master', Suite.daily, shards=1, hasty=False, time='LENGTHY', tag='gles3-ma…
55 …Test('dEQP-GLES3-master', Suite.bvtpb, shards=10, hasty=True, time='FAST', tag='gles3-ma…
56 …Test('dEQP-GLES3.performance', Suite.none, shards=1, hasty=False, time='LONG', tag=None, …
58 …Test('dEQP-GLES3.stress', Suite.none, shards=1, hasty=False, time='LONG', tag=None, …
59 …Test('dEQP-GLES31-master', Suite.daily, shards=1, hasty=False, time='LENGTHY', tag='gles31-m…
[all …]
/external/autotest/cli/
Dshard.py40 return self.shards
54 if self.shards:
55 filters['hostname__in'] = self.shards
118 target_shard = self.shards[0]
159 self.data['hostname'] = self.shards[0]
/external/autotest/site_utils/
Drpc_flight_recorder.py48 def update_shards(shards, shards_lock, period=600, stop_event=None): argument
63 current_shards = set(shards)
69 shards.remove(s)
72 shards.extend(add_shards)
86 def poll_rpc_servers(servers, servers_lock, shards=None, period=60, argument
101 all_servers = set(servers).union(shards)
/external/skia/infra/bots/recipe_modules/swarming/
Dapi.py345 def task(self, title, isolated_hash, ignore_task_failure=False, shards=1, argument
406 shards=shards,
453 '--shards', str(task.shards),
532 for index in xrange(task.shards):
658 self.test_api.canned_summary_output(task.shards) +
777 if task.shards == 1:
780 subtasks = [':%d:%d' % (task.shards, i) for i in range(task.shards)]
797 env, priority, shards, buildername, buildnumber, expiration, argument
873 self.shards = shards
Dtest_api.py22 self, shards=1, failure=False, internal_failure=False): argument
54 } for i in xrange(shards)
/external/guava/guava-tests/test/com/google/common/hash/
DHashingTest.java166 for (int shards = 1; shards <= 100000; shards++) { in checkConsistentHashCorrectness()
167 int b = Hashing.consistentHash(hashCode, shards); in checkConsistentHashCorrectness()
169 assertEquals(shards - 1, b); in checkConsistentHashCorrectness()
189 for (int shards = 2; shards <= MAX_SHARDS; shards++) { in countRemaps()
190 int chosen = Hashing.consistentHash(h, shards); in countRemaps()
192 map.incrementAndGet(shards); in countRemaps()
/external/boringssl/src/util/
Dall_tests.go374 var shards []test
382 shards = append(shards, shard)
385 return shards, nil
418 shards, err := test.getGTestShards()
423 for _, shard := range shards {
/external/autotest/server/
Dsystem_utils.py38 shards = config.get_config_value(
40 return [hostname.strip() for hostname in shards.split(',')]
/external/libvpx/libvpx/tools/
Dall_builds.py52 shards = int(options["--shards"])
58 my_configs = filter(lambda x: x[1] % shards == shard, my_configs)
/external/skia/infra/bots/recipe_modules/skia_swarming/
Dapi.py209 shards = summary.get('shards')
210 if shards:
211 for shard in shards:
/external/toolchain-utils/go/patch/
Dgo2.patch14 shard = flag.Int("shard", 0, "shard index to run. Only applicable if -shards is non-zero.")
15shards = flag.Int("shards", 0, "number of shards. If 0, all tests are run. This is used by the con…
/external/autotest/tko/
Dretrieve_logs.cgi116 shards = system_utils.get_shards()
120 tpool_args += _get_tpool_args(shards, job_path, True, host_set)
/external/autotest/puppylab/
Dlab_manifest.py37 shards = ['board:stumpy'] variable
Dclusterctl154 if lab_manifest.shards:
155 board = lab_manifest.shards.pop()
/external/protobuf/java/core/src/test/java/com/google/protobuf/
DIsValidUtf8TestUtil.java212 List<Shard> shards = new ArrayList<Shard>(numShards);
217 shards.add(new Shard(i, increment * i, increment * (i + 1), expected[i]));
219 return shards;
/external/deqp/android/cts/runner/tests/src/com/drawelements/deqp/runner/
DDeqpTestRunnerTest.java1752 ArrayList<IRemoteTest> shards = (ArrayList<IRemoteTest>)runner.split(); in runShardedTest() local
1754 for (int shardIndex = 0; shardIndex < shards.size(); shardIndex++) { in runShardedTest()
1755 DeqpTestRunner shard = (DeqpTestRunner)shards.get(shardIndex); in runShardedTest()
1852 ArrayList<IRemoteTest> shards = (ArrayList<IRemoteTest>)runner.split(); in testSharding_empty() local
1854 assertNull(shards); in testSharding_empty()
2141 ArrayList<IRemoteTest> shards = (ArrayList<IRemoteTest>)deqpTest.split(); in testRuntimeHint_optionSetSharded() local
2144 ((IRuntimeHintProvider)shards.get(0)).getRuntimeHint()); in testRuntimeHint_optionSetSharded()
2147 ((IRuntimeHintProvider)shards.get(1)).getRuntimeHint()); in testRuntimeHint_optionSetSharded()
/external/skia/infra/bots/recipe_modules/swarming/examples/
Dfull.py103 task.shards = 2 if platform == 'linux' else 1
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
DTensorReduction.h275 MaxSizeVector<typename Self::CoeffReturnType> shards(numblocks, reducer.initialize());
279 &shards[i]);
292 reducer.reduce(shards[i], &finalShard);
/external/autotest/frontend/afe/
Drpc_interface.py1993 shards = models.Shard.query_objects(filter_data)
1994 serialized_shards = rpc_utils.prepare_rows_as_nested_dicts(shards, ())
1995 for serialized, shard in zip(serialized_shards, shards):
/external/googletest/googletest/docs/
DV1_5_AdvancedGuide.md2034 1. Allocate a number of machines (shards) to run the tests.
2035 …AL_SHARDS` environment variable to the total number of shards. It must be the same for all shards.
2036 …_SHARD_INDEX` environment variable to the index of the shard. Different shards must be assigned d…
2037 …n all shards. When Google Test sees the above two environment variables, it will select a subset …
2038 1. Wait for all shards to finish, then collect and report the results.
2064 across the shards, but here's one possible scenario:
DV1_7_AdvancedGuide.md2119 1. Allocate a number of machines (shards) to run the tests.
2120 …AL_SHARDS` environment variable to the total number of shards. It must be the same for all shards.
2121 …_SHARD_INDEX` environment variable to the index of the shard. Different shards must be assigned d…
2122 …n all shards. When Google Test sees the above two environment variables, it will select a subset …
2123 1. Wait for all shards to finish, then collect and report the results.
2149 across the shards, but here's one possible scenario:
DV1_6_AdvancedGuide.md2116 1. Allocate a number of machines (shards) to run the tests.
2117 …AL_SHARDS` environment variable to the total number of shards. It must be the same for all shards.
2118 …_SHARD_INDEX` environment variable to the index of the shard. Different shards must be assigned d…
2119 …n all shards. When Google Test sees the above two environment variables, it will select a subset …
2120 1. Wait for all shards to finish, then collect and report the results.
2146 across the shards, but here's one possible scenario:
DAdvancedGuide.md2120 1. Allocate a number of machines (shards) to run the tests.
2121 …AL_SHARDS` environment variable to the total number of shards. It must be the same for all shards.
2122 …_SHARD_INDEX` environment variable to the index of the shard. Different shards must be assigned d…
2123 …n all shards. When Google Test sees the above two environment variables, it will select a subset …
2124 1. Wait for all shards to finish, then collect and report the results.
2150 across the shards, but here's one possible scenario:
/external/autotest/
Dglobal_config.ini36 # rather than drones or shards.
/external/skia/dm/
DDM.cpp82 DEFINE_int32(shards, 1, "We're splitting source data into this many shards.");