OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MAX_TOKEN_LIFETIME_SECS
(Results
1 - 3
of
3
) sorted by null
/external/python/oauth2client/oauth2client/
crypt.py
31
MAX_TOKEN_LIFETIME_SECS
= 86400 # 1 day in seconds
191
if expiration >= now +
MAX_TOKEN_LIFETIME_SECS
:
service_account.py
82
MAX_TOKEN_LIFETIME_SECS
= 3600
381
'exp': now + self.
MAX_TOKEN_LIFETIME_SECS
,
/external/python/oauth2client/tests/
test_crypt.py
204
'exp': current_time + crypt.
MAX_TOKEN_LIFETIME_SECS
+ 1,
219
'exp': current_time + crypt.
MAX_TOKEN_LIFETIME_SECS
- 1,
249
'exp': current_time + crypt.
MAX_TOKEN_LIFETIME_SECS
- 1,
Completed in 656 milliseconds