Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for 443 (0.14 sec)

  1. istioctl/pkg/writer/ztunnel/configdump/testdata/dump.json

          "namespace": "gateway-system",
          "hostname": "gateway-api-admission-server.gateway-system.svc.cluster.local",
          "vips": [
            "/10.96.115.16"
          ],
          "ports": {
            "443": 8443
          },
          "endpoints": {
            "Kubernetes//Pod/gateway-system/gateway-api-admission-server-85985d48ff-5jcvd:/10.244.2.8": {
    Json
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Tue Apr 16 03:28:36 GMT 2024
    - 33.1K bytes
    - Viewed (0)
  2. cmd/net_test.go

    	testCases := []struct {
    		hostPort     string
    		expectedHost string
    		expectedPort string
    	}{
    		{":54321", "", "54321"},
    		{"server:54321", "server", "54321"},
    		{":0", "", "0"},
    		{"server:https", "server", "443"},
    		{"server:http", "server", "80"},
    	}
    
    	for _, testCase := range testCases {
    		host, port := mustSplitHostPort(testCase.hostPort)
    		if testCase.expectedHost != host {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Fri Apr 19 08:43:09 GMT 2024
    - 9.3K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/CallTest.kt

        val connect1 = server.takeRequest()
        assertThat(connect1.requestLine).isEqualTo("CONNECT android.com:443 HTTP/1.1")
        assertThat(connect1.headers["Proxy-Authorization"]).isNull()
        val connect2 = server.takeRequest()
        assertThat(connect2.requestLine).isEqualTo("CONNECT android.com:443 HTTP/1.1")
        assertThat(connect2.headers["Proxy-Authorization"]).isEqualTo("password")
        val get = server.takeRequest()
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Wed Apr 10 19:46:48 GMT 2024
    - 142.5K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/internal/http2/HttpOverHttp2Test.kt

          client.newBuilder()
            .proxy(server.toProxyAddress())
            .build()
    
        val url = server.url("/").resolve("//android.com/foo")!!
        val port =
          when (url.scheme) {
            "https" -> 443
            "http" -> 80
            else -> error("unexpected scheme")
          }
    
        val call = client.newCall(Request(url))
        val response = call.execute()
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Thu Apr 11 22:09:35 GMT 2024
    - 75.3K bytes
    - Viewed (0)
  5. istioctl/pkg/describe/describe.go

    	if ingress == nil || ingress.service == nil || len(ingress.pods) == 0 {
    		return
    	}
    	// The ingressgateway service offers a lot of ports but the pod doesn't listen to all
    	// of them.  For example, it doesn't listen on 443 without additional setup.  This prints
    	// the most basic output.
    	portsToShow := map[string]bool{
    		"http2": true,
    		"http":  true,
    	}
    	protocolToScheme := map[string]string{
    		"HTTP2": "http",
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Sat Apr 13 05:23:38 GMT 2024
    - 50.4K bytes
    - Viewed (0)
  6. manifests/charts/base/crds/crd-all.gen.yaml

                            derivePort:
                              description: |-
                                On a redirect, dynamically set the port: * FROM_PROTOCOL_DEFAULT: automatically set to 80 for HTTP and 443 for HTTPS.
    
                                Valid Options: FROM_PROTOCOL_DEFAULT, FROM_REQUEST_PORT
                              enum:
                              - FROM_PROTOCOL_DEFAULT
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Apr 22 20:20:47 GMT 2024
    - 606.1K bytes
    - Viewed (0)
Back to top