Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 501 for domains (0.19 sec)

  1. istioctl/pkg/writer/envoy/configdump/route_test.go

    	tests := []struct {
    		desc     string
    		domains  []string
    		expected string
    	}{
    		{
    			desc:     "test zero domain",
    			domains:  []string{},
    			expected: "",
    		},
    		{
    			desc:     "test only one domain",
    			domains:  []string{"example.com"},
    			expected: "example.com",
    		},
    		{
    			desc:     "test domains with port",
    			domains:  []string{"example.com", "example.com:8080"},
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Nov 29 12:37:14 GMT 2023
    - 2.8K bytes
    - Viewed (0)
  2. 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;
            }
        }
    
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Thu Jan 05 13:07:29 GMT 2023
    - 29.1K bytes
    - Viewed (0)
  3. istioctl/pkg/writer/envoy/configdump/route.go

    			}
    		}
    	}
    	return w.Flush()
    }
    
    func describeRouteDomains(domains []string) string {
    	if len(domains) == 0 {
    		return ""
    	}
    	if len(domains) == 1 {
    		return domains[0]
    	}
    
    	// Return the shortest non-numeric domain.  Count of domains seems uninteresting.
    	max := 2
    	withoutPort := make([]string, 0, len(domains))
    	for _, d := range domains {
    		if !strings.Contains(d, ":") {
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu May 11 05:38:17 GMT 2023
    - 7.2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/dcerpc/msrpc/lsarpc.java

                        domains = new LsarTrustInformation[_domainss];
                    }
                    _src = _src.derive(_domainsi);
                    for (int _i = 0; _i < _domainss; _i++) {
                        if (domains[_i] == null) {
                            domains[_i] = new LsarTrustInformation();
                        }
                        domains[_i].decode(_src);
                    }
                }
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 33K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/net/HostSpecifierTest.java

          ImmutableList.of("1.2.3", "2001:db8::1::::::0", "[2001:db8::1", "[::]:80");
    
      private static final ImmutableList<String> GOOD_DOMAINS =
          ImmutableList.of("com", "google.com", "foo.co.uk");
    
      private static final ImmutableList<String> BAD_DOMAINS =
          ImmutableList.of("foo.blah", "", "[google.com]");
    
      public void testGoodIpAddresses() throws ParseException {
        for (String spec : GOOD_IPS) {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri Feb 18 15:33:20 GMT 2022
    - 3.7K bytes
    - Viewed (0)
  6. cmd/api-response_test.go

    				},
    			},
    			domains:          []string{"mys3.bucket.org"},
    			bucket:           "mybucket",
    			object:           "test/1.txt",
    			expectedLocation: "https://mybucket.mys3.bucket.org/test/1.txt",
    		},
    	}
    	for _, testCase := range testCases {
    		testCase := testCase
    		t.Run("", func(t *testing.T) {
    			gotLocation := getObjectLocation(testCase.request, testCase.domains, testCase.bucket, testCase.object)
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Fri Apr 23 18:58:53 GMT 2021
    - 3.5K bytes
    - Viewed (0)
  7. 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,
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 11.7K bytes
    - Viewed (0)
  8. src/main/java/jcifs/dcerpc/msrpc/lsarpc.java

                            throw new NdrException(NdrException.INVALID_CONFORMANCE);
                        this.domains = new LsarTrustInformation[_domainss];
                    }
                    _src = _src.derive(_domainsi);
                    for ( int _i = 0; _i < _domainss; _i++ ) {
                        if ( this.domains[ _i ] == null ) {
                            this.domains[ _i ] = new LsarTrustInformation();
                        }
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:40:13 GMT 2019
    - 35.6K bytes
    - Viewed (0)
  9. istioctl/pkg/writer/envoy/configdump/testdata/routes/istio-gateway-http-route-prefix/configdump.json

       "static_route_configs": [
        {
         "route_config": {
          "@type": "type.googleapis.com/envoy.config.route.v3.RouteConfiguration",
          "virtual_hosts": [
           {
            "name": "backend",
            "domains": [
             "*"
            ],
            "routes": [
             {
              "match": {
               "prefix": "/stats/prometheus"
              },
              "route": {
               "cluster": "prometheus_stats"
    Json
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Nov 29 12:37:14 GMT 2023
    - 2.9K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/net/HostSpecifierTest.java

          ImmutableList.of("1.2.3", "2001:db8::1::::::0", "[2001:db8::1", "[::]:80");
    
      private static final ImmutableList<String> GOOD_DOMAINS =
          ImmutableList.of("com", "google.com", "foo.co.uk");
    
      private static final ImmutableList<String> BAD_DOMAINS =
          ImmutableList.of("foo.blah", "", "[google.com]");
    
      public void testGoodIpAddresses() throws ParseException {
        for (String spec : GOOD_IPS) {
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Fri Feb 18 15:33:20 GMT 2022
    - 3.7K bytes
    - Viewed (0)
Back to top