Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for ServerName (0.12 sec)

  1. pilot/pkg/networking/core/gateway_test.go

    						SetCurrentClientCertDetails: &hcm.HttpConnectionManager_SetCurrentClientCertDetails{
    							Subject: proto.BoolTrue,
    							Cert:    true,
    							Uri:     true,
    							Dns:     true,
    						},
    						ServerName: EnvoyServerName,
    						HttpProtocolOptions: &core.Http1ProtocolOptions{
    							AcceptHttp_10: true,
    						},
    						Proxy_100Continue: true,
    					},
    					class:    istionetworking.ListenerClassGateway,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  2. cmd/metrics-v2.go

    	kmsRequestsSuccess = "request_success"
    	kmsRequestsError   = "request_error"
    	kmsRequestsFail    = "request_failure"
    	kmsUptime          = "uptime"
    
    	webhookOnline = "online"
    )
    
    const (
    	serverName = "server"
    )
    
    // MetricTypeV2 for the types of metrics supported
    type MetricTypeV2 string
    
    const (
    	gaugeMetric     = "gaugeMetric"
    	counterMetric   = "counterMetric"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	if r0 != 0 {
    		neterr = syscall.Errno(r0)
    	}
    	return
    }
    
    func NetUserEnum(serverName *uint16, level uint32, filter uint32, buf **byte, prefMaxLen uint32, entriesRead *uint32, totalEntries *uint32, resumeHandle *uint32) (neterr error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  4. src/net/http/transport_test.go

    			t.Errorf("Host header = %q; want %q", r.Host, want)
    		}
    		if mode == http2Mode {
    			if r.TLS == nil {
    				t.Errorf("r.TLS == nil")
    			} else if r.TLS.ServerName != punyDomain {
    				t.Errorf("TLS.ServerName = %q; want %q", r.TLS.ServerName, punyDomain)
    			}
    		}
    		w.Header().Set("Hit-Handler", "1")
    	}), func(tr *Transport) {
    		if tr.TLSClientConfig != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  5. pkg/config/validation/validation.go

    		// depending on the protocol, we can differentiate between hosts when proxying:
    		// - with HTTP, the authority header can be used
    		// - with HTTPS/TLS with SNI, the ServerName can be used
    		// however, for plain TCP there is no way to differentiate between the
    		// hosts so we consider it invalid, unless the resolution type is NONE
    		// (because the hosts are ignored).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  6. tests/integration/pilot/common/routing.go

    					call: defaultIngress.CallOrFail,
    					opts: echo.CallOptions{
    						Port: echo.Port{
    							ServicePort: 443,
    							Protocol:    protocol.HTTPS,
    						},
    						TLS: echo.TLS{
    							ServerName: sni,
    							Alpn:       al,
    						},
    						Check:   check.Error(),
    						Timeout: 5 * time.Second,
    					},
    				},
    				)
    			}
    		}
    		t.RunTraffic(TrafficTestCase{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
Back to top