- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for computeValue (0.05 seconds)
-
android/guava-tests/benchmark/com/google/common/util/concurrent/FuturesGetCheckedBenchmark.java
} for (int i = 0; i < otherEntriesInDataStructure; i++) { ClassValue<Boolean> classValue = new ClassValue<Boolean>() { @Override protected Boolean computeValue(Class<?> type) { return true; } }; classValue.get(exceptionType); retainedReferencesToOtherClassValues.add(classValue); } } @BenchmarkCreated: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Tue May 13 17:27:14 GMT 2025 - 6.5K bytes - Click Count (0) -
guava/src/com/google/common/util/concurrent/FuturesGetChecked.java
*/ private static final ClassValue<Boolean> isValidClass = new ClassValue<Boolean>() { @Override protected Boolean computeValue(Class<?> type) { checkExceptionClassValidity(type.asSubclass(Exception.class)); return true; } }; @OverrideCreated: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Sat Aug 09 01:14:59 GMT 2025 - 11.8K bytes - Click Count (0)