Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for ServerName (0.15 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. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	Size            uint32
    	Flags           uint32
    	ExtraPolicyPara Pointer
    }
    
    type SSLExtraCertChainPolicyPara struct {
    	Size       uint32
    	AuthType   uint32
    	Checks     uint32
    	ServerName *uint16
    }
    
    type CertChainPolicyStatus struct {
    	Size              uint32
    	Error             uint32
    	ChainIndex        uint32
    	ElementIndex      uint32
    	ExtraPolicyStatus Pointer
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/smb1/SmbFile.java

     * address. These name resolution mechanisms and their resolution order
     * can be changed (See <a href="../../../resolver.html">Setting Name
     * Resolution Properties</a>). The servername and path components are
     * not case sensitive but the domain, username, and password components
     * are. It is also likely that properties must be specified for jcifs.smb1
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  7. 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)
  8. 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