Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 507 for DOMAIN (0.08 sec)

  1. src/crypto/x509/verify.go

    func domainToReverseLabels(domain string) (reverseLabels []string, ok bool) {
    	for len(domain) > 0 {
    		if i := strings.LastIndexByte(domain, '.'); i == -1 {
    			reverseLabels = append(reverseLabels, domain)
    			domain = ""
    		} else {
    			reverseLabels = append(reverseLabels, domain[i+1:])
    			domain = domain[:i]
    			if i == 0 { // domain == ""
    				// domain is prefixed with an empty label, append an empty
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:39 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  2. hack/make-rules/test-e2e-node.sh

               fi
               images="${images}${i}"
             fi
           done
      fi
    
      # Use cluster.local as default dns-domain
      test_args='--dns-domain="'${KUBE_DNS_DOMAIN:-cluster.local}'" '${test_args}
      test_args='--kubelet-flags="--cluster-domain='${KUBE_DNS_DOMAIN:-cluster.local}'" '${test_args}
    
      # Output the configuration we will try to run
      echo "Running tests remotely using"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 16 09:46:28 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  3. pkg/spiffe/spiffe_test.go

    		{
    			name:        "No trusted root CA",
    			certMap:     map[string][]string{"foo.domain.com": {validRootCert2}},
    			errContains: "x509: certificate signed by unknown authority",
    		},
    		{
    			name:        "Unknown trust domain",
    			certMap:     map[string][]string{"bar.domain.com": {validRootCert}},
    			errContains: "no cert pool found for trust domain foo.domain.com",
    		},
    		{
    			name: "trustdomain not mapped to the needed root cert",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  4. docs/en/docs/deployment/https.md

    * **TCP doesn't know about "domains"**. Only about IP addresses.
        * The information about the **specific domain** requested goes in the **HTTP data**.
    * The **HTTPS certificates** "certify" a **certain domain**, but the protocol and encryption happen at the TCP level, **before knowing** which domain is being dealt with.
    * **By default**, that would mean that you can only have **one HTTPS certificate per IP address**.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 16:31:18 UTC 2024
    - 12K bytes
    - Viewed (0)
  5. pkg/config/validation/agent/validation.go

    		return fmt.Errorf("domain name %q invalid (label %q invalid)", domain, parts[0])
    	} else if len(parts) > 1 {
    		return ValidateDNS1123Labels(parts[1])
    	}
    	return nil
    }
    
    // validate the trust domain format
    func ValidateTrustDomain(domain string) error {
    	if len(domain) == 0 {
    		return fmt.Errorf("empty domain name not allowed")
    	}
    	parts := strings.Split(domain, ".")
    	for i, label := range parts {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/net/idna/idna9.0.0.go

    // adding more fine-grained options, where later options override earlier
    // options.
    func New(o ...Option) *Profile {
    	p := &Profile{}
    	apply(&p.options, o)
    	return p
    }
    
    // ToASCII converts a domain or domain label to its ASCII form. For example,
    // ToASCII("bücher.example.com") is "xn--bcher-kva.example.com", and
    // ToASCII("golang") is "golang". If an error is encountered it will return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  7. pkg/kubelet/network/dns/dns_test.go

    				Nameservers: []string{"203.0.113.1"},
    				Searches:    []string{"my.domain", "second.domain"},
    				Options: []v1.PodDNSConfigOption{
    					{Name: "ndots", Value: &testNdotsOptionValue},
    					{Name: "debug"},
    				},
    			},
    			expectedDNSConfig: &runtimeapi.DNSConfig{
    				Servers:  []string{"203.0.113.1"},
    				Searches: []string{"my.domain", "second.domain"},
    				Options:  []string{"ndots:3", "debug"},
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/config/exentity/FileConfig.java

                    final Map<String, String> map = ParameterUtil.parse(fileAuth.getParameters());
                    final String domain = map.get("domain");
                    smbAuth.setDomain(domain == null ? StringUtil.EMPTY : domain);
                    smbAuth.setServer(fileAuth.getHostname());
                    smbAuth.setPort(fileAuth.getPort() == null ? -1 : fileAuth.getPort());
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/model/ObjectFactory.java

        /**
         * Creates a new {@link DomainObjectSet} for managing objects of the specified type.
         *
         * @param elementType The type of objects for the domain object set to contain.
         * @param <T> The type of objects for the domain object set to contain.
         * @return The domain object set. Never returns null.
         * @since 5.5
         */
        <T> DomainObjectSet<T> domainObjectSet(Class<T> elementType);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  10. src/crypto/x509/parser.go

    					}
    				} else {
    					// Otherwise it's a domain name.
    					domain := constraint
    					if len(domain) > 0 && domain[0] == '.' {
    						domain = domain[1:]
    					}
    					if _, ok := domainToReverseLabels(domain); !ok {
    						return nil, nil, nil, nil, fmt.Errorf("x509: failed to parse rfc822Name constraint %q", constraint)
    					}
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 38.5K bytes
    - Viewed (0)
Back to top