Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 289 for rootfs (0.1 sec)

  1. src/cmd/relnote/relnote_test.go

    func TestCheckAPIFragments(t *testing.T) {
    	if !*flagCheck {
    		t.Skip("-check not specified")
    	}
    	root := testenv.GOROOT(t)
    	rootFS := os.DirFS(root)
    	files, err := fs.Glob(rootFS, "api/next/*.txt")
    	if err != nil {
    		t.Fatal(err)
    	}
    	t.Logf("checking release notes for %d files in api/next", len(files))
    	docFS := os.DirFS(filepath.Join(root, "doc", "next"))
    	// Check that each api/next file has a corresponding release note fragment.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 16:31:53 UTC 2024
    - 1K bytes
    - Viewed (0)
  2. pkg/kubelet/stats/cri_stats_provider_windows_test.go

    		t.Errorf("makeWinContainerStats() Memory = %v, want %v", got.Memory, expected.Memory)
    	}
    
    	if !reflect.DeepEqual(got.Rootfs, expected.Rootfs) {
    		t.Errorf("makeWinContainerStats() Rootfs = %v, want %v", got.Rootfs, expected.Rootfs)
    	}
    
    	// Log stats contain pointers to calculated resource values so we cannot use DeepEqual here
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 17 00:02:10 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  3. pkg/kubelet/stats/cri_stats_provider_windows.go

    		result.Memory.AvailableBytes = uint64Ptr(0)
    		result.Memory.PageFaults = uint64Ptr(0)
    	}
    	if stats.WritableLayer != nil {
    		result.Rootfs.Time = metav1.NewTime(time.Unix(0, stats.WritableLayer.Timestamp))
    		if stats.WritableLayer.UsedBytes != nil {
    			result.Rootfs.UsedBytes = &stats.WritableLayer.UsedBytes.Value
    		}
    	}
    	var err error
    	fsID := stats.GetWritableLayer().GetFsId()
    	if fsID != 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)
  4. pkg/kubelet/stats/cri_stats_provider_test.go

    	assert.Equal(cs.WritableLayer.Timestamp, actual.Rootfs.Time.UnixNano())
    	if imageFsInfo != nil {
    		assert.Equal(imageFsInfo.Available, *actual.Rootfs.AvailableBytes)
    		assert.Equal(imageFsInfo.Capacity, *actual.Rootfs.CapacityBytes)
    		assert.Equal(*imageFsInfo.InodesFree, *actual.Rootfs.InodesFree)
    		assert.Equal(*imageFsInfo.Inodes, *actual.Rootfs.Inodes)
    	} else {
    		assert.Nil(actual.Rootfs.AvailableBytes)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/container_manager_linux_test.go

    	mockCadvisor := cadvisortest.NewMockInterface(mockCtrl)
    	rootfs := cadvisorapiv2.FsInfo{
    		Capacity: 8000,
    	}
    	mockCadvisor.EXPECT().RootFsInfo().Return(rootfs, nil)
    	mockCadvisorError := cadvisortest.NewMockInterface(mockCtrlError)
    	mockCadvisorError.EXPECT().RootFsInfo().Return(cadvisorapiv2.FsInfo{}, errors.New("Unable to get rootfs data from cAdvisor interface"))
    	cases := []struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  6. pkg/kubelet/stats/cadvisor_stats_provider_test.go

    		"/pod3-c1":      getTestContainerInfo(seedPod3Container1, pName3, namespace0, cName31),
    	}
    
    	freeRootfsInodes := rootfsInodesFree
    	totalRootfsInodes := rootfsInodes
    	rootfs := cadvisorapiv2.FsInfo{
    		Capacity:   rootfsCapacity,
    		Available:  rootfsAvailable,
    		InodesFree: &freeRootfsInodes,
    		Inodes:     &totalRootfsInodes,
    	}
    
    	freeImagefsInodes := imagefsInodesFree
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  7. OWNERS_ALIASES

        - thockin
        - xing-yang
      # emeritus:
      # - rootfs
      sig-storage-reviewers:
        - carlory
        - chrishenzie
        - gnufied
        - humblec
        - jsafrane
        - jingxu97
        - mattcary
        - mauriciopoppe
        - msau42
        - saikat-royc
        - xing-yang
      # emeritus:
      # - davidz627
      # - Jiawei0227
      # - rootfs
      # - verult
      sig-scheduling-maintainers:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 23:08:03 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/container_manager_linux.go

    	// allocatable of the node
    	cm.nodeInfo = node
    
    	if localStorageCapacityIsolation {
    		rootfs, err := cm.cadvisorInterface.RootFsInfo()
    		if err != nil {
    			return fmt.Errorf("failed to get rootfs info: %v", err)
    		}
    		for rName, rCap := range cadvisor.EphemeralStorageCapacityFromFsInfo(rootfs) {
    			cm.capacity[rName] = rCap
    		}
    	}
    
    	// Ensure that node allocatable configuration is valid.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/options/generic.go

    // AddKubeadmOtherFlags adds flags that are not bound to a configuration file to the given flagset
    func AddKubeadmOtherFlags(flagSet *pflag.FlagSet, rootfsPath *string) {
    	flagSet.StringVar(
    		rootfsPath, "rootfs", *rootfsPath,
    		"The path to the 'real' host root filesystem. This will cause kubeadm to chroot into the provided path.",
    	)
    }
    
    // AddPatchesFlag adds the --patches flag to the given flagset
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  10. pkg/kubelet/eviction/eviction_manager.go

    	signalToNodeReclaimFuncs map[evictionapi.Signal]nodeReclaimFuncs
    	// last observations from synchronize
    	lastObservations signalObservations
    	// dedicatedImageFs indicates if imagefs is on a separate device from the rootfs
    	dedicatedImageFs *bool
    	// splitContainerImageFs indicates if containerfs is on a separate device from imagefs
    	splitContainerImageFs *bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 27 18:55:56 UTC 2024
    - 24.6K bytes
    - Viewed (0)
Back to top