Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 124 for ServerName (0.51 sec)

  1. pkg/test/echo/proto/echo.proto

      // List of ALPNs to present. If not set, this will be automatically be set based on the protocol
      Alpn alpn = 13;
      // Server name (SNI) to present in TLS connections. If not set, Host will be used for http requests.
      string serverName = 20;
      // Expected response determines what string to look for in the response to validate TCP requests succeeded.
      // If not set, defaults to "StatusCode=200"
      google.protobuf.StringValue expectedResponse = 21;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 31 17:42:23 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  2. src/net/http/httptest/httptest_test.go

    				ProtoMinor: 1,
    				RemoteAddr: "192.0.2.1:1234",
    				RequestURI: "https://foo.com/path/",
    				TLS: &tls.ConnectionState{
    					Version:           tls.VersionTLS12,
    					HandshakeComplete: true,
    					ServerName:        "foo.com",
    				},
    			},
    			wantBody: "",
    		},
    
    		{
    			name:   "Post with known length",
    			method: "POST",
    			uri:    "/",
    			body:   strings.NewReader("foo"),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 18:09:14 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. src/os/user/lookup_windows.go

    	return syscall.TranslateAccountName(domainAndUser,
    		syscall.NameSamCompatible, syscall.NameDisplay, 50)
    }
    
    func lookupFullNameServer(servername, username string) (string, error) {
    	s, e := syscall.UTF16PtrFromString(servername)
    	if e != nil {
    		return "", e
    	}
    	u, e := syscall.UTF16PtrFromString(username)
    	if e != nil {
    		return "", e
    	}
    	var p *byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 16:42:41 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  4. src/internal/syscall/windows/syscall_windows.go

    	Permissions uint32
    	MaxUses     uint32
    	CurrentUses uint32
    	Path        *uint16
    	Passwd      *uint16
    }
    
    //sys  NetShareAdd(serverName *uint16, level uint32, buf *byte, parmErr *uint16) (neterr error) = netapi32.NetShareAdd
    //sys  NetShareDel(serverName *uint16, netName *uint16, reserved uint32) (neterr error) = netapi32.NetShareDel
    
    const (
    	FILE_NAME_NORMALIZED = 0x0
    	FILE_NAME_OPENED     = 0x8
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  5. src/crypto/tls/handshake_server_tls13.go

    		if hs.clientHello.quicTransportParameters != nil {
    			c.sendAlert(alertUnsupportedExtension)
    			return errors.New("tls: client sent an unexpected quic_transport_parameters extension")
    		}
    	}
    
    	c.serverName = hs.clientHello.serverName
    	return nil
    }
    
    func (hs *serverHandshakeStateTLS13) checkForResumption() error {
    	c := hs.c
    
    	if c.config.SessionTicketsDisabled {
    		return nil
    	}
    
    	modeOK := false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  6. pkg/scheduler/extender.go

    func makeTransport(config *schedulerapi.Extender) (http.RoundTripper, error) {
    	var cfg restclient.Config
    	if config.TLSConfig != nil {
    		cfg.TLSClientConfig.Insecure = config.TLSConfig.Insecure
    		cfg.TLSClientConfig.ServerName = config.TLSConfig.ServerName
    		cfg.TLSClientConfig.CertFile = config.TLSConfig.CertFile
    		cfg.TLSClientConfig.KeyFile = config.TLSConfig.KeyFile
    		cfg.TLSClientConfig.CAFile = config.TLSConfig.CAFile
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 19:07:19 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/mod/sumdb/client.go

    	// ReadCache reads and returns the content of the named cache file.
    	// Any returned error will be treated as equivalent to the file not existing.
    	// There can be arbitrarily many cache files, such as:
    	//	serverName/lookup/pkg@version
    	//	serverName/tile/8/1/x123/456
    	ReadCache(file string) ([]byte, error)
    
    	// WriteCache writes the named cache file.
    	WriteCache(file string, data []byte)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 17:50:49 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  8. pkg/test/echo/proto/echo.pb.go

    	Alpn *Alpn `protobuf:"bytes,13,opt,name=alpn,proto3" json:"alpn,omitempty"`
    	// Server name (SNI) to present in TLS connections. If not set, Host will be used for http requests.
    	ServerName string `protobuf:"bytes,20,opt,name=serverName,proto3" json:"serverName,omitempty"`
    	// Expected response determines what string to look for in the response to validate TCP requests succeeded.
    	// If not set, defaults to "StatusCode=200"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 02:27:10 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  9. pkg/scheduler/apis/config/v1/zz_generated.conversion.go

    }
    
    func autoConvert_v1_ExtenderTLSConfig_To_config_ExtenderTLSConfig(in *v1.ExtenderTLSConfig, out *config.ExtenderTLSConfig, s conversion.Scope) error {
    	out.Insecure = in.Insecure
    	out.ServerName = in.ServerName
    	out.CertFile = in.CertFile
    	out.KeyFile = in.KeyFile
    	out.CAFile = in.CAFile
    	out.CertData = *(*[]byte)(unsafe.Pointer(&in.CertData))
    	out.KeyData = *(*[]byte)(unsafe.Pointer(&in.KeyData))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 18:47:23 UTC 2024
    - 46.9K bytes
    - Viewed (0)
  10. src/crypto/tls/boring_test.go

    		clientConfig := testConfig.Clone()
    		clientConfig.RootCAs = pool
    		clientConfig.InsecureSkipVerify = false
    		clientConfig.ServerName = "example.com"
    
    		serverConfig := testConfig.Clone()
    		serverConfig.Certificates = []Certificate{{Certificate: list, PrivateKey: key}}
    		serverConfig.BuildNameToCertificate()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:45:37 UTC 2024
    - 19.4K bytes
    - Viewed (0)
Back to top