Home
last modified time | relevance | path

Searched refs:maxtries (Results 1 – 7 of 7) sorted by relevance

/external/openssh/
Dmonitor_wrap.c395 u_int maxtries = 0; in mm_auth_password() local
413 if ((r = sshbuf_get_u32(m, &maxtries)) != 0) in mm_auth_password()
415 if (maxtries > INT_MAX) in mm_auth_password()
416 fatal("%s: bad maxtries %u", __func__, maxtries); in mm_auth_password()
417 sshpam_set_maxtries_reached(maxtries); in mm_auth_password()
/external/python/cpython2/Lib/
Durllib.py623 self.maxtries = 10
633 if self.maxtries and self.tries >= self.maxtries:
/external/python/cpython3/Lib/urllib/
Drequest.py2141 self.maxtries = 10
2151 if self.maxtries and self.tries >= self.maxtries:
/external/python/cpython2/Lib/test/
Dtest_urllib.py292 for i in range(urllib.FancyURLopener().maxtries):
/external/python/cpython2/Doc/library/
Durllib.rst402 by the value of the *maxtries* attribute, which defaults to 10.
/external/python/cpython3/Lib/test/
Dtest_urllib.py501 for i in range(FancyURLopener().maxtries):
/external/python/cpython3/Doc/library/
Durllib.request.rst1483 by the value of the *maxtries* attribute, which defaults to 10.