Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for sameStringSlice (0.39 sec)

  1. pkg/registry/core/service/strategy.go

    	if svc == nil {
    		return false
    	}
    	for _, ing := range svc.Status.LoadBalancer.Ingress {
    		if ing.IPMode != nil {
    			return true
    		}
    	}
    	return false
    }
    
    func sameStringSlice(a []string, b []string) bool {
    	if len(a) != len(b) {
    		return false
    	}
    	for i := range a {
    		if a[i] != b[i] {
    			return false
    		}
    	}
    	return true
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 13:09:36 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top