Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for withExpireAfterWrites (0.1 sec)

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

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