Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 736 for statx (0.04 sec)

  1. cmd/http-stats.go

    		return 0
    	}
    
    	stats.RLock()
    	defer stats.RUnlock()
    
    	val, ok := stats.apiStats[api]
    	if ok {
    		return val
    	}
    
    	return 0
    }
    
    // Load returns the recorded stats.
    func (stats *HTTPAPIStats) Load(toLower bool) map[string]int {
    	if stats == nil {
    		return map[string]int{}
    	}
    
    	stats.RLock()
    	defer stats.RUnlock()
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 06:25:13 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/service/scopes/VirtualFileSystemServices.java

    import org.gradle.api.internal.changedetection.state.PropertiesFileFilter;
    import org.gradle.api.internal.changedetection.state.ResourceEntryFilter;
    import org.gradle.api.internal.changedetection.state.ResourceFilter;
    import org.gradle.api.internal.changedetection.state.ResourceSnapshotterCacheService;
    import org.gradle.api.internal.changedetection.state.SplitFileHasher;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/networkfilter.go

    func buildRedisFilter(statPrefix, clusterName string) *listener.Filter {
    	redisProxy := &redis.RedisProxy{
    		LatencyInMicros: true,       // redis latency stats are captured in micro seconds which is typically the case.
    		StatPrefix:      statPrefix, // redis stats are prefixed with redis.<statPrefix> by Envoy
    		Settings: &redis.RedisProxy_ConnPoolSettings{
    			OpTimeout: durationpb.New(redisOpTimeout),
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  4. src/internal/trace/summary.go

    	// Necessarily overlaps with other stats.
    	TotalTime time.Duration
    
    	// Total time the goroutine spent in certain ranges; may overlap
    	// with other stats.
    	RangeTime map[string]time.Duration
    }
    
    func (s GoroutineExecStats) NonOverlappingStats() map[string]time.Duration {
    	stats := map[string]time.Duration{
    		"Execution time":         s.ExecTime,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  5. src/runtime/mgcsweep.go

    	if sl.sweepGen != mheap_.sweepgen {
    		throw("sweeper left outstanding across sweep generations")
    	}
    	for {
    		state := a.state.Load()
    		if (state&^sweepDrainedMask)-1 >= sweepDrainedMask {
    			throw("mismatched begin/end of activeSweep")
    		}
    		if a.state.CompareAndSwap(state, state-1) {
    			if state != sweepDrainedMask {
    				return
    			}
    			if debug.gcpacertrace > 0 {
    				live := gcController.heapLive.Load()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:52:18 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  6. src/runtime/mstats.go

    	stats.GCSys = memstats.gcMiscSys.load() + gcWorkBufInUse + gcProgPtrScalarBitsInUse
    	stats.OtherSys = memstats.other_sys.load()
    	stats.NextGC = heapGoal
    	stats.LastGC = memstats.last_gc_unix
    	stats.PauseTotalNs = memstats.pause_total_ns
    	stats.PauseNs = memstats.pause_ns
    	stats.PauseEnd = memstats.pause_end
    	stats.NumGC = memstats.numgc
    	stats.NumForcedGC = memstats.numforcedgc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  7. pkg/kubelet/logs/container_log_manager_test.go

    	c := &containerLogManager{osInterface: container.RealOS{}}
    	require.NoError(t, c.compressLog(testLog))
    	_, err = os.Stat(testLog + compressSuffix)
    	assert.NoError(t, err, "log should be compressed")
    	_, err = os.Stat(testLog + tmpSuffix)
    	assert.Error(t, err, "temporary log should be renamed")
    	_, err = os.Stat(testLog)
    	assert.Error(t, err, "original log should be removed")
    
    	rc, err := UncompressLog(testLog + compressSuffix)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  8. pkg/bootstrap/instance_test.go

    	gsm := got.GetStatsConfig().GetStatsMatcher()
    
    	if stats.prefixes == "" {
    		stats.prefixes = v2Prefixes + requiredEnvoyStatsMatcherInclusionPrefixes + v2Suffix
    	} else {
    		stats.prefixes = v2Prefixes + stats.prefixes + "," + requiredEnvoyStatsMatcherInclusionPrefixes + v2Suffix
    	}
    	if stats.suffixes == "" {
    		stats.suffixes = rbacEnvoyStatsMatcherInclusionSuffix
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  9. internal/grid/connection.go

    		}
    	}
    }
    
    // State returns the current connection status.
    func (c *Connection) State() State {
    	return State(atomic.LoadUint32((*uint32)(&c.state)))
    }
    
    // Stats returns the current connection stats.
    func (c *Connection) Stats() madmin.RPCMetrics {
    	conn := 0
    	if c.State() == StateConnected {
    		conn++
    	}
    	m := madmin.RPCMetrics{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  10. pkg/kubelet/winstats/network_stats.go

    	}
    
    	return adapters
    }
    
    func (n *networkCounter) listInterfaceStats() []cadvisorapi.InterfaceStats {
    	stats := make([]cadvisorapi.InterfaceStats, 0, len(n.adapterStats))
    	for _, stat := range n.adapterStats {
    		stats = append(stats, stat)
    	}
    	return stats
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 10.2K bytes
    - Viewed (0)
Back to top