- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for loadExceptionRate (0.16 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 loadExceptionRate() { long totalLoadCount = saturatedAdd(loadSuccessCount, loadExceptionCount); return (totalLoadCount == 0) ? 0.0 : (double) loadExceptionCount / totalLoadCount; } /**
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 19:07:49 UTC 2024 - 12.6K bytes - Viewed (0) -
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 loadExceptionRate() { long totalLoadCount = saturatedAdd(loadSuccessCount, loadExceptionCount); return (totalLoadCount == 0) ? 0.0 : (double) loadExceptionCount / totalLoadCount; } /**
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 19:07:49 UTC 2024 - 12.6K bytes - Viewed (0)