Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 64 for HOST (0.12 sec)

  1. tests/integration/pilot/common/routing.go

      http:
      - route:
        - destination:
            host: {{ (index .dst 0).Config.Service }}
          headers:
            request:
              set:
                Host: dest-authority
          weight: 50
        - destination:
            host: {{ (index .dst 0).Config.Service }}
          headers:
            request:
              set:
                Host: dest-authority
          weight: 50`,
    		opts: echo.CallOptions{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  2. pkg/config/validation/validation_test.go

    			Weight:      49,
    		}, {
    			Destination: &networking.Destination{Host: "foo.baz.east"},
    			Weight:      50,
    		}}, valid: true},
    		{name: "total weight = 100", routes: []*networking.RouteDestination{{
    			Destination: &networking.Destination{Host: "foo.baz.south"},
    			Weight:      100,
    		}, {
    			Destination: &networking.Destination{Host: "foo.baz.east"},
    			Weight:      0,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/cluster_test.go

    			destrule: &networking.DestinationRule{
    				Host: "*.example.org",
    			},
    			want: map[string]*networking.ConnectionPoolSettings{
    				"outbound|8080||*.example.org": nil,
    				"inbound|10001||":              nil,
    				"inbound|10002||":              nil,
    			},
    		},
    		"destination rule settings no sidecar": {
    			destrule: &networking.DestinationRule{
    				Host: "*.example.org",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/cluster_builder_test.go

    			Protocol: protocol.Unsupported,
    		},
    	}
    	service := &model.Service{
    		Hostname:   host.Name("foo.default.svc.cluster.local"),
    		Ports:      servicePort,
    		Resolution: model.ClientSideLB,
    		Attributes: model.ServiceAttributes{
    			Namespace: TestServiceNamespace,
    		},
    	}
    	http2Service := &model.Service{
    		Hostname:   host.Name("foo.default.svc.cluster.local"),
    		Ports:      http2ServicePort,
    		Resolution: model.ClientSideLB,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  5. cmd/admin-handlers.go

    			if nerr.Err != nil {
    				peerResults[nerr.Host.String()] = madmin.ServerPeerUpdateStatus{
    					Host:           nerr.Host.String(),
    					Err:            nerr.Err.Error(),
    					CurrentVersion: Version,
    				}
    				failedClients[idx] = struct{}{}
    			} else {
    				peerResults[nerr.Host.String()] = madmin.ServerPeerUpdateStatus{
    					Host:           nerr.Host.String(),
    					CurrentVersion: Version,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/gateway_test.go

    					{
    						Destination: &networking.Destination{
    							Host: "foo.example.org",
    						},
    					},
    					{
    						Destination: &networking.Destination{
    							Host: "bar.example.org",
    						},
    					},
    				},
    				Mirror: &networking.Destination{
    					Host: "baz.example.org",
    				},
    				Mirrors: []*networking.HTTPMirrorPolicy{
    					{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

      // Create key placeholder in host graph.
      TF_ASSIGN_OR_RETURN(
          Node * key_placeholder,
          AddHostComputeKeyPlaceholder(xla_cluster_name, host_graph->get()));
    
      // For each outside compilation graph, copy them to host graph with the
      // following changes:
      // a) Use key_placeholder in host graph instead of its own.
      // b) Add control edge from host transfer nodes (XlaRecvAtHost,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  8. src/crypto/x509/verify_test.go

    	tests := []struct {
    		host                     string
    		validInput, validPattern bool
    	}{
    		{host: "example.com", validInput: true, validPattern: true},
    		{host: "eXample123-.com", validInput: true, validPattern: true},
    		{host: "-eXample123-.com"},
    		{host: ""},
    		{host: "."},
    		{host: "example..com"},
    		{host: ".example.com"},
    		{host: "example.com.", validInput: true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  9. src/net/http/serve_test.go

    		{"HTTP/1.1", "Host: foo-bar_baz.com\r\n", 200},
    		{"HTTP/1.1", "Host: foo.com:80\r\n", 200},
    		{"HTTP/1.1", "Host: ::1\r\n", 200},
    		{"HTTP/1.1", "Host: [::1]\r\n", 200}, // questionable without port, but accept it
    		{"HTTP/1.1", "Host: [::1]:80\r\n", 200},
    		{"HTTP/1.1", "Host: [::1%25en0]:80\r\n", 200},
    		{"HTTP/1.1", "Host: 1.2.3.4\r\n", 200},
    		{"HTTP/1.1", "Host: \x06\r\n", 400},
    		{"HTTP/1.1", "Host: \xff\r\n", 400},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/CallTest.kt

        val url =
          server.url("/").newBuilder()
            .host("any-host-name")
            .port(port)
            .build()
        val request = Request(url)
        val response = client.newCall(request).execute()
        assertThat(response.body.string()).isEqualTo("response body")
        val connect = server.takeRequest()
        assertThat(connect.requestLine).isEqualTo("CONNECT any-host-name:$port HTTP/1.1")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
Back to top