Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for p443 (0.1 sec)

  1. pilot/pkg/networking/core/gateway_test.go

    			gateways:        []config.Config{httpsGateway},
    			routeName:       "https.443.https.gateway-https.default",
    			expectedVirtualHosts: map[string][]string{
    				"example.org:443": {"example.org"},
    			},
    			expectedVirtualHostsHostPortStrip: map[string][]string{
    				"example.org:443": {"example.org"},
    			},
    			expectedHTTPRoutes:    map[string]int{"example.org:443": 1},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  2. pkg/proxy/nftables/proxier_test.go

    				{
    					Name:     "http",
    					Port:     80,
    					Protocol: v1.ProtocolTCP,
    				},
    				{
    					Name:       "https",
    					Port:       443,
    					Protocol:   v1.ProtocolTCP,
    					TargetPort: intstr.FromInt32(8443),
    				},
    				{
    					Name:     "dns-udp",
    					Port:     53,
    					Protocol: v1.ProtocolUDP,
    				},
    				{
    					Name:     "dns-tcp",
    					Port:     53,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  3. pkg/apis/admissionregistration/validation/validation_test.go

    			Name: "webhook.k8s.io",
    			ClientConfig: admissionregistration.WebhookClientConfig{
    				Service: &admissionregistration.ServiceReference{
    					Namespace: "ns",
    					Name:      "n",
    					Port:      443,
    				},
    				URL: strPtr("example.com/k8s/webhook"),
    			},
    		},
    		}, true),
    		expectedError: `[0].clientConfig: Required value: exactly one of url or service is required`,
    	}, {
    		name: "blank URL",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 147.1K bytes
    - Viewed (0)
  4. istioctl/pkg/authz/testdata/configdump.yaml

               "typed_config": {
                "@type": "type.googleapis.com/envoy.extensions.filters.network.tcp_proxy.v3.TcpProxy",
                "stat_prefix": "outbound|443||istiod.istio-system.svc.cluster.local",
                "cluster": "outbound|443||istiod.istio-system.svc.cluster.local"
               }
              }
             ]
            }
           ],
           "traffic_direction": "OUTBOUND",
           "bind_to_port": false
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 21 14:20:23 UTC 2023
    - 206.7K bytes
    - Viewed (1)
  5. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_zos_s390x.go

    	SYS_UNDOEXPO                        = 0x5A2 // 1442
    	SYS_UNDOEXPORTWORKUNIT              = 0x5A2 // 1442
    	SYS_IMPORTWO                        = 0x5A3 // 1443
    	SYS_IMPORTWORKUNIT                  = 0x5A3 // 1443
    	SYS_UNDOIMPO                        = 0x5A4 // 1444
    	SYS_UNDOIMPORTWORKUNIT              = 0x5A4 // 1444
    	SYS_EXTRACTW                        = 0x5A5 // 1445
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 146.6K bytes
    - Viewed (0)
  6. tests/integration/pilot/common/routing.go

        protocol: http2
      - name: https
        number: 443
        targetPort: 443
        protocol: https
        `,
    			"external."+t.Apps.External.Namespace.Name()+".svc.cluster.local",
    		),
    		children: []TrafficCall{},
    	}
    	expects = []struct {
    		port int
    		alpn string
    	}{
    		{8888, "http/1.1"},
    		// Note: here we expect HTTP/1.1, because the 443 port is not configured to be HTTP2!
    		{8882, "http/1.1"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/cluster_test.go

    			Service: service,
    			Port: model.ServiceInstancePort{
    				ServicePort: servicePort,
    				TargetPort:  7443,
    			},
    		},
    	}
    
    	ingress := &networking.IstioIngressListener{
    		CaptureMode:     networking.CaptureMode_NONE,
    		DefaultEndpoint: "127.0.0.1:7020",
    		Port: &networking.SidecarPort{
    			Number:   7443,
    			Name:     "grpc-core",
    			Protocol: "GRPC",
    		},
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  8. operator/cmd/mesh/testdata/manifest-generate/output/pilot_default.golden.yaml

    webhooks:
    - admissionReviewVersions:
      - v1beta1
      - v1
      clientConfig:
        service:
          name: istiod
          namespace: istio-system
          path: /inject
          port: 443
      failurePolicy: Fail
      name: rev.namespace.sidecar-injector.istio.io
      namespaceSelector:
        matchExpressions:
        - key: istio.io/rev
          operator: In
          values:
          - default
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 102.6K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

        val connect = server.takeRequest()
        assertThat(connect.requestLine, "Connect line failure on proxy")
          .isEqualTo("CONNECT android.com:443 HTTP/1.1")
        assertThat(connect.headers["Host"]).isEqualTo("android.com:443")
        val get = server.takeRequest()
        assertThat(get.requestLine).isEqualTo("GET /foo HTTP/1.1")
        assertThat(get.headers["Host"]).isEqualTo("android.com")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
  10. src/crypto/internal/nistec/fiat/p521_fiat64.go

    	x438, x437 = bits.Mul64(x4, arg2[6])
    	var x439 uint64
    	var x440 uint64
    	x440, x439 = bits.Mul64(x4, arg2[5])
    	var x441 uint64
    	var x442 uint64
    	x442, x441 = bits.Mul64(x4, arg2[4])
    	var x443 uint64
    	var x444 uint64
    	x444, x443 = bits.Mul64(x4, arg2[3])
    	var x445 uint64
    	var x446 uint64
    	x446, x445 = bits.Mul64(x4, arg2[2])
    	var x447 uint64
    	var x448 uint64
    	x448, x447 = bits.Mul64(x4, arg2[1])
    	var x449 uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 21:53:03 UTC 2022
    - 167K bytes
    - Viewed (0)
Back to top