Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for tld (0.11 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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