Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for tld (0.03 sec)

  1. src/main/webapp/WEB-INF/fe.tld

    Shinsuke Sugaya <******@****.***> 1590652175 +0900
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 28 07:49:35 UTC 2020
    - 10K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/internal/publicsuffix/PublicSuffixDatabaseTest.kt

        checkPublicSuffix(".example.example", null)
        // Unlisted TLD.
        checkPublicSuffix("example", null)
        checkPublicSuffix("example.example", "example.example")
        checkPublicSuffix("b.example.example", "example.example")
        checkPublicSuffix("a.b.example.example", "example.example")
        // Listed, but non-Internet, TLD.
        // checkPublicSuffix("local", null);
        // checkPublicSuffix("example.local", null);
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  3. src/net/http/httputil/dump_test.go

    	{
    		Req: &http.Request{
    			Method: "POST",
    			URL: &url.URL{
    				Scheme: "http",
    				Host:   "post.tld",
    				Path:   "/",
    			},
    			ContentLength: 6,
    			ProtoMajor:    1,
    			ProtoMinor:    1,
    		},
    
    		Body: []byte("abcdef"),
    
    		WantDumpOut: "POST / HTTP/1.1\r\n" +
    			"Host: post.tld\r\n" +
    			"User-Agent: Go-http-client/1.1\r\n" +
    			"Content-Length: 6\r\n" +
    			"Accept-Encoding: gzip\r\n\r\n",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 17:34:07 UTC 2022
    - 12.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/text/language/language.go

    // region will already be canonicalized it was obtained from a Tag that was
    // obtained using any of the default methods.
    func (r Region) TLD() (Region, error) {
    	tld, err := r.regionID.TLD()
    	return Region{tld}, err
    }
    
    // Canonicalize returns the region or a possible replacement if the region is
    // deprecated. It will not return a replacement for deprecated regions that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/internal/publicsuffix/PublicSuffixDatabase.kt

          return null // The domain is a public suffix.
        }
    
        val firstLabelOffset =
          if (rule[0][0] == EXCEPTION_MARKER) {
            // Exception rules hold the effective TLD plus one.
            domainLabels.size - rule.size
          } else {
            // Otherwise the rule is for a public suffix, so we must take one more label.
            domainLabels.size - (rule.size + 1)
          }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/internal/language/language.go

    	// must strictly be a subset.
    	if d >= nRegionGroups {
    		return b&m != 0
    	}
    	return b&^m == 0
    }
    
    var errNoTLD = errors.New("language: region is not a valid ccTLD")
    
    // TLD returns the country code top-level domain (ccTLD). UK is returned for GB.
    // In all other cases it returns either the region itself or an error.
    //
    // This method may return an error for a region for which there exists a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  7. pkg/credentialprovider/keyring_test.go

    	samples := []map[bool]string{
    		{true: "foo/bar"},
    		{true: "docker.io/foo/bar"},
    		{true: "index.docker.io/foo/bar"},
    		{true: "foo"},
    		{false: ""},
    		{false: "registry.tld/foo/bar"},
    		{false: "registry:5000/foo/bar"},
    		{false: "myhostdocker.io/foo/bar"},
    	}
    	for _, sample := range samples {
    		for expected, imageName := range sample {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 15 10:47:22 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  8. src/net/http/cookiejar/jar_test.go

    			{"http://other.test", ""},
    			{"http://test", ""},
    		},
    	},
    	{
    		"Host cookie on TLD.",
    		"http://com",
    		[]string{"a=1"},
    		"a=1",
    		[]query{
    			{"http://com", "a=1"},
    			{"http://any.com", ""},
    			{"http://any.test", ""},
    		},
    	},
    	{
    		"Domain cookie on TLD becomes a host cookie.",
    		"http://com",
    		[]string{"a=1; domain=com"},
    		"a=1",
    		[]query{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 34K bytes
    - Viewed (0)
  9. src/net/conf.go

    					return hostLookupCgo, dnsConf
    				}
    				continue
    			case hostname != "" && stringslite.HasPrefix(src.source, "mdns"):
    				if stringsHasSuffixFold(hostname, ".local") {
    					// Per RFC 6762, the ".local" TLD is special. And
    					// because Go's native resolver doesn't do mDNS or
    					// similar local resolution mechanisms, assume that
    					// libc might (via Avahi, etc) and use cgo.
    					return hostLookupCgo, dnsConf
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 03:13:26 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  10. src/cmd/go/internal/vcs/vcs.go

    }
    
    // repoRootForImportDynamic finds a *RepoRoot for a custom domain that's not
    // statically known by repoRootFromVCSPaths.
    //
    // This handles custom import paths like "name.tld/pkg/foo" or just "name.tld".
    func repoRootForImportDynamic(importPath string, mod ModuleMode, security web.SecurityMode) (*RepoRoot, error) {
    	url, err := urlForImportPath(importPath)
    	if err != nil {
    		return nil, err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 46.2K bytes
    - Viewed (0)
Back to top