/cts/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/testtype/ |
ModuleRepo.java | 208 public void initialize(int shards, File testsDir, Set<IAbi> abis, List<String> deviceTokens, 213 shards, testsDir.getAbsolutePath(), abis, deviceTokens, testArgs, moduleArgs, 216 mShards = shards; 305 mModulesPerShard = mModuleCount / shards; 306 if (mModuleCount % shards != 0) { 309 mSmallModulesPerShard = mSmallModules.size() / shards; 310 mMediumModulesPerShard = mMediumModules.size() / shards; 311 mLargeModulesPerShard = mLargeModules.size() / shards;
|
/external/chromium-trace/catapult/third_party/mapreduce/mapreduce/ |
input_readers.py | 253 # Maximum number of shards we'll create. 375 and assign those pieces to shards. 380 shard_count: number of shards to split. 429 shard_count: number of shards. 436 splits into requested shards, the returned list will contain KeyRanges 509 # We need to have as many shards as it was requested. Add some Nones. 724 # Artificially increase the number of shards to get a more even split. 725 # For example, if we are creating 7 shards for one week of data based on a 731 # spread across all shards. 770 # It's possible that we didn't split into enough shards eve [all...] |
control.py | 66 shard_count: number of shards to create.
|
status.py | 41 # - shard bar chart should color finished shards differently 344 "shards": job.mapreduce_spec.mapper.shard_count, 395 self.json_response["shards"] = all_shards
|
handlers.py | 144 other shards and the entire MR. [all...] |
/external/chromium-trace/catapult/third_party/mapreduce/mapreduce/static/ |
status.js | 335 var activity = '' + job.active_shards + ' / ' + job.shards + ' shards'; 600 var shards = detail.chart_data.length; 601 for (var i = 0; i < shards; i++) { 604 var log2Shards = Math.log(shards) / Math.log(2); 605 var chartWidth = Math.max(Math.max(300, shards * 2), 100 * log2Shards); 656 $.each(detail.shards, function(index, shard) {
|
/cts/tests/jdwp/runner/host-side/src/com/android/compatibility/testtype/ |
DalvikTest.java | 463 List<IRemoteTest> shards = new ArrayList<>(); local 467 shards.add(catchAll); 478 shards.add(test); 481 return shards;
|
/external/autotest/frontend/afe/ |
rpc_interface.py | 78 # Master forwards the RPC to shards 97 # Master forwards the RPC to shards 151 This method should be run only on master not shards. 179 # we are adding a new label only to shards of hosts that the label 182 # Master and S1 will have L1 but other shards won't. 183 # Later, when we add the same label L1 to hosts in shards S1 and S2, 208 This method should be run only on master not shards. 281 to shards. 329 The filters are always applied on the master, not on the shards. This means 479 # Master forwards this RPC to shards [all...] |
rpc_utils.py | 648 # Make sure this function is not called on shards but only on master. 841 """Figure out which hosts are on which shards. [all...] |
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/kinesis/ |
test_kinesis.py | 53 shard_id = response['StreamDescription']['Shards'][0]['ShardId']
|
/external/chromium-trace/catapult/third_party/mapreduce/mapreduce/api/map_job/ |
map_job_config.py | 59 # Number of map shards. 61 # updated to the actual number of running shards after the job starts.
|
/external/webrtc/tools/valgrind-webrtc/ |
webrtc_tests.py | 122 parser.add_option("--test-launcher-total-shards", type=int, 123 help="run the tests with --test-launcher-total-shards")
|
/external/chromium-trace/catapult/third_party/mapreduce/mapreduce/lib/input_reader/ |
_gcs.py | 219 are fewer files than shards, fewer than the requested number of shards will 248 # Split into shards
|
/external/pdfium/tools/drmemory/scripts/ |
pdfium_tests.py | 148 cmd.append("--test-launcher-total-shards=%d" % self._options.test_launcher_total_shards) 367 parser.add_option("--test-launcher-total-shards", type=int, 368 help="run the tests with --test-launcher-total-shards")
|
/external/protobuf/java/src/test/java/com/google/protobuf/ |
IsValidUtf8TestUtil.java | 169 List<Shard> shards = new ArrayList<Shard>(numShards); 174 shards.add(new Shard(i, 179 return shards;
|
/prebuilts/go/darwin-x86/test/ |
run.go | 43 shard = flag.Int("shard", 0, "shard index to run. Only applicable if -shards is non-zero.") var 44 shards = flag.Int("shards", 0, "number of shards. If 0, all tests are run. This is used by the continuous build.") 171 if *shards == 0 { 176 return int(h.Sum32()%uint32(*shards)) == *shard
|
/prebuilts/go/linux-x86/test/ |
run.go | 43 shard = flag.Int("shard", 0, "shard index to run. Only applicable if -shards is non-zero.") var 44 shards = flag.Int("shards", 0, "number of shards. If 0, all tests are run. This is used by the continuous build.") 171 if *shards == 0 { 176 return int(h.Sum32()%uint32(*shards)) == *shard
|
/cts/common/host-side/tradefed/tests/src/com/android/compatibility/common/tradefed/testtype/ |
ModuleRepoTest.java | 150 assertEquals("Wrong number of shards", 3, mRepo.getNumberOfShards()); 254 assertEquals("Shards wrong", 3*3, shardableCount);
|
/external/autotest/site_utils/lib/ |
infra.py | 266 shards = afe.run('get_shards') 267 for shard in shards:
|
/external/autotest/site_utils/ |
server_manager_utils.py | 277 """Get a list of shards in status primary. 279 @return: A list of shards in status primary.
|
/external/google-breakpad/src/testing/gtest/test/ |
gtest_shuffle_test.py | 307 # If we run M tests on N shards, the same M tests should be run in 308 # total, regardless of the random seeds used by the shards.
|
/external/gtest/test/ |
gtest_shuffle_test.py | 306 # If we run M tests on N shards, the same M tests should be run in 307 # total, regardless of the random seeds used by the shards.
|
/external/protobuf/gtest/test/ |
gtest_shuffle_test.py | 306 # If we run M tests on N shards, the same M tests should be run in 307 # total, regardless of the random seeds used by the shards.
|
/external/vulkan-validation-layers/tests/gtest-1.7.0/test/ |
gtest_shuffle_test.py | 306 # If we run M tests on N shards, the same M tests should be run in 307 # total, regardless of the random seeds used by the shards.
|
/ndk/sources/third_party/googletest/googletest/test/ |
gtest_shuffle_test.py | 306 # If we run M tests on N shards, the same M tests should be run in 307 # total, regardless of the random seeds used by the shards.
|