Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,357 for DOMAIN (0.21 sec)

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

      namespace: default
    spec:
      gateways:
      - mesh
      hosts:
      - echo-1.default.svc.domain.suffix
      tls:
      - match:
        - sniHosts:
          - echo-1.default.svc.domain.suffix
        route:
        - destination:
            host: echo.default.svc.domain.suffix
            port:
              number: 80
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 19 18:39:48 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Cut.java

          return domain.minValue();
        }
    
        @Override
        Comparable<?> greatestValueBelow(DiscreteDomain<Comparable<?>> domain) {
          throw new AssertionError();
        }
    
        @Override
        Cut<Comparable<?>> canonical(DiscreteDomain<Comparable<?>> domain) {
          try {
            return Cut.<Comparable<?>>belowValue(domain.minValue());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/Cookie.kt

          }
    
        /**
         * Set the domain pattern for this cookie. The cookie will match [domain] and all of its
         * subdomains.
         */
        fun domain(domain: String): Builder = domain(domain, false)
    
        /**
         * Set the host-only domain for this cookie. The cookie will match [domain] but none of
         * its subdomains.
         */
        fun hostOnlyDomain(domain: String): Builder = domain(domain, true)
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:12:05 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  4. src/os/user/lookup_windows.go

    // listGroupsForUsernameAndDomain accepts username and domain and retrieves
    // a SID list of the local groups where this user is a member.
    func listGroupsForUsernameAndDomain(username, domain string) ([]string, error) {
    	// Check if both the domain name and user should be used.
    	var query string
    	joined, err := isDomainJoined()
    	if err == nil && joined && len(domain) != 0 {
    		query = domain + `\` + username
    	} else {
    		query = username
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 16:42:41 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  5. pilot/pkg/security/trustdomain/bundle.go

    		// or if the extracted/existing trust domain is "cluster.local", which is a pointer to the local trust domain
    		// and its aliases.
    		if stringMatch(trustDomainFromPrincipal, t.TrustDomains) || trustDomainFromPrincipal == constants.DefaultClusterLocalDomain {
    			// Generate configuration for trust domain and trust domain aliases.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 23 15:48:01 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/util/ParameterUtilTest.java

            assertEquals(1, parameterMap.size());
            assertEquals("D", parameterMap.get("domain"));
    
            parameters = "domain=DOMAIN";
            parameterMap = ParameterUtil.parse(parameters);
            assertEquals(1, parameterMap.size());
            assertEquals("DOMAIN", parameterMap.get("domain"));
    
            parameters = "\n";
            parameterMap = ParameterUtil.parse(parameters);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/CookieTest.kt

            "a=b; Path=/c;                     Max-Age=5; Secure; HttpOnly",
            "a=b; Path=/c; Domain=example.com;            Secure; HttpOnly",
            "a=b; Path=/c; Domain=example.com; Max-Age=5;         HttpOnly",
            "a=b; Path=/c; Domain=example.com; Max-Age=5; Secure;         ",
            "a=b; Path=/c; Domain=example.com; Max-Age=5; Secure; HttpOnly; SameSite=Lax",
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/net/InternetDomainNameTest.java

          assertFalse(name, domain.isPublicSuffix());
          assertFalse(name, domain.hasPublicSuffix());
          assertFalse(name, domain.isUnderPublicSuffix());
          assertFalse(name, domain.isTopPrivateDomain());
          assertNull(domain.publicSuffix());
        }
    
        for (String name : NON_PS) {
          final InternetDomainName domain = InternetDomainName.from(name);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Mar 05 13:16:00 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  9. pilot/pkg/networking/plugin/authn/util_test.go

    			meshConfig: &meshconfig.MeshConfig{
    				TrustDomain: "cluster.local",
    				TrustDomainAliases: []string{
    					"alias-1.domain", "alias-1.domain", "some-other-alias-1.domain", "alias-2.domain", "alias-2.domain",
    				},
    			},
    			want: []string{"cluster.local", "alias-1.domain", "some-other-alias-1.domain", "alias-2.domain"},
    		},
    		{
    			name: "Mixed duplicated trust domains in mesh config",
    			meshConfig: &meshconfig.MeshConfig{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 24 16:11:07 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/smb1/Dfs.java

        }
        public boolean isTrustedDomain(String domain,
                        NtlmPasswordAuthentication auth) throws SmbAuthException
        {
            HashMap domains = getTrustedDomains(auth);
            if (domains == null)
                return false;
            domain = domain.toLowerCase();
            return domains.get(domain) != null;
        }
        public SmbTransport getDc(String domain,
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 11.7K bytes
    - Viewed (0)
Back to top