- Sort Score
- Result 10 results
- Languages All
Results 1 - 1 of 1 for averageLoadPenalty (0.24 sec)
-
android/guava/src/com/google/common/cache/CacheStats.java
* guaranteed not to throw an exception). If you require specific handling, we recommend * implementing your own stats collector. */ public double averageLoadPenalty() { long totalLoadCount = saturatedAdd(loadSuccessCount, loadExceptionCount); return (totalLoadCount == 0) ? 0.0 : (double) totalLoadTime / totalLoadCount; } /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Jul 08 18:32:10 UTC 2025 - 12.6K bytes - Viewed (0)