Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for FQDNs (0.03 sec)

  1. pkg/test/framework/components/echo/echotest/run.go

    		filteredForSource := t.applyCombinationFilters(fromInstance, t.destinations)
    		// make sure this targets the same deployments (not necessarily the same instances)
    		targetNames := filteredForSource.Services().FQDNs()
    		if len(commonTargets) == 0 {
    			commonTargets = targetNames
    		} else if !slices.Equal(targetNames, commonTargets) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 27 22:08:42 UTC 2023
    - 13K bytes
    - Viewed (0)
  2. pkg/config/validation/agent/validation.go

    	if 1 <= port && port <= 65535 {
    		return nil
    	}
    	return fmt.Errorf("port number %d must be in the range 1..65535", port)
    }
    
    // encapsulates DNS 1123 checks common to both wildcarded hosts and FQDNs
    func CheckDNS1123Preconditions(name string) error {
    	if len(name) > 255 {
    		return fmt.Errorf("domain name %q too long (max 255)", name)
    	}
    	if len(name) == 0 {
    		return fmt.Errorf("empty domain name not allowed")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/serviceentry/controller.go

    	// If this service entry had endpoints with IPs (i.e. resolution STATIC), then we do EDS update.
    	// If the service entry had endpoints with FQDNs (i.e. resolution DNS), then we need to do
    	// full push (as fqdn endpoints go via strict_dns clusters in cds).
    	if len(unchangedSvcs) > 0 {
    		if isDNSTypeServiceEntry(currentServiceEntry) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/httproute.go

    		// the real "foo.com"
    		// This works by providing a list of domains that were added as expanding the DNS domain as part of expandedHosts,
    		// and a list of known unexpanded FQDNs to compare against
    		if slices.Contains(expandedHosts, d) && knownFQDNs.Contains(d) { // O(n) search, but n is at most 10
    			continue
    		}
    		temp = append(temp, d)
    		vhdomains.Insert(strings.ToLower(d))
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  5. src/crypto/tls/handshake_client.go

    	}
    	if c.conn != nil {
    		return c.conn.RemoteAddr().String()
    	}
    	return ""
    }
    
    // hostnameInSNI converts name into an appropriate hostname for SNI.
    // Literal IP addresses and absolute FQDNs are not permitted as SNI values.
    // See RFC 6066, Section 3.
    func hostnameInSNI(name string) string {
    	host := name
    	if len(host) > 0 && host[0] == '[' && host[len(host)-1] == ']' {
    		host = host[1 : len(host)-1]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  6. pilot/pkg/model/push_context.go

    	for i := range vservices {
    		vservices[i] = virtualServices[i].DeepCopy()
    	}
    
    	totalVirtualServices.Record(float64(len(virtualServices)))
    
    	// convert all shortnames in virtual services into FQDNs
    	for _, r := range vservices {
    		resolveVirtualServiceShortnames(r.Spec.(*networking.VirtualService), r.Meta)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
Back to top