Searched defs:maximumWeight (Results 1 - 5 of 5) sorted by relevance
/external/guava/guava/src/com/google/common/cache/ |
H A D | CacheBuilderSpec.java | 46 * <li>{@code maximumWeight=[long]}: sets {@link CacheBuilder#maximumWeight}. 68 * <li>{@code maximumSize} and {@code maximumWeight} 99 .put("maximumWeight", new MaximumWeightParser()) 113 @VisibleForTesting Long maximumWeight; field in class:CacheBuilderSpec 177 if (maximumWeight != null) { 178 builder.maximumWeight(maximumWeight); 244 maximumWeight, 265 && Objects.equal(maximumWeight, tha [all...] |
H A D | CacheBuilder.java | 107 * {@linkplain #maximumSize(long) maximumSize}, {@linkplain #maximumWeight(long) maximumWeight}, 113 * {@linkplain #maximumWeight(long) maximumWeight} is requested entries may be evicted on each cache 223 long maximumWeight = UNSET_INT; field in class:CacheBuilder 395 * <p>This feature cannot be used in conjunction with {@link #maximumWeight}. 404 checkState(this.maximumWeight == UNSET_INT, "maximum weight was already set to %s", 405 this.maximumWeight); 437 public CacheBuilder<K, V> maximumWeight(long weight) { method in class:CacheBuilder 438 checkState(this.maximumWeight [all...] |
/external/guava/guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/ |
H A D | CacheBuilder.java | 101 * {@linkplain #maximumSize(long) maximumSize}, {@linkplain #maximumWeight(long) maximumWeight}, 107 * {@linkplain #maximumWeight(long) maximumWeight} is requested entries may be evicted on each cache 217 long maximumWeight = UNSET_INT; field in class:CacheBuilder 327 * <p>This feature cannot be used in conjunction with {@link #maximumWeight}. 336 checkState(this.maximumWeight == UNSET_INT, "maximum weight was already set to %s", 337 this.maximumWeight); 348 return (weigher == null) ? maximumSize : maximumWeight; 571 checkState(maximumWeight [all...] |
/external/owasp/sanitizer/distrib/lib/ |
H A D | guava.jar | META-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ... |
/external/owasp/sanitizer/lib/guava-libraries/ |
H A D | guava.jar | META-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ... |
Completed in 173 milliseconds