Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 65 for host3 (0.13 sec)

  1. src/net/http/server.go

    	c.r.setInfiniteReadLimit()
    
    	hosts, haveHost := req.Header["Host"]
    	isH2Upgrade := req.isH2Upgrade()
    	if req.ProtoAtLeast(1, 1) && (!haveHost || len(hosts) == 0) && !isH2Upgrade && req.Method != "CONNECT" {
    		return nil, badRequestError("missing required Host header")
    	}
    	if len(hosts) == 1 && !httpguts.ValidHostHeader(hosts[0]) {
    		return nil, badRequestError("malformed Host header")
    	}
    	for k, vv := range req.Header {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/networking/v1beta1/generated.pb.go

    	i = encodeVarintGenerated(dAtA, i, uint64(len(m.SecretName)))
    	i--
    	dAtA[i] = 0x12
    	if len(m.Hosts) > 0 {
    		for iNdEx := len(m.Hosts) - 1; iNdEx >= 0; iNdEx-- {
    			i -= len(m.Hosts[iNdEx])
    			copy(dAtA[i:], m.Hosts[iNdEx])
    			i = encodeVarintGenerated(dAtA, i, uint64(len(m.Hosts[iNdEx])))
    			i--
    			dAtA[i] = 0xa
    		}
    	}
    	return len(dAtA) - i, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

        "io.k8s.api.core.v1.HTTPGetAction": {
          "description": "HTTPGetAction describes an action based on HTTP Get requests.",
          "properties": {
            "host": {
              "description": "Host name to connect to, defaults to the pod IP. You probably want to set \"Host\" in httpHeaders instead.",
              "type": "string"
            },
            "httpHeaders": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_pods_test.go

    			hostAliases:   []v1.HostAlias{},
    			rawHostsFileContent: `# hosts file for testing.
    127.0.0.1	localhost
    ::1	localhost ip6-localhost ip6-loopback
    fe00::0	ip6-localnet
    fe00::0	ip6-mcastprefix
    fe00::1	ip6-allnodes
    fe00::2	ip6-allrouters
    123.45.67.89	some.domain
    `,
    			expectedHostsFileContent: `# Kubernetes-managed hosts file (host network).
    # hosts file for testing.
    127.0.0.1	localhost
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. staging/src/k8s.io/api/networking/v1/generated.pb.go

    	i = encodeVarintGenerated(dAtA, i, uint64(len(m.SecretName)))
    	i--
    	dAtA[i] = 0x12
    	if len(m.Hosts) > 0 {
    		for iNdEx := len(m.Hosts) - 1; iNdEx >= 0; iNdEx-- {
    			i -= len(m.Hosts[iNdEx])
    			copy(dAtA[i:], m.Hosts[iNdEx])
    			i = encodeVarintGenerated(dAtA, i, uint64(len(m.Hosts[iNdEx])))
    			i--
    			dAtA[i] = 0xa
    		}
    	}
    	return len(dAtA) - i, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 158.2K bytes
    - Viewed (0)
Back to top