Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for compareThresholdValue (1.47 sec)

  1. pkg/kubelet/eviction/helpers.go

    		if input.GracePeriod == item.GracePeriod && input.Operator == item.Operator && input.Signal == item.Signal && compareThresholdValue(input.Value, item.Value) {
    			return true
    		}
    	}
    	return false
    }
    
    // compareThresholdValue returns true if the two thresholdValue objects are logically the same
    func compareThresholdValue(a evictionapi.ThresholdValue, b evictionapi.ThresholdValue) bool {
    	if a.Quantity != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 53.6K bytes
    - Viewed (0)
Back to top