Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for withExpireAfterAccesses (0.12 sec)

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

      CacheBuilderFactory withExpireAfterWrites(Set<DurationSpec> durations) {
        this.expireAfterWrites = new LinkedHashSet<>(durations);
        return this;
      }
    
      @CanIgnoreReturnValue
      CacheBuilderFactory withExpireAfterAccesses(Set<DurationSpec> durations) {
        this.expireAfterAccesses = new LinkedHashSet<>(durations);
        return this;
      }
    
      @CanIgnoreReturnValue
      CacheBuilderFactory withRefreshes(Set<DurationSpec> durations) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Jul 08 18:32:10 UTC 2025
    - 8.4K bytes
    - Viewed (0)
Back to top