Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 31 - 33 of 33 for expireAfterWrite (0.07 seconds)

  1. android/guava-tests/test/com/google/common/cache/CacheLoadingTest.java

      }
    
      @AndroidIncompatible // Bug? expected:<1> but was:<2>
      public void testConcurrentExpirationLoading() throws InterruptedException {
        testConcurrentLoading(CacheBuilder.newBuilder().expireAfterWrite(10, SECONDS));
      }
    
      /**
       * On a successful concurrent computation, only one thread does the work, but all the threads get
       * the same result.
       */
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Mar 18 18:06:14 GMT 2026
    - 91K bytes
    - Click Count (0)
  2. android/guava/src/com/google/common/cache/LocalCache.java

                  .concurrencyLevel(concurrencyLevel)
                  .removalListener(removalListener);
          builder.strictParsing = false;
          if (expireAfterWriteNanos > 0) {
            builder.expireAfterWrite(expireAfterWriteNanos, NANOSECONDS);
          }
          if (expireAfterAccessNanos > 0) {
            builder.expireAfterAccess(expireAfterAccessNanos, NANOSECONDS);
          }
          if (weigher != OneWeigher.INSTANCE) {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Apr 01 17:27:13 GMT 2026
    - 143.5K bytes
    - Click Count (0)
  3. guava/src/com/google/common/cache/LocalCache.java

                  .concurrencyLevel(concurrencyLevel)
                  .removalListener(removalListener);
          builder.strictParsing = false;
          if (expireAfterWriteNanos > 0) {
            builder.expireAfterWrite(expireAfterWriteNanos, NANOSECONDS);
          }
          if (expireAfterAccessNanos > 0) {
            builder.expireAfterAccess(expireAfterAccessNanos, NANOSECONDS);
          }
          if (weigher != OneWeigher.INSTANCE) {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Apr 01 17:27:13 GMT 2026
    - 148.9K bytes
    - Click Count (0)
Back to Top