Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 42 of 42 for oldregs (0.08 sec)

  1. pkg/apis/core/validation/validation.go

    		err := eqs.AddFunc(
    			func(newReq, oldReq core.NodeSelectorRequirement) bool {
    				// allow newReq to change to a GA key
    				if oldReq.Key != newReq.Key && betaToGALabel[oldReq.Key] == newReq.Key {
    					oldReq.Key = newReq.Key // +k8s:verify-mutation:reason=clone
    				}
    				return apiequality.Semantic.DeepEqual(newReq, oldReq)
    			},
    		)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  2. cmd/site-replication.go

    	return maxPrio + 10
    }
    
    // returns a slice with site names participating in site replciation but unspecified while adding
    // a new site.
    func getMissingSiteNames(oldDeps, newDeps set.StringSet, currSites []madmin.PeerInfo) []string {
    	diff := oldDeps.Difference(newDeps)
    	var diffSlc []string
    	for _, v := range currSites {
    		if diff.Contains(v.DeploymentID) {
    			diffSlc = append(diffSlc, v.Name)
    		}
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
Back to top