Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 542 for scsi (0.05 sec)

  1. pkg/volume/iscsi/doc.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package iscsi contains the internal representation of Internet Small
    // Computer System Interface (iSCSI) volumes.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 16 17:48:21 UTC 2016
    - 750 bytes
    - Viewed (0)
  2. 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)
  3. pkg/volume/iscsi/attacher.go

    	if err != nil {
    		return fmt.Errorf("iscsi: failed to detach disk: %s\nError: %v", deviceMountPath, err)
    	}
    	klog.V(4).Infof("iscsi: %q is unmounted, deleting the directory", deviceMountPath)
    	err = os.RemoveAll(deviceMountPath)
    	if err != nil {
    		return fmt.Errorf("iscsi: failed to delete the directory: %s\nError: %v", deviceMountPath, err)
    	}
    	klog.V(4).Infof("iscsi: successfully detached disk: %s", deviceMountPath)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 04 08:51:31 UTC 2022
    - 6.8K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/volumerestrictions/volume_restrictions.go

    				return true
    			}
    		}
    
    		if volume.ISCSI != nil && existingVolume.ISCSI != nil {
    			iqn := volume.ISCSI.IQN
    			eiqn := existingVolume.ISCSI.IQN
    			// two ISCSI volumes are same, if they share the same iqn. As iscsi volumes are of type
    			// RWO or ROX, we could permit only one RW mount. Same iscsi volume mounted by multiple Pods
    			// conflict unless all other pods mount as read only.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 20 17:40:39 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"targetPortal":      "targetPortal is iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).",
    	"iqn":               "iqn is the target iSCSI Qualified Name.",
    	"lun":               "lun represents iSCSI Target Lun number.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  6. 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)
  7. tensorflow/compiler/mlir/tensorflow/transforms/guarantee_all_funcs_one_use.cc

    LogicalResult CheckNoRecursion(ModuleOp module, CallGraph &call_graph) {
      for (llvm::scc_iterator<const CallGraph *> scci =
               llvm::scc_begin<const CallGraph *>(&call_graph);
           !scci.isAtEnd(); ++scci) {
        if (scci.hasCycle()) {
          auto err = module.emitError()
                     << "A recursive call graph cannot be transformed to "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 05 23:50:19 UTC 2022
    - 4.8K 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. common-protos/k8s.io/api/core/v1/generated.proto

      // initiatorName is the custom iSCSI Initiator Name.
      // If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface
      // <target portal>:<volume name> will be created for the connection.
      // +optional
      optional string initiatorName = 12;
    }
    
    // Represents an ISCSI disk.
    // ISCSI volumes can only be mounted as read/write once.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  10. pkg/apis/core/types.go

    // ISCSI volumes can only be mounted as read/write once.
    // ISCSI volumes support ownership management and SELinux relabeling.
    type ISCSIPersistentVolumeSource struct {
    	// Required: iSCSI target portal
    	// the portal is either an IP or ip_addr:port if port is other than default (typically TCP ports 860 and 3260)
    	// +optional
    	TargetPortal string
    	// Required:  target iSCSI Qualified Name
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
Back to top