Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 124 for ServerName (0.23 sec)

  1. okhttp/src/test/java/okhttp3/SocketChannelTest.kt

                              listOf(
                                object : SNIMatcher(StandardConstants.SNI_HOST_NAME) {
                                  override fun matches(serverName: SNIServerName): Boolean {
                                    acceptedHostName = (serverName as SNIHostName).asciiName
                                    return true
                                  }
                                },
                              )
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/common/call.go

    		InsecureSkipVerify:      opts.TLS.InsecureSkipVerify,
    		Alpn:                    getProtoALPN(opts.TLS.Alpn),
    		FollowRedirects:         opts.HTTP.FollowRedirects,
    		ServerName:              opts.TLS.ServerName,
    		NewConnectionPerRequest: opts.NewConnectionPerRequest,
    		ForceDNSLookup:          opts.ForceDNSLookup,
    		Hbone: &proto.HBONE{
    			Address:            opts.HBONE.Address,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Oct 08 09:39:20 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  3. pkg/test/echo/fields.go

    	DNSQueryField         Field = "Query"
    	DNSServerField        Field = "DnsServer"
    	CipherField           Field = "Cipher"
    	TLSVersionField       Field = "Version"
    	TLSServerName         Field = "ServerName"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 16:20:31 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  4. src/internal/syscall/windows/security_windows.go

    	CodePage        uint32
    	UserSid         *syscall.SID
    	PrimaryGroupID  uint32
    	Profile         *uint16
    	HomeDirDrive    *uint16
    	PasswordExpired uint32
    }
    
    //sys	NetUserGetLocalGroups(serverName *uint16, userName *uint16, level uint32, flags uint32, buf **byte, prefMaxLen uint32, entriesRead *uint32, totalEntries *uint32) (neterr error) = netapi32.NetUserGetLocalGroups
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 04 07:21:38 UTC 2023
    - 4K bytes
    - Viewed (0)
  5. cmd/metrics-v3.go

    	// metrics required a list of buckets to be passed to the loader, and the list
    	// of buckets is not known until the request is made. So we keep a separate
    	// map for bucket metrics and handle them specially.
    
    	// Add the serverName and poolIndex labels to all non-cluster metrics.
    	//
    	// Also create metric group maps and set the cache.
    	metricsCache := newMetricsCache()
    	mgMap := make(map[collectorPath]*MetricsGroup)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 09:36:25 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  6. src/crypto/tls/common.go

    	// TLS_AES_128_GCM_SHA256, TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256).
    	CipherSuites []uint16
    
    	// ServerName indicates the name of the server requested by the client
    	// in order to support virtual hosting. ServerName is only set if the
    	// client is using SNI (see RFC 4366, Section 3.1).
    	ServerName string
    
    	// SupportedCurves lists the elliptic curves supported by the client.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  7. pkg/kube/client_config.go

    	}
    }
    
    func newCluster(restConfig *rest.Config) *api.Cluster {
    	return &api.Cluster{
    		Server:                   restConfig.Host,
    		TLSServerName:            restConfig.ServerName,
    		InsecureSkipTLSVerify:    restConfig.Insecure,
    		CertificateAuthority:     restConfig.CAFile,
    		CertificateAuthorityData: restConfig.CAData,
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 17 16:52:06 UTC 2020
    - 3.1K bytes
    - Viewed (0)
  8. src/crypto/tls/ech.go

    	h, err := inner.marshalMsg(true)
    	if err != nil {
    		return nil, err
    	}
    	h = h[4:] // strip four byte prefix
    
    	var paddingLen int
    	if inner.serverName != "" {
    		paddingLen = max(0, maxNameLength-len(inner.serverName))
    	} else {
    		paddingLen = maxNameLength + 9
    	}
    	paddingLen = 31 - ((len(h) + paddingLen - 1) % 32)
    
    	return append(h, make([]byte, paddingLen)...), nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  9. src/crypto/tls/handshake_client_test.go

    		}
    		if c.HandshakeComplete {
    			return fmt.Errorf("%s: got HandshakeComplete, want false", errorType)
    		}
    		if c.ServerName != "example.golang" {
    			return fmt.Errorf("%s: got ServerName %s, want %s", errorType, c.ServerName, "example.golang")
    		}
    		if c.NegotiatedProtocol != "protocol1" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  10. src/crypto/tls/handshake_server_test.go

    	}
    
    	cs := hs.c.ConnectionState()
    	if cs.HandshakeComplete {
    		t.Error("Handshake registered as complete")
    	}
    
    	if cs.ServerName != expectedServerName {
    		t.Errorf("Expected ServerName of %q, but got %q", expectedServerName, cs.ServerName)
    	}
    }
    
    var getConfigForClientTests = []struct {
    	setup          func(config *Config)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
Back to top