Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 48 of 48 for maximumVolumeSize (0.52 sec)

  1. staging/src/k8s.io/api/storage/v1beta1/generated.pb.go

    			if postIndex < 0 {
    				return ErrInvalidLengthGenerated
    			}
    			if postIndex > l {
    				return io.ErrUnexpectedEOF
    			}
    			if m.MaximumVolumeSize == nil {
    				m.MaximumVolumeSize = &resource.Quantity{}
    			}
    			if err := m.MaximumVolumeSize.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
    				return err
    			}
    			iNdEx = postIndex
    		default:
    			iNdEx = preIndex
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 133.9K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/volumebinding/binder.go

    }
    
    func capacitySufficient(capacity *storagev1.CSIStorageCapacity, sizeInBytes int64) bool {
    	limit := capacity.Capacity
    	if capacity.MaximumVolumeSize != nil {
    		// Prefer MaximumVolumeSize if available, it is more precise.
    		limit = capacity.MaximumVolumeSize
    	}
    	return limit != nil && limit.Value() >= sizeInBytes
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/volumebinding/binder_test.go

    		capacityQuantity := resource.MustParse(capacityStr)
    		c.Capacity = &capacityQuantity
    	}
    	if maximumVolumeSizeStr != "" {
    		maximumVolumeSizeQuantity := resource.MustParse(maximumVolumeSizeStr)
    		c.MaximumVolumeSize = &maximumVolumeSizeQuantity
    	}
    	return c
    }
    
    func makeBinding(pvc *v1.PersistentVolumeClaim, pv *v1.PersistentVolume) *BindingInfo {
    	return &BindingInfo{pvc: pvc.DeepCopy(), pv: pv.DeepCopy()}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__storage.k8s.io__v1_openapi.json

          ...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 481.9K bytes
    - Viewed (0)
  5. pkg/generated/openapi/zz_generated.openapi.go

    				Type:...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  6. staging/src/k8s.io/cli-runtime/artifacts/openapi/swagger-with-shared-parameters.json

         ...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 2.3M bytes
    - Viewed (0)
  7. api/openapi-spec/swagger.json

         ...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
  8. staging/src/k8s.io/cli-runtime/artifacts/openapi/swagger.json

              "type": "string"
            },
            "maximumVolumeSize": {
              "$ref": "#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 4.5M bytes
    - Viewed (0)
Back to top