HomeSort by relevance Sort by last modified time
    Searched refs:attempts (Results 1 - 25 of 273) sorted by null

1 2 3 4 5 6 7 8 91011

  /prebuilts/go/darwin-x86/src/net/testdata/
resolv.conf 7 options ndots:5 timeout:10 attempts:3 rotate
8 options attempts 3
  /prebuilts/go/linux-x86/src/net/testdata/
resolv.conf 7 options ndots:5 timeout:10 attempts:3 rotate
8 options attempts 3
  /external/mockito/src/test/java/org/mockitoutil/
RetryRule.java 17 public static RetryRule attempts(final int attempts) { method in class:RetryRule
18 return new RetryRule(new NumberedAttempts(attempts));
30 private final int attempts; field in class:RetryRule.NumberedAttempts
32 NumberedAttempts(int attempts) {
33 assert attempts > 1; local
34 this.attempts = attempts;
42 for (int remainingAttempts = attempts; remainingAttempts > 0 ; remainingAttempts--) {
47 throw new AssertionError(format("Tried this test + %d times and failed", attempts))
    [all...]
  /external/vboot_reference/utility/
tpm-dad-lock 20 attempts=0
25 attempts=$(( $attempts + 1 ))
44 echo delay of $elapsed seconds after $attempts attempts
  /external/compiler-rt/test/asan/android_commands/
android_common.py 11 def adb(args, attempts = 1):
17 while attempts > 0 and ret != 0:
18 attempts -= 1
20 if attempts != 0:
  /system/extras/tests/sdcard/
sysutil.cpp 97 int attempts = 0; local
101 while (size > 0 && !error && !eof && attempts < kMaxAttempts)
124 ++attempts;
163 int attempts = 0; local
165 while (size > 0 && !error && attempts < kMaxAttempts)
182 ++attempts;
449 int attempts = 0; local
451 while (size > 0 && !error && attempts < kMaxAttempts)
468 ++attempts;
480 attempts = 0
524 int attempts; local
    [all...]
  /external/python/cpython3/Objects/stringlib/
replace.h 22 int attempts = 10; local
29 if (!--attempts) {
30 /* if u1 was not found for attempts iterations,
  /system/extras/tests/tcp_nuke_addr/
tcp_nuke_addr_test.cpp 92 android::RWLock *lock, std::atomic<unsigned int> *attempts) {
109 attempts->fetch_add(1);
115 void progressThread(std::atomic<unsigned int> *attempts) {
121 total = attempts->load();
138 std::atomic<unsigned int> attempts; local
139 attempts.store(0);
143 std::thread(connectLoop, sin, listensock, &lock, &attempts).detach();
146 progressThread(&attempts);
  /prebuilts/go/darwin-x86/misc/cgo/test/
issue18146.go 33 attempts := 1000
37 attempts = 100
40 // Restrict the number of attempts based on RLIMIT_NPROC.
58 if attempts > max {
59 t.Logf("lowering attempts from %d to %d for RLIMIT_NPROC", attempts, max)
60 attempts = max
89 for n := attempts; n > 0; n-- {
126 t.Logf("Failed %v of %v attempts.", failures, len(cmds))
  /prebuilts/go/linux-x86/misc/cgo/test/
issue18146.go 33 attempts := 1000
37 attempts = 100
40 // Restrict the number of attempts based on RLIMIT_NPROC.
58 if attempts > max {
59 t.Logf("lowering attempts from %d to %d for RLIMIT_NPROC", attempts, max)
60 attempts = max
89 for n := attempts; n > 0; n-- {
126 t.Logf("Failed %v of %v attempts.", failures, len(cmds))
  /cts/hostsidetests/theme/
android_device.py 50 attempts = 0
52 while not boot_complete and (attempts*wait_period) < timeout:
58 attempts += 1
65 attempts = 0
67 while not service_found and (attempts*wait_period) < timeout:
73 attempts += 1
  /platform_testing/libraries/launcher-helper/src/android/support/test/launcherhelper/
CommonLauncherHelper.java 75 int attempts = 0; local
77 attempts++;
78 if (attempts > maxAttempts) {
80 "scrollBackToBeginning: exceeded max attempts: " + maxAttempts);
160 int attempts = 0; local
162 attempts++;
163 if (attempts > maxScrollAttempts) {
165 "launchApp: exceeded max attempts to locate app icon: "
  /tools/tradefederation/core/src/com/android/tradefed/util/
IRunUtil.java 110 * @param attempts the maximum number of attempts to try
114 int attempts, final String... command);
135 * @param attempts the maximum number of attempts to try
139 int attempts, final String... command);
212 * @param attempts the maximum number of attempts to try
214 * @return <code>true</code> if operation completed successfully before attempts reached.
216 public boolean runTimedRetry(long opTimeout, long pollInterval, int attempts,
    [all...]
  /external/curl/docs/cmdline-opts/
proxy1.0.d 9 attempts to use CONNECT through the proxy will specify an HTTP 1.0 protocol
pubkey.d 11 (As of 7.39.0, curl attempts to automatically extract the public key from the
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug460.go 7 // part one of issue 4124. Make sure that the compiler rejects access attempts.
  /prebuilts/go/linux-x86/test/fixedbugs/
bug460.go 7 // part one of issue 4124. Make sure that the compiler rejects access attempts.
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-mmix/
pr12815-1.d 6 # someone attempts linking to the "binary" output format with
pr12815-2.d 6 # someone attempts linking to the "binary" output format with
  /prebuilts/go/darwin-x86/src/net/
dnsconfig_unix_test.go 29 attempts: 3,
31 unknownOpt: true, // the "options attempts 3" line
41 attempts: 2,
51 attempts: 2,
60 attempts: 2,
70 attempts: 2,
80 attempts: 2,
90 attempts: 2,
99 attempts: 2,
138 attempts: 2
    [all...]
  /prebuilts/go/linux-x86/src/net/
dnsconfig_unix_test.go 29 attempts: 3,
31 unknownOpt: true, // the "options attempts 3" line
41 attempts: 2,
51 attempts: 2,
60 attempts: 2,
70 attempts: 2,
80 attempts: 2,
90 attempts: 2,
99 attempts: 2,
138 attempts: 2
    [all...]
  /compatibility/cdd/9_security-model/
9_11_keys-and-credentials.md 10 * [C-0-2] The lock screen authentication MUST rate-limit attempts and MUST
11 have an exponential backoff algorithm. Beyond 150 failed attempts, the delay
  /external/autotest/client/site_tests/desktopui_Respawn/
desktopui_Respawn.py 12 attempts in a time window. By design, this test does _not_ attempt to
64 'Respawning should have stopped before %d attempts' %
  /external/tensorflow/tensorflow/core/kernels/
queue_base.cc 193 std::deque<Attempt>* attempts = local
196 for (Attempt& attempt : *attempts) {
266 std::deque<Attempt>* attempts = local
271 while (!done && !attempts->empty()) {
272 if (attempts->front().is_cancelled) {
290 attempts->pop_front();
292 Attempt* cur_attempt = &attempts->front();
306 attempts->pop_front();
  /prebuilts/go/darwin-x86/misc/cgo/testplugin/altpath/src/plugin-mismatch/
main.go 11 // imported by plugin1. A program that attempts to load plugin1 and

Completed in 670 milliseconds

1 2 3 4 5 6 7 8 91011