Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,542 for doMain (0.2 sec)

  1. apache-maven/src/main/appended-resources/licenses/Public-Domain.txt

    Public Domain...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 17 19:14:22 UTC 2024
    - 13 bytes
    - Viewed (0)
  2. src/net/testdata/domain-resolv.conf

    # /etc/resolv.conf
    
    search test invalid
    domain localdomain
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 78 bytes
    - Viewed (0)
  3. releasenotes/notes/trust-domain-validation.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: security
    issue:
      - 26224
    releaseNotes:
    - |
      **Added** Trust Domain Validation by default rejecting requests in sidecars if the request is not from same trust domain
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 09 16:52:01 UTC 2020
    - 288 bytes
    - Viewed (0)
  4. releasenotes/notes/multicluster-global-domain.yaml

    upgradeNotes:
      - title: Multicluster `.global` Stub Domain Deprecation
        content: |
          As part of this release, Istio has switched to a new configuration for
          multi-primary (formerly "replicated control planes"). The new
          configuration is simpler, has fewer limitations, and has been thoroughly
          tested in a variety of environments. As a result, the `.global` stub
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 16 18:47:12 UTC 2020
    - 998 bytes
    - Viewed (0)
  5. 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)
  6. pilot/pkg/networking/plugin/authn/util_test.go

    		},
    		{
    			name: "Sequential duplicated trust domains in mesh config",
    			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"},
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 24 16:11:07 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/DfsImpl.java

        public boolean isTrustedDomain ( CIFSContext tf, String domain ) throws SmbAuthException {
            synchronized ( this.domainsLock ) {
                Map<String, Map<String, CacheEntry<DfsReferralDataInternal>>> domains = getTrustedDomains(tf);
                if ( domains == null )
                    return false;
                domain = domain.toLowerCase(Locale.ROOT);
                return domains.get(domain) != null;
            }
        }
    
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:07:29 UTC 2023
    - 29.1K bytes
    - Viewed (0)
  8. 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)
  9. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/PolymorphicDomainObjectContainerExtensions.kt

    
    /**
     * Creates a domain object with the specified name and type if it does not exists, and adds it to the container.
     *
     * @param name the name of the domain object to be created
     * @param <U> the type of the domain object to be created
     * @return the created domain object
     * @throws [InvalidUserDataException] if a domain object with the specified name already
     * exists or the container does not support creating a domain object with the specified
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  10. src/net/http/cookiejar/jar.go

    		// domain cookies when there is no domain; the whole notion of
    		// domain cookies requires a domain name to be well defined.
    		return host, true, nil
    	}
    
    	// From here on: If the cookie is valid, it is a domain cookie (with
    	// the one exception of a public suffix below).
    	// See RFC 6265 section 5.2.3.
    	if domain[0] == '.' {
    		domain = domain[1:]
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15K bytes
    - Viewed (0)
Back to top