- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 1,826 for port (0.02 sec)
-
cmd/net.go
Registered: 2025-05-25 19:28 - Last Modified: 2024-06-19 14:34 - 9.6K bytes - Viewed (1) -
internal/http/check_port_test.go
expectedErr error }{ {"", port, fmt.Errorf("listen tcp :%v: bind: address already in use", port)}, {"127.0.0.1", port, fmt.Errorf("listen tcp 127.0.0.1:%v: bind: address already in use", port)}, } for _, testCase := range testCases { err := CheckPortAvailability(testCase.host, strconv.Itoa(testCase.port), TCPOptions{}) switch { case testCase.expectedErr == nil: if err != nil {
Registered: 2025-05-25 19:28 - Last Modified: 2023-05-03 21:12 - 1.9K bytes - Viewed (0) -
cmd/ftp-server.go
} port, err = strconv.Atoi(portStr) if err != nil { logger.Fatal(fmt.Errorf("invalid arguments passed to --ftp=%s (%v)", arg, err), "unable to start FTP server") } if port < 1 || port > 65535 { logger.Fatal(fmt.Errorf("invalid arguments passed to --ftp=%s, (port number must be between 1 to 65535)", arg), "unable to start FTP server") }
Registered: 2025-05-25 19:28 - Last Modified: 2025-05-09 20:10 - 5.3K bytes - Viewed (0) -
manifests/charts/istio-cni/files/profile-demo.yaml
- port: 80 targetPort: 8080 name: http2 - port: 443 targetPort: 8443 name: https - port: 31400 targetPort: 31400 name: tcp # This is the port where sni routing happens - port: 15443 targetPort: 15443 name: tls resources: requests: cpu: 10m
Registered: 2025-05-28 22:53 - Last Modified: 2024-12-10 01:56 - 2.4K bytes - Viewed (0) -
manifests/charts/istio-control/istio-discovery/files/profile-demo.yaml
- port: 80 targetPort: 8080 name: http2 - port: 443 targetPort: 8443 name: https - port: 31400 targetPort: 31400 name: tcp # This is the port where sni routing happens - port: 15443 targetPort: 15443 name: tls resources: requests: cpu: 10m
Registered: 2025-05-28 22:53 - Last Modified: 2024-12-10 01:56 - 2.4K bytes - Viewed (0) -
istioctl/pkg/writer/envoy/configdump/listener.go
if filter.Verify(l) { verifiedListeners = append(verifiedListeners, l) } } // Sort by port, addr, type sort.Slice(verifiedListeners, func(i, j int) bool { iPort := retrieveListenerPort(verifiedListeners[i]) jPort := retrieveListenerPort(verifiedListeners[j]) if iPort != jPort { return iPort < jPort } iAddr := retrieveListenerAddress(verifiedListeners[i])
Registered: 2025-05-28 22:53 - Last Modified: 2023-11-29 12:37 - 18.1K bytes - Viewed (0) -
istioctl/pkg/describe/describe.go
"http": 80, } for _, port := range ingress.service.Spec.Ports { if port.Protocol != "TCP" || !portsToShow[port.Name] { continue } // Get port number _, err := pilotcontroller.FindPort(ingress.pods[0], &port) if err == nil { nport := int(port.Port) protocol := string(configKube.ConvertProtocol(port.Port, port.Name, port.Protocol, port.AppProtocol))
Registered: 2025-05-28 22:53 - Last Modified: 2025-02-25 05:44 - 50.6K bytes - Viewed (0) -
manifests/helm-profiles/demo.yaml
- port: 80 targetPort: 8080 name: http2 - port: 443 targetPort: 8443 name: https - port: 31400 targetPort: 31400 name: tcp # This is the port where sni routing happens - port: 15443 targetPort: 15443 name: tls resources: requests: cpu: 10m
Registered: 2025-05-28 22:53 - Last Modified: 2024-12-10 01:56 - 2.2K bytes - Viewed (0) -
manifests/charts/default/files/profile-demo.yaml
- port: 80 targetPort: 8080 name: http2 - port: 443 targetPort: 8443 name: https - port: 31400 targetPort: 31400 name: tcp # This is the port where sni routing happens - port: 15443 targetPort: 15443 name: tls resources: requests: cpu: 10m
Registered: 2025-05-28 22:53 - Last Modified: 2024-12-10 01:56 - 2.4K bytes - Viewed (0) -
docs/auditlog/auditlog-echo.go
Registered: 2025-05-25 19:28 - Last Modified: 2024-05-01 21:31 - 1.5K bytes - Viewed (0)