Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 529 for ecsi (0.06 sec)

  1. src/cmd/compile/internal/inline/inlheur/scoring.go

    			}
    			fni := ir.PkgFuncName(sl[i].Callee)
    			fnj := ir.PkgFuncName(sl[j].Callee)
    			if fni != fnj {
    				return fni < fnj
    			}
    			ecsi := EncodeCallSiteKey(sl[i])
    			ecsj := EncodeCallSiteKey(sl[j])
    			return ecsi < ecsj
    		})
    
    		mkname := func(fn *ir.Func) string {
    			var n string
    			if fn == nil || fn.Nname == nil {
    				return "<nil>"
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:42:52 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/nodevolumelimits/csi.go

    		return fmt.Errorf("converting volume(%s) from inline to csi: %w", vol.Name, err)
    	}
    	driverName, err := pl.translator.GetCSINameFromInTreeName(inTreeProvisionerName)
    	if err != nil {
    		return fmt.Errorf("looking up CSI driver name for provisioner %s: %w", inTreeProvisionerName, err)
    	}
    	// TranslateInTreeInlineVolumeToCSI should translate inline volume to CSI. If it is not set,
    	// the volume does not support inline. Skip the count.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 18:07:11 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. pkg/volume/csi/nodeinfomanager/nodeinfomanager_test.go

    				nodeIDMap{
    					"com.example.csi.driver1": "com.example.csi/csi-node1",
    				},
    				labelMap{
    					"com.example.csi/zone": "zoneA",
    				}, nil /*capacity*/),
    			existingCSINode: generateCSINode(
    				nodeIDMap{
    					"com.example.csi.driver1": "com.example.csi/csi-node1",
    				},
    				nil, /* volumeLimits */
    				topologyKeyMap{
    					"com.example.csi.driver1": {"com.example.csi/zone"},
    				},
    			),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Dec 17 02:02:59 UTC 2022
    - 34.3K bytes
    - Viewed (0)
  4. pkg/volume/util/device_util_linux.go

    			devices = append(devices, filepath.Join("/dev/", f.Name()))
    		}
    	}
    	return devices
    }
    
    // GetISCSIPortalHostMapForTarget given a target iqn, find all the scsi hosts logged into
    // that target. Returns a map of iSCSI portals (string) to SCSI host numbers (integers).
    //
    //	For example: {
    //	   "192.168.30.7:3260": 2,
    //	   "192.168.30.8:3260": 3,
    //	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 11:12:06 UTC 2022
    - 9.4K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/nodevolumelimits/csi_test.go

    	// In-tree volumes
    	inTreeOneVolPod := st.MakePod().PVC("csi-kubernetes.io/aws-ebs-0").Obj()
    	inTreeTwoVolPod := st.MakePod().PVC("csi-kubernetes.io/aws-ebs-1").PVC("csi-kubernetes.io/aws-ebs-2").Obj()
    
    	// pods with matching csi driver names
    	csiEBSOneVolPod := st.MakePod().PVC("csi-ebs.csi.aws.com-0").Obj()
    	csiEBSTwoVolPod := st.MakePod().PVC("csi-ebs.csi.aws.com-1").PVC("csi-ebs.csi.aws.com-2").Obj()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 18:07:11 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  6. pkg/volume/fc/fc_util.go

    	//   <VENDOR NAME> <IDENTIFIER NUMBER>
    	// Example of symlink under by-id:
    	//   /dev/by-id/scsi-3600508b400105e210000900000490000
    	//   /dev/by-id/scsi-<VENDOR NAME>_<IDENTIFIER NUMBER>
    	// The wwid could contain white space and it will be replaced
    	// underscore when wwid is exposed under /dev/by-id.
    
    	fcPath := "scsi-" + wwid
    	devID := byID
    	if dirs, err := io.ReadDir(devID); err == nil {
    		for _, f := range dirs {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 11:12:06 UTC 2022
    - 12.8K bytes
    - Viewed (0)
  7. pkg/api/v1/persistentvolume/util.go

    			return false
    		}
    	case source.CSI != nil:
    		if source.CSI.ControllerPublishSecretRef != nil {
    			if !visitor(source.CSI.ControllerPublishSecretRef.Namespace, source.CSI.ControllerPublishSecretRef.Name, false /* kubeletVisible */) {
    				return false
    			}
    		}
    		if source.CSI.ControllerExpandSecretRef != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 05 03:36:23 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  8. pkg/volume/csi/csi_block.go

     - operation_executor.MountVolume
       - csi.GetGlobalMapPath
       - csi.SetupDevice
         - NodeStageVolume
       - ASW.MarkDeviceAsMounted
       - csi.GetPodDeviceMapPath
       - csi.MapPodDevice
         - NodePublishVolume
       - util.MapBlockVolume
       - ASW.MarkVolumeAsMounted
    
     - operation_executor.UnmountVolume
       - csi.GetPodDeviceMapPath
       - util.UnmapBlockVolume
       - csi.UnmapPodDevice
         - NodeUnpublishVolume
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 06:07:40 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  9. pkg/api/v1/persistentvolume/util_test.go

    		"storageosns/Spec.PersistentVolumeSource.StorageOS.SecretRef",
    
    		"csi/Spec.PersistentVolumeSource.CSI.ControllerPublishSecretRef",
    		"csi/Spec.PersistentVolumeSource.CSI.NodePublishSecretRef",
    		"csi/Spec.PersistentVolumeSource.CSI.NodeStageSecretRef",
    		"csi/Spec.PersistentVolumeSource.CSI.ControllerExpandSecretRef",
    		"csi/Spec.PersistentVolumeSource.CSI.NodeExpandSecretRef",
    	)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 11:04:08 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  10. pkg/volume/csi/csi_util.go

    	attrs := map[string]string{
    		"csi.storage.k8s.io/pod.name":            pod.Name,
    		"csi.storage.k8s.io/pod.namespace":       pod.Namespace,
    		"csi.storage.k8s.io/pod.uid":             string(pod.UID),
    		"csi.storage.k8s.io/serviceAccount.name": pod.Spec.ServiceAccountName,
    		"csi.storage.k8s.io/ephemeral":           strconv.FormatBool(volumeMode == storage.VolumeLifecycleEphemeral),
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 28 17:14:00 UTC 2023
    - 7.3K bytes
    - Viewed (0)
Back to top