Home
last modified time | relevance | path

Searched refs:RETRIES (Results 1 – 18 of 18) sorted by relevance

/external/ltp/testcases/lib/
Dtest.sh171 local RETRIES=${2:-"3"}
172 local i=$RETRIES
185 tst_resm TINFO "Failed to execute '$cmd' after $RETRIES retries"
/external/mesa3d/src/gallium/winsys/svga/drm/
Dvmw_msg.c47 #define RETRIES 3 macro
374 while (retries < RETRIES) { in vmw_send_msg()
/external/autotest/test_suites/
Dcontrol.dummyflake15 This is a suite for testing autotest's handling of RETRIES of flaky tests.
/external/python/httplib2/doc/html/
Dobjects.inv12 httplib2.RETRIES data libhttplib2.html
Dsearchindex.js1 …],ignore_etag:[1,2],add_credentials:[1,1]},httplib2:{HttpLib2Error:[1,3],RETRIES:[1,4],Http:[1,0],… property
/external/python/httplib2/tests/
Dtest_http.py32 old_retries = httplib2.RETRIES
33 httplib2.RETRIES = 1
41 httplib2.RETRIES = old_retries
/external/python/httplib2/python2/httplib2/
D__init__.py163 RETRIES = 2 variable
1746 while i < RETRIES:
1768 if err in (errno.ENETUNREACH, errno.EADDRNOTAVAIL) and i < RETRIES:
1774 if i < RETRIES - 1:
1781 if i < RETRIES - 1:
1801 if i < RETRIES - 1:
/external/python/httplib2/python3/httplib2/
D__init__.py79 RETRIES = 2 variable
1553 while i < RETRIES:
1569 if errno_ in (errno.ENETUNREACH, errno.EADDRNOTAVAIL) and i < RETRIES:
1574 if i < RETRIES - 1:
1581 if i < RETRIES - 1:
/external/python/httplib2/doc/html/_sources/
Dlibhttplib2.txt121 .. data:: RETRIES
123 A request will be tried 'RETRIES' times if it fails at the socket/connection level.
/external/python/httplib2/doc/
Dlibhttplib2.rst121 .. data:: RETRIES
123 A request will be tried 'RETRIES' times if it fails at the socket/connection level.
/external/python/httplib2/python2/
Dhttplib2test.py295 old_retries = httplib2.RETRIES
296 httplib2.RETRIES = 1
304 httplib2.RETRIES = old_retries
/external/python/httplib2/python3/
Dhttplib2test.py276 old_retries = httplib2.RETRIES
277 httplib2.RETRIES = 1
285 httplib2.RETRIES = old_retries
/external/python/httplib2/
Dlibhttplib2.tex100 \begin{datadesc}{RETRIES}
101 A request will be tried 'RETRIES' times if it fails at the socket/connection level.
DCHANGELOG245 You can now set httplib2.RETRIES to the number of retries before a request
/external/python/google-api-python-client/googleapiclient/
Ddiscovery.py76 httplib2.RETRIES = 1
/external/python/oauth2client/
DCHANGELOG.md328 * Set `httplib2.RETRIES` to 1.
/external/python/google-api-python-client/
DCHANGELOG408 - Set httplib2.RETRIES to 1.
/external/python/google-api-python-client/tests/
Dtest_discovery.py114 self.assertEqual(1, httplib2.RETRIES)