Home
last modified time | relevance | path

Searched refs:ApplicationDefaultCredentialsError (Results 1 – 5 of 5) sorted by relevance

/external/autotest/site_utils/
Dpubsub_utils.py17 from oauth2client.client import ApplicationDefaultCredentialsError
60 except ApplicationDefaultCredentialsError as ex:
Dpubsub_utils_unittest.py15 from oauth2client.client import ApplicationDefaultCredentialsError
101 ApplicationDefaultCredentialsError())
/external/python/oauth2client/oauth2client/
Dclient.py173 class ApplicationDefaultCredentialsError(Error): class
1246 except (ApplicationDefaultCredentialsError, ValueError) as error:
1278 raise ApplicationDefaultCredentialsError(ADC_HELP_MSG)
1308 except (ApplicationDefaultCredentialsError, ValueError) as error:
1315 raise ApplicationDefaultCredentialsError(
1368 raise ApplicationDefaultCredentialsError(
1412 raise ApplicationDefaultCredentialsError(
1437 raise ApplicationDefaultCredentialsError(
1444 raise ApplicationDefaultCredentialsError(
/external/python/oauth2client/tests/
Dtest_client.py461 with self.assertRaisesRegexp(client.ApplicationDefaultCredentialsError,
566 with self.assertRaisesRegexp(client.ApplicationDefaultCredentialsError,
577 with self.assertRaisesRegexp(client.ApplicationDefaultCredentialsError,
594 with self.assertRaisesRegexp(client.ApplicationDefaultCredentialsError,
601 error = client.ApplicationDefaultCredentialsError('stuff happens')
605 with self.assertRaisesRegexp(client.ApplicationDefaultCredentialsError,
663 expected_err = client.ApplicationDefaultCredentialsError
689 expected_err = client.ApplicationDefaultCredentialsError
745 with self.assertRaisesRegexp(client.ApplicationDefaultCredentialsError,
761 with self.assertRaisesRegexp(client.ApplicationDefaultCredentialsError,
[all …]
/external/python/apitools/apitools/base/py/
Dcredentials_lib.py652 except oauth2client.client.ApplicationDefaultCredentialsError: