/external/angle/infra/specs/ |
D | test_suites.pyl | 59 # 'shards': 4, 95 'shards': 4, 104 'shards': 2, 153 # 'shards': 4, 194 'shards': 4, 218 'shards': 2, 236 'shards': 2, 254 'shards': 20, 263 'shards': 2, 283 'shards': 1, [all …]
|
/external/autotest/client/site_tests/graphics_dEQP/ |
D | generate_controlfiles.py | 44 …Test('bvt', Suite.daily, shards=1, hasty=False, time='FAST', tag='bvt', … 45 …Test('dEQP-GLES2-master', Suite.daily, shards=1, hasty=False, time='LENGTHY', tag='gles2-ma… 51 …Test('dEQP-GLES3.accuracy', Suite.none, shards=1, hasty=False, time='FAST', tag=None, … 52 …Test('dEQP-GLES3-master', Suite.daily, shards=1, hasty=False, time='LENGTHY', tag='gles3-ma… 54 …Test('dEQP-GLES3.performance', Suite.none, shards=1, hasty=False, time='LONG', tag=None, … 56 …Test('dEQP-GLES31-master', Suite.daily, shards=1, hasty=False, time='LENGTHY', tag='gles31-m… 58 …Test('dEQP-VK-master', Suite.daily, shards=1, hasty=True, time='LENGTHY', tag='vk-maste… 120 if test.shards > 1: 139 for shard in xrange(0, test.shards): 150 shards=test.shards,
|
/external/rust/crates/crossbeam-utils/src/sync/ |
D | sharded_lock.rs | 78 shards: Box<[CachePadded<Shard>]>, field 102 shards: (0..NUM_SHARDS) in new() 168 self.shards[0].lock.is_poisoned() in is_poisoned() 228 let shard_index = current_index & (self.shards.len() - 1); in try_read() 230 match self.shards[shard_index].lock.try_read() { in try_read() 288 let shard_index = current_index & (self.shards.len() - 1); in read() 290 match self.shards[shard_index].lock.read() { in read() 333 for (i, shard) in self.shards.iter().enumerate() { in try_write() 356 for shard in self.shards[0..i].iter().rev() { in try_write() 412 for shard in self.shards.iter() { in write() [all …]
|
/external/libtextclassifier/native/utils/grammar/ |
D | rules-utils.cc | 42 std::vector<const grammar::RulesSet_::Rules*> shards; in SelectLocaleMatchingShards() local 44 return shards; in SelectLocaleMatchingShards() 51 shards.push_back(rules->rules()->Get(i)); in SelectLocaleMatchingShards() 54 return shards; in SelectLocaleMatchingShards()
|
/external/boringssl/src/util/ |
D | all_tests.go | 366 var shards []test 374 shard.shard = len(shards) 375 shards = append(shards, shard) 378 for i := range shards { 379 shards[i].numShards = len(shards) 382 return shards, nil 428 shards, err := test.getGTestShards() 433 for _, shard := range shards {
|
/external/llvm-project/mlir/lib/Support/ |
D | StorageUniquer.cpp | 108 : shards(new std::atomic<Shard *>[numShards]), numShards(numShards) { in ParametricStorageUniquer() 112 shards[i].store(nullptr, std::memory_order_relaxed); in ParametricStorageUniquer() 117 if (Shard *shard = shards[i].load()) in ~ParametricStorageUniquer() 169 Shard *shard = shards[shardNum].load(std::memory_order_acquire); in getShard() 175 if (shards[shardNum].compare_exchange_strong(shard, newShard)) in getShard() 186 if (Shard *shard = shards[i].load(std::memory_order_acquire)) { in getShardFor() 202 std::unique_ptr<std::atomic<Shard *>[]> shards; member in __anonb14bee2a0111::ParametricStorageUniquer
|
/external/autotest/site_utils/ |
D | rpc_flight_recorder.py | 49 def update_shards(shards, shards_lock, period=600, stop_event=None): argument 64 current_shards = set(shards) 70 shards.remove(s) 73 shards.extend(add_shards) 87 def poll_rpc_servers(servers, servers_lock, shards=None, period=60, argument 102 all_servers = set(servers).union(shards)
|
/external/llvm-project/llvm/utils/lit/lit/ |
D | main.py | 88 (run, shards) = opts.shard 89 selected_tests = filter_by_shard(selected_tests, run, shards, lit_config) 175 def filter_by_shard(tests, run, shards, lit_config): argument 176 test_ixs = range(run - 1, len(tests), shards) 188 run=run, shards=shards, sel_tests=len(selected_tests),
|
/external/turbine/javatests/com/google/turbine/lower/ |
D | LowerIntegrationTest.java | 331 int shards = Integer.parseInt(testTotalShards); in parameters() local 332 return Lists.partition(tests, (tests.size() + shards - 1) / shards).get(index); in parameters()
|
/external/tensorflow/tensorflow/core/kernels/ |
D | record_yielder.cc | 134 std::vector<Shard> shards(N); in MainLoop() local 136 Shard* shard = &shards[i]; in MainLoop() 144 shards[i].done.WaitForNotification(); in MainLoop() 145 s.Update(shards[i].status); in MainLoop()
|
/external/autotest/server/ |
D | system_utils.py | 35 shards = config.get_config_value( 37 return [hostname.strip() for hostname in shards.split(',')]
|
/external/guava/android/guava-tests/test/com/google/common/hash/ |
D | HashingTest.java | 177 for (int shards = 1; shards <= 100000; shards++) { in checkConsistentHashCorrectness() 178 int b = Hashing.consistentHash(hashCode, shards); in checkConsistentHashCorrectness() 180 assertEquals(shards - 1, b); in checkConsistentHashCorrectness() 200 for (int shards = 2; shards <= MAX_SHARDS; shards++) { in countRemaps() 201 int chosen = Hashing.consistentHash(h, shards); in countRemaps() 203 map.incrementAndGet(shards); in countRemaps()
|
/external/guava/guava-tests/test/com/google/common/hash/ |
D | HashingTest.java | 177 for (int shards = 1; shards <= 100000; shards++) { in checkConsistentHashCorrectness() 178 int b = Hashing.consistentHash(hashCode, shards); in checkConsistentHashCorrectness() 180 assertEquals(shards - 1, b); in checkConsistentHashCorrectness() 200 for (int shards = 2; shards <= MAX_SHARDS; shards++) { in countRemaps() 201 int chosen = Hashing.consistentHash(h, shards); in countRemaps() 203 map.incrementAndGet(shards); in countRemaps()
|
/external/angle/scripts/ |
D | trigger.py | 145 if args.shards > 1: 146 for i in range(args.shards): 150 'GTEST_TOTAL_SHARDS=%d' % args.shards,
|
/external/tensorflow/tensorflow/core/api_def/base_api/ |
D | api_def_AutoShardDataset.pbtxt | 22 summary: "Creates a dataset that shards the input dataset." 24 Creates a dataset that shards the input dataset by num_workers, returning a
|
D | api_def_ExperimentalAutoShardDataset.pbtxt | 22 summary: "Creates a dataset that shards the input dataset." 24 Creates a dataset that shards the input dataset by num_workers, returning a
|
D | api_def_ShardDataset.pbtxt | 7 An integer representing the number of shards operating in parallel.
|
D | api_def_SnapshotDatasetV2.pbtxt | 25 Optional. A function to control how to read data from snapshot shards.
|
/external/autotest/tko/ |
D | retrieve_logs.cgi | 131 shards = system_utils.get_shards() 135 tpool_args += _get_tpool_args(shards, job_path, True, host_set)
|
/external/toolchain-utils/go/patch/go-1.10.3/ |
D | go2.patch | 14 shard = flag.Int("shard", 0, "shard index to run. Only applicable if -shards is non-zero.") 15 …shards = flag.Int("shards", 0, "number of shards. If 0, all tests are run. This is used by the con…
|
/external/protobuf/java/core/src/test/java/com/google/protobuf/ |
D | IsValidUtf8TestUtil.java | 220 List<Shard> shards = new ArrayList<Shard>(numShards); 225 shards.add(new Shard(i, increment * i, increment * (i + 1), expected[i])); 227 return shards;
|
/external/toolchain-utils/go/patch/go-1.11.2/ |
D | go2.patch | 13 shard = flag.Int("shard", 0, "shard index to run. Only applicable if -shards is non-zero.") 14 …shards = flag.Int("shards", 0, "number of shards. If 0, all tests are run. This is used by the con…
|
/external/toolchain-utils/go/patch/go-1.10.2/ |
D | go2.patch | 19 shard = flag.Int("shard", 0, "shard index to run. Only applicable if -shards is non-zero.") 20 …shards = flag.Int("shards", 0, "number of shards. If 0, all tests are run. This is used by the con…
|
/external/bazelbuild-rules_android/rules/flags/ |
D | flag_defs.bzl | 35 description = "Number of dex shards to use for mobile-install.",
|
/external/tensorflow/tensorflow/core/platform/default/ |
D | distribute.bzl | 36 shard_count: number of shards to split the tests across.
|