Searched refs:if_none_match (Results 1 – 6 of 6) sorted by relevance
112 if_none_match if_none_match cached_property
405 >>> server_token in req.if_none_match # You shouldn't return 304407 >>> req.if_none_match = server_token408 >>> req.if_none_match410 >>> server_token in req.if_none_match # You *should* return 304982 >>> req.if_none_match = 'opaque-tag'986 >>> req.if_none_match = '*'987 >>> 'x' in req.if_none_match989 >>> req.if_none_match = req.if_none_match990 >>> 'x' in req.if_none_match992 >>> req.if_none_match = None[all …]
142 >>> req2.if_none_match = res.etag
461 if_none_match = environ.get('HTTP_IF_NONE_MATCH')462 if if_none_match:464 if str(mytime) == if_none_match:
1055 if req.if_none_match and self.etag:1056 status304 = self.etag in req.if_none_match
1091 if_none_match = etag_property('HTTP_IF_NONE_MATCH', NoETag, '14.26', variable in BaseRequest