Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,629 for 80 (0.02 sec)

  1. tests/integration/pilot/gateway_test.go

      - name: default
        hostname: "bar"
        port: 80
        protocol: HTTP
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: http
    spec:
      parentRefs:
      - name: gateway
      rules:
      - backendRefs:
        - name: b
          port: 80
    `).ApplyOrFail(t)
    	apps.B[0].CallOrFail(t, echo.CallOptions{
    		Port:   echo.Port{ServicePort: 80},
    		Scheme: scheme.HTTP,
    		HTTP: echo.HTTP{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  2. tests/integration/security/testdata/authz/egress-gateway.yaml.tmpl

                - mesh
              port: 80
          route:
            - destination:
                host: "{{ .EgressGatewayServiceName | default "istio-egressgateway" }}.{{ .EgressGatewayServiceNamespace | default .SystemNamespace.Name }}.svc.cluster.local"
                port:
                  number: 80
              weight: 100
        - match:
            - gateways:
                - test-egress
              port: 80
          route:
            - destination:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 31 15:08:52 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/testdata/virtualservice_host_not_found_gateway.yaml

        port:
          name: http
          number: 80
          protocol: HTTP
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      name: testing-gateway-02-test-03
      namespace: istio-system
    spec:
      selector:
        istio: ingressgateway
      servers:
      - hosts:
        - '*.homepage.testing-03.com'
        port:
          name: http
          number: 80
          protocol: HTTP
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 5.1K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/testdata/conflicting-gateways.yaml

    spec:
      selector:
        istio: ingressgateway
      servers:
      - port:
          number: 80
          name: tcp
          protocol: TCP
        hosts:
        - "foo.bar"
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      name: alpha
    spec:
      selector:
        istio: ingressgateway
      servers:
      - port:
          number: 80
          name: http
          protocol: HTTP
        hosts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 452 bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/simple-http-https/foo-route.yaml

      rules:
      - matches:
        - path:
            type: PathPrefix
            value: /
        backendRefs:
        - name: foo-app 
          port: 80
      - matches:
        - path:
            type: PathPrefix
            value: /orders
        backendRefs:
        - name: foo-orders-app 
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 449 bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/testdata/virtualservice_route_rule_no_effects_ingress.yaml

    metadata:
      name: testing-gateway-01-test-01
      namespace: istio-system
    spec:
      selector:
        istio: ingressgateway
      servers:
      - hosts:
        - testing-01.com
        port:
          name: http
          number: 80
          protocol: HTTP
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: testing-service-01-test-01
      namespace: default
    spec:
      gateways:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  7. tests/integration/pilot/testdata/tunneling/gateway/tcp/gateway.tmpl.yaml

    kind: Gateway
    metadata:
      name: {{ .EgressGatewayServiceName | default "istio-egressgateway" }}
    spec:
      selector:
        istio: {{ .EgressGatewayIstioLabel | default "egressgateway" }}
      servers:
      - port:
          number: 80
          name: tcp-80
          protocol: TCP
        hosts:
        - external.{{ .externalNamespace }}.svc.cluster.local
      - port:
          number: 443
          name: tcp-443
          protocol: TCP
        hosts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 05 17:19:27 UTC 2023
    - 506 bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/testdata/serviceentry.yaml.golden

      creationTimestamp: null
      name: gateway-istio-autogenerated-k8s-gateway-default
      namespace: istio-system
    spec:
      servers:
      - hosts:
        - '*/*'
        port:
          name: default
          number: 80
          protocol: HTTP
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      annotations:
        internal.istio.io/parents: HTTPRoute/egress.default
        internal.istio.io/route-semantics: gateway
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 19 18:39:48 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  9. pilot/pkg/xds/xds_test.go

    			},
    		})
    		proxy := s.SetupProxy(baseProxy())
    
    		endpoints := xdstest.ExtractLoadAssignments(s.Endpoints(proxy))
    		if !slices.EqualUnordered(endpoints["outbound|80||app.com"], []string{"1.1.1.1:80"}) {
    			t.Fatalf("expected 1.1.1.1, got %v", endpoints["outbound|80||app.com"])
    		}
    
    		assertListEqual(t, xdstest.ExtractListenerNames(s.Listeners(proxy)), []string{
    			"0.0.0.0_80",
    			"5.5.5.5_443",
    			"virtualInbound",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  10. src/runtime/rt0_android_arm64.s

    	MOVD	$_rt0_arm64_linux_lib(SB), R4
    	B	(R4)
    
    DATA _rt0_arm64_android_argv+0x00(SB)/8,$_rt0_arm64_android_argv0(SB)
    DATA _rt0_arm64_android_argv+0x08(SB)/8,$0 // end argv
    DATA _rt0_arm64_android_argv+0x10(SB)/8,$0 // end envv
    DATA _rt0_arm64_android_argv+0x18(SB)/8,$0 // end auxv
    GLOBL _rt0_arm64_android_argv(SB),NOPTR,$0x20
    
    DATA _rt0_arm64_android_argv0(SB)/8, $"gojni"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 12 21:41:31 UTC 2018
    - 941 bytes
    - Viewed (0)
Back to top