- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for requestCount (0.2 sec)
-
src/main/java/jcifs/util/SmbCircuitBreaker.java
} public synchronized void recordFailure() { requestCount++; failureCount++; lastUpdateTime = System.currentTimeMillis(); } public synchronized void reset(long timestamp) { requestCount = 0; failureCount = 0; totalResponseTime = 0;Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 33.4K bytes - Viewed (0) -
cmd/tier.go
func (t *tierMetrics) logSuccess(tier string) { t.Lock() defer t.Unlock() stat := t.requestsCount[tier] stat.success++ t.requestsCount[tier] = stat } func (t *tierMetrics) logFailure(tier string) { t.Lock() defer t.Unlock() stat := t.requestsCount[tier] stat.failure++ t.requestsCount[tier] = stat } var ( // {minio_node}_{tier}_{ttlb_seconds_distribution}
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 15.6K bytes - Viewed (0)