Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 332 for DOMAIN (0.53 sec)

  1. pkg/util/filesystem/util_windows.go

    	"k8s.io/klog/v2"
    )
    
    const (
    	// Amount of time to wait between attempting to use a Unix domain socket.
    	// As detailed in https://github.com/kubernetes/kubernetes/issues/104584
    	// the first attempt will most likely fail, hence the need to retry
    	socketDialRetryPeriod = 1 * time.Second
    	// Overall timeout value to dial a Unix domain socket, including retries
    	socketDialTimeout = 4 * time.Second
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 17:13:59 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. src/net/http/cookie.go

    			// into a host-only cookie. A leading dot is okay
    			// but won't be sent.
    			d := c.Domain
    			if d[0] == '.' {
    				d = d[1:]
    			}
    			b.WriteString("; Domain=")
    			b.WriteString(d)
    		} else {
    			log.Printf("net/http: invalid Cookie.Domain %q; dropping domain attribute", c.Domain)
    		}
    	}
    	var buf [len(TimeFormat)]byte
    	if validCookieExpires(c.Expires) {
    		b.WriteString("; Expires=")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:33:05 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  3. pkg/spiffe/spiffe.go

    		m, err := ParseIdentity(id)
    		if err != nil {
    			spiffeLog.Errorf("Failed to extract SPIFFE trust domain from %v: %v", id, err)
    			continue
    		}
    		for _, td := range trustDomainAliases {
    			m.TrustDomain = td
    			out.Insert(m.String())
    		}
    	}
    	return out
    }
    
    // GetTrustDomainFromURISAN extracts the trust domain part from the URI SAN in the X.509 certificate.
    func GetTrustDomainFromURISAN(uriSan string) (string, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. testing/architecture-test/src/test/java/org/gradle/architecture/test/TempDirectoryCreationControlTest.java

     * limitations under the License.
     */
    
    package org.gradle.architecture.test;
    
    import com.tngtech.archunit.core.domain.JavaCall;
    import com.tngtech.archunit.core.domain.JavaClass;
    import com.tngtech.archunit.core.domain.properties.HasOwner;
    import com.tngtech.archunit.junit.AnalyzeClasses;
    import com.tngtech.archunit.junit.ArchTest;
    import com.tngtech.archunit.lang.ArchCondition;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top