Home
last modified time | relevance | path

Searched refs:if_none_match (Results 1 – 6 of 6) sorted by relevance

/external/chromium-trace/trace-viewer/third_party/WebOb/docs/pycon2011/
Drequest_table.rst112 if_none_match if_none_match cached_property
/external/chromium-trace/trace-viewer/third_party/WebOb/docs/
Dreference.txt405 >>> server_token in req.if_none_match # You shouldn't return 304
407 >>> req.if_none_match = server_token
408 >>> req.if_none_match
410 >>> server_token in req.if_none_match # You *should* return 304
982 >>> req.if_none_match = 'opaque-tag'
986 >>> req.if_none_match = '*'
987 >>> 'x' in req.if_none_match
989 >>> req.if_none_match = req.if_none_match
990 >>> 'x' in req.if_none_match
992 >>> req.if_none_match = None
[all …]
Dfile-example.txt142 >>> req2.if_none_match = res.etag
/external/chromium-trace/trace-viewer/third_party/Paste/paste/
Durlparser.py461 if_none_match = environ.get('HTTP_IF_NONE_MATCH')
462 if if_none_match:
464 if str(mytime) == if_none_match:
/external/chromium-trace/trace-viewer/third_party/WebOb/webob/
Dresponse.py1055 if req.if_none_match and self.etag:
1056 status304 = self.etag in req.if_none_match
Drequest.py1091 if_none_match = etag_property('HTTP_IF_NONE_MATCH', NoETag, '14.26', variable in BaseRequest