Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,395 for HOST (0.06 sec)

  1. src/net/http/cgi/host.go

    	port := "80"
    	if req.TLS != nil {
    		port = "443"
    	}
    	if matches := trailingPort.FindStringSubmatch(req.Host); len(matches) != 0 {
    		port = matches[1]
    	}
    
    	env := []string{
    		"SERVER_SOFTWARE=go",
    		"SERVER_PROTOCOL=HTTP/1.1",
    		"HTTP_HOST=" + req.Host,
    		"GATEWAY_INTERFACE=CGI/1.1",
    		"REQUEST_METHOD=" + req.Method,
    		"QUERY_STRING=" + req.URL.RawQuery,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/testplugin/testdata/host/host.go

    	p2, err := plugin.Open("plugin2.so")
    	if err != nil {
    		log.Fatalf("plugin.Open failed: %v", err)
    	}
    	// Check that plugin2's init function was called, and
    	// that it modifies the same global variable as the host.
    	if got, want := common.X, 2; got != want {
    		log.Fatalf("after loading plugin2, common.X=%d, want %d", got, want)
    	}
    
    	_, err = plugin.Open("plugin2-dup.so")
    	if err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  3. releasenotes/notes/mcs-host.yaml

        This feature is off by default, but can be enabled by setting the following flags in Istio:
        `ENABLE_MCS_HOST` and `ENABLE_MCS_SERVICE_DISCOVERY`. When enabled Istio will include the MCS host as a
        domain in the service's HTTP route. Additionally, Istio will support the MCS host during a DNS lookup.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 12 19:27:15 UTC 2021
    - 709 bytes
    - Viewed (0)
  4. tests/integration/security/testdata/authz/not-host.yaml.tmpl

    spec:
      hosts:
        - "allow.{{ .To.ServiceName }}.com"
        - "deny.{{ .To.ServiceName }}.com"
      gateways:
        - gw-{{ .To.ServiceName }}
      http:
        - route:
            - destination:
                host: "{{ .To.ClusterLocalFQDN }}"
                port:
                  number: {{ (.To.PortForName "http").ServicePort }}
    ---
    apiVersion: security.istio.io/v1beta1
    kind: AuthorizationPolicy
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 1K bytes
    - Viewed (0)
  5. pkg/kube/inject/testdata/inject/hello-host-network.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: hello-host-network
    spec:
      replicas: 7
      selector:
        matchLabels:
          app: hello-host-network  
          tier: backend
          track: stable
      template:
        metadata:
          labels:
            app: hello-host-network
            tier: backend
            track: stable
        spec:
          containers:
            - name: hello-host-network
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 16 01:43:48 UTC 2019
    - 537 bytes
    - Viewed (0)
  6. releasenotes/notes/add-sni-host.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: networking
    issue:
    - 25691
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 11 21:20:58 UTC 2020
    - 177 bytes
    - Viewed (0)
  7. releasenotes/notes/host-in-route-destination.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    issues:
    - 33226
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 03 04:12:06 UTC 2021
    - 217 bytes
    - Viewed (0)
  8. releasenotes/notes/disable-host-header-fallback.yaml

      configuration.
    upgradeNotes:
      - title: Host header fallback disabled by default for Prometheus metrics for *all* inbound traffic.
        content: |
          Host header fallback for determining values for Prometheus `destination_service` labels has been disabled for all incoming traffic.
          Previously, this was disabled *only* for traffic arriving at Gateways. If you are relying on host header fallback behavior to properly
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 22 19:40:45 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  9. pkg/kube/inject/testdata/inject/hello-host-network.yaml.injected

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      creationTimestamp: null
      name: hello-host-network
    spec:
      replicas: 7
      selector:
        matchLabels:
          app: hello-host-network
          tier: backend
          track: stable
      strategy: {}
      template:
        metadata:
          creationTimestamp: null
          labels:
            app: hello-host-network
            tier: backend
            track: stable
        spec:
          containers:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 16 01:43:48 UTC 2019
    - 628 bytes
    - Viewed (0)
  10. tools/istio-iptables/pkg/capture/testdata/host-ipv4-loopback-cidr.golden

    Ben Leggett <******@****.***> 1710179183 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 1K bytes
    - Viewed (0)
Back to top