Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 1,629 for 80 (0.02 sec)

  1. pkg/config/analysis/local/defaults.go

    ---
    apiVersion: v1
    kind: Service
    metadata:
      name: {{.ingressService}}
      namespace: {{.namespace}}
    spec:
      ports:
      - name: http2
        nodePort: 31380
        port: 80
        protocol: TCP
        targetPort: 80
      - name: https
        nodePort: 31390
        port: 443
        protocol: TCP
        targetPort: 443
      - name: tcp
        nodePort: 31400
        port: 31400
        protocol: TCP
        targetPort: 31400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  2. tests/integration/pilot/ingress_test.go

          - backend:
              service:
                name: b
                port:
                  number: 80
            path: %s
            pathType: ImplementationSpecific
          - backend:
              service:
                name: b
                port:
                  number: 80
            path: %s
            pathType: Prefix
    `
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/HttpUrlJvmTest.kt

      @Test
      fun fragmentPercentEncodedNonAscii() {
        val url = "http://host/#%C2%80".toHttpUrl()
        assertThat(url.toUri().toString()).isEqualTo("http://host/#%C2%80")
      }
    
      @Test
      fun fragmentPercentEncodedPartialCodePoint() {
        val url = "http://host/#%80".toHttpUrl()
        assertThat(url.toUri().toString()).isEqualTo("http://host/#%80")
      }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  4. src/crypto/tls/testdata/Server-TLSv13-Resume

    00000160  82 55 c8 de 80 dc b7 05  0c be a6                 |.U.........|
    >>> Flow 2 (server to client)
    00000000  16 03 03 00 80 02 00 00  7c 03 03 00 00 00 00 00  |........|.......|
    00000010  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
    00000020  00 00 00 00 00 00 00 00  00 00 00 20 78 6c c9 94  |........... xl..|
    00000030  6a b6 3e 65 97 42 9f c3  80 3c 8a 23 f5 af 6d 4b  |j.>e.B...<.#..mK|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:14:50 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  5. platforms/jvm/jvm-services/src/test/groovy/org/gradle/jvm/toolchain/internal/JvmInstallationMetadataComparatorTest.groovy

                jvmMetadata("8.8", true, BELLSOFT),
                jvmMetadata("8.7", true, ORACLE),
                jvmMetadata("8.0", false, ORACLE),
                jvmMetadata("8.4", true, UNKNOWN),
            ]
    
            when:
            metadata.sort(new JvmInstallationMetadataComparator(getJavaHome("8.0", false, null)))
    
            then:
            assertOrder(metadata, "8.0", "8.3", "8.2", "8.1", "8.8", "8.7", "8.4")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/ingress/testdata/simple.yaml.golden

      name: foo-istio-autogenerated-k8s-ingress-ns
      namespace: istio-system
    spec:
      selector:
        istio: ingressgateway
      servers:
      - hosts:
        - '*'
        port:
          name: http-80-ingress-foo-ns
          number: 80
          protocol: HTTP
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      annotations:
        internal.istio.io/route-semantics: ingress
      creationTimestamp: null
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 14 16:13:05 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  7. tests/integration/pilot/testdata/tunneling/gateway/tls/istio-mutual/virtual-service.tmpl.yaml

        route:
        - destination:
            host: {{ .EgressGatewayServiceName | default "istio-egressgateway" }}.{{ .EgressGatewayServiceNamespace | default "istio-system" }}.svc.cluster.local
            port:
              number: 80
      tls:
      - match:
        - port: {{ .externalSvcTlsPort }}
          sniHosts:
          - external.{{ .externalNamespace }}.svc.cluster.local
        route:
        - destination:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 05 17:19:27 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. pilot/pkg/xds/testdata/benchmarks/telemetry-api.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: proxy-service-instance
    spec:
      hosts:
      - example.com
      ports:
      - number: 80
        name: http
        protocol: HTTP
      - number: 7070
        name: tcp
        protocol: TCP
      - number: 443
        name: https
        protocol: HTTPS
      - number: 9090
        name: auto
        protocol: ""
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 13 15:27:21 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  9. pilot/pkg/config/monitor/file_snapshot_test.go

    	"istio.io/istio/pkg/config/schema/collections"
    )
    
    var gatewayYAML = `
    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      name: some-ingress
    spec:
      servers:
      - port:
          number: 80
          name: http
          protocol: http
        hosts:
        - "*.example.com"
    `
    
    var statusRegressionYAML = `
    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      name: test
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  10. pilot/pkg/model/validation_test.go

    	}
    }
    
    func TestServiceValidate(t *testing.T) {
    	ports := PortList{
    		{Name: "http", Port: 80, Protocol: protocol.HTTP},
    		{Name: "http-alt", Port: 8080, Protocol: protocol.HTTP},
    	}
    	badPorts := PortList{
    		{Port: 80, Protocol: protocol.HTTP},
    		{Name: "http-alt^", Port: 8080, Protocol: protocol.HTTP},
    		{Name: "http", Port: -80, Protocol: protocol.HTTP},
    	}
    
    	address := "192.168.1.1"
    
    	cases := []struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 23 19:35:35 UTC 2023
    - 4K bytes
    - Viewed (0)
Back to top