Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for thresholdList (0.09 sec)

  1. pkg/kubelet/eviction/helpers_test.go

    			return false
    		}
    	}
    	return true
    }
    
    // thresholdList is a simple alias to support equality checking independent of order
    type thresholdList []evictionapi.Threshold
    
    // Equal adds the ability to check equality between two lists of node conditions.
    func (s1 thresholdList) Equal(s2 thresholdList) bool {
    	if len(s1) != len(s2) {
    		return false
    	}
    	for _, item := range s1 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
Back to top