HomeSort by relevance Sort by last modified time
    Searched defs:CacheControl (Results 1 - 2 of 2) sorted by null

  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
CacheControl.java 14 public final class CacheControl {
20 public static final CacheControl FORCE_NETWORK = new Builder().noCache().build();
28 public static final CacheControl FORCE_CACHE = new Builder()
47 private CacheControl(boolean noCache, boolean noStore, int maxAgeSeconds, int sMaxAgeSeconds,
64 private CacheControl(Builder builder) {
151 public static CacheControl parse(Headers headers) {
244 return new CacheControl(noCache, noStore, maxAgeSeconds, sMaxAgeSeconds, isPrivate, isPublic,
362 public CacheControl build() {
363 return new CacheControl(this);
  /external/chromium-trace/trace-viewer/third_party/WebOb/webob/
cachecontrol.py 139 class CacheControl(object):
158 Parse the header, returning a CacheControl object.
183 return '<CacheControl %r>' % str(self)
220 if isinstance(properties, CacheControl):

Completed in 61 milliseconds