Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 123 for fsType (0.37 sec)

  1. staging/src/k8s.io/client-go/applyconfigurations/core/v1/azurediskvolumesource.go

    	return b
    }
    
    // WithFSType sets the FSType field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the FSType field is set to the value of the last call.
    func (b *AzureDiskVolumeSourceApplyConfiguration) WithFSType(value string) *AzureDiskVolumeSourceApplyConfiguration {
    	b.FSType = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 4.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/client-go/applyconfigurations/core/v1/scaleiopersistentvolumesource.go

    	StorageMode      *string                            `json:"storageMode,omitempty"`
    	VolumeName       *string                            `json:"volumeName,omitempty"`
    	FSType           *string                            `json:"fsType,omitempty"`
    	ReadOnly         *bool                              `json:"readOnly,omitempty"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 6.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/client-go/applyconfigurations/core/v1/rbdvolumesource.go

    	return b
    }
    
    // WithFSType sets the FSType field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the FSType field is set to the value of the last call.
    func (b *RBDVolumeSourceApplyConfiguration) WithFSType(value string) *RBDVolumeSourceApplyConfiguration {
    	b.FSType = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/client-go/applyconfigurations/core/v1/iscsivolumesource.go

    	return b
    }
    
    // WithFSType sets the FSType field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the FSType field is set to the value of the last call.
    func (b *ISCSIVolumeSourceApplyConfiguration) WithFSType(value string) *ISCSIVolumeSourceApplyConfiguration {
    	b.FSType = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 6.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/client-go/applyconfigurations/core/v1/csipersistentvolumesource.go

    	return b
    }
    
    // WithFSType sets the FSType field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the FSType field is set to the value of the last call.
    func (b *CSIPersistentVolumeSourceApplyConfiguration) WithFSType(value string) *CSIPersistentVolumeSourceApplyConfiguration {
    	b.FSType = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 05 03:36:24 UTC 2022
    - 7.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/client-go/applyconfigurations/core/v1/iscsipersistentvolumesource.go

    	Lun               *int32                             `json:"lun,omitempty"`
    	ISCSIInterface    *string                            `json:"iscsiInterface,omitempty"`
    	FSType            *string                            `json:"fsType,omitempty"`
    	ReadOnly          *bool                              `json:"readOnly,omitempty"`
    	Portals           []string                           `json:"portals,omitempty"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 7K bytes
    - Viewed (0)
  7. internal/disk/disk.go

    // Files - total inodes available
    // Ffree - free inodes available
    // FSType - file system type
    // Major - major dev id
    // Minor - minor dev id
    // Devname - device name
    type Info struct {
    	Total      uint64
    	Free       uint64
    	Used       uint64
    	Files      uint64
    	Ffree      uint64
    	FSType     string
    	Major      uint32
    	Minor      uint32
    	Name       string
    	Rotational *bool
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 26 19:34:50 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. pkg/volume/csi/expander.go

    		volumePath:        resizeOptions.DeviceMountPath,
    		stagingTargetPath: resizeOptions.DeviceStagePath,
    		volumeID:          csiSource.VolumeHandle,
    		newSize:           resizeOptions.NewSize,
    		fsType:            csiSource.FSType,
    		accessMode:        api.ReadWriteOnce,
    		mountOptions:      pv.Spec.MountOptions,
    		secrets:           nodeExpandSecrets,
    	}
    
    	if !fsVolume {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 31 17:23:56 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  9. pkg/api/persistentvolume/util_test.go

    			template: &api.PersistentVolume{
    				Spec: api.PersistentVolumeSpec{
    					PersistentVolumeSource: api.PersistentVolumeSource{
    						PhotonPersistentDisk: &api.PhotonPersistentDiskVolumeSource{
    							PdID:   "",
    							FSType: "",
    						},
    					},
    				},
    			},
    			expected: []string{
    				`spec.photonPersistentDisk: deprecated in v1.11, non-functional in v1.16+`,
    			},
    		},
    		{
    			name: "PV RBD deprecation warning",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  10. cmd/storage-datatypes_test.go

    		err := v.DecodeMsg(dc)
    		if err != nil {
    			b.Fatal(err)
    		}
    	}
    }
    
    func BenchmarkDecodeDiskInfoMsgp(b *testing.B) {
    	v := DiskInfo{
    		Total:     1000,
    		Free:      1000,
    		Used:      1000,
    		FSType:    "xfs",
    		RootDisk:  true,
    		Healing:   true,
    		Endpoint:  "http://localhost:9001/tmp/drive1",
    		MountPath: "/tmp/drive1",
    		ID:        "uuid",
    		Error:     "",
    	}
    	var buf bytes.Buffer
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 19 18:05:16 UTC 2022
    - 9.4K bytes
    - Viewed (0)
Back to top