Searched defs:Retry (Results 1 - 25 of 34) sorted by relevance

12

/external/chromium-trace/catapult/third_party/gsutil/gslib/tests/
H A Dtest_mv.py24 from gslib.util import Retry namespace
90 # Use @Retry as hedge against bucket listing eventual consistency.
91 @Retry(AssertionError, tries=3, timeout_secs=1)
H A Dtest_versioning.py21 from gslib.util import Retry namespace
41 @Retry(AssertionError, tries=3, timeout_secs=1)
53 @Retry(AssertionError, tries=3, timeout_secs=1)
63 @Retry(AssertionError, tries=3, timeout_secs=1)
H A Dtest_parallel_cp.py40 from gslib.util import Retry namespace
181 @Retry(AssertionError, tries=3, timeout_secs=1)
H A Dtest_du.py22 from gslib.util import Retry namespace
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 a
[all...]
H A Dtest_setmeta.py23 from gslib.util import Retry namespace
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)
H A Dtest_cors.py27 from gslib.util import Retry namespace
200 # Use @Retry as hedge against bucket listing eventual consistency.
204 @Retry(AssertionError, tries=3, timeout_secs=1)
H A Dtest_lifecycle.py29 from gslib.util import Retry namespace
184 # Use @Retry as hedge against bucket listing eventual consistency.
189 @Retry(AssertionError, tries=3, timeout_secs=1)
H A Dtest_rm.py26 from gslib.util import Retry namespace
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)
249 @Retry(AssertionError, tries=3, timeout_secs=1)
286 # Use @Retry as hedge against bucket listing eventual consistency.
287 @Retry(AssertionErro
[all...]
H A Dtest_ls.py31 from gslib.util import Retry namespace
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 a
[all...]
H A Dtest_rsync.py28 from gslib.util import Retry namespace
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)
190 # Use @Retry as hedge against bucket listing eventual consistency.
191 @Retry(AssertionError, tries=3, timeout_secs=1)
221 # Use @Retry a
[all...]
H A Dtest_acl.py31 from gslib.util import Retry namespace
530 @Retry(AssertionError, tries=5, timeout_secs=1)
540 @Retry(AssertionError, tries=5, timeout_secs=1)
H A Dtest_cp.py69 from gslib.util import Retry namespace
179 @Retry(StorageResponseError, tries=5, timeout_secs=1)
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)
366 # Use @Retry as hedge against bucket listing eventual consistency.
367 @Retry(AssertionErro
[all...]
/external/skia/platform_tools/android/bin/
H A Ddownload_utils.py149 def Retry(op, *args): function
184 Retry(shutil.move, src, dst)
189 Retry(shutil.rmtree, path)
194 Retry(os.unlink, path)
/external/chromium-trace/catapult/third_party/gsutil/gslib/commands/
H A Dacl.py34 from gslib.util import Retry namespace
399 @Retry(ServiceException, tries=3, timeout_secs=1)
H A Ddefacl.py35 from gslib.util import Retry namespace
256 @Retry(ServiceException, tries=3, timeout_secs=1)
H A Drm.py34 from gslib.util import Retry namespace
327 @Retry(NotEmptyException, tries=3, timeout_secs=1)
H A Dsetmeta.py33 from gslib.util import Retry namespace
201 @Retry(PreconditionException, tries=3, timeout_secs=1)
/external/chromium-trace/catapult/third_party/gsutil/gslib/tests/testcase/
H A Dintegration_testcase.py48 from gslib.util import Retry namespace
116 # Retry with an exponential backoff if a server error is received. This
121 @Retry(StorageResponseError, tries=7, timeout_secs=1)
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)
436 @Retry(AssertionError, tries=5, timeout_secs=1)
/external/v8/src/crankshaft/
H A Dlithium-codegen.cc176 void LCodeGenBase::Retry(BailoutReason reason) { function in class:v8::internal::LCodeGenBase
183 if (map->is_deprecated()) return Retry(kMapBecameDeprecated);
189 if (!map->is_stable()) return Retry(kMapBecameUnstable);
H A Dlithium.cc514 void LChunkBuilderBase::Retry(BailoutReason reason) { function in class:v8::internal::LChunkBuilderBase
/external/chromium-trace/catapult/third_party/gsutil/third_party/gcs-oauth2-boto-plugin/gcs_oauth2_boto_plugin/
H A Doauth2_client.py57 from retry_decorator.retry_decorator import retry as Retry namespace
584 @Retry(GsAccessTokenRefreshError,
629 @Retry(GsAccessTokenRefreshError,
/external/v8/tools/release/
H A Dcommon_includes.py452 def Retry(self, cb, retry_on=None, wait_plan=None): member in class:Step
453 """ Retry a function.
495 return self.Retry(cmd, None, [5])
500 result = self.Retry(cmd, retry_on, [5, 30])
516 return self.Retry(cmd, retry_on, wait_plan)
/external/chromium-trace/catapult/third_party/gsutil/gslib/
H A Dutil.py160 Retry = retry_decorator.retry # pylint: disable=invalid-name variable
503 # Retry for 10 minutes with exponential backoff, which corresponds to
/external/chromium-trace/catapult/third_party/pipeline/pipeline/
H A Dpipeline.py24 'PipelineFuture', 'After', 'InOrder', 'Retry', 'Abort', 'get_status_tree',
127 class Retry(PipelineUserError): class in inherits:PipelineUserError
697 must instead raise the 'Retry' exception during execution.
2407 if isinstance(e, Retry):
/external/v8/src/heap/
H A Dspaces.h1856 static inline AllocationResult Retry(AllocationSpace space = NEW_SPACE) { function in class:v8::internal::AllocationResult

Completed in 1118 milliseconds

12