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

1 2 3

  /system/connectivity/shill/
mock_connectivity_trial.h 36 MOCK_METHOD1(Retry, bool(int));
connectivity_trial.h 116 // After a trial completes, the calling class may call Retry on the trial.
119 // |start_delay| is the time (ms) to wait before starting the trial. Retry
121 // HTTPRequest was reset or never created, Retry will return false.
122 virtual bool Retry(int start_delay_milliseconds);
connectivity_trial_unittest.cc 239 EXPECT_FALSE(connectivity_trial()->Retry(0));
312 EXPECT_TRUE(connectivity_trial()->Retry(kRetryDelay));
322 EXPECT_FALSE(connectivity_trial()->Retry(0));
362 EXPECT_TRUE(connectivity_trial()->Retry(0));
portal_detector_unittest.cc 149 Retry(PortalDetector::kMinTimeBetweenAttemptsSeconds * 1000));
279 EXPECT_CALL(*connectivity_trial(), Retry(0))
338 EXPECT_CALL(*connectivity_trial(), Retry(0))
  /external/chromium-trace/catapult/third_party/gsutil/gslib/tests/
test_du.py 22 from gslib.util import Retry
45 # Use @Retry as hedge against bucket listing eventual consistency.
46 @Retry(AssertionError, tries=3, timeout_secs=1)
55 # Use @Retry as hedge against bucket listing eventual consistency.
56 @Retry(AssertionError, tries=3, timeout_secs=1)
66 # Use @Retry as hedge against bucket listing eventual consistency.
67 @Retry(AssertionError, tries=3, timeout_secs=1)
85 # Use @Retry as hedge against bucket listing eventual consistency.
86 @Retry(AssertionError, tries=3, timeout_secs=1)
101 # Use @Retry as hedge against bucket listing eventual consistency
    [all...]
test_versioning.py 21 from gslib.util import Retry
41 @Retry(AssertionError, tries=3, timeout_secs=1)
53 @Retry(AssertionError, tries=3, timeout_secs=1)
63 @Retry(AssertionError, tries=3, timeout_secs=1)
test_rsync.py 28 from gslib.util import Retry
54 # TODO: Add inspection to the retry wrappers in this test suite where the state
55 # at the end of a retry block is depended upon by subsequent tests (since
58 # TODO: Remove retry wrappers and AssertNObjectsInBucket calls if GCS ever
135 # Use @Retry as hedge against bucket listing eventual consistency.
136 @Retry(AssertionError, tries=3, timeout_secs=1)
158 # Use @Retry as hedge against bucket listing eventual consistency.
159 @Retry(AssertionError, tries=3, timeout_secs=1)
174 # Use @Retry as hedge against bucket listing eventual consistency.
175 @Retry(AssertionError, tries=3, timeout_secs=1
    [all...]
test_ls.py 31 from gslib.util import Retry
47 # Use @Retry as hedge against bucket listing eventual consistency.
48 @Retry(AssertionError, tries=3, timeout_secs=1)
58 # Use @Retry as hedge against bucket listing eventual consistency.
59 @Retry(AssertionError, tries=3, timeout_secs=1)
70 # Use @Retry as hedge against bucket listing eventual consistency.
71 @Retry(AssertionError, tries=3, timeout_secs=1)
97 # Use @Retry as hedge against bucket listing eventual consistency.
98 @Retry(AssertionError, tries=3, timeout_secs=1)
133 # Use @Retry as hedge against bucket listing eventual consistency
    [all...]
test_setmeta.py 23 from gslib.util import Retry
37 # Use @Retry as hedge against bucket listing eventual consistency.
38 @Retry(AssertionError, tries=3, timeout_secs=1)
53 # Use @Retry as hedge against bucket listing eventual consistency.
54 @Retry(AssertionError, tries=3, timeout_secs=1)
143 # Use @Retry as hedge against bucket listing eventual consistency.
144 @Retry(AssertionError, tries=3, timeout_secs=1)
test_mv.py 24 from gslib.util import Retry
90 # Use @Retry as hedge against bucket listing eventual consistency.
91 @Retry(AssertionError, tries=3, timeout_secs=1)
test_rm.py 26 from gslib.util import Retry
65 @Retry(AssertionError, tries=5, timeout_secs=1)
71 # Retry 404's and 409's due to eventual listing consistency, but don't add
110 # Use @Retry as hedge against bucket listing eventual consistency.
111 @Retry(AssertionError, tries=3, timeout_secs=1)
169 # Use @Retry as hedge against bucket listing eventual consistency.
170 @Retry(AssertionError, tries=3, timeout_secs=1)
247 # This could fail due to eventual listing consistency, so use retry and
249 @Retry(AssertionError, tries=3, timeout_secs=1)
286 # Use @Retry as hedge against bucket listing eventual consistency
    [all...]
test_parallel_cp.py 40 from gslib.util import Retry
181 @Retry(AssertionError, tries=3, timeout_secs=1)
test_cp.py 69 from gslib.util import Retry
179 @Retry(StorageResponseError, tries=5, timeout_secs=1)
246 """Cause a single retry at the retry point."""
326 # Use @Retry as hedge against bucket listing eventual consistency.
327 @Retry(AssertionError, tries=3, timeout_secs=1)
340 # Use @Retry as hedge against bucket listing eventual consistency.
341 @Retry(AssertionError, tries=3, timeout_secs=1)
355 # Use @Retry as hedge against bucket listing eventual consistency.
356 @Retry(AssertionError, tries=3, timeout_secs=1
    [all...]
  /ndk/sources/cxx-stl/stlport/src/
sparc_atomic.s 21 bne 0b ! Retry upon failure
40 bne 1b ! Retry if we failed.
62 bne 2b ! Retry if we failed.
sparc_atomic64.s 18 bne 1b ! Retry upon failure
  /external/clang/include/clang/Analysis/Support/
BumpVector.h 156 Retry:
162 goto Retry;
171 Retry:
180 goto Retry;
  /external/skia/platform_tools/android/bin/
download_utils.py 149 def Retry(op, *args):
152 # and as a workaround we simply retry the command a few times.
169 sys.stdout.write("RETRY: %s %s\n" % (op.__name__, repr(args)))
184 Retry(shutil.move, src, dst)
189 Retry(shutil.rmtree, path)
194 Retry(os.unlink, path)
  /external/chromium-trace/catapult/third_party/gsutil/gslib/tests/testcase/
integration_testcase.py 48 from gslib.util import Retry
56 # provided in the config file. Also, because we retry 401s, reduce the number
116 # Retry with an exponential backoff if a server error is received. This
121 @Retry(StorageResponseError, tries=7, timeout_secs=1)
150 # object in the listing before raising the error on which to retry.
185 # Use @Retry as hedge against bucket listing eventual consistency.
186 @Retry(AssertionError, tries=5, timeout_secs=1)
240 # Retry with exponential backoff so that we create them as fast as we
242 @Retry(StorageResponseError, tries=7, timeout_secs=1)
339 # TODO: Add retry and exponential backoff
    [all...]
  /external/clang/include/clang/AST/
ASTVector.h 159 Retry:
165 goto Retry;
223 Retry:
234 goto Retry;
  /external/v8/src/crankshaft/
lithium-codegen.h 93 void Retry(BailoutReason reason);
lithium-codegen.cc 176 void LCodeGenBase::Retry(BailoutReason reason) {
183 if (map->is_deprecated()) return Retry(kMapBecameDeprecated);
189 if (!map->is_stable()) return Retry(kMapBecameUnstable);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
mcd.h 95 BOOLEAN *Retry);
  /external/chromium-trace/catapult/third_party/gsutil/gslib/commands/
defacl.py 35 from gslib.util import Retry
256 @Retry(ServiceException, tries=3, timeout_secs=1)
289 # Don't retry on bad requests, e.g. invalid email address.
rm.py 34 from gslib.util import Retry
327 @Retry(NotEmptyException, tries=3, timeout_secs=1)
  /external/v8/src/heap/
spaces-inl.h 330 if (new_top > allocation_info_.limit()) return AllocationResult::Retry();
380 return AllocationResult::Retry(identity());
421 return AllocationResult::Retry(identity());
450 return AllocationResult::Retry();
477 return AllocationResult::Retry();

Completed in 2978 milliseconds

1 2 3