- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 718 for ports (0.07 sec)
-
doc/initial/7-ports.md
## Ports {#ports}...
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Mon Jan 22 18:07:49 UTC 2024 - 19 bytes - Viewed (0) -
doc/next/7-ports.md
## Ports {#ports} ### Linux {#linux} As [announced](go1.23#linux) in the Go 1.23 release notes, Go 1.24 requires Linux kernel version 3.2 or later. ### WebAssembly {#wasm}
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Oct 23 19:37:35 UTC 2024 - 258 bytes - Viewed (0) -
cni/pkg/plugin/testdata/status-ports.txt.golden
* nat -N ISTIO_INBOUND -N ISTIO_REDIRECT -N ISTIO_IN_REDIRECT -N ISTIO_OUTPUT -A ISTIO_INBOUND -p tcp --dport 15008 -j RETURN -A ISTIO_REDIRECT -p tcp -j REDIRECT --to-ports 15001 -A ISTIO_IN_REDIRECT -p tcp -j REDIRECT --to-ports 15006 -A PREROUTING -p tcp -j ISTIO_INBOUND -A ISTIO_INBOUND -p tcp --dport 22 -j RETURN -A ISTIO_INBOUND -p tcp --dport 15020 -j RETURN -A ISTIO_INBOUND -p tcp --dport 15021 -j RETURN
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Tue Jul 13 23:37:21 UTC 2021 - 1.1K bytes - Viewed (0) -
cni/pkg/plugin/testdata/include-exclude-ports.txt.golden
* nat -N ISTIO_INBOUND -N ISTIO_REDIRECT -N ISTIO_IN_REDIRECT -N ISTIO_OUTPUT -A ISTIO_INBOUND -p tcp --dport 15008 -j RETURN -A ISTIO_REDIRECT -p tcp -j REDIRECT --to-ports 15001 -A ISTIO_IN_REDIRECT -p tcp -j REDIRECT --to-ports 15006 -A PREROUTING -p tcp -j ISTIO_INBOUND -A ISTIO_INBOUND -p tcp --dport 1111 -j ISTIO_IN_REDIRECT -A ISTIO_INBOUND -p tcp --dport 2222 -j ISTIO_IN_REDIRECT -A OUTPUT -p tcp -j ISTIO_OUTPUT
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Feb 16 22:54:20 UTC 2023 - 1.1K bytes - Viewed (0) -
common-protos/k8s.io/api/discovery/v1beta1/generated.proto
// +listType=atomic repeated Endpoint endpoints = 2; // ports specifies the list of network ports exposed by each endpoint in // this slice. Each port must have a unique name. When ports is empty, it // indicates that there are no defined ports. When a port is defined with a // nil port value, it indicates "all ports". Each slice may include a // maximum of 100 ports. // +optional // +listType=atomic
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Mar 11 18:43:24 UTC 2024 - 8K bytes - Viewed (0) -
istioctl/pkg/describe/describe_test.go
}, { port: corev1.ServicePort{ AppProtocol: &http, Protocol: corev1.ProtocolTCP, }, expectedProtocol: "HTTP", }, { port: corev1.ServicePort{ Protocol: corev1.ProtocolTCP, Port: 80, }, expectedProtocol: "auto-detect", }, { port: corev1.ServicePort{ Protocol: corev1.ProtocolUDP, Port: 80, },
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Aug 01 20:04:20 UTC 2024 - 30.8K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/net/HostAndPortTest.java
checkFromStringCase("[2001::2]:૮૫", 77, null, -1, false); } public void testFromStringBadPort() { // Out-of-range ports. checkFromStringCase("google.com:65536", 1, null, 99, false); checkFromStringCase("google.com:9999999999", 1, null, 99, false); // Invalid port parts. checkFromStringCase("google.com:port", 1, null, 99, false); checkFromStringCase("google.com:-25", 1, null, 99, false);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Oct 21 15:41:36 UTC 2024 - 9.4K bytes - Viewed (0) -
cni/pkg/iptables/testdata/default.golden
-A ISTIO_PRERT ! -d 127.0.0.1/32 -p tcp ! --dport 15008 -m mark ! --mark 0x539/0xfff -j REDIRECT --to-ports 15006 -A ISTIO_OUTPUT ! -o lo -p udp -m mark ! --mark 0x539/0xfff -m udp --dport 53 -j REDIRECT --to-port 15053 -A ISTIO_OUTPUT ! -d 127.0.0.1/32 -p tcp --dport 53 -m mark ! --mark 0x539/0xfff -j REDIRECT --to-ports 15053 -A ISTIO_OUTPUT -p tcp -m mark --mark 0x111/0xfff -j ACCEPT -A ISTIO_OUTPUT ! -d 127.0.0.1/32 -o lo -j ACCEPT
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Sep 25 20:54:34 UTC 2024 - 1.3K 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: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Oct 24 17:36:49 UTC 2024 - 50.6K bytes - Viewed (0) -
cni/pkg/plugin/sidecar_redirect.go
} func validatePortList(ports string) error { if _, err := parsePorts(ports); err != nil { return fmt.Errorf("portList %q invalid: %v", ports, err) } return nil } func validatePortListWithWildcard(ports string) error { if ports != "*" { return validatePortList(ports) } return nil } // validateCIDRListWithWildcard validates the includeIPRanges parameter
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Jan 26 20:34:28 UTC 2024 - 10.6K bytes - Viewed (0)