OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:clientsecrets
(Results
1 - 5
of
5
) sorted by null
/external/chromium-trace/catapult/third_party/gsutil/third_party/oauth2client/tests/
test_clientsecrets.py
15
"""Unit tests for oauth2client.
clientsecrets
."""
26
from oauth2client import
clientsecrets
namespace
67
clientsecrets
.loads(src)
69
except
clientsecrets
.InvalidClientSecretsError as e:
75
clientsecrets
.load(fp)
77
except
clientsecrets
.InvalidClientSecretsError as e:
82
clientsecrets
._loadfile(NONEXISTENT_FILE)
84
except
clientsecrets
.InvalidClientSecretsError as e:
110
client_type, client_info =
clientsecrets
.loadfile(
127
client_type, client_info =
clientsecrets
.loadfile
[
all
...]
test_appengine.py
51
from oauth2client.
clientsecrets
import _loadfile
52
from oauth2client.
clientsecrets
import InvalidClientSecretsError
test_oauth2client.py
77
from oauth2client.
clientsecrets
import _loadfile
[
all
...]
/external/chromium-trace/catapult/third_party/gsutil/third_party/oauth2client/oauth2client/
client.py
38
from oauth2client import
clientsecrets
namespace
[
all
...]
appengine.py
41
from oauth2client import
clientsecrets
namespace
907
"""An OAuth2Decorator that builds from a
clientsecrets
file.
909
Uses a
clientsecrets
file as the source for all the information when
936
clientsecrets
file is missing or invalid. The message may contain HTML
940
methods. See
clientsecrets
.loadfile() for details.
944
client_type, client_info =
clientsecrets
.loadfile(filename, cache=cache)
946
clientsecrets
.TYPE_WEB,
clientsecrets
.TYPE_INSTALLED]:
[
all
...]
Completed in 819 milliseconds