Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 781 for port1 (0.06 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/proxy/servicechangetracker_test.go

    			svc.Spec.Ports = addTestPort(svc.Spec.Ports, "port2", "UDP", 1235, 5321, 0)
    		}),
    		makeTestService("ns2", "node-port", func(svc *v1.Service) {
    			svc.Spec.Type = v1.ServiceTypeNodePort
    			svc.Spec.ClusterIP = "172.16.55.10"
    			svc.Spec.Ports = addTestPort(svc.Spec.Ports, "port1", "UDP", 345, 678, 0)
    			svc.Spec.Ports = addTestPort(svc.Spec.Ports, "port2", "TCP", 344, 677, 0)
    		}),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  5. security/pkg/k8s/chiron/utils_test.go

    	host := "127.0.0.1"
    	port1, err := getServerPort(server1.httpServer)
    	if err != nil {
    		t.Fatalf("error to get the server 1 port: %v", err)
    	}
    	port2, err := getServerPort(server2.httpServer)
    	if err != nil {
    		t.Fatalf("error to get the server 2 port: %v", err)
    	}
    
    	// Server 1 should be reachable, since it is not closed.
    	if !isTCPReachable(host, port1) {
    		t.Fatal("server 1 is unreachable")
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 03:58:11 UTC 2024
    - 13K bytes
    - Viewed (0)
  6. pilot/pkg/model/sidecar_test.go

    		},
    	}
    
    	port8000 = []*Port{
    		{
    			Name:     "uds",
    			Port:     8000,
    			Protocol: "HTTP",
    		},
    	}
    
    	port9000 = []*Port{
    		{
    			Name: "port1",
    			Port: 9000,
    		},
    	}
    
    	twoPorts = []*Port{
    		{
    			Name:     "uds",
    			Port:     8000,
    			Protocol: "HTTP",
    		},
    		{
    			Name:     "uds",
    			Port:     7000,
    			Protocol: "HTTP",
    		},
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  7. pkg/proxy/ipvs/proxier_test.go

    	fp.syncProxyRules()
    
    	// check ipSet rules
    	makeTCPEntry := func(port int) *utilipset.Entry {
    		return &utilipset.Entry{
    			Port:     port,
    			Protocol: strings.ToLower(string(v1.ProtocolTCP)),
    			SetType:  utilipset.BitmapPort,
    		}
    	}
    	epIPSet := netlinktest.ExpectedIPSet{
    		// healthcheck node port set should only contain valid HC node ports
    		kubeHealthCheckNodePortSet: {makeTCPEntry(30000), makeTCPEntry(30001)},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  8. pkg/config/validation/validation_test.go

    			"port", "",
    		},
    		{
    			"duplicate port names",
    			&networking.Gateway{
    				Servers: []*networking.Server{
    					{
    						Hosts: []string{"foo.bar.com"},
    						Port:  &networking.Port{Name: "foo", Number: 80, Protocol: "http"},
    					},
    					{
    						Hosts: []string{"scooby.doo.com"},
    						Port:  &networking.Port{Name: "foo", Number: 8080, Protocol: "http"},
    					},
    				},
    			},
    			"port names", "",
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  9. 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)
  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