Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for expireAfterWrite (0.14 sec)

  1. android/guava/src/com/google/common/cache/CacheBuilder.java

       * @throws IllegalStateException if {@link #expireAfterWrite} was already set
       */
      @SuppressWarnings("GoodTime") // should accept a Duration
      @CanIgnoreReturnValue
      public CacheBuilder<K, V> expireAfterWrite(long duration, TimeUnit unit) {
        checkState(
            expireAfterWriteNanos == UNSET_INT,
            "expireAfterWrite was already set to %s ns",
            expireAfterWriteNanos);
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 19:07:49 UTC 2024
    - 52K bytes
    - Viewed (0)
  2. guava/src/com/google/common/cache/CacheBuilder.java

       * @throws IllegalStateException if {@link #expireAfterWrite} was already set
       */
      @SuppressWarnings("GoodTime") // should accept a Duration
      @CanIgnoreReturnValue
      public CacheBuilder<K, V> expireAfterWrite(long duration, TimeUnit unit) {
        checkState(
            expireAfterWriteNanos == UNSET_INT,
            "expireAfterWrite was already set to %s ns",
            expireAfterWriteNanos);
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 19:07:49 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  3. 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.
       */
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 19:07:49 UTC 2024
    - 86.3K bytes
    - Viewed (0)
Back to top