Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,217 for port1 (0.04 sec)

  1. pilot/pkg/xds/cds_test.go

    kind: ServiceEntry
    metadata:
      name: se5
    spec:
      hosts:
      - example.com
      ports:
      - name: port1
        number: 80
        targetPort: 999
        protocol: HTTP
      resolution: DNS
      endpoints:
      - address: endpoint.example.com
      - address: endpoint-port-override.example.com
        ports:
          port1: 2345
    `})
    
    	res := xdstest.ExtractClusterEndpoints(s.Clusters(s.SetupProxy(nil)))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 02:06:39 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. cmd/net.go

    	host, port, err := net.SplitHostPort(addr)
    	if err != nil {
    		if !strings.Contains(err.Error(), "missing port in address") {
    			return "", "", err
    		}
    
    		host = addr
    
    		switch scheme {
    		case "https":
    			port = "443"
    		case "http":
    			port = "80"
    		default:
    			return "", "", errors.New("unable to guess port from scheme")
    		}
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  3. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/DefaultFileLockManagerContentionTest.groovy

            1 * contentionHandler3.maybePingOwner(port1, _, _, _, _) >> { int port, long lockId, String displayName, long timeElapsed, FileLockReleasedSignal signal ->
                assert timeElapsed < 20
                lock1.close()
                lock2 = createLock(Exclusive, file, manager2)
                Thread.sleep(50)
                return false
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  4. pkg/test/framework/components/echo/common/ports/ports.go

    	TCPForHTTP       = echo.Port{Name: "tcp-for-http", Protocol: protocol.HTTP, ServicePort: 86, WorkloadPort: 18086}
    )
    
    // All the common ports.
    func All() echo.Ports {
    	return echo.Ports{
    		HTTP,
    		GRPC,
    		HTTP2,
    		TCP,
    		HTTPS,
    		TCPServer,
    		AutoTCP,
    		AutoTCPServer,
    		AutoHTTP,
    		AutoGRPC,
    		AutoHTTPS,
    		HTTPInstance,
    		HTTPLocalHost,
    		TCPWorkloadOnly,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 08 16:17:34 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  5. pkg/cluster/ports/ports.go

    limitations under the License.
    */
    
    package ports
    
    import (
    	cpoptions "k8s.io/cloud-provider/options"
    )
    
    // In this file, we can see all default port of cluster.
    // It's also an important documentation for us. So don't remove them easily.
    const (
    	// ProxyStatusPort is the default port for the proxy metrics server.
    	// May be overridden by a flag at startup.
    	ProxyStatusPort = 10249
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 23:28:05 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/testdata/service-port-name.yaml

    # If port is unnamed or port name doesn't follow <protocol>[-<suffix>], the analyzer will report warning.
    apiVersion: v1
    kind: Service
    metadata:
      name: my-service
      namespace: my-namespace
    spec:
      selector:
        app: my-service
      ports:
      - name: tcp-foo
        protocol: TCP
        port: 8080
        targetPort: 8080
    ---
    # internal waypoint, should not generate warning
    apiVersion: v1
    kind: Service
    metadata:
      labels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 03 21:10:07 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. releasenotes/notes/sidecar-port-merge.yaml

    kind: bug-fix
    area: traffic-management
    releaseNotes:
    - |
      **Fixed** a bug when a Sidecar is resource is defined with multiple egress listeners with different ports 
      of a Kubernetes service, does not merge the ports correctly. This leads to creating only one Cluster with 
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 348 bytes
    - Viewed (0)
  8. doc/initial/7-ports.md

    ## Ports {#ports}...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 18:07:49 UTC 2024
    - 19 bytes
    - Viewed (0)
  9. tools/istio-iptables/pkg/capture/testdata/inbound-ports-tproxy.golden

    iptables -t nat -A ISTIO_REDIRECT -p tcp -j REDIRECT --to-ports 15001
    iptables -t nat -A ISTIO_IN_REDIRECT -p tcp -j REDIRECT --to-ports 15006
    iptables -t mangle -A ISTIO_DIVERT -j MARK --set-mark 1337
    iptables -t mangle -A ISTIO_DIVERT -j ACCEPT
    iptables -t mangle -A ISTIO_TPROXY ! -d 127.0.0.1/32 -p tcp -j TPROXY --tproxy-mark 1337/0xffffffff --on-port 15006
    iptables -t mangle -A PREROUTING -p tcp -j ISTIO_INBOUND
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. doc/next/7-ports.md

    ## Ports {#ports}
    
    ### Darwin {#darwin}
    
    <!-- go.dev/issue/64207 -->
    As [announced](go1.22#darwin) in the Go 1.22 release notes,
    Go 1.23 requires macOS 11 Big Sur or later;
    support for previous versions has been discontinued.
    
    ### Linux {#linux}
    
    <!-- go.dev/issue/67001 -->
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:52 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top