Searched refs:authenticators (Results 1 – 11 of 11) sorted by relevance
/external/owasp/sanitizer/tools/ |
D | googlecode_upload.py | 172 authenticators = netrc().authenticators("code.google.com") 173 if authenticators: 175 user_name = authenticators[0] 177 password = authenticators[2]
|
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/ |
D | ShadowAccountManager.java | 43 private Map<String, AuthenticatorDescription> authenticators = new LinkedHashMap<>(); field in ShadowAccountManager 201 return authenticators.values().toArray(new AuthenticatorDescription[authenticators.size()]); 382 if (!authenticators.containsKey(accountType)) { 423 authenticators.put(authenticator.type, authenticator); 498 if (!authenticators.containsKey(account.type)) {
|
/external/python/cpython3/Doc/library/ |
D | netrc.rst | 59 .. method:: netrc.authenticators(host) 61 Return a 3-tuple ``(login, account, password)`` of authenticators for *host*.
|
/external/python/cpython2/Doc/library/ |
D | netrc.rst | 55 .. method:: netrc.authenticators(host) 57 Return a 3-tuple ``(login, account, password)`` of authenticators for *host*.
|
/external/python/cpython2/Lib/ |
D | netrc.py | 119 def authenticators(self, host): member in netrc
|
D | nntplib.py | 148 auth = credentials.authenticators(host)
|
/external/python/cpython3/Lib/ |
D | netrc.py | 113 def authenticators(self, host): member in netrc
|
D | ftplib.py | 967 userid, acct, passwd = netrcobj.authenticators(host)
|
D | nntplib.py | 953 auth = credentials.authenticators(self.host)
|
/external/python/cpython3/Lib/test/ |
D | test_netrc.py | 163 login, account, password = nrc.authenticators('foo.domain.com')
|
/external/jline/src/src/test/resources/jline/example/ |
D | english.gz |
|