Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for checkExpiration (0.05 sec)

  1. 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 {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 17.9K bytes
    - Viewed (0)
  2. 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) {
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jul 16 17:42:14 UTC 2025
    - 18.7K bytes
    - Viewed (0)
Back to top