Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for dotpath (0.14 sec)

  1. cmd/storage-datatypes_gen.go

    			}
    		case "dv":
    			z.DstVolume, err = dc.ReadString()
    			if err != nil {
    				err = msgp.WrapError(err, "DstVolume")
    				return
    			}
    		case "dp":
    			z.DstPath, err = dc.ReadString()
    			if err != nil {
    				err = msgp.WrapError(err, "DstPath")
    				return
    			}
    		case "fi":
    			err = z.FI.DecodeMsg(dc)
    			if err != nil {
    				err = msgp.WrapError(err, "FI")
    				return
    			}
    		case "ro":
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 130.6K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_pods.go

    			}
    
    			volumePath := hostPath
    			hostPath = filepath.Join(volumePath, subPath)
    
    			if subPathExists, err := hu.PathExists(hostPath); err != nil {
    				klog.ErrorS(nil, "Could not determine if subPath exists, will not attempt to change its permissions", "path", hostPath)
    			} else if !subPathExists {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  3. pkg/volume/util/operationexecutor/operation_generator.go

    		verbosity := klog.Level(1)
    		if isRemount {
    			verbosity = klog.Level(4)
    		}
    		klog.V(verbosity).InfoS(detailedMsg, "pod", klog.KObj(volumeToMount.Pod))
    		resizeOptions.DeviceMountPath = volumeMounter.GetPath()
    
    		_, resizeError = og.expandVolumeDuringMount(volumeToMount, actualStateOfWorld, resizeOptions)
    		if resizeError != nil {
    			klog.Errorf("MountVolume.NodeExpandVolume failed with %v", resizeError)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
Back to top