Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for tld (0.05 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/net/http/client_test.go

    // when not empty.
    //
    // tls.Config.ServerName (non-empty, set to "example.com") takes
    // precedence over "some-other-host.tld" which previously incorrectly
    // took precedence. We don't actually connect to (or even resolve)
    // "some-other-host.tld", though, because of the Transport.Dial hook.
    //
    // The httptest.Server has a cert with "example.com" as its name.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/sidecar_simulation_test.go

    		{
    			name: "wildcard and explicit unknown",
    			cfg: []Configer{
    				vsArgs{
    					Namespace: "default",
    					Match:     "*.tld",
    					Dest:      "wild.example.com",
    					Time:      TimeOlder,
    				},
    				vsArgs{
    					Namespace: "default",
    					Match:     "example.tld",
    					Dest:      "explicit.example.com",
    					Time:      TimeNewer,
    				},
    			},
    			proxy:     proxy("default"),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
Back to top