Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 72 for volumeName (0.19 sec)

  1. staging/src/k8s.io/api/testdata/v1.29.0/batch.v1beta1.CronJob.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 62.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/HEAD/batch.v1beta1.CronJob.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 63.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.Pod.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 50.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/HEAD/core.v1.Pod.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.30.0/batch.v1.Job.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 55.3K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/volumebinding/binder_test.go

    	pvcUnbound = iota
    	pvcPrebound
    	pvcBound
    	pvcSelectedNode
    )
    
    func makeGenericEphemeralPVC(volumeName string, owned bool) *v1.PersistentVolumeClaim {
    	pod := makePod("test-pod").
    		withNamespace("testns").
    		withNodeName("node1").
    		withGenericEphemeralVolume("").Pod
    
    	pvc := makeTestPVC(pod.Name+"-"+volumeName, "1G", "", pvcBound, "pv-bound", "1", &immediateClass)
    	if owned {
    		controller := true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    //sys	FindFirstVolume(volumeName *uint16, bufferLength uint32) (handle Handle, err error) [failretval==InvalidHandle] = FindFirstVolumeW
    //sys	FindFirstVolumeMountPoint(rootPathName *uint16, volumeMountPoint *uint16, bufferLength uint32) (handle Handle, err error) [failretval==InvalidHandle] = FindFirstVolumeMountPointW
    //sys	FindNextVolume(findVolume Handle, volumeName *uint16, bufferLength uint32) (err error) = FindNextVolumeW
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  8. pkg/controller/volume/persistentvolume/binder_test.go

    			test:            testSyncClaim,
    		},
    
    		// [Unit test set 3] Syncing bound claim
    		{
    			// syncClaim with claim  bound and its claim.Spec.VolumeName is
    			// removed. Check it's marked as Lost.
    			name:            "3-1 - bound claim with missing VolumeName",
    			initialVolumes:  novolumes,
    			expectedVolumes: novolumes,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:37:30 UTC 2023
    - 65.8K bytes
    - Viewed (0)
  9. pkg/kubelet/eviction/helpers.go

    func podLocalVolumeUsage(volumeNames []string, podStats statsapi.PodStats) v1.ResourceList {
    	disk := resource.Quantity{Format: resource.BinarySI}
    	inodes := resource.Quantity{Format: resource.DecimalSI}
    	for _, volumeName := range volumeNames {
    		for _, volumeStats := range podStats.VolumeStats {
    			if volumeStats.Name == volumeName {
    				disk.Add(*diskUsage(&volumeStats.FsStats))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  10. src/os/os_test.go

    		t.Fatal(err)
    	}
    
    	if !SameFile(st, st1) {
    		t.Error("Stat doesn't follow relative symlink")
    	}
    
    	if runtime.GOOS == "windows" {
    		Remove(link)
    		err = Symlink(target[len(filepath.VolumeName(target)):], link)
    		if err != nil {
    			t.Fatal(err)
    		}
    
    		st1, err := Stat(link)
    		if err != nil {
    			t.Fatal(err)
    		}
    
    		if !SameFile(st, st1) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
Back to top