- Sort Score
- Num 10 results
- Language All
Results 1 - 7 of 7 for totalRequests (0.06 seconds)
-
src/main/java/jcifs/util/SmbCircuitBreaker.java
} double failureRate = totalRequests > 0 ? (double) totalFailures / totalRequests : 0.0; long averageResponseTime = totalRequests > 0 ? totalResponseTime / totalRequests : 0; if (minResponseTime == Long.MAX_VALUE) { minResponseTime = 0; }Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 33.4K bytes - Click Count (0) -
cmd/http-tracer_test.go
}(i) } wg.Wait() finalStats := httpStats.toServerHTTPStats(false) totalRequests := 0 for _, v := range finalStats.TotalS3Requests.APIStats { totalRequests += v } if totalRequests == 0 { t.Error("Expected some total requests to be recorded, but got zero") } t.Logf("Total requests recorded: %d", totalRequests) t.Logf("Race condition test passed - no races detected") }
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 5.3K bytes - Click Count (0) -
src/main/java/jcifs/smb/MultiChannelManager.java
this.activeSessions = activeSessions; this.totalChannels = totalChannels; this.totalRequests = totalRequests; this.totalChannelsCreated = totalChannelsCreated; } public int getActiveSessions() { return activeSessions; }Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 20.5K bytes - Click Count (0) -
internal/config/lambda/event/targetlist.go
type TargetStats struct { TargetStats map[string]TargetStat } // TargetStat is the stats of a single target. type TargetStat struct { ID TargetID ActiveRequests int64 TotalRequests int64 FailedRequests int64 } // TargetList - holds list of targets indexed by target ID. type TargetList struct { sync.RWMutex targets map[TargetID]Target }Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 4.3K bytes - Click Count (0) -
internal/config/identity/plugin/config.go
return } } } // Metrics contains metrics about the authentication plugin service. type Metrics struct { LastReachableSecs, LastUnreachableSecs float64 // Last whole minute stats TotalRequests, FailedRequests int64 AvgSuccRTTMs float64 MaxSuccRTTMs float64 } // Metrics reports metrics related to plugin service reachability and stats for the last whole minuteCreated: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 13.3K bytes - Click Count (0) -
src/test/java/jcifs/util/SmbCircuitBreakerTest.java
SmbCircuitBreaker.CircuitBreakerMetrics metrics = cbWithMetrics.getMetrics(); assertNotNull(metrics, "Metrics should be available"); assertEquals(3, metrics.totalRequests(), "Should have 3 requests"); assertEquals(3, metrics.totalSuccesses(), "Should have 3 successes"); assertEquals(0, metrics.totalFailures(), "Should have 0 failures"); } finally {Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 23.2K bytes - Click Count (0) -
cmd/metrics-v2.go
Namespace: minioNamespace, Subsystem: lambdaSubsystem, Name: "total_requests", Help: "Total number of requests sent since start", Type: counterMetric, }, VariableLabels: map[string]string{"target_id": st.ID.ID, "target_name": st.ID.Name}, Value: float64(st.TotalRequests), }) metrics = append(metrics, MetricV2{ Description: MetricDescription{
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 133.6K bytes - Click Count (0)