Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for tld (0.1 sec)

  1. 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)
  2. pilot/docker/Dockerfile.ztunnel

    # BASE_DISTRIBUTION is used to switch between the old base distribution and distroless base images
    ARG BASE_DISTRIBUTION=debug
    
    # Version is the base image version from the TLD Makefile
    ARG BASE_VERSION=latest
    ARG ISTIO_BASE_REGISTRY=gcr.io/istio-release
    
    # The following section is used as base image if BASE_DISTRIBUTION=debug
    FROM ${ISTIO_BASE_REGISTRY}/base:${BASE_VERSION} as debug
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 00:17:51 UTC 2024
    - 944 bytes
    - Viewed (0)
  3. cni/deployments/kubernetes/Dockerfile.install-cni

    # BASE_DISTRIBUTION is used to switch between the old base distribution and distroless base images
    ARG BASE_DISTRIBUTION=debug
    
    # Version is the base image version from the TLD Makefile
    ARG BASE_VERSION=latest
    ARG ISTIO_BASE_REGISTRY=gcr.io/istio-release
    
    # The following section is used as base image if BASE_DISTRIBUTION=debug
    FROM ${ISTIO_BASE_REGISTRY}/base:${BASE_VERSION} as debug
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 00:17:51 UTC 2024
    - 1002 bytes
    - Viewed (0)
  4. pilot/docker/Dockerfile.proxyv2

    # BASE_DISTRIBUTION is used to switch between the old base distribution and distroless base images
    ARG BASE_DISTRIBUTION=debug
    
    # Version is the base image version from the TLD Makefile
    ARG BASE_VERSION=latest
    ARG ISTIO_BASE_REGISTRY=gcr.io/istio-release
    
    # The following section is used as base image if BASE_DISTRIBUTION=debug
    FROM ${ISTIO_BASE_REGISTRY}/base:${BASE_VERSION} as debug
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 00:17:51 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. src/net/http/transport_internal_test.go

    		t.Fatal(err)
    	}
    	return ln
    }
    
    func dummyRequest(method string) *Request {
    	req, err := NewRequest(method, "http://fake.tld/", nil)
    	if err != nil {
    		panic(err)
    	}
    	return req
    }
    func dummyRequestWithBody(method string) *Request {
    	req, err := NewRequest(method, "http://fake.tld/", strings.NewReader("foo"))
    	if err != nil {
    		panic(err)
    	}
    	return req
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:57:17 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. 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)
  7. src/net/url/url_test.go

    				Scheme: "http",
    				Host:   "host.tld",
    				Path:   "this:that",
    				User:   UserPassword("user", "password"),
    			},
    			want: "http://user:xxxxx@host.tld/this:that",
    		},
    		{
    			name: "blank Password",
    			url: &URL{
    				Scheme: "http",
    				Host:   "host.tld",
    				Path:   "this:that",
    				User:   User("user"),
    			},
    			want: "http://user@host.tld/this:that",
    		},
    		{
    			name: "nil User",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  8. src/net/http/transport_test.go

    	// Don't use secure for http
    	{req: "http://insecure.tld/", env: "http.proxy.tld", httpsenv: "secure.proxy.tld", want: "http://http.proxy.tld"},
    	// Use secure for https.
    	{req: "https://secure.tld/", env: "http.proxy.tld", httpsenv: "secure.proxy.tld", want: "http://secure.proxy.tld"},
    	{req: "https://secure.tld/", env: "http.proxy.tld", httpsenv: "https://secure.proxy.tld", want: "https://secure.proxy.tld"},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  9. src/net/http/httputil/reverseproxy_test.go

    	return fn(req)
    }
    
    // Issue 16036: send a Request with a nil Body when possible
    func TestReverseProxy_NilBody(t *testing.T) {
    	backendURL, _ := url.Parse("http://fake.tld/")
    	proxyHandler := NewSingleHostReverseProxy(backendURL)
    	proxyHandler.ErrorLog = log.New(io.Discard, "", 0) // quiet for tests
    	proxyHandler.Transport = RoundTripperFunc(func(req *http.Request) (*http.Response, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  10. src/net/resolverdialfunc_test.go

    				w.AddSRV(1, 2, 80, "foo.bar.")
    				w.AddSRV(2, 3, 81, "bar.baz.")
    				return nil
    			},
    		}),
    	}
    	ctx := context.Background()
    	const fakeDomain = "something-that-is-a-not-a-real-domain.fake-tld."
    
    	t.Run("LookupIP", func(t *testing.T) {
    		ips, err := r.LookupIP(ctx, "ip", fakeDomain)
    		if err != nil {
    			t.Fatal(err)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.3K bytes
    - Viewed (0)
Back to top