Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,708 for PORT (0.12 sec)

  1. pkg/test/framework/components/echo/kube/testdata/disable-automount-sa.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.2K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/testdata/multicluster/inconsistent-service-1.yaml

      ports:
      - name: tcp-foo
        protocol: TCP
        port: 8080
        targetPort: 8080
    ---
    # Service with extra port in cluster2, should generate warning.
    apiVersion: v1
    kind: Service
    metadata:
      name: extra-port
      namespace: my-namespace
    spec:
      selector:
        app: my-service
      ports:
      - name: tcp-foo
        protocol: TCP
        port: 8080
        targetPort: 8080
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 1.6K 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. pilot/pkg/config/kube/gateway/testdata/invalid.yaml

              port: 80
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: invalid-parentRef-port
      namespace: default
    spec:
      parentRefs:
      - name: gateway
        namespace: istio-system
        port: 1234
      hostnames: ["first.domain.example"]
      rules:
      - backendRefs:
        - name: httpbin
          port: 80
          weight: 1
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  5. pkg/test/framework/components/echo/kube/testdata/two-workloads-one-nosidecar.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.7K bytes
    - Viewed (0)
  6. 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)
  7. pkg/config/analysis/analyzers/service/portname.go

    		v == constants.ManagedGatewayMeshControllerLabel {
    		return
    	}
    	for i, port := range svc.Ports {
    		instance := configKube.ConvertProtocol(port.Port, port.Name, port.Protocol, port.AppProtocol)
    		if instance.IsUnsupported() || port.Name == "tcp" && svc.Type == "ExternalName" {
    
    			m := msg.NewPortNameIsNotUnderNamingConvention(
    				r, port.Name, int(port.Port), port.TargetPort.String())
    
    			if svc.Type == "ExternalName" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Sep 15 14:45:58 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  8. src/net/ipsock_test.go

    		},
    		testInetaddr,
    		&TCPAddr{IP: IPv4(127, 0, 0, 1), Port: 5682},
    		addrList{&TCPAddr{IP: IPv4(127, 0, 0, 1), Port: 5682}},
    		addrList{&TCPAddr{IP: IPv6loopback, Port: 5682}},
    		nil,
    	},
    	{
    		nil,
    		[]IPAddr{
    			{IP: IPv6loopback},
    			{IP: IPv4(127, 0, 0, 1)},
    		},
    		testInetaddr,
    		&TCPAddr{IP: IPv4(127, 0, 0, 1), Port: 5682},
    		addrList{&TCPAddr{IP: IPv6loopback, Port: 5682}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Apr 15 22:22:09 UTC 2017
    - 6.8K bytes
    - Viewed (0)
  9. 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)
  10. pkg/test/framework/components/echo/kube/testdata/multiple-istio-versions-no-proxy.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: foo-bar-rev-b
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 3.6K bytes
    - Viewed (0)
Back to top