Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 507 for DOMAIN (0.12 sec)

  1. 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: Mon Apr 01 16:15:01 UTC 2024
    - 26.9K 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. okhttp/src/test/java/okhttp3/CookiesTest.kt

        val cookieManager = CookieManager(null, CookiePolicy.ACCEPT_ORIGINAL_SERVER)
        val cookieA = HttpCookie("a", "android")
        cookieA.domain = serverUrl.host
        cookieA.path = "/"
        cookieManager.cookieStore.add(serverUrl.toUri(), cookieA)
        val cookieB = HttpCookie("b", "banana")
        cookieB.domain = serverUrl.host
        cookieB.path = "/"
        cookieManager.cookieStore.add(serverUrl.toUri(), cookieB)
        client =
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 13K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/internal/publicsuffix/PublicSuffixDatabaseTest.kt

        // checkPublicSuffix("a.b.example.local", null);
        // TLD with only 1 rule.
        checkPublicSuffix("biz", null)
        checkPublicSuffix("domain.biz", "domain.biz")
        checkPublicSuffix("b.domain.biz", "domain.biz")
        checkPublicSuffix("a.b.domain.biz", "domain.biz")
        // TLD with some 2-level rules.
        checkPublicSuffix("com", null)
        checkPublicSuffix("example.com", "example.com")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. src/main/java/jcifs/internal/dfs/DfsReferralDataImpl.java

         * @see jcifs.DfsReferralData#getDomain()
         */
        @Override
        public String getDomain () {
            return this.domain;
        }
    
    
        /**
         * @param domain
         *            the domain to set
         */
        public void setDomain ( String domain ) {
            this.domain = domain;
        }
    
    
        @Override
        public String getLink () {
            return this.link;
        }
    
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sat Nov 13 15:13:49 UTC 2021
    - 11K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/net/http/httpproxy/proxy.go

    			continue
    		}
    
    		if len(phost) == 0 {
    			// There is no host part, likely the entry is malformed; ignore.
    			continue
    		}
    
    		// domain.com or domain.com:80
    		// foo.com matches bar.foo.com
    		// .domain.com or .domain.com:port
    		// *.domain.com or *.domain.com:port
    		if strings.HasPrefix(phost, "*.") {
    			phost = phost[1:]
    		}
    		matchHost := false
    		if phost[0] != '.' {
    			matchHost = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. src/net/mail/message.go

    	}
    
    	// domain = dot-atom / domain-literal
    	var domain string
    	p.skipSpace()
    	if p.empty() {
    		return "", errors.New("mail: no domain in addr-spec")
    	}
    
    	if p.peek() == '[' {
    		// domain-literal
    		domain, err = p.consumeDomainLiteral()
    		if err != nil {
    			return "", err
    		}
    	} else {
    		// dot-atom
    		domain, err = p.consumeAtom(true, false)
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  10. src/test/java/jcifs/tests/ContextConfigTest.java

                assertEquals("foo", ntlm.getUsername());
                assertEquals("DOMAIN", ntlm.getUserDomain());
                assertEquals("bar", ntlm.getPassword());
            }
        }
    
    
        @Test
        @SuppressWarnings ( "deprecation" )
        public void testLegacyStringConstructor () throws IOException {
            try ( SmbResource f = new SmbFile("smb://DOMAIN;foo:bar@localhost/test") ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 9.9K bytes
    - Viewed (0)
Back to top