Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for checkExpiration (0.35 sec)

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

          }
        }
        checkEviction(cchm);
        checkExpiration(cchm);
      }
    
      /**
       * Peeks into the cache's internals to verify that its expiration queue is consistent. Verifies
       * that the next/prev links in the expiration queue are correct, and that the queue is ordered by
       * expiration time.
       */
      static void checkExpiration(Cache<?, ?> cache) {
        if (hasLocalCache(cache)) {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Feb 20 17:00:05 GMT 2024
    - 16.7K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/cache/CacheTesting.java

          }
        }
        checkEviction(cchm);
        checkExpiration(cchm);
      }
    
      /**
       * Peeks into the cache's internals to verify that its expiration queue is consistent. Verifies
       * that the next/prev links in the expiration queue are correct, and that the queue is ordered by
       * expiration time.
       */
      static void checkExpiration(Cache<?, ?> cache) {
        if (hasLocalCache(cache)) {
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Tue Feb 20 17:00:05 GMT 2024
    - 16.7K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/base/SuppliersTest.java

        CountingSupplier countingCopy =
            (CountingSupplier) ((Suppliers.ExpiringMemoizingSupplier<Integer>) copy).delegate;
        checkExpiration(countingCopy, copy);
      }
    
      @J2ktIncompatible
      @GwtIncompatible // Thread.sleep
      private void checkExpiration(
          CountingSupplier countingSupplier, Supplier<Integer> memoizedSupplier)
          throws InterruptedException {
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Fri Feb 09 15:49:48 GMT 2024
    - 18.1K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/base/SuppliersTest.java

        CountingSupplier countingCopy =
            (CountingSupplier) ((Suppliers.ExpiringMemoizingSupplier<Integer>) copy).delegate;
        checkExpiration(countingCopy, copy);
      }
    
      @J2ktIncompatible
      @GwtIncompatible // Thread.sleep
      private void checkExpiration(
          CountingSupplier countingSupplier, Supplier<Integer> memoizedSupplier)
          throws InterruptedException {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri Feb 09 15:49:48 GMT 2024
    - 18.1K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/cache/CacheExpirationTest.java

                .expireAfterAccess(EXPIRING_TIME, MILLISECONDS)
                .removalListener(removalListener)
                .ticker(ticker)
                .build(loader);
        checkExpiration(cache, loader, ticker, removalListener);
      }
    
      private void checkExpiration(
          LoadingCache<String, Integer> cache,
          WatchedCreatorLoader loader,
          FakeTicker ticker,
          CountingRemovalListener<String, Integer> removalListener) {
    
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri Aug 05 17:21:46 GMT 2022
    - 18.7K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/cache/CacheExpirationTest.java

                .expireAfterAccess(EXPIRING_TIME, MILLISECONDS)
                .removalListener(removalListener)
                .ticker(ticker)
                .build(loader);
        checkExpiration(cache, loader, ticker, removalListener);
      }
    
      private void checkExpiration(
          LoadingCache<String, Integer> cache,
          WatchedCreatorLoader loader,
          FakeTicker ticker,
          CountingRemovalListener<String, Integer> removalListener) {
    
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Fri Aug 05 17:21:46 GMT 2022
    - 18.7K bytes
    - Viewed (0)
Back to top