Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 2,708 for PORT (0.04 sec)

  1. manifests/helm-profiles/demo.yaml

        # on this list. Setting this to the health check port will ensure that health
        # checks always work. https://github.com/istio/istio/issues/12503
        - port: 15021
          targetPort: 15021
          name: status-port
        - port: 80
          targetPort: 8080
          name: http2
        - port: 443
          targetPort: 8443
          name: https
        - port: 31400
          targetPort: 31400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 06 01:25:34 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. internal/event/target/nats_contrib_test.go

    )
    
    func TestNatsConnPlain(t *testing.T) {
    	opts := natsserver.DefaultTestOptions
    	opts.Port = 14222
    	s := natsserver.RunServer(&opts)
    	defer s.Shutdown()
    
    	clientConfig := &NATSArgs{
    		Enable: true,
    		Address: xnet.Host{
    			Name:      "localhost",
    			Port:      (xnet.Port(opts.Port)),
    			IsPortSet: true,
    		},
    		Subject: "test",
    	}
    	con, err := clientConfig.connectNats()
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/util/endpoint.go

    // ParseHostPort parses a network address of the form "host:port", "ipv4:port", "[ipv6]:port" into host and port;
    // ":port" can be eventually omitted.
    // If the string is not a valid representation of network address, ParseHostPort returns an error.
    func ParseHostPort(hostport string) (string, string, error) {
    	var host, port string
    	var err error
    
    	// try to split host and port
    	if host, port, err = net.SplitHostPort(hostport); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 11 15:08:59 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  4. pkg/test/framework/components/echo/calloptions.go

    	// When using the Port field, the ServicePort should be used.
    	ToWorkload Instance
    
    	// Port to be used for the call. Ignored if Scheme == DNS. If the Port.ServicePort is set,
    	// either Port.Protocol or Scheme must also be set. If Port.ServicePort is not set,
    	// the port is looked up in To by either Port.Name or Port.Protocol.
    	Port Port
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Oct 08 09:39:20 UTC 2023
    - 13K bytes
    - Viewed (0)
  5. pkg/kubelet/prober/prober_test.go

    					test.host, test.port, test.path, host, port, path)
    			}
    		}
    	}
    }
    
    func TestGetTCPAddrParts(t *testing.T) {
    	testCases := []struct {
    		probe *v1.TCPSocketAction
    		ok    bool
    		host  string
    		port  int
    	}{
    		{&v1.TCPSocketAction{Port: intstr.FromInt32(-1)}, false, "", -1},
    		{&v1.TCPSocketAction{Port: intstr.FromString("")}, false, "", -1},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:17:35 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  6. samples/bookinfo/gateway-api/route-all-v1.yaml

        kind: Service
        name: ratings
        port: 9080
      rules:
      - backendRefs:
        - name: ratings-v1
          port: 9080
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: details
    spec:
      parentRefs:
      - group: ""
        kind: Service
        name: details
        port: 9080
      rules:
      - backendRefs:
        - name: details-v1
          port: 9080
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 25 22:57:42 UTC 2023
    - 984 bytes
    - Viewed (0)
  7. pkg/proxy/endpointslicecache_test.go

    				makeServicePortName("ns1", "svc1", "port-0", v1.ProtocolTCP): {
    					&BaseEndpointInfo{ip: "10.0.1.1", port: 80, endpoint: "10.0.1.1:80", isLocal: false, ready: true, serving: true, terminating: false},
    					&BaseEndpointInfo{ip: "10.0.1.2", port: 80, endpoint: "10.0.1.2:80", isLocal: true, ready: true, serving: true, terminating: false},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:07:21 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/serviceregistry_test.go

    		makeIstioObject(t, store, workloadEntry)
    
    		instances := []EndpointResponse{
    			{Address: pod.Status.PodIP, Port: 80},
    			{Address: pod.Status.PodIP, Port: 80},
    			{Address: workloadEntry.Spec.(*networking.WorkloadEntry).Address, Port: 80},
    			{Address: workloadEntry.Spec.(*networking.WorkloadEntry).Address, Port: 80},
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  9. pkg/quota/v1/evaluator/core/services_test.go

    						{
    							Port: 27443,
    						},
    					},
    				},
    			},
    			required: []corev1.ResourceName{corev1.ResourceServicesNodePorts},
    		},
    		"multi-nodeports": {
    			service: &api.Service{
    				Spec: api.ServiceSpec{
    					Type: api.ServiceTypeNodePort,
    					Ports: []api.ServicePort{
    						{
    							Port: 27443,
    						},
    						{
    							Port: 27444,
    						},
    					},
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 16 15:48:58 UTC 2021
    - 9.4K bytes
    - Viewed (0)
  10. pkg/proxy/endpointschangetracker_test.go

    				makeServicePortName("ns1", "svc1", "port-0", v1.ProtocolTCP): {
    					&BaseEndpointInfo{ip: "10.0.1.1", port: 80, endpoint: "10.0.1.1:80", isLocal: false, ready: true, serving: true, terminating: false},
    					&BaseEndpointInfo{ip: "10.0.1.2", port: 80, endpoint: "10.0.1.2:80", isLocal: true, ready: true, serving: true, terminating: false},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:44:08 UTC 2023
    - 79.9K bytes
    - Viewed (0)
Back to top