Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 84 for fsType (0.16 sec)

  1. cmd/storage-datatypes.go

    //
    //msgp:tuple DiskInfo
    type DiskInfo struct {
    	Total      uint64
    	Free       uint64
    	Used       uint64
    	UsedInodes uint64
    	FreeInodes uint64
    	Major      uint32
    	Minor      uint32
    	NRRequests uint64
    	FSType     string
    	RootDisk   bool
    	Healing    bool
    	Scanning   bool
    	Endpoint   string
    	MountPath  string
    	ID         string
    	Rotational bool
    	Metrics    DiskMetrics
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  2. pkg/volume/plugins.go

    }
    
    const (
    	// Common parameter which can be specified in StorageClass to specify the desired FSType
    	// Provisioners SHOULD implement support for this if they are block device based
    	// Must be a filesystem type supported by the host operating system.
    	// Ex. "ext4", "xfs", "ntfs". Default value depends on the provisioner
    	VolumeParameterFSType = "fstype"
    
    	ProbeAddOrUpdate ProbeOperation = 1 << iota
    	ProbeRemove
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  3. pkg/volume/util/operationexecutor/operation_executor.go

    	//     	 - mountPath: /test-pd
    	//     	   name: test-volume
    	//     volumes:
    	//     - name: test-volume			<- InnerVolumeSpecName
    	//     	 gcePersistentDisk:
    	//     	   pdName: my-data-disk
    	//     	   fsType: ext4
    	InnerVolumeSpecName string
    
    	// outerVolumeSpecName is the podSpec.Volume[x].Name of the volume. If the
    	// volume was referenced through a persistent volume claim, this contains
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  4. pkg/volume/util/operationexecutor/operation_executor_test.go

    		},
    		Spec: v1.PodSpec{
    			Volumes: []v1.Volume{
    				{
    					Name: pdName,
    					VolumeSource: v1.VolumeSource{
    						GCEPersistentDisk: &v1.GCEPersistentDiskVolumeSource{
    							PDName:   pdName,
    							FSType:   "ext4",
    							ReadOnly: false,
    						},
    					},
    				},
    			},
    			Containers: []v1.Container{
    				{
    					Name:  "pd-volume-test",
    					Image: "registry.k8s.io/mounttest:0.8",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/storage/v1/generated.proto

      // to determine if Kubernetes should modify ownership and permissions of the volume.
      // With the default policy the defined fsGroup will only be applied
      // if a fstype is defined and the volume's access mode contains ReadWriteOnce.
      //
      // +optional
      optional string fsGroupPolicy = 5;
    
      // tokenRequests indicates the CSI driver needs pods' service account
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/storage/v1beta1/generated.proto

      // to determine if Kubernetes should modify ownership and permissions of the volume.
      // With the default policy the defined fsGroup will only be applied
      // if a fstype is defined and the volume's access mode contains ReadWriteOnce.
      //
      // +optional
      optional string fsGroupPolicy = 5;
    
      // tokenRequests indicates the CSI driver needs pods' service account
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 25K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/storage/v1beta1/generated.proto

      // to determine if Kubernetes should modify ownership and permissions of the volume.
      // With the default policy the defined fsGroup will only be applied
      // if a fstype is defined and the volume's access mode contains ReadWriteOnce.
      //
      // +optional
      optional string fsGroupPolicy = 5;
    
      // tokenRequests indicates the CSI driver needs pods' service account
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/storage/v1/generated.proto

      // to determine if Kubernetes should modify ownership and permissions of the volume.
      // With the default policy the defined fsGroup will only be applied
      // if a fstype is defined and the volume's access mode contains ReadWriteOnce.
      //
      // +optional
      optional string fsGroupPolicy = 5;
    
      // tokenRequests indicates the CSI driver needs pods' service account
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  9. cmd/signature-v4.go

    }
    
    // getSigningKey hmac seed to calculate final signature.
    func getSigningKey(secretKey string, t time.Time, region string, stype serviceType) []byte {
    	date := sumHMAC([]byte("AWS4"+secretKey), []byte(t.Format(yyyymmdd)))
    	regionBytes := sumHMAC(date, []byte(region))
    	service := sumHMAC(regionBytes, []byte(stype))
    	signingKey := sumHMAC(service, []byte("aws4_request"))
    	return signingKey
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 16 23:13:47 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  10. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/extensions/property/PropertyUpgradeAnnotatedMethodReader.java

            GradleLazyType gradleLazyType = GradleLazyType.from(typeName);
            switch (gradleLazyType) {
                case CONFIGURABLE_FILE_COLLECTION:
                    return FILE_COLLECTION.asType();
                case DIRECTORY_PROPERTY:
                case REGULAR_FILE_PROPERTY:
                    return Type.getType(File.class);
                case LIST_PROPERTY:
                    return Type.getType(List.class);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:40 UTC 2024
    - 24.6K bytes
    - Viewed (0)
Back to top