Search Options

Results per page
Sort
Preferred Languages
Advance

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

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