Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 38 for Fqdn (0.06 sec)

  1. tests/testdata/certs/README.md

    # Self-signed certificates
    
        openssl genrsa -out cert.key 2048
        openssl req -new -x509 -sha256 -key cert.key -out cert.crt -days 3650
    
    For the common name, please type the following FQDN:
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 02 23:54:48 UTC 2018
    - 215 bytes
    - Viewed (0)
  2. src/net/hosts.go

    	canonicalName string
    }
    
    // hosts contains known host entries.
    var hosts struct {
    	sync.Mutex
    
    	// Key for the list of literal IP addresses must be a host
    	// name. It would be part of DNS labels, a FQDN or an absolute
    	// FQDN.
    	// For now the key is converted to lower case for convenience.
    	byName map[string]byName
    
    	// Key for the list of host names must be a literal IP address
    	// including IPv6 address with zone identifier.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 04 07:21:38 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/testdata/virtualservice_destinationhosts.yaml

            subset: v1
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: reviews-fqdn
      namespace: default
    spec:
      http:
      - route:
        - destination:
            host: reviews.default.svc.cluster.local # FQDN representation is valid and should not generate an error
            subset: v1
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 21 21:37:53 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  4. cmd/api-response_test.go

    		},
    		// Server binding to fqdn.
    		{
    			request: &http.Request{
    				Host: "s3.mybucket.org",
    				Header: map[string][]string{
    					"X-Forwarded-Scheme": {httpScheme},
    				},
    			},
    			bucket:           "mybucket",
    			object:           "test/1.txt",
    			expectedLocation: "http://s3.mybucket.org/mybucket/test/1.txt",
    		},
    		// Server binding to fqdn.
    		{
    			request: &http.Request{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 23 18:58:53 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  5. src/net/dnsconfig_unix_test.go

    		longName := longDomain[len(longDomain)-254+1+shortestSuffix:]
    		if longName[0] == '.' || longName[1] == '.' {
    			longName = "aa." + longName[3:]
    		}
    		for _, fqdn := range conf.nameList(longName) {
    			if len(fqdn) > 254 {
    				t.Errorf("got %d; want less than or equal to 254", len(fqdn))
    			}
    		}
    
    		// Now test a name that's too long for suffixing.
    		unsuffixable := "a." + longName[1:]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 03 17:41:32 UTC 2022
    - 7.1K bytes
    - Viewed (0)
  6. pilot/pkg/model/network_test.go

    			t.Fatalf("expected no gateways")
    		}
    	})
    }
    
    type fakeDNSServer struct {
    	*dns.Server
    	ttl     uint32
    	failure bool
    
    	mu sync.Mutex
    	// map fqdn hostname -> successful query count
    	hosts map[string]int
    }
    
    func newFakeDNSServer(ttl uint32, hosts sets.String) *fakeDNSServer {
    	var wg sync.WaitGroup
    	wg.Add(1)
    	s := &fakeDNSServer{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 16 01:18:03 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  7. istioctl/pkg/proxyconfig/testdata/config_dump_summary.txt

    Istio Version:       1.21.0-1226
    Istio Proxy Version: ee85c5f28702f00621aed895915fca565796b9e4
    Envoy Version:       0.0.0
    
    NAME                                                                SERVICE FQDN                          PORT     SUBSET     DIRECTION       TYPE       DESTINATION RULE
    cluster/agent                                                       cluster/agent                         -        -          -               STATIC     
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 23:08:06 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. pkg/test/framework/components/jwt/kube.go

    	ns namespace.Instance
    }
    
    func (s *serverImpl) FQDN() string {
    	return fmt.Sprintf("%s.%s.svc.cluster.local", serviceName, s.ns.Name())
    }
    
    func (s *serverImpl) HTTPPort() int {
    	return httpPort
    }
    
    func (s *serverImpl) HTTPSPort() int {
    	return httpsPort
    }
    
    func (s *serverImpl) JwksURI() string {
    	uri := fmt.Sprintf("http://%s:%d/jwks", s.FQDN(), s.HTTPPort())
    	return uri
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 22 23:45:43 UTC 2022
    - 4K bytes
    - Viewed (0)
  9. pkg/apis/core/validation/names.go

    //
    // ensure signerName is of the form domain.com/something and up to 571 characters.
    // This length and format is specified to accommodate signerNames like:
    // <fqdn>/<resource-namespace>.<resource-name>.
    // The max length of a FQDN is 253 characters (DNS1123Subdomain max length)
    // The max length of a namespace name is 63 characters (DNS1123Label max length)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  10. pkg/apis/discovery/types.go

    	AddressTypeIPv4 = AddressType(api.IPv4Protocol)
    	// AddressTypeIPv6 represents an IPv6 Address.
    	AddressTypeIPv6 = AddressType(api.IPv6Protocol)
    	// AddressTypeFQDN represents a FQDN.
    	AddressTypeFQDN = AddressType("FQDN")
    )
    
    // Endpoint represents a single logical "backend" implementing a service.
    type Endpoint struct {
    	// addresses of this endpoint. The contents of this field are interpreted
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 16 21:38:06 UTC 2023
    - 7.5K bytes
    - Viewed (0)
Back to top