Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 791 for PORT (0.04 sec)

  1. pkg/api/v1/endpoints/util_test.go

    		}, {
    			name: "one set, one ip, one port",
    			given: []v1.EndpointSubset{{
    				Addresses: []v1.EndpointAddress{{IP: "1.2.3.4"}},
    				Ports:     []v1.EndpointPort{{Port: 111}},
    			}},
    			expect: []v1.EndpointSubset{{
    				Addresses: []v1.EndpointAddress{{IP: "1.2.3.4"}},
    				Ports:     []v1.EndpointPort{{Port: 111}},
    			}},
    		}, {
    			name: "one set, one ip, one port (IPv6)",
    			given: []v1.EndpointSubset{{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 27 01:24:22 UTC 2023
    - 16.6K bytes
    - Viewed (0)
  2. pilot/pkg/networking/telemetry/telemetry_test.go

    			&model.Port{Name: "grpc-svc", Port: 7443, Protocol: "GRPC"},
    			&model.ServiceAttributes{
    				Name:      "reviews",
    				Namespace: "default",
    			},
    			"reviews.default.svc.cluster.local",
    		},
    		{
    			"Service With Port and Port Name pattern With Target Port",
    			"%SERVICE%_%SERVICE_PORT_NAME%_%TARGET_PORT%",
    			"reviews.default.svc.cluster.local",
    			"",
    			9443,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 02:38:43 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/net/HostAndPort.java

       * @param port a port number from [0..65535]
       * @return if parsing was successful, a populated HostAndPort object.
       * @throws IllegalArgumentException if {@code host} contains a port number, or {@code port} is out
       *     of range.
       */
      public static HostAndPort fromParts(String host, int port) {
        checkArgument(isValidPort(port), "Port out of range: %s", port);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Aug 22 20:55:57 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  4. pkg/proxy/ipvs/graceful_termination_test.go

    					{
    						IP:       "1.1.1.1",
    						Port:     80,
    						Protocol: "tcp",
    					}: {
    						Address:  netutils.ParseIPSloppy("1.1.1.1"),
    						Protocol: "tcp",
    						Port:     uint16(80),
    					},
    				},
    				Destinations: map[utilipvstest.ServiceKey][]*utilipvs.RealServer{
    					{
    						IP:       "1.1.1.1",
    						Port:     80,
    						Protocol: "tcp",
    					}: {
    						{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 11K bytes
    - Viewed (0)
  5. pkg/controlplane/reconcilers/instancecount_test.go

    				{Name: "foo", Port: 8080, Protocol: "TCP"},
    				{Name: "bar", Port: 1000, Protocol: "TCP"},
    				{Name: "baz", Port: 1010, Protocol: "TCP"},
    			},
    			initialState: makeEndpointsArray("foo", []string{"1.2.3.4"},
    				[]corev1.EndpointPort{
    					{Name: "foo", Port: 8080, Protocol: "TCP"},
    					{Name: "bar", Port: 1000, Protocol: "TCP"},
    					{Name: "baz", Port: 1010, Protocol: "TCP"},
    				},
    			),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 27 12:46:24 UTC 2022
    - 14K bytes
    - Viewed (0)
  6. tests/integration/security/pass_through_filter_chain_test.go

    								expect := expect
    								p := expect.port
    								opts := echo.CallOptions{
    									// Do not set To, otherwise fillInCallOptions() will
    									// complain with port does not match.
    									ToWorkload: to.Instances()[0],
    									Port: echo.Port{
    										Protocol: p.Protocol,
    
    										// The ServicePort tells the client which port to connect to.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/peer_authentication_simulation_test.go

     - address: 1.1.1.1
     location: MESH_INTERNAL
     resolution: STATIC
     ports:
     - name: http
       number: 8000
       protocol: HTTP
    ---`
    	mkCall := func(port int, tls simulation.TLSMode) simulation.Call {
    		r := simulation.Call{Protocol: simulation.HTTP, Port: port, CallMode: simulation.CallModeInbound, TLS: tls}
    		if tls == simulation.MTLS {
    			r.Alpn = "istio"
    		}
    		return r
    	}
    	cases := []struct {
    		name   string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  8. pkg/proxy/ipvs/util/ipvs_linux_test.go

    	}{
    		{
    			libipvs.Destination{
    				Port:            54321,
    				ConnectionFlags: 0,
    				Weight:          1,
    				Address:         netutils.ParseIPSloppy("1.2.3.4"),
    			},
    			RealServer{
    				Address: netutils.ParseIPSloppy("1.2.3.4"),
    				Port:    54321,
    				Weight:  1,
    			},
    		},
    		{
    			libipvs.Destination{
    				Port:            53,
    				ConnectionFlags: 0,
    				Weight:          1,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 27 16:37:50 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  9. pkg/config/gateway/gateway_test.go

    			server: &v1alpha3.Server{
    				Port: &v1alpha3.Port{
    					Number:   80,
    					Protocol: string(protocol.HTTP),
    					Name:     "http",
    				},
    				Tls: &v1alpha3.ServerTLSSettings{HttpsRedirect: true},
    			},
    			expected: false,
    		},
    		{
    			name: "tls non nil and TCP as transport protocol",
    			server: &v1alpha3.Server{
    				Port: &v1alpha3.Port{
    					Number:   80,
    					Protocol: string(protocol.TCP),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 26 05:53:25 UTC 2022
    - 10.5K bytes
    - Viewed (0)
  10. pkg/proxy/ipvs/ipset/ipset_test.go

    			},
    			valid: true,
    			desc:  "port number can be empty, default is 0. And port number is in the range of its ipset's port range",
    		},
    		{ // case[1]
    			entry: &Entry{
    				SetType: BitmapPort,
    				Port:    0,
    			},
    			set: &IPSet{
    				PortRange: DefaultPortRange,
    			},
    			valid: true,
    			desc:  "port number can be 0. And port number is in the range of its ipset's port range",
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 41.5K bytes
    - Viewed (0)
Back to top