Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for fhstatfs (0.59 sec)

  1. 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)
  2. cmd/http-stats.go

    		}
    	}
    
    	if w == nil { // when response recorder nil, this is an active request
    		hstats.currentS3Requests.Inc(api)
    		bh.httpStats[bucket] = hstats
    		return
    	} // else {
    	hstats.currentS3Requests.Dec(api) // decrement this once we have the response recorder.
    
    	hstats.totalS3Requests.Inc(api)
    	code := w.StatusCode
    
    	switch {
    	case code == 0:
    	case code == 499:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 06:25:13 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  3. src/runtime/defs_darwin_amd64.go

    	tv_nsec int64
    }
    
    //go:nosplit
    func (ts *timespec) setNsec(ns int64) {
    	ts.tv_sec = ns / 1e9
    	ts.tv_nsec = ns % 1e9
    }
    
    type fpcontrol struct {
    	pad_cgo_0 [2]byte
    }
    
    type fpstatus struct {
    	pad_cgo_0 [2]byte
    }
    
    type regmmst struct {
    	mmst_reg  [10]int8
    	mmst_rsrv [6]int8
    }
    
    type regxmm struct {
    	xmm_reg [16]int8
    }
    
    type regs64 struct {
    	rax    uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zsymaddr_zos_s390x.s

    	MOVD $·Lsetxattr(SB), R8
    	MOVD R8, ret+0(FP)
    	RET
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    TEXT ·get_FstatfsAddr(SB), NOSPLIT|NOFRAME, $0-8
    	MOVD $·Fstatfs(SB), R8
    	MOVD R8, ret+0(FP)
    	RET
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    TEXT ·get_FutimesAddr(SB), NOSPLIT|NOFRAME, $0-8
    	MOVD $·Futimes(SB), R8
    	MOVD R8, ret+0(FP)
    	RET
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  5. pkg/kubelet/images/image_gc_manager.go

    		return err
    	}
    
    	// Get disk usage on disk holding images.
    	fsStats, _, err := im.statsProvider.ImageFsStats(ctx)
    	if err != nil {
    		return err
    	}
    
    	var capacity, available int64
    	if fsStats.CapacityBytes != nil {
    		capacity = int64(*fsStats.CapacityBytes)
    	}
    	if fsStats.AvailableBytes != nil {
    		available = int64(*fsStats.AvailableBytes)
    	}
    
    	if available > capacity {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  6. pkg/kubelet/eviction/helpers_test.go

    		},
    		VolumeStats: []statsapi.VolumeStats{
    			{
    				FsStats: statsapi.FsStats{
    					UsedBytes: &workingSetBytes,
    				},
    				Name: "local-volume",
    			},
    		},
    		Containers: []statsapi.ContainerStats{
    			{
    				Name: pod.Name,
    				Logs: &statsapi.FsStats{
    					UsedBytes: &workingSetBytes,
    				},
    				Rootfs: &statsapi.FsStats{UsedBytes: &workingSetBytes},
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
  7. pkg/kubelet/images/image_gc_manager_test.go

    	mockStatsProvider := statstest.NewMockProvider(mockCtrl)
    	manager, _ := newRealImageGCManager(policy, mockStatsProvider)
    
    	mockStatsProvider.EXPECT().ImageFsStats(gomock.Any()).Return(&statsapi.FsStats{}, &statsapi.FsStats{}, fmt.Errorf("error"))
    	assert.NotNil(t, manager.GarbageCollect(ctx, time.Now()))
    }
    
    func TestGarbageCollectBelowSuccess(t *testing.T) {
    	ctx := context.Background()
    	policy := ImageGCPolicy{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 15:38:20 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  8. pkg/kubelet/stats/cri_stats_provider_test.go

    	for i, name := range volumeNames {
    		fsStats := statsapi.FsStats{
    			Time:           metav1.NewTime(time.Now()),
    			AvailableBytes: &availableBytes,
    			CapacityBytes:  &capacityBytes,
    			UsedBytes:      &usedBytes,
    			Inodes:         &inodes,
    			InodesFree:     &inodesFree,
    			InodesUsed:     &inodesUsed,
    		}
    		volumes[i] = statsapi.VolumeStats{
    			FsStats: fsStats,
    			Name:    name,
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  9. src/runtime/defs_darwin.go

    type Sigval C.union_sigval
    type Siginfo C.siginfo_t
    type Timeval C.struct_timeval
    type Itimerval C.struct_itimerval
    type Timespec C.struct_timespec
    
    type FPControl C.struct_fp_control
    type FPStatus C.struct_fp_status
    type RegMMST C.struct_mmst_reg
    type RegXMM C.struct_xmm_reg
    
    type Regs64 C.struct_x86_thread_state64
    type FloatState64 C.struct_x86_float_state64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  10. src/syscall/syscall_aix.go

    //sys	Fchownat(dirfd int, path string, uid int, gid int, flags int) (err error)
    //sys	Fpathconf(fd int, name int) (val int, err error)
    //sys	Fstat(fd int, stat *Stat_t) (err error)
    //sys	Fstatfs(fd int, buf *Statfs_t) (err error)
    //sys	Ftruncate(fd int, length int64) (err error)
    //sysnb	Getgid() (gid int)
    //sysnb	Getpid() (pid int)
    //sys	Geteuid() (euid int)
    //sys	Getegid() (egid int)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:50:55 UTC 2024
    - 17.9K bytes
    - Viewed (0)
Back to top