Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,629 for 80 (0.02 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/http-routing/gateway.yaml

      listeners:
      - name: http
        protocol: HTTP
        port: 80
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: example-route
    spec:
      parentRefs:
      - name: example-gateway
      hostnames:
      - "example.com"
      rules:
      - backendRefs:
        - name: example-svc
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 491 bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/AddressTest.kt

        val address = factory.newAddress()
        assertThat(address.toString())
          .isEqualTo("Address{example.com:80, proxySelector=RecordingProxySelector}")
      }
    
      @Test fun addressWithProxyToString() {
        val address = factory.newAddress(proxy = Proxy.NO_PROXY)
        assertThat(address.toString())
          .isEqualTo("Address{example.com:80, proxy=${Proxy.NO_PROXY}}")
      }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. tests/integration/security/policy_attachment_only/testdata/authz/gateway-api.yaml.tmpl

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: Gateway
    metadata:
      name: {{ .To.ServiceName }}-gateway
    spec:
      gatewayClassName: istio
      listeners:
      - name: http
        # Exposing port 80 isn't the recommended security practice 
        port: 80
        protocol: HTTP
        hostname: "*.{{ .To.ServiceName }}.com"
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: {{ .To.ServiceName }}
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 24 19:50:43 UTC 2023
    - 729 bytes
    - Viewed (0)
  4. pkg/kube/inject/testdata/inject/frontend.yaml

    kind: Service
    apiVersion: v1
    metadata:
      name: frontend
    spec:
      selector:
        app: hello
        tier: frontend
      ports:
        - protocol: "TCP"
          port: 80
          targetPort: 80
      type: LoadBalancer
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: frontend
    spec:
      replicas: 1
      selector:
        matchLabels:
          app: hello
          tier: frontend
          track: stable
      template:
        metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 16 01:43:48 UTC 2019
    - 712 bytes
    - Viewed (0)
  5. pkg/kube/inject/testdata/inject/native-sidecar.yaml

              port: 3333
          image: "fake.docker.io/google-samples/hello-go-gke:1.0"
          ports:
            - name: http
              containerPort: 80
      containers:
        - name: hello
          image: "fake.docker.io/google-samples/hello-go-gke:1.0"
          ports:
            - name: http
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 03:10:51 UTC 2023
    - 468 bytes
    - Viewed (0)
  6. pilot/pkg/security/authz/builder/testdata/tcp/deny-both-http-tcp-in.yaml

        - source:
            namespaces: ["ns-1"]
        to:
        - operation:
            ports: ["80"]
      # rule[8] `from`: nil, `to`: nil, `when`: HTTP field.
      - when:
        - key: "request.headers[:method]"
          values: ["GET"]
      # rule[9] `from`: nil, `to`: nil, `when`: TCP field.
      - when:
        - key: "destination.port"
          values: ["80"]
      # rule[10] `from`: all fields, `to`: all fields, `when`: all fields.
      - from:
        - source:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 12 19:47:37 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/envoyfilter/listener_patch_test.go

    	faultFilterOutAny := protoconv.MessageToAny(faultFilterOut)
    
    	gatewayIn := []*listener.Listener{
    		{
    			Name: "80",
    			Address: &core.Address{
    				Address: &core.Address_SocketAddress{
    					SocketAddress: &core.SocketAddress{
    						PortSpecifier: &core.SocketAddress_PortValue{
    							PortValue: 80,
    						},
    					},
    				},
    			},
    			FilterChains: []*listener.FilterChain{
    				{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 70.1K bytes
    - Viewed (0)
  8. test/ken/array.go

    	}
    	print("should fault\n")
    	a[100] = 0
    	print("bad\n")
    }
    
    // generate bounds error with ptr fixed
    func testfdfault() {
    	var a [80]int
    
    	print("good\n")
    	for i := 0; i < 80; i++ {
    		a[i] = 0
    	}
    	print("should fault\n")
    	x := 80
    	a[x] = 0
    	print("bad\n")
    }
    
    func main() {
    	testpdpd()
    	testpfpf()
    	testpdpf1()
    	testpdpf2()
    	//	print("testpdfault\n");	testpdfault();
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 05:24:24 UTC 2012
    - 2.3K bytes
    - Viewed (0)
  9. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperGenerationIntegrationTest.groovy

            def target = file("/distributions/8.0-rc-5") << "some content"
            def url = target.toURI().toString()
    
            when:
            run "wrapper", "--gradle-distribution-url", url
    
            then:
            succeeds()
        }
    
        def "wrapper task with distribution url from command-line respects --offline"() {
            httpServer.start()
            def path = "/distributions/8.0-RC-5"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:38 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  10. src/cmd/asm/internal/asm/testdata/duperror.s

    TEXT foo(SB), 0, $0
    	RET
    TEXT foo(SB), 0, $0 // ERROR "symbol foo redeclared"
    	RET
    
    GLOBL bar(SB), 0, $8
    GLOBL bar(SB), 0, $8 // ERROR "symbol bar redeclared"
    
    DATA bar+0(SB)/8, $0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 05 23:21:07 UTC 2022
    - 404 bytes
    - Viewed (0)
Back to top