Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 293 for DOMAIN (0.12 sec)

  1. pilot/pkg/config/kube/gateway/testdata/isolation.yaml.golden

    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      annotations:
        internal.istio.io/gateway-semantics: gateway
        internal.istio.io/gateway-service: isolation-istio.gateway-conformance-infra.svc.domain.suffix
        internal.istio.io/parents: Gateway/isolation/empty-hostname.gateway-conformance-infra
      creationTimestamp: null
      name: isolation-istio-autogenerated-k8s-gateway-empty-hostname
      namespace: gateway-conformance-infra
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  2. src/net/http/cookie_test.go

    	},
    	{
    		&Cookie{Name: "cookie-3", Value: "three", Domain: ".example.com"},
    		"cookie-3=three; Domain=example.com",
    	},
    	{
    		&Cookie{Name: "cookie-4", Value: "four", Path: "/restricted/"},
    		"cookie-4=four; Path=/restricted/",
    	},
    	{
    		&Cookie{Name: "cookie-5", Value: "five", Domain: "wrong;bad.abc"},
    		"cookie-5=five",
    	},
    	{
    		&Cookie{Name: "cookie-6", Value: "six", Domain: "bad-.abc"},
    		"cookie-6=six",
    	},
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:33:05 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/ImmutableRangeSet.java

        private final ImmutableList<Range<C>> ranges;
        private final DiscreteDomain<C> domain;
    
        AsSetSerializedForm(ImmutableList<Range<C>> ranges, DiscreteDomain<C> domain) {
          this.ranges = ranges;
          this.domain = domain;
        }
    
        Object readResolve() {
          return new ImmutableRangeSet<C>(ranges).asSet(domain);
        }
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/TransformReplacer.java

            }
        }
    
        private Loader getLoader(ProtectionDomain domain) {
            // This is a very verbose Java 6-compatible way of doing
            // return loaders.computeIfAbsent(domain, this::createLoaderForDomain).
            Loader transformLoader = loaders.get(domain);
            if (transformLoader == null) {
                transformLoader = storeIfAbsent(domain, createLoaderForDomain(domain));
                if (closed) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  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