Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for FQDNs (0.09 sec)

  1. pkg/test/framework/components/echo/services.go

    // Service.
    func (d Services) GetByService(service string) Target {
    	for _, target := range d {
    		if target.Config().Service == service {
    			return target
    		}
    	}
    	return nil
    }
    
    // FQDNs gives the fully-qualified-domain-names each deployment in order.
    func (d Services) FQDNs() []string {
    	var out []string
    	for _, target := range d {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 21 16:42:24 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/JAASAuthenticator.java

     * get proper ticket caching.
     * 
     * Be advised that short/NetBIOS name usage is not supported with this authenticator. Always specify full FQDNs/Realm.
     * This can be a problem if using DFS in it's default configuration as that still returns referrals in short form.
     * See <a href="https://support.microsoft.com/en-us/kb/244380">KB-244380</a> for compatible server configuration.
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 8.1K bytes
    - Viewed (0)
  3. pkg/apis/discovery/validation/validation_test.go

    					Protocol: protocolPtr(api.ProtocolTCP),
    				}},
    				Endpoints: []discovery.Endpoint{{
    					Addresses: []string{"a00:100::4"},
    					Hostname:  utilpointer.String("valid-123"),
    				}},
    			},
    		},
    		"good-fqdns": {
    			expectedErrors: 0,
    			endpointSlice: &discovery.EndpointSlice{
    				ObjectMeta:  standardMeta,
    				AddressType: discovery.AddressTypeFQDN,
    				Ports: []discovery.EndpointPort{{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 05 10:48:05 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/Kerb5Authenticator.java

     * 
     * Uses a subject that contains kerberos credentials for use in GSSAPI context establishment.
     * 
     * Be advised that short/NetBIOS name usage is not supported with this authenticator. Always specify full FQDNs.
     * This can be a problem if using DFS in it's default configuration as they still return referrals in short form.
     * See <a href="https://support.microsoft.com/en-us/kb/244380">KB-244380</a> for compatible server configuration.
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 13K bytes
    - Viewed (0)
  5. src/main/java/jcifs/Configuration.java

         * correct for your domain.
         * 
         * Property <tt>jcifs.smb.client.dfs.convertToFQDN</tt> (boolean, default false)
         * 
         * @return whether to convert NetBIOS names returned by DFS to FQDNs
         */
        boolean isDfsConvertToFQDN ();
    
    
        /**
         * Minimum protocol version
         * 
         * Property <tt>jcifs.smb.client.minVersion</tt> (string, default SMB1)
         * 
         * @see DialectVersion
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 18K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top