Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 319 for storageclasses (0.15 sec)

  1. pkg/registry/storage/storageclass/strategy_test.go

    	if Strategy.NamespaceScoped() {
    		t.Errorf("StorageClass must not be namespace scoped")
    	}
    	if Strategy.AllowCreateOnUpdate() {
    		t.Errorf("StorageClass should not allow create on update")
    	}
    
    	deleteReclaimPolicy := api.PersistentVolumeReclaimDelete
    	bindingMode := storage.VolumeBindingWaitForFirstConsumer
    	storageClass := &storage.StorageClass{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: "valid-class",
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 15 17:19:47 UTC 2017
    - 2.1K bytes
    - Viewed (0)
  2. internal/bucket/replication/destination.go

    	Bucket       string   `xml:"Bucket" json:"Bucket"`
    	StorageClass string   `xml:"StorageClass" json:"StorageClass"`
    	ARN          string
    	// EncryptionConfiguration TODO: not needed for MinIO
    }
    
    func (d Destination) isValidStorageClass() bool {
    	if d.StorageClass == "" {
    		return true
    	}
    	return d.StorageClass == "STANDARD" || d.StorageClass == "REDUCED_REDUNDANCY"
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. pkg/registry/storage/storageclass/strategy.go

    	storageClass := obj.(*storage.StorageClass)
    	return validation.ValidateStorageClass(storageClass)
    }
    
    // WarningsOnCreate returns warnings for the creation of the given object.
    func (storageClassStrategy) WarningsOnCreate(ctx context.Context, obj runtime.Object) []string {
    	return storageutil.GetWarningsForStorageClass(obj.(*storage.StorageClass))
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 25 07:15:34 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  4. pkg/registry/storage/storageclass/doc.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package storageClass provides Registry interface and its REST
    // implementation for storing storageclass api objects.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 21 13:14:38 UTC 2016
    - 713 bytes
    - Viewed (0)
  5. src/cmd/link/internal/loadxcoff/ldxcoff.go

    	}
    
    	switch s.StorageClass {
    	default:
    		return sym.Sxxx, fmt.Sprintf("getSymbolType for Storage class 0x%x not implemented", s.StorageClass)
    	case xcoff.C_HIDEXT, xcoff.C_EXT, xcoff.C_WEAKEXT:
    		switch s.AuxCSect.StorageMappingClass {
    		default:
    			return sym.Sxxx, fmt.Sprintf("getSymbolType for Storage class 0x%x and Storage Map 0x%x not implemented", s.StorageClass, s.AuxCSect.StorageMappingClass)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  6. internal/bucket/lifecycle/lifecycle_test.go

    			prefix:      "foodir/foobject/foo.txt",
    			want:        true,
    		},
    		{
    			inputConfig: `<LifecycleConfiguration><Rule><Status>Enabled</Status><Filter></Filter><NoncurrentVersionTransition><StorageClass>S3TIER-1</StorageClass></NoncurrentVersionTransition></Rule></LifecycleConfiguration>`,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:48 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  7. internal/bucket/lifecycle/transition_test.go

    	trTests := []struct {
    		input string
    		err   error
    	}{
    		{
    			input: `<Transition>
    			<Days>0</Days>
    			<StorageClass>S3TIER-1</StorageClass>
    		  </Transition>`,
    			err: nil,
    		},
    		{
    			input: `<Transition>
    			<Days>1</Days>
    			<Date>2021-01-01T00:00:00Z</Date>
    			<StorageClass>S3TIER-1</StorageClass>
    		  </Transition>`,
    			err: errTransitionInvalid,
    		},
    		{
    			input: `<Transition>
    			<Days>1</Days>
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Oct 01 18:58:17 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  8. cluster/addons/storage-class/azure/default.yaml

    apiVersion: storage.k8s.io/v1
    kind: StorageClass
    metadata:
      name: standard
      annotations:
        storageclass.kubernetes.io/is-default-class: "true"
      labels:
        addonmanager.kubernetes.io/mode: EnsureExists
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 24 04:11:47 UTC 2019
    - 245 bytes
    - Viewed (0)
  9. cluster/addons/storage-class/gce/default.yaml

    apiVersion: storage.k8s.io/v1
    kind: StorageClass
    metadata:
      name: standard
      annotations:
        storageclass.kubernetes.io/is-default-class: "true"
      labels:
        addonmanager.kubernetes.io/mode: EnsureExists
    provisioner: kubernetes.io/gce-pd
    parameters:
      type: pd-standard
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 20 13:54:49 UTC 2019
    - 300 bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.30.0/storage.k8s.io.v1.StorageClass.pb

    SataQiu <******@****.***> 1713430345 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 545 bytes
    - Viewed (0)
Back to top