Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for sda (0.03 sec)

  1. src/archive/tar/testdata/hdr-only.tar

    fifo file The quick brown fox jumped over the lazy dog! hardlink null sda symlink badlink fifo The quick brown fox jumped over the lazy dog! hardlink sda symli badlink...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 01 20:16:26 UTC 2015
    - 10K bytes
    - Viewed (0)
  2. pkg/volume/util/device_util_linux_test.go

    	}
    	return nil, errors.New("not Implemented for Mock")
    }
    
    func (handler *mockOsIOHandler) Lstat(name string) (os.FileInfo, error) {
    	links := map[string]string{
    		"/sys/block/dm-1/slaves/sda": "sda",
    		"/dev/sda":                   "sda",
    		"/sys/class/iscsi_host/host2/device/session1/target2:0:0/2:0:0:1": "2:0:0:1",
    		"/sys/class/iscsi_host/host2/device/session1/target2:0:0/2:0:0:2": "2:0:0:2",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 8K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_pods_linux_test.go

    						DevicePath: "/mnt/rawdisk",
    						Name:       "disk4",
    					},
    				},
    			},
    			expectedDevices: []kubecontainer.DeviceInfo{
    				{
    					PathInContainer: "/dev/sda",
    					PathOnHost:      "/dev/sda",
    					Permissions:     "mrw",
    				},
    				{
    					PathInContainer: "/dev/xvda",
    					PathOnHost:      "/dev/disk/by-path/diskPath",
    					Permissions:     "r",
    				},
    				{
    					PathInContainer: "/dev/xvdb",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 18:00:59 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  4. pkg/volume/fc/fc_util_test.go

    	return nil, nil
    }
    
    func (handler *fakeIOHandler) EvalSymlinks(path string) (string, error) {
    	switch path {
    	case "/dev/disk/by-path/pci-0000:41:00.0-fc-0x500a0981891b8dc5-lun-0":
    		return "/dev/sda", nil
    	case "/dev/disk/by-path/pci-0000:41:00.0-fc-0x500a0981891b8dc5-lun-1":
    		return "/dev/sdb", nil
    	case "/dev/disk/by-path/fc-0x5005076810213b32-lun-2":
    		return "/dev/sdc", nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 23 08:36:01 UTC 2022
    - 6.5K bytes
    - Viewed (0)
  5. pkg/volume/util/hostutil/hostutil_linux_test.go

    }
    
    func TestGetSELinuxMountContext(t *testing.T) {
    	info :=
    		`840 60 8:0 / /var/lib/kubelet/pods/d4f3b306-ad4c-4f7a-8983-b5b228039a8c/volumes/kubernetes.io~iscsi/mypv rw,relatime shared:421 - ext4 /dev/sda rw,context="system_u:object_r:container_file_t:s0:c314,c894"
    224 62 253:0 /var/lib/docker/devicemapper/test/shared /var/lib/docker/devicemapper/test/shared rw,relatime master:1 shared:44 - ext4 /dev/mapper/ssd-root rw,seclabel,data=ordered
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 14:49:03 UTC 2023
    - 8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "description": "The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \"1\". Similarly, the volume partition for /dev/sda is \"0\" (or you can leave the property empty).",
              "format": "int32",
              "type": "integer"
            },
            "readOnly": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/core/v1/generated.proto

      // If omitted, the default is to mount by volume name.
      // Examples: For volume /dev/sda1, you specify the partition as "1".
      // Similarly, the volume partition for /dev/sda is "0" (or you can leave the property empty).
      // +optional
      optional int32 partition = 3;
    
      // readOnly value true will force the readOnly setting in VolumeMounts.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  8. pkg/apis/core/types.go

    	// +optional
    	FSType string
    	// Optional: Partition on the disk to mount.
    	// If omitted, kubelet will attempt to mount the device name.
    	// Ex. For /dev/sda1, this field is "1", for /dev/sda, this field is 0 or empty.
    	// +optional
    	Partition int32
    	// Optional: Defaults to false (read/write). ReadOnly here will force
    	// the ReadOnly setting in VolumeMounts.
    	// +optional
    	ReadOnly bool
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"partition": "partition is the partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \"1\". Similarly, the volume partition for /dev/sda is \"0\" (or you can leave the property empty).",
    	"readOnly":  "readOnly value true will force the readOnly setting in VolumeMounts. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore",
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/generated.proto

      // If omitted, the default is to mount by volume name.
      // Examples: For volume /dev/sda1, you specify the partition as "1".
      // Similarly, the volume partition for /dev/sda is "0" (or you can leave the property empty).
      // +optional
      optional int32 partition = 3;
    
      // readOnly value true will force the readOnly setting in VolumeMounts.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
Back to top