Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 84 for 8082 (0.08 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. 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)
  6. test/fixedbugs/bug321.go

    	// http://www.exploringbinary.com/java-hangs-when-converting-2-2250738585072012e-308/
    	good = good && check("2.2250738585072012e-308", 2.2250738585072012e-308, 2.2250738585072014e-308)
    	// http://www.exploringbinary.com/php-hangs-on-numeric-value-2-2250738585072011e-308/
    	good = good && check("2.2250738585072011e-308", 2.2250738585072011e-308, 2.225073858507201e-308)
    	if !good {
    		panic("fail")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 830 bytes
    - Viewed (0)
  7. samples/health-check/server.go

    	go func() {
    		http.ListenAndServe(":8002", server8002)
    	}()
    
    	<-finish
    }
    
    func foo8001(w http.ResponseWriter, _ *http.Request) {
    	w.Write([]byte("Listening on 8001: foo "))
    }
    
    func bar8001(w http.ResponseWriter, _ *http.Request) {
    	w.Write([]byte("Listening on 8001: bar "))
    }
    
    func foo8002(w http.ResponseWriter, _ *http.Request) {
    	w.Write([]byte("Listening on 8002: foo "))
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 29 20:42:01 UTC 2020
    - 1.4K bytes
    - Viewed (0)
  8. src/cmd/gofmt/testdata/issue28082.golden

    // Copyright 2019 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    // testcase for issue #28082
    
    func foo() {}
    
    func main() {}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 24 16:36:56 UTC 2019
    - 249 bytes
    - Viewed (0)
  9. src/cmd/gofmt/testdata/issue28082.input

    // Copyright 2019 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    // testcase for issue #28082
    
    func foo(                                                                                                ) {}
    
    func main(                                                                                                      ) {}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 24 16:36:56 UTC 2019
    - 447 bytes
    - Viewed (0)
  10. cmd/testdata/config/invalid.yaml

    options:
      ftp: # settings for MinIO to act as an ftp server
            address: ':8021'
            passive-port-range: '30000-40000'
      sftp: # settings for MinIO to act as an sftp server
            address: ':8022'
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Dec 07 09:33:56 UTC 2023
    - 866 bytes
    - Viewed (0)
Back to top