- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 347 for stat2 (0.02 seconds)
-
src/test/java/jcifs/util/ResourceManagerTest.java
TestResource resource1 = new TestResource("stat1"); TestResource resource2 = new TestResource("stat2"); String id1 = resourceManager.registerResource(resource1); resourceManager.registerResource(resource2); resourceManager.markClosed(id1); Map<String, Object> stats = resourceManager.getStatistics(); assertNotNull(stats);
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 8.9K bytes - Click Count (0) -
internal/rest/rpc-stats.go
// RPCStats holds information about the DHCP/TCP metrics and errors type RPCStats struct { Errs uint64 DialAvgDuration uint64 TTFBAvgDuration uint64 DialErrs uint64 } // GetRPCStats returns RPC stats, include calls errors and dhcp/tcp metrics func GetRPCStats() RPCStats { s := RPCStats{ Errs: atomic.LoadUint64(&globalStats.errs), DialErrs: atomic.LoadUint64(&globalStats.tcpDialErrs), }Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Tue Aug 13 18:21:34 GMT 2024 - 2.6K bytes - Click Count (0) -
architecture/build-state-model.md
The build state is managed by the `BuildState` class. An instance is created for each build in the build definition, once per build execution and is discarded at the end of the execution. The build state also includes what is currently called the "Gradle state". The Gradle state is being merged into the build state and is mostly empty. ### Project state
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed May 22 13:39:49 GMT 2024 - 3.4K bytes - Click Count (0) -
cmd/metrics-realtime.go
} if types.Contains(madmin.MetricsRPC) { gr := globalGrid.Load() if gr == nil { m.Errors = append(m.Errors, fmt.Sprintf("%s: Grid not initialized", byHostName)) } else { stats := gr.ConnStats() m.Aggregated.RPC = &stats } } // Add types... // ByHost is a shallow reference, so careful about sharing. m.ByHost = map[string]madmin.Metrics{byHostName: m.Aggregated}
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 6.3K bytes - Click Count (0) -
cmd/tier-last-day-stats.go
merged.UpdatedAt = cm.UpdatedAt } for i := range cl.Bins { merged.Bins[i] = cl.Bins[i].add(cm.Bins[i]) } return merged } // DailyAllTierStats is used to aggregate last day tier stats across MinIO servers type DailyAllTierStats map[string]lastDayTierStats func (l DailyAllTierStats) merge(m DailyAllTierStats) { for tier, st := range m { l[tier] = l[tier].merge(st) } }Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Mon Feb 19 22:54:46 GMT 2024 - 2.8K bytes - Click Count (0) -
cmd/metrics-v3-bucket-replication.go
if s, ok := bucketReplStats[bucket]; ok { stats := s.ReplicationStats if stats.hasReplicationUsage() { for arn, stat := range stats.Stats { labels := []string{bucketL, bucket, targetArnL, arn} m.Set(bucketReplLastHrFailedBytes, float64(stat.Failed.LastHour.Bytes), labels...) m.Set(bucketReplLastHrFailedCount, float64(stat.Failed.LastHour.Count), labels...)
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Wed Jun 04 20:45:31 GMT 2025 - 8.3K bytes - Click Count (0) -
internal/disk/stat_linux.go
} // refer https://www.kernel.org/doc/Documentation/block/stat.txt iostats = IOStats{ ReadIOs: stats[0], ReadMerges: stats[1], ReadSectors: stats[2], ReadTicks: stats[3], WriteIOs: stats[4], WriteMerges: stats[5], WriteSectors: stats[6], WriteTicks: stats[7], CurrentIOs: stats[8], TotalTicks: stats[9], ReqTicks: stats[10], }Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 4.8K bytes - Click Count (0) -
internal/config/lambda/event/targetlist.go
return nil, ErrARNNotFound{} } // Stats returns stats for targets. func (list *TargetList) Stats() TargetStats { t := TargetStats{} if list == nil { return t } list.RLock() defer list.RUnlock() t.TargetStats = make(map[string]TargetStat, len(list.targets)) for id, target := range list.targets { t.TargetStats[strings.ReplaceAll(id.String(), ":", "_")] = target.Stat() } return t }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) -
cmd/admin-server-info.go
gcStats := debug.GCStats{ // If stats.PauseQuantiles is non-empty, ReadGCStats fills // it with quantiles summarizing the distribution of pause time. // For example, if len(stats.PauseQuantiles) is 5, it will be // filled with the minimum, 25%, 50%, 75%, and maximum pause times. PauseQuantiles: make([]time.Duration, 5), } debug.ReadGCStats(&gcStats) // Truncate GC stats to max 5 entries. if len(gcStats.PauseEnd) > 5 {Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri May 24 23:05:23 GMT 2024 - 4.9K bytes - Click Count (1) -
guava/src/com/google/common/cache/Cache.java
* result of the query. Or use {@code LoadingCache.get(K)}, which lacks the ability to refer to * state other than that in the key. * * <p><b>Warning:</b> as with {@link CacheLoader#load}, {@code loader} <b>must not</b> return * {@code null}; it may either return a non-null value or throw an exception. * * <p>No observable state associated with this cache is modified until loading completes. *Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Mar 03 12:40:22 GMT 2026 - 8K bytes - Click Count (0)