Searched defs:maximumWeight (Results 1 - 5 of 5) sorted by relevance

/external/guava/guava/src/com/google/common/cache/
H A DCacheBuilderSpec.java46 * <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 DCacheBuilder.java107 * {@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 DCacheBuilder.java101 * {@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 Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/owasp/sanitizer/lib/guava-libraries/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...

Completed in 173 milliseconds