Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,708 for PORT (0.44 sec)

  1. pilot/pkg/serviceregistry/mock/discovery.go

    				Port:     80, // target port 80
    				Protocol: protocol.HTTP,
    			}, {
    				Name:     "http-status",
    				Port:     81, // target port 1081
    				Protocol: protocol.HTTP,
    			}, {
    				Name:     "custom",
    				Port:     90, // target port 1090
    				Protocol: protocol.TCP,
    			}, {
    				Name:     "mongo",
    				Port:     100, // target port 1100
    				Protocol: protocol.Mongo,
    			}, {
    				Name:     "redis",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 07 18:40:05 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. manifests/charts/istio-cni/files/profile-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 Apr 02 22:30:06 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. manifests/charts/istio-control/istio-discovery/files/profile-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 Apr 02 22:30:06 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. pkg/test/echo/server/endpoint/hbone.go

    		}
    		// Listen on the given port and update the port if it changed from what was passed in.
    		listener, port, err = listenOnAddressTLS(c.ListenerIP, c.Port.Port, config)
    		// Store the actual listening port back to the argument.
    		c.Port.Port = port
    	} else {
    		// Listen on the given port and update the port if it changed from what was passed in.
    		listener, port, err = listenOnAddress(c.ListenerIP, c.Port.Port)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 14 20:23:34 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  7. 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)
  8. pkg/registry/core/service/portallocator/allocator.go

    		klog.Warningf("port is not in the range when release it. port: %v", port)
    		return nil
    	}
    
    	err := r.alloc.Release(offset)
    	if err == nil {
    		// update metrics
    		r.metrics.setAllocated(r.Used())
    		r.metrics.setAvailable(r.Free())
    	}
    	return err
    }
    
    // Has returns true if the provided port is already allocated and a call
    // to Allocate(port) would fail with ErrAllocated.
    func (r *PortAllocator) Has(port int) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 07:15:02 UTC 2024
    - 7.4K 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/test/framework/components/echo/kube/testdata/multiversion.yaml

              failureThreshold: 10
            livenessProbe:
              tcpSocket:
                port: tcp-health-port
              initialDelaySeconds: 10
              periodSeconds: 10
              failureThreshold: 10
            startupProbe:
              tcpSocket:
                port: tcp-health-port
              periodSeconds: 1
              failureThreshold: 10
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: multiversion-v-legacy
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 4K bytes
    - Viewed (0)
Back to top