OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:retry_on
(Results
1 - 2
of
2
) sorted by null
/external/v8/tools/release/
common_includes.py
452
def Retry(self, cb,
retry_on
=None, wait_plan=None):
456
retry_on
: A callback that takes the result of the function and returns
462
retry_on
=
retry_on
or (lambda x: False)
473
if got_exception or
retry_on
(result):
497
def Git(self, args="", prefix="", pipe=True,
retry_on
=None, cwd=None):
500
result = self.Retry(cmd,
retry_on
, [5, 30])
513
def ReadURL(self, url, params=None,
retry_on
=None, wait_plan=None):
516
return self.Retry(cmd,
retry_on
, wait_plan)
git_recipes.py
243
"cl land -f --bypass-hooks",
retry_on
=lambda x: x is None, **kwargs)
Completed in 50 milliseconds