Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for maximumVolumeSize (0.34 sec)

  1. staging/src/k8s.io/api/storage/v1alpha1/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
    - 76.5K bytes
    - Viewed (0)
  2. 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)
Back to top