Home
last modified time | relevance | path

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

/external/ltp/testcases/lib/
Dtest.sh163 local RETRIES=${2:-"3"}
164 local i=$RETRIES
177 tst_resm TINFO "Failed to execute '$cmd' after $RETRIES retries"
/external/mesa3d/src/gallium/drivers/svga/
Dsvga_msg.c43 #define RETRIES 3 macro
362 while (retries < RETRIES) { in svga_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.py34 old_retries = httplib2.RETRIES
35 httplib2.RETRIES = 1
43 httplib2.RETRIES = old_retries
/external/python/httplib2/python2/httplib2/
D__init__.py156 RETRIES = 2 variable
1697 while i < RETRIES:
1719 if err in (errno.ENETUNREACH, errno.EADDRNOTAVAIL) and i < RETRIES:
1725 if i < RETRIES - 1:
1732 if i < RETRIES - 1:
1752 if i < RETRIES - 1:
/external/python/httplib2/python3/httplib2/
D__init__.py79 RETRIES = 2 variable
1497 while i < RETRIES:
1513 if errno_ in (errno.ENETUNREACH, errno.EADDRNOTAVAIL) and i < RETRIES:
1518 if i < RETRIES - 1:
1525 if i < RETRIES - 1:
/external/u-boot/drivers/i2c/
Dsoft_i2c.c99 #define RETRIES 0 macro
Di2c-gpio.c15 #define RETRIES 0 macro
/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/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/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.
DCHANGELOG166 You can now set httplib2.RETRIES to the number of retries before a request
/external/python/google-api-python-client/googleapiclient/
Ddiscovery.py81 httplib2.RETRIES = 1
/external/python/google-api-python-client/
DCHANGELOG337 - Set httplib2.RETRIES to 1.
/external/python/oauth2client/
DCHANGELOG.md328 * Set `httplib2.RETRIES` to 1.
/external/python/google-api-python-client/tests/
Dtest_discovery.py115 self.assertEqual(1, httplib2.RETRIES)