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

  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
CacheControlTest.java 30 CacheControl cacheControl = new CacheControl.Builder().build();
31 assertEquals("", cacheControl.toString());
32 assertFalse(cacheControl.noCache());
33 assertFalse(cacheControl.noStore());
34 assertEquals(-1, cacheControl.maxAgeSeconds());
35 assertEquals(-1, cacheControl.sMaxAgeSeconds());
36 assertFalse(cacheControl.isPrivate());
37 assertFalse(cacheControl.isPublic())
    [all...]
RequestTest.java 138 @Test public void cacheControl() throws Exception {
140 .cacheControl(new CacheControl.Builder().noCache().build())
149 .cacheControl(new CacheControl.Builder().build())
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
Request.java 40 private volatile CacheControl cacheControl; // Lazily initialized.
105 public CacheControl cacheControl() {
106 CacheControl result = cacheControl;
107 return result != null ? result : (cacheControl = CacheControl.parse(headers));
191 * control headers already present. If {@code cacheControl} doesn't define
194 public Builder cacheControl(CacheControl cacheControl)
    [all...]
Response.java 48 private volatile CacheControl cacheControl; // Lazily initialized.
204 public CacheControl cacheControl() {
205 CacheControl result = cacheControl;
206 return result != null ? result : (cacheControl = CacheControl.parse(headers));
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.mortbay.jetty.server_6.1.23.v201004211559.jar 
  /prebuilts/tools/common/m2/repository/net/sourceforge/htmlunit/htmlunit-core-js/2.14/
htmlunit-core-js-2.14.jar 
  /prebuilts/tools/common/m2/repository/org/mozilla/rhino/1.7R3/
rhino-1.7R3.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.apache.httpcomponents.httpclient_4.1.3.v201209201135.jar 
  /prebuilts/tools/common/google-api-java-client/1.20.0/
google-api-java-client-min-repackaged-1.20.0.jar 
  /prebuilts/tools/common/google-api-java-client/1.8.0-rc/
google-api-java-client-min-repackaged.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.apache.httpcomponents.httpclient_4.1.3.v201209201135.jar 

Completed in 190 milliseconds