HomeSort by relevance Sort by last modified time
    Searched defs:cacheControl (Results 1 - 23 of 23) 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 140 @Test public void cacheControl() throws Exception {
142 .cacheControl(new CacheControl.Builder().noCache().build())
151 .cacheControl(new CacheControl.Builder().build())
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
Request.java 37 private volatile CacheControl cacheControl; // Lazily initialized.
101 public CacheControl cacheControl() {
102 CacheControl result = cacheControl;
103 return result != null ? result : (cacheControl = CacheControl.parse(headers));
214 * control headers already present. If {@code cacheControl} doesn't define
217 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));
  /prebuilts/tools/common/m2/repository/com/squareup/okhttp/okhttp/2.5.0/
okhttp-2.5.0.jar 
  /prebuilts/tools/common/m2/repository/com/squareup/okhttp/okhttp/2.7.2/
okhttp-2.7.2.jar 
  /prebuilts/tools/common/m2/repository/com/squareup/okhttp3/okhttp/3.3.0/
okhttp-3.3.0.jar 
  /prebuilts/tools/common/m2/repository/com/squareup/okhttp3/okhttp/3.4.1/
okhttp-3.4.1.jar 
  /external/caliper/lib/
jsr311-api-1.1.1.jar 
jersey-core-1.11.jar 
  /prebuilts/tools/common/m2/repository/com/squareup/okhttp/okhttp/2.7.4/
okhttp-2.7.4.jar 
  /prebuilts/tools/common/m2/repository/com/squareup/picasso/picasso/2.5.2/
picasso-2.5.2.jar 
  /prebuilts/tools/common/m2/repository/com/google/http-client/google-http-client/1.19.0/
google-http-client-1.19.0.jar 
  /prebuilts/tools/common/m2/repository/com/amazonaws/aws-java-sdk-s3/1.11.18/
aws-java-sdk-s3-1.11.18.jar 
  /prebuilts/tools/common/m2/repository/com/google/apis/google-api-services-storage/v1-rev82-1.22.0/
google-api-services-storage-v1-rev82-1.22.0.jar 
  /prebuilts/tools/common/m2/repository/com/google/http-client/google-http-client/1.22.0/
google-http-client-1.22.0.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 
  /external/conscrypt/benchmark-android/
vogar.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.23.0/
google-api-java-client-min-repackaged-1.23.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 116 milliseconds