Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 54 for 8082 (0.03 sec)

  1. 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)
  2. 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)
  3. pkg/proxy/iptables/proxier_test.go

    	svc4 := makeTestService("ns4", "svc4", func(svc *v1.Service) {
    		svc.Spec.Type = v1.ServiceTypeClusterIP
    		svc.Spec.ClusterIP = "172.30.0.44"
    		svc.Spec.Ports = []v1.ServicePort{{
    			Name:     "p8082",
    			Port:     8082,
    			Protocol: v1.ProtocolTCP,
    		}}
    	})
    	fp.OnServiceAdd(svc4)
    	fp.OnEndpointSliceAdd(makeTestEndpointSlice("ns4", "svc4", 1, func(eps *discovery.EndpointSlice) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (1)
  4. docs/ftp/README.md

    ## Usage
    
    Start MinIO in a distributed setup, with 'ftp/sftp' enabled.
    
    ```
    minio server http://server{1...4}/disk{1...4}
       --ftp="address=:8021" --ftp="passive-port-range=30000-40000" \
       --sftp="address=:8022" --sftp="ssh-private-key=/home/miniouser/.ssh/id_rsa"
    ...
    ...
    ```
    
    Following example shows connecting via ftp client using `minioadmin` credentials, and list a bucket named `runner`:
    
    ```
    ftp localhost -P 8021
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 06:41:25 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r82/CustomToolingModelCrossVersionSpec.groovy

            withBuildScriptIn("c")
            withBuildScriptIn("d")
            withBuildScriptIn("e")
    
            settingsFile << """
    include 'a', 'b', 'c', 'd', 'e'
    """
        }
    
        @ToolingApiVersion(">=7.0 <8.2")
        @Issue("https://github.com/gradle/gradle/issues/17810")
        def "older Tooling API versions cannot free memory when executing a build action"() {
            when:
            withConnection { connection ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  6. src/crypto/ed25519/ed25519.go

    // https://ed25519.cr.yp.to/.
    //
    // These functions are also compatible with the “Ed25519” function defined in
    // RFC 8032. However, unlike RFC 8032's formulation, this package's private key
    // representation includes a public key suffix to make multiple signing
    // operations with the same key more efficient. This package refers to the RFC
    // 8032 private key as the “seed”.
    //
    // Operations involving private keys are implemented using constant-time
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/serviceentry/conversion_test.go

    					map[string]int{"http-port": 80, "http-alt-port": 8080}, true, model.ClientSideLB),
    			},
    		},
    		{
    			// service entry DNS with no endpoints
    			externalSvc: httpDNSnoEndpoints,
    			services: []*model.Service{
    				makeService("google.com", "httpDNSnoEndpoints", constants.UnspecifiedIP,
    					map[string]int{"http-port": 80, "http-alt-port": 8080}, true, model.DNSLB, "google.com"),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 39K bytes
    - Viewed (0)
  8. tests/integration/security/mtls_healthcheck_test.go

    	var healthcheck echo.Instance
    	cfg := echo.Config{
    		Namespace: ns,
    		Service:   name,
    		Ports: []echo.Port{{
    			Name:         "http-8080",
    			Protocol:     protocol.HTTP,
    			ServicePort:  8080,
    			WorkloadPort: 8080,
    		}},
    		Subsets: []echo.SubsetConfig{
    			{
    				Annotations: map[string]string{annotation.SidecarRewriteAppHTTPProbers.Name: strconv.FormatBool(rewrite)},
    			},
    		},
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. src/crypto/internal/edwards25519/scalar.go

    		case s[i] > scalarMinusOneBytes[i]:
    			return false
    		case s[i] < scalarMinusOneBytes[i]:
    			return true
    		}
    	}
    	return true
    }
    
    // SetBytesWithClamping applies the buffer pruning described in RFC 8032,
    // Section 5.1.5 (also known as clamping) and sets s to the result. The input
    // must be 32 bytes, and it is not modified. If x is not of the right length,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/serviceregistry_test.go

    				Address: "2.3.4.5",
    				Labels:  labels,
    				Ports: map[string]uint32{
    					serviceEntry.Spec.(*networking.ServiceEntry).Ports[0].Name: 8080,
    				},
    			},
    		})
    
    		instances := []EndpointResponse{{
    			Address: workloadEntry.Spec.(*networking.WorkloadEntry).Address,
    			Port:    8080,
    		}}
    		expectServiceEndpoints(t, fx, expectedSvc, 80, instances)
    	})
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 51.2K bytes
    - Viewed (0)
Back to top