HomeSort by relevance Sort by last modified time
    Searched full:shard (Results 1 - 25 of 104) sorted by null

1 2 3 4 5

  /external/chromium_org/tools/gyp/test/win/shard/
shard_ref.gyp 12 'shard.gyp:shard',
23 'shard.gyp:shard',
34 'shard.gyp:shard',
shard.gyp 8 'target_name': 'shard',
24 'shard',
  /external/chromium_org/tools/gyp/test/win/
gyptest-link-shard.py 18 CHDIR = 'shard'
19 test.run_gyp('shard.gyp', chdir=CHDIR)
20 test.build('shard.gyp', test.ALL, chdir=CHDIR)
  /external/chromium_org/third_party/libvpx/source/libvpx/tools/
all_builds.py 7 LONG_OPTIONS = ["shard=", "shards="]
35 options = {"--shard": 0, "--shards": 1}
44 print "Usage: %s [--shard=<n> --shards=<n>] -- [configure flag ...]"%argv[0]
50 # Shard experiment list
51 shard = int(options["--shard"])
58 my_configs = filter(lambda x: x[1] % shards == shard, my_configs)
61 # Run configs for this shard
  /external/libvpx/libvpx/tools/
all_builds.py 7 LONG_OPTIONS = ["shard=", "shards="]
35 options = {"--shard": 0, "--shards": 1}
44 print "Usage: %s [--shard=<n> --shards=<n>] -- [configure flag ...]"%argv[0]
50 # Shard experiment list
51 shard = int(options["--shard"])
58 my_configs = filter(lambda x: x[1] % shards == shard, my_configs)
61 # Run configs for this shard
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/tools/
all_builds.py 7 LONG_OPTIONS = ["shard=", "shards="]
35 options = {"--shard": 0, "--shards": 1}
44 print "Usage: %s [--shard=<n> --shards=<n>] -- [configure flag ...]"%argv[0]
50 # Shard experiment list
51 shard = int(options["--shard"])
58 my_configs = filter(lambda x: x[1] % shards == shard, my_configs)
61 # Run configs for this shard
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_thread_registry_test.cc 163 uptr shard; // started from 1. member in struct:__sanitizer::__anon23448::RunThreadArgs
170 uptr shard = (uptr)arg; local
171 num_joined[shard]++;
174 uptr shard = (uptr)arg; local
175 num_started[shard]++;
178 uptr shard = (uptr)arg; local
179 num_created[shard]++;
190 args->registry->CreateThread(0, false, 0, (void*)args->shard));
192 args->registry->StartThread(tids[i], 0, (void*)args->shard);
196 args->registry->JoinThread(tids[i], (void*)args->shard);
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/controllers/
layout_test_runner.py 119 pool.run(('test_list', shard.name, shard.test_inputs) for shard in all_shards)
125 pool.run(('test_list', shard.name, shard.test_inputs) for shard in self._shards_to_redo)
346 """A test shard is a named list of TestInputs."""
387 This is used when there's only one worker, to minimize the per-shard overhead."""
406 """Returns two lists of shards, each shard containing a single test file.
414 # Note that we use a '.' for the shard name; the name doesn't reall
    [all...]
  /external/chromium_org/base/test/
test_switches.cc 46 // Index of the test shard to run, starting from 0 (first shard) to total shards
47 // minus one (last shard).
49 "test-launcher-shard-index";
  /external/guava/guava-tests/test/com/google/common/hash/
HashingTest.java 68 for (int shard = 2; shard <= MAX_SHARDS; shard++) {
70 assertTrue(map.get(shard) <= 1.2 * ITERS / shard + 20);
  /external/chromium_org/tools/gyp/pylib/gyp/
MSVSUtil.py 60 """Add a shard number to the end of a target.
64 number: shard number
66 Target name with shard added (foo_1#target)
72 """Shard some targets apart to work around the linkers limits.
80 # Gather the targets to shard, and how many pieces.
86 # Shard target_list.
94 # Shard target_dict.
110 # Shard dependencies.
  /external/chromium_org/third_party/protobuf/java/src/test/java/com/google/protobuf/
IsValidUtf8Test.java 33 import com.google.protobuf.IsValidUtf8TestUtil.Shard;
174 for (Shard shard : IsValidUtf8TestUtil.FOUR_BYTE_SHARDS) {
175 actual += shard.expected;
IsValidUtf8TestUtil.java 113 static class Shard {
120 public Shard(long index, long start, long lim, long expected) {
162 static final List<Shard> FOUR_BYTE_SHARDS = generateFourByteShards(
166 private static List<Shard> generateFourByteShards(
169 List<Shard> shards = new ArrayList<Shard>(numShards);
174 shards.add(new Shard(i,
  /frameworks/base/core/tests/hosttests/test-apps/SharedUid/32/jni/
Android.mk 32 # All of the shard libraries we link against.
  /frameworks/base/core/tests/hosttests/test-apps/SharedUid/dual/jni/
Android.mk 32 # All of the shard libraries we link against.
  /external/chromium_org/third_party/leveldatabase/src/util/
cache.cc 134 // A single shard of sharded cache.
280 static uint32_t Shard(uint32_t hash) {
296 return shard_[Shard(hash)].Insert(key, hash, value, charge, deleter);
300 return shard_[Shard(hash)].Lookup(key, hash);
304 shard_[Shard(h->hash)].Release(handle);
308 shard_[Shard(hash)].Erase(key, hash);
  /external/chromium_org/build/android/pylib/host_driven/
test_runner.py 57 shard_index: Shard index.
66 # The shard index affords the ability to create unique port numbers (e.g.
test_server.py 73 shard_index: Index of the current shard.
75 the shard index. To retrieve the real port access the
  /external/chromium_org/build/android/pylib/base/
test_dispatcher_unittest.py 172 ['a', 'b', 'c'], runner_factory, ['0', '1'], shard=True)
187 [], MockRunner, ['0', '1'], shard=True)
206 ['a', 'b', 'c'], runner_factory, ['0', '1'], shard=False)
222 [], MockRunner, ['0', '1'], shard=False)
test_dispatcher.py 217 threadsafe_counter: A _ThreadSafeCounter object used to get shard indices.
221 logging.warning('Creating shard %s for device %s.', index, device)
229 logging.warning('Failed to create shard for %s: [%s]', device, e)
333 def RunTests(tests, runner_factory, devices, shard=True,
343 shard: True if we should shard, False if we should replicate tests.
360 if shard:
  /external/chromium_org/build/android/pylib/uiautomator/
test_runner.py 22 shard_index: Shard index.
  /external/chromium_org/build/android/
test_runner.py 521 tests, runner_factory, devices, shard=True, test_timeout=None,
544 tests, runner_factory, devices, shard=True, test_timeout=60,
570 tests, runner_factory, devices, shard=True, test_timeout=None,
582 tests, runner_factory, devices, shard=True, test_timeout=None,
608 tests, runner_factory, devices, shard=True, test_timeout=None,
628 tests, runner_factory, devices, shard=False, test_timeout=None,
654 # shard=False means that each device will get the full list of tests
656 # shard=True means each device will pop the next test available from a queue,
659 tests, runner_factory, devices, shard=False, test_timeout=None,
  /packages/services/Telecomm/src/com/android/server/telecom/
WiredHeadsetManager.java 53 * access the map so make only a single shard
  /external/chromium_org/chrome/browser/safe_browsing/
safe_browsing_store_file.cc 42 // Prevent excessive sharding by setting a lower limit on the shard stride.
44 // poor performance. Shard stride is indirectly related to
74 // Header for each shard of data in the main database file.
427 // Helper to find the next shard boundary.
457 // shard of data from different sources. |add_del_cache| and |sub_del_cache|
510 // An iterator pointing just after the last possible element of the shard
511 // indicated by |shard_max|. Used to step through the state by shard.
526 // Write a shard header and data for the shard starting at |beg| and ending at
596 // Read until the shard start overflows, always at least one pass
    [all...]
  /external/chromium_org/base/test/launcher/
test_launcher.h 45 // it is part of the current shard.
138 int32 shard_index_; // Index of shard the launcher is to run.

Completed in 964 milliseconds

1 2 3 4 5