Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 448 for osStats (0.11 sec)

  1. guava/src/com/google/common/math/PairedStatsAccumulator.java

                  + (values.xStats().mean() - xStats.mean())
                      * (values.yStats().mean() - yStats.mean())
                      * values.count();
        }
        yStats.addAll(values.yStats());
      }
    
      /** Returns an immutable snapshot of the current statistics. */
      public PairedStats snapshot() {
        return new PairedStats(xStats.snapshot(), yStats.snapshot(), sumOfProductsOfDeltas);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  2. pkg/kubelet/stats/cadvisor_stats_provider.go

    type cadvisorStatsProvider struct {
    	// cadvisor is used to get the stats of the cgroup for the containers that
    	// are managed by pods.
    	cadvisor cadvisor.Interface
    	// resourceAnalyzer is used to get the volume stats of the pods.
    	resourceAnalyzer stats.ResourceAnalyzer
    	// imageService is used to get the stats of the image filesystem.
    	imageService kubecontainer.ImageService
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 16 13:34:22 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/math/PairedStatsAccumulatorTest.java

        assertStatsApproxEqual(EMPTY_STATS_ITERABLE, emptyAccumulatorByAddAllEmptyPairedStats.xStats());
        assertStatsApproxEqual(ONE_VALUE_STATS, oneValueAccumulator.xStats());
        assertStatsApproxEqual(ONE_VALUE_STATS, oneValueAccumulatorByAddAllEmptyPairedStats.xStats());
        assertStatsApproxEqual(TWO_VALUES_STATS, twoValuesAccumulator.xStats());
        assertStatsApproxEqual(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 23.4K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/math/PairedStatsAccumulator.java

                  + (values.xStats().mean() - xStats.mean())
                      * (values.yStats().mean() - yStats.mean())
                      * values.count();
        }
        yStats.addAll(values.yStats());
      }
    
      /** Returns an immutable snapshot of the current statistics. */
      public PairedStats snapshot() {
        return new PairedStats(xStats.snapshot(), yStats.snapshot(), sumOfProductsOfDeltas);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/authentication/token/cache/stats.go

    const (
    	hitTag  = "hit"
    	missTag = "miss"
    
    	fetchFailedTag = "error"
    	fetchOkTag     = "ok"
    
    	fetchInFlightTag = "in_flight"
    	fetchBlockedTag  = "blocked"
    )
    
    type statsCollector struct{}
    
    var stats = statsCollector{}
    
    func (statsCollector) authenticating(ctx context.Context) func(hit bool) {
    	start := time.Now()
    	return func(hit bool) {
    		var tag string
    		if hit {
    			tag = hitTag
    		} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 01 18:49:09 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  6. pkg/kubelet/stats/cri_stats_provider_windows.go

    	}
    	if stats.Memory != nil {
    		result.Memory.Time = metav1.NewTime(time.Unix(0, stats.Memory.Timestamp))
    		if stats.Memory.WorkingSetBytes != nil {
    			result.Memory.WorkingSetBytes = &stats.Memory.WorkingSetBytes.Value
    		}
    		if stats.Memory.AvailableBytes != nil {
    			result.Memory.AvailableBytes = &stats.Memory.AvailableBytes.Value
    		}
    		if stats.Memory.PageFaults != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 18 07:03:11 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  7. src/runtime/debug/garbage_test.go

    	runtime.ReadMemStats(&mstats)
    
    	if stats.NumGC != int64(mstats.NumGC) {
    		t.Errorf("stats.NumGC = %d, but mstats.NumGC = %d", stats.NumGC, mstats.NumGC)
    	}
    	if stats.PauseTotal != time.Duration(mstats.PauseTotalNs) {
    		t.Errorf("stats.PauseTotal = %d, but mstats.PauseTotalNs = %d", stats.PauseTotal, mstats.PauseTotalNs)
    	}
    	if stats.LastGC.UnixNano() != int64(mstats.LastGC) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 19 14:30:00 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  8. pkg/kubelet/stats/provider.go

    	ImageFsStats(ctx context.Context) (*statsapi.FsStats, *statsapi.FsStats, error)
    	ImageFsDevice(ctx context.Context) (string, error)
    }
    
    // RlimitStats returns base information about process count
    func (p *Provider) RlimitStats() (*statsapi.RlimitStats, error) {
    	return pidlimit.Stats()
    }
    
    // GetCgroupStats returns the stats of the cgroup with the cgroupName. Note that
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 13:56:22 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  9. pkg/kubelet/server/stats/volume_stat_calculator_test.go

    		Name:              vol0,
    		FsStats:           expectedFSStats(),
    		VolumeHealthStats: expectedVolumeHealthStats(),
    	})
    	// Verify 'vol1' has a PVC reference
    	assert.Contains(t, append(vs.EphemeralVolumes, vs.PersistentVolumes...), kubestats.VolumeStats{
    		Name: vol1,
    		PVCRef: &kubestats.PVCReference{
    			Name:      pvcClaimName0,
    			Namespace: namespace0,
    		},
    		FsStats:           expectedFSStats(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  10. cmd/metrics-v3-system-drive.go

    func (m *MetricValues) setDriveIOStatMetrics(ioStats driveIOStatMetrics, labels []string) {
    	m.Set(driveReadsPerSec, ioStats.readsPerSec, labels...)
    	m.Set(driveReadsKBPerSec, ioStats.readsKBPerSec, labels...)
    	if ioStats.readsPerSec > 0 {
    		m.Set(driveReadsAwait, ioStats.readsAwait, labels...)
    	}
    
    	m.Set(driveWritesPerSec, ioStats.writesPerSec, labels...)
    	m.Set(driveWritesKBPerSec, ioStats.writesKBPerSec, labels...)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun May 12 17:23:50 UTC 2024
    - 7.9K bytes
    - Viewed (0)
Back to top