Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,708 for PORT (0.08 sec)

  1. pkg/test/framework/components/echo/kube/testdata/proxyless-custom-image.yaml

                path: /
                port: 8080
              initialDelaySeconds: 1
              periodSeconds: 2
              failureThreshold: 10
            livenessProbe:
              tcpSocket:
                port: tcp-health-port
              initialDelaySeconds: 10
              periodSeconds: 10
              failureThreshold: 10
            startupProbe:
              tcpSocket:
                port: tcp-health-port
              periodSeconds: 1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  2. pilot/pkg/model/gateway.go

    							// and validation ensures that all port names within a single gateway config are unique.
    							if _, exists := serversByRouteName[routeName]; exists {
    								log.Infof("skipping server on gateway %s port %s.%d.%s: non unique port name for HTTPS port",
    									gatewayConfig.Name, s.Port.Name, resolvedPort, s.Port.Protocol)
    								RecordRejectedConfig(gatewayName)
    								continue
    							}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  3. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/inet/SocketInetAddress.java

        private final InetAddress address;
        private final int port;
    
        public SocketInetAddress(InetAddress address, int port) {
            this.address = address;
            this.port = port;
        }
    
        @Override
        public String getDisplayName() {
            return address + ":" + port;
        }
    
        @Override
        public String toString() {
            return getDisplayName();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  4. 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)
  5. pilot/pkg/model/validation.go

    		}
    	}
    
    	port := instance.ServicePort
    	if port == nil {
    		errs = multierror.Append(errs, fmt.Errorf("missing service port"))
    	} else if instance.Service != nil {
    		expected, ok := instance.Service.Ports.Get(port.Name)
    		if !ok {
    			errs = multierror.Append(errs, fmt.Errorf("missing service port %q", port.Name))
    		} else {
    			if expected.Port != port.Port {
    				errs = multierror.Append(errs,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. pkg/proxy/ipvs/ipset/types.go

    const (
    	// HashIPPort represents the `hash:ip,port` type ipset.  The hash:ip,port is similar to hash:ip but
    	// you can store IP address and protocol-port pairs in it.  TCP, SCTP, UDP, UDPLITE, ICMP and ICMPv6 are supported
    	// with port numbers/ICMP(v6) types and other protocol numbers without port information.
    	HashIPPort Type = "hash:ip,port"
    	// HashIPPortIP represents the `hash:ip,port,ip` type ipset.  The hash:ip,port,ip set type uses a hash to store
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/listener_inbound.go

    		}
    
    		for _, i := range lb.node.SidecarScope.Sidecar.Ingress {
    			port := model.ServiceInstancePort{
    				ServicePort: &model.Port{
    					Name:     i.Port.Name,
    					Port:     int(i.Port.Number),
    					Protocol: protocol.Parse(i.Port.Protocol),
    				},
    				TargetPort: i.Port.Number, // No targetPort support in the API
    			}
    			bindtoPort := getBindToPort(i.CaptureMode, lb.node)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  8. tests/integration/iop-integration-test-defaults.yaml

                  ## Default ports
                  - port: 15021
                    targetPort: 15021
                    name: status-port
                  - port: 80
                    targetPort: 8080
                    name: http2
                  - port: 443
                    targetPort: 8443
                    name: https
                    # This is the port where sni routing happens
                  - port: 15443
                    targetPort: 15443
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 23 23:20:19 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/config_selfclient_test.go

    	}
    	if ipv6only {
    		t.Fatalf("no ipv4 loopback interface")
    	}
    
    	host, port, err := LoopbackHostPort("1.2.3.4:443")
    	if err != nil {
    		t.Fatalf("unexpected error: %v", err)
    	}
    	if host != "1.2.3.4" {
    		t.Fatalf("expected 1.2.3.4 as host, got %q", host)
    	}
    	if port != "443" {
    		t.Fatalf("expected 443 as port, got %q", port)
    	}
    
    	host, port, err = LoopbackHostPort("0.0.0.0:443")
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 20 08:42:09 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  10. pkg/test/framework/components/echo/kube/testdata/healthcheck-rewrite.yaml

                path: /
                port: 8080
              initialDelaySeconds: 1
              periodSeconds: 2
              failureThreshold: 10
            livenessProbe:
              tcpSocket:
                port: tcp-health-port
              initialDelaySeconds: 10
              periodSeconds: 10
              failureThreshold: 10
            startupProbe:
              tcpSocket:
                port: tcp-health-port
              periodSeconds: 1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top