Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for MaxMilliValue (0.21 sec)

  1. plugin/pkg/admission/limitranger/admission.go

    	limit = limitQuantity.Value()
    	enforced = enforcedQuantity.Value()
    	// do a more precise comparison if possible (if the value won't overflow)
    	if request <= resource.MaxMilliValue && limit <= resource.MaxMilliValue && enforced <= resource.MaxMilliValue {
    		request = requestQuantity.MilliValue()
    		limit = limitQuantity.MilliValue()
    		enforced = enforcedQuantity.MilliValue()
    	}
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 13:04:39 UTC 2023
    - 25.8K bytes
    - Viewed (0)
  2. pkg/apis/core/validation/validation.go

    				maxRatioValue := float64(maxRatio.Value())
    				minQuantityValue := minQuantity.Value()
    				maxQuantityValue := maxQuantity.Value()
    				if maxRatio.Value() < resource.MaxMilliValue && minQuantityValue < resource.MaxMilliValue && maxQuantityValue < resource.MaxMilliValue {
    					maxRatioValue = float64(maxRatio.MilliValue()) / 1000
    					minQuantityValue = minQuantity.MilliValue()
    					maxQuantityValue = maxQuantity.MilliValue()
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
Back to top