Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 156 for 8082 (0.11 sec)

  1. pkg/kubelet/envvars/envvars_test.go

    		{Name: "SUPER_IPV6_SERVICE_PORT", Value: "8084"},
    		{Name: "SUPER_IPV6_SERVICE_PORT_U_D_P", Value: "8084"},
    		{Name: "SUPER_IPV6_SERVICE_PORT_T_C_P", Value: "8084"},
    		{Name: "SUPER_IPV6_PORT", Value: "udp://[2001:DB8::]:8084"},
    		{Name: "SUPER_IPV6_PORT_8084_UDP", Value: "udp://[2001:DB8::]:8084"},
    		{Name: "SUPER_IPV6_PORT_8084_UDP_PROTO", Value: "udp"},
    		{Name: "SUPER_IPV6_PORT_8084_UDP_PORT", Value: "8084"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 27 05:56:27 UTC 2018
    - 5.8K bytes
    - Viewed (0)
  2. tests/testdata/config/external_services.yaml

      namespace: testns
    spec:
       hosts:
       - ep.extsvc.com
       ports:
       - number: 8002
         name: extsvc-http
         protocol: HTTP
       resolution: STATIC
       endpoints:
        - address: 127.0.0.2
          ports:
            extsvc-http: 8080
        - address: 127.0.0.3
          ports:
            extsvc-http: 8002
    #
    #---
    #
    #apiVersion: networking.istio.io/v1alpha3
    #kind: ServiceEntry
    #metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 19 04:56:49 UTC 2019
    - 1.9K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r82/CompositeBuildCrossVersionSpec.groovy

            }.collect { it.buildTreePath }
    
            then:
            model.containsAll([":b1:buildEnvironment", ":b2:buildEnvironment"])
            model.every { !it.startsWith("::") }
        }
    
        @TargetGradleVersion('>=8.0 <8.2')
        def "unsupported method for older versions"() {
            given:
            includedBuild("b1")
            includedBuild("b2")
    
            when:
            withConnection {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 13 08:21:57 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  4. tests/testdata/networking/sidecar-without-service/configs.yaml

      namespace: ns2
    spec:
      hosts:
      - http2.ns2.svc.cluster.local
      addresses:
      - 2.1.1.2
      ports:
      - number: 8082
        name: http
        protocol: HTTP2
      location: MESH_INTERNAL
      resolution: STATIC
      endpoints:
      - address: 100.2.1.1
        ports:
          http: 8080
    ---
    # The sidecar for the consumer only application
    apiVersion: networking.istio.io/v1alpha3
    kind: Sidecar
    metadata:
      name: consumerapp
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 04 17:16:38 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    				&model.Port{
    					Name:     "tcp-port-8081",
    					Port:     8081,
    					Protocol: protocol.TCP,
    				},
    			},
    			MeshExternal: true,
    			Resolution:   model.DNSLB,
    		},
    		{
    			Hostname: kube.ServiceHostname("svc3", "nsA", defaultFakeDomainSuffix),
    			Ports: model.PortList{
    				&model.Port{
    					Name:     "tcp-port-8082",
    					Port:     8082,
    					Protocol: protocol.TCP,
    				},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/sidecar_simulation_test.go

    			clusters: map[string][]string{
    				"inbound|8080||": nil,
    				"inbound|8081||": nil,
    				"inbound|8082||": nil,
    				"inbound|8083||": nil,
    			},
    			telemetry: map[string][]string{
    				"inbound|8080||": {string(service.Hostname)},
    				"inbound|8081||": {string(service.Hostname)},
    				"inbound|8082||": {string(serviceAlt.Hostname)},
    				"inbound|8083||": {string(serviceAlt.Hostname)},
    			},
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  7. pkg/controller/endpoint/endpoints_controller_test.go

    				},
    			},
    			Ports: []v1.EndpointPort{{Port: 8080, Protocol: "TCP"}},
    		}},
    	})
    	endpoints.serviceStore.Add(&v1.Service{
    		ObjectMeta: metav1.ObjectMeta{Name: "foo", Namespace: ns},
    		Spec: v1.ServiceSpec{
    			Selector: map[string]string{"foo": "bar"},
    			Ports:    []v1.ServicePort{{Port: 80, Protocol: "TCP", TargetPort: intstr.FromInt32(8080)}},
    		},
    	})
    	pod0.ResourceVersion = "3"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/HttpUrlTest.kt

        // four-per-em space
        assertThat(parse("http://h/\u2005").encodedPath).isEqualTo("/%E2%80%85")
        // six-per-em space
        assertThat(parse("http://h/\u2006").encodedPath).isEqualTo("/%E2%80%86")
        // figure space
        assertThat(parse("http://h/\u2007").encodedPath).isEqualTo("/%E2%80%87")
        // punctuation space
        assertThat(parse("http://h/\u2008").encodedPath).isEqualTo("/%E2%80%88")
        // thin space
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/nodeports/node_ports_test.go

    		{
    			pod1: st.MakePod().ContainerPort([]v1.ContainerPort{
    				{
    					ContainerPort: 8001,
    					HostPort:      8001,
    					Protocol:      v1.ProtocolTCP,
    				},
    				{
    					ContainerPort: 8002,
    					HostPort:      8002,
    					Protocol:      v1.ProtocolTCP,
    				}}).ContainerPort([]v1.ContainerPort{
    				{
    					ContainerPort: 8003,
    					HostPort:      8003,
    					Protocol:      v1.ProtocolTCP,
    				},
    				{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 19 11:02:11 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/testdata/gateway-custom-ingressgateway-svcselector.yaml

      - port:
          number: 8002
          name: http2
          protocol: HTTP
        hosts:
        - "*"
    ---
    apiVersion: v1
    kind: Pod
    metadata:
      labels:
        myapp: ingressgateway-8001
      name: my-ingressgateway-8001
    spec:
      containers:
        - args:
          name: istio-proxy
    ---
    apiVersion: v1
    kind: Pod
    metadata:
      labels:
        myapp: ingressgateway-8002
      name: my-ingressgateway-8002
    spec:
      containers:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 1.2K bytes
    - Viewed (0)
Back to top