- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 1,192 for xnet (0.05 sec)
-
api/go1.18.txt
pkg net/netip, func AddrFrom4([4]uint8) Addr pkg net/netip, func AddrFromSlice([]uint8) (Addr, bool) pkg net/netip, func AddrPortFrom(Addr, uint16) AddrPort pkg net/netip, func IPv4Unspecified() Addr pkg net/netip, func IPv6LinkLocalAllNodes() Addr pkg net/netip, func IPv6Unspecified() Addr pkg net/netip, func MustParseAddr(string) Addr pkg net/netip, func MustParseAddrPort(string) AddrPort pkg net/netip, func MustParsePrefix(string) Prefix
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Fri Feb 17 20:31:46 UTC 2023 - 13K bytes - Viewed (0) -
api/go1.7.txt
pkg net/http, const StatusInsufficientStorage ideal-int pkg net/http, const StatusLocked = 423 pkg net/http, const StatusLocked ideal-int pkg net/http, const StatusLoopDetected = 508 pkg net/http, const StatusLoopDetected ideal-int pkg net/http, const StatusMultiStatus = 207 pkg net/http, const StatusMultiStatus ideal-int pkg net/http, const StatusNotExtended = 510 pkg net/http, const StatusNotExtended ideal-int
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Tue Jun 28 15:08:11 UTC 2016 - 13.6K bytes - Viewed (0) -
internal/http/listener.go
} return nil } // Addr - net.Listener interface compatible method returns net.Addr. In case of multiple TCP listeners, it returns '0.0.0.0' as IP address. func (listener *httpListener) Addr() (addr net.Addr) { addr = listener.listeners[0].Addr() if len(listener.listeners) == 1 { return addr } tcpAddr := addr.(*net.TCPAddr) if ip := net.ParseIP("0.0.0.0"); ip != nil { tcpAddr.IP = ip }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Jul 23 10:53:03 UTC 2024 - 5.6K bytes - Viewed (0) -
docs/tuning/tuned.conf
# network tuning for bigger throughput net.core.netdev_max_backlog=250000 net.core.somaxconn=16384 net.ipv4.tcp_syncookies=0 net.ipv4.tcp_max_syn_backlog=16384 net.core.wmem_max=4194304 net.core.rmem_max=4194304 net.core.rmem_default=4194304 net.core.wmem_default=4194304 net.ipv4.tcp_rmem="4096 87380 4194304" net.ipv4.tcp_wmem="4096 65536 4194304" # Reduce CPU utilization net.ipv4.tcp_timestamps=0 # Increase throughput
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Jul 12 23:31:18 UTC 2024 - 1.9K bytes - Viewed (0) -
api/next/67813.txt
pkg net/http, type HTTP2Config struct #67813 pkg net/http, type HTTP2Config struct, CountError func(string) #67813 pkg net/http, type HTTP2Config struct, MaxConcurrentStreams int #67813 pkg net/http, type HTTP2Config struct, MaxDecoderHeaderTableSize int #67813 pkg net/http, type HTTP2Config struct, MaxEncoderHeaderTableSize int #67813 pkg net/http, type HTTP2Config struct, MaxReadFrameSize int #67813
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Thu Aug 29 17:38:46 UTC 2024 - 989 bytes - Viewed (0) -
api/next/62384.txt
pkg net, method (IP) AppendText([]uint8) ([]uint8, error) #62384 pkg net/netip, method (Addr) AppendBinary([]uint8) ([]uint8, error) #62384 pkg net/netip, method (Addr) AppendText([]uint8) ([]uint8, error) #62384 pkg net/netip, method (AddrPort) AppendBinary([]uint8) ([]uint8, error) #62384 pkg net/netip, method (AddrPort) AppendText([]uint8) ([]uint8, error) #62384
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Mon Sep 23 18:10:51 UTC 2024 - 1.8K bytes - Viewed (0) -
.github/workflows/replication.yaml
sudo sysctl net.ipv6.conf.all.disable_ipv6=0 sudo sysctl net.ipv6.conf.default.disable_ipv6=0 make test-pbac - name: Test Config File run: | sudo sysctl net.ipv6.conf.all.disable_ipv6=0 sudo sysctl net.ipv6.conf.default.disable_ipv6=0 make test-configfile - name: Test Replication run: | sudo sysctl net.ipv6.conf.all.disable_ipv6=0
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Oct 31 22:10:24 UTC 2024 - 2.2K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/internal/idn/PunycodeTest.kt
@Test fun overflowMaxCodePoint() { assertNull(Punycode.decode("xn--a-b.net")) assertNull(Punycode.decode("xn--a-9b.net")) assertEquals("a՚.net", Punycode.decode("xn--a-99b.net")) assertEquals("a溠.net", Punycode.decode("xn--a-999b.net")) assertEquals("a\uD8E2\uDF5C.net", Punycode.decode("xn--a-9999b.net")) assertNull(Punycode.decode("xn--a-99999b.net")) } @Test fun dashInPrefix() { testEncodeDecode(
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 5.3K bytes - Viewed (0) -
api/go1.6.txt
pkg net/http, const MethodHead ideal-string pkg net/http, const MethodOptions = "OPTIONS" pkg net/http, const MethodOptions ideal-string pkg net/http, const MethodPatch = "PATCH" pkg net/http, const MethodPatch ideal-string pkg net/http, const MethodPost = "POST" pkg net/http, const MethodPost ideal-string pkg net/http, const MethodPut = "PUT" pkg net/http, const MethodPut ideal-string pkg net/http, const MethodTrace = "TRACE"
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Jan 13 23:40:13 UTC 2016 - 12.9K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/internal/platform/OpenJSSEPlatform.kt
*/ package okhttp3.internal.platform import java.security.KeyStore import java.security.Provider import javax.net.ssl.SSLContext import javax.net.ssl.SSLSocket import javax.net.ssl.SSLSocketFactory import javax.net.ssl.TrustManagerFactory import javax.net.ssl.X509TrustManager import okhttp3.Protocol /** * Platform using OpenJSSE (https://github.com/openjsse/openjsse) if installed as the first
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 3.6K bytes - Viewed (0)