Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for 443 (0.13 sec)

  1. istioctl/pkg/writer/envoy/configdump/testdata/endpoint/configdump.json

                    {
                        "endpoint_config": {
                            "@type": "type.googleapis.com/envoy.config.endpoint.v3.ClusterLoadAssignment",
                            "cluster_name": "outbound|443||istiod.istio-system.svc.cluster.local",
                            "endpoints": [
                                {
                                    "locality": {},
                                    "lb_endpoints": [
    Json
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Tue Jul 12 02:25:59 GMT 2022
    - 66K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

       * For example, this returns 8443 for `https://square.com:8443/` and 443 for
       * `https://square.com/`. The result is in `[1..65535]`.
       *
       * | URL                 | `port()` |
       * | :------------------ | :------- |
       * | `http://host/`      | `80`     |
       * | `http://host:8000/` | `8000`   |
       * | `https://host/`     | `443`    |
       */
      @get:JvmName("port") val port: Int,
      /**
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Tue Jan 09 12:33:05 GMT 2024
    - 63.5K bytes
    - Viewed (1)
  3. maven-core/src/site/resources/design/2.1-lifecycle-refactor.graffle

    ubrtf410 {\fonttbl\f0\fswiss\fcharset77 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\ql\qnatural \f0\fs24 \cf0 binding, project}AllowLabelDropfalseC{222, 443}{550.5, 442.25}StylestrokeHeadArrow.4285709857940674Tail.5TailID86Bounds{{550.5, 422}, {17, 27}}ClassShapedGraphicHF{1, 0.5}{0.5, -0.25}{-1, 0.5}{-1, -0.5}{0.5, 1}{-0.5, 1}{0.5, -1}{-0.5, -1}ShapeRectangleTextAl{{521.5, 396.749}, {75, 14}}ClassShap...
    Others
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Mar 11 17:19:02 GMT 2017
    - 96.7K 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. common/scripts/metallb-native.yaml

    metadata:
      name: webhook-server-cert
      namespace: metallb-system
    ---
    apiVersion: v1
    kind: Service
    metadata:
      name: webhook-service
      namespace: metallb-system
    spec:
      ports:
      - port: 443
        targetPort: 9443
      selector:
        component: controller
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      labels:
        app: metallb
        component: controller
      name: controller
    Others
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Fri Feb 23 23:56:31 GMT 2024
    - 63.9K bytes
    - Viewed (0)
  6. 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)
  7. okhttp/src/test/java/okhttp3/HttpUrlTest.kt

      }
    
      @Test
      fun changingSchemeChangesDefaultPort() {
        assertThat(
          parse("http://example.com")
            .newBuilder()
            .scheme("https")
            .build().port,
        ).isEqualTo(443)
        assertThat(
          parse("https://example.com")
            .newBuilder()
            .scheme("http")
            .build().port,
        ).isEqualTo(80)
        assertThat(
          parse("https://example.com:1234")
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 67.9K bytes
    - Viewed (0)
Back to top