Home
last modified time | relevance | path

Searched refs:s_maxage (Results 1 – 3 of 3) sorted by relevance

/external/chromium-trace/catapult/third_party/Paste/paste/
Dhttpheaders.py715 no_store=False, max_age=None, s_maxage=None, argument
718 assert isinstance(s_maxage, (type(None), int))
722 assert not public and not no_cache and not s_maxage
738 if s_maxage is not None:
739 result.append('s-maxage=%d' % s_maxage)
/external/chromium-trace/catapult/third_party/WebOb/webob/
Dcachecontrol.py203 s_maxage = value_property('s-maxage', type='response') variable in CacheControl
204 s_max_age = s_maxage
/external/chromium-trace/catapult/third_party/Paste/tests/
Dtest_fileapp.py47 res = build(max_age=60,s_maxage=30)