Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for offer (0.37 sec)

  1. guava/src/com/google/common/cache/LocalCache.java

        return (ReferenceEntry<K, V>) NullEntry.INSTANCE;
      }
    
      static final Queue<?> DISCARDING_QUEUE =
          new AbstractQueue<Object>() {
            @Override
            public boolean offer(Object o) {
              return true;
            }
    
            @CheckForNull
            @Override
            public Object peek() {
              return null;
            }
    
            @CheckForNull
            @Override
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Feb 22 17:40:56 GMT 2024
    - 150.3K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/cache/LocalCache.java

        return (ReferenceEntry<K, V>) NullEntry.INSTANCE;
      }
    
      static final Queue<?> DISCARDING_QUEUE =
          new AbstractQueue<Object>() {
            @Override
            public boolean offer(Object o) {
              return true;
            }
    
            @CheckForNull
            @Override
            public Object peek() {
              return null;
            }
    
            @CheckForNull
            @Override
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Feb 22 17:40:56 GMT 2024
    - 144.7K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/CallTest.kt

        assertThat(response.header("Content-Encoding")).isEqualTo("gzip")
        assertThat(response.body.source().readByteString()).isEqualTo(
          gzippedBody.snapshot(),
        )
    
        // The request did not offer gzip support.
        val recordedRequest = server.takeRequest()
        assertThat(recordedRequest.headers["Accept-Encoding"]).isNull()
      }
    
      @Test
      fun asyncResponseCanBeConsumedLater() {
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Wed Apr 10 19:46:48 GMT 2024
    - 142.5K bytes
    - Viewed (0)
  4. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    *.devcdnaccesso.com
    
    // Acorn Labs : https://acorn.io
    // Submitted by Craig Jellick <******@****.***>
    *.on-acorn.io
    
    // ActiveTrail: https://www.activetrail.biz/
    // Submitted by Ofer Kalaora <******@****.***>
    activetrail.biz
    
    // Adobe : https://www.adobe.com/
    // Submitted by Ian Boston <******@****.***> and Lars Trieloff <******@****.***>
    adobeaemcloud.com
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Wed Dec 20 23:27:07 GMT 2023
    - 240.3K bytes
    - Viewed (3)
Back to top