Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for S1 (0.01 sec)

  1. pilot/pkg/model/sidecar.go

    	}
    }
    
    func canMergeServices(s1, s2 *Service) bool {
    	// Hostname has been compared in the caller `appendSidecarServices`, so we donot need to compare again.
    	if s1.Attributes.Namespace != s2.Attributes.Namespace {
    		return false
    	}
    	if s1.Resolution != s2.Resolution {
    		return false
    	}
    	// kuberneres service registry has been checked before
    	if s1.Attributes.ServiceRegistry != s2.Attributes.ServiceRegistry {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:23 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  2. cmd/object-api-utils.go

    	}
    	return strings.HasSuffix(s, suffix)
    }
    
    // Validates if two strings are equal.
    func isStringEqual(s1 string, s2 string) bool {
    	if runtime.GOOS == globalWindowsOSName {
    		return strings.EqualFold(s1, s2)
    	}
    	return s1 == s2
    }
    
    // Ignores all reserved bucket names or invalid bucket names.
    func isReservedOrInvalidBucket(bucketEntry string, strict bool) bool {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 36.3K bytes
    - Viewed (0)
Back to top