Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 448 for osStats (1.6 sec)

  1. 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],
    	}
    	// as per the doc, only 11 fields are guaranteed
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 26 19:34:50 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. pkg/kubelet/stats/host_stats_provider.go

    // HostStatsProvider defines an interface for providing host stats associated with pod.
    type HostStatsProvider interface {
    	// getPodLogStats gets stats associated with pod log usage
    	getPodLogStats(podNamespace, podName string, podUID types.UID, rootFsInfo *cadvisorapiv2.FsInfo) (*statsapi.FsStats, error)
    	// getPodContainerLogStats gets stats associated with container log usage
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 17:55:59 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  3. src/crypto/x509/internal/macos/security.go

    	// verification error types.
    	ErrSecCertificateExpired = -67818
    	ErrSecHostNameMismatch   = -67602
    	ErrSecNotTrusted         = -67843
    )
    
    type OSStatus struct {
    	call   string
    	status int32
    }
    
    func (s OSStatus) Error() string {
    	return s.call + " error: " + strconv.Itoa(int(s.status))
    }
    
    // Dictionary keys are defined as build-time strings with CFSTR, but the Go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 21 20:05:17 UTC 2022
    - 9.1K bytes
    - Viewed (0)
  4. pkg/kubelet/stats/cri_stats_provider_linux.go

    		return
    	}
    	criNetwork := criPodStat.Linux.Network
    	iStats := statsapi.NetworkStats{
    		Time:           metav1.NewTime(time.Unix(0, criNetwork.Timestamp)),
    		InterfaceStats: criInterfaceToSummary(criNetwork.DefaultInterface),
    		Interfaces:     make([]statsapi.InterfaceStats, 0, len(criNetwork.Interfaces)),
    	}
    	for _, iface := range criNetwork.Interfaces {
    		iStats.Interfaces = append(iStats.Interfaces, criInterfaceToSummary(iface))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 16 11:09:04 UTC 2023
    - 4K bytes
    - Viewed (0)
  5. releasenotes/notes/envoy-stats-proxy-admin-port.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    issue: []
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 05 09:33:19 UTC 2024
    - 198 bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/crypto/sha3/keccakf_amd64.s

    	XORQ rBi, rT1;         \
    	MOVQ rT1, _bi(oState); \
    	                       \
    	NOTQ rBi;              \
    	ORQ  rBa, rBu;         \
    	ORQ  rBo, rBi;         \
    	XORQ rBo, rBu;         \
    	XORQ rBe, rBi;         \
    	MOVQ rBu, _bo(oState); \
    	MOVQ rBi, _be(oState); \
    	B_RBI_RCE;             \
    	                       \
    	/* Result g */         \
    	MOVQ _gu(iState), rBe; \
    	XORQ rDu, rBe;         \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 10 16:37:53 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  7. pkg/kubelet/server/stats/handler.go

    	// First return parameter is the image filesystem and
    	// second parameter is the container filesystem
    	ImageFsStats(ctx context.Context) (imageFs *statsapi.FsStats, containerFs *statsapi.FsStats, callErr error)
    	// The following stats are provided by cAdvisor.
    	//
    	// GetCgroupStats returns the stats and the networking usage of the cgroup
    	// with the specified cgroupName.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 14 21:31:38 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  8. pkg/kubelet/metrics/collectors/volume_stats_test.go

    			{
    				PodRef:    statsapi.PodReference{Name: "test-pod", Namespace: "test-namespace", UID: "UID_test-pod"},
    				StartTime: metav1.Now(),
    				VolumeStats: []statsapi.VolumeStats{
    					{
    						FsStats: statsapi.FsStats{
    							Time:           metav1.Now(),
    							AvailableBytes: newUint64Pointer(5.663154176e+09),
    							CapacityBytes:  newUint64Pointer(1.0434699264e+10),
    							UsedBytes:      newUint64Pointer(4.21789696e+09),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 9.5K bytes
    - Viewed (1)
  9. android/guava-tests/test/com/google/common/math/PairedStatsTest.java

        assertThat(EMPTY_PAIRED_STATS.toString())
            .isEqualTo("PairedStats{xStats=Stats{count=0}, yStats=Stats{count=0}}");
        assertThat(MANY_VALUES_PAIRED_STATS.toString())
            .isEqualTo(
                "PairedStats{xStats="
                    + MANY_VALUES_PAIRED_STATS.xStats()
                    + ", yStats="
                    + MANY_VALUES_PAIRED_STATS.yStats()
                    + ", populationCovariance="
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 14K bytes
    - Viewed (0)
  10. pkg/kubelet/stats/provider_test.go

    		expected := info.Spec.Memory.Limit - *stats.SwapUsageBytes
    		assert.EqualValues(t, expected, *stats.SwapAvailableBytes, label+".AvailableBytes")
    	}
    }
    
    func checkFsStats(t *testing.T, label string, seed int, stats *statsapi.FsStats) {
    	assert.EqualValues(t, seed+offsetFsCapacity, *stats.CapacityBytes, label+".CapacityBytes")
    	assert.EqualValues(t, seed+offsetFsAvailable, *stats.AvailableBytes, label+".AvailableBytes")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 20K bytes
    - Viewed (0)
Back to top