- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 50 for 16384 (0.02 sec)
-
okhttp/src/jvmTest/kotlin/okhttp3/internal/http2/HttpOverHttp2Test.kt
private fun waitForDataFrames(dataLength: Int) { val expectedFrameCount = dataLength / 16384 var dataFrameCount = 0 while (dataFrameCount < expectedFrameCount) { val log = testLogHandler.take() if (log == "FINE: << 0x00000003 16384 DATA ") { dataFrameCount++ } } } @Test fun connectionWindowUpdateOnClose() {
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Sat Nov 01 12:18:11 UTC 2025 - 67.4K bytes - Viewed (0) -
api/go1.14.txt
pkg syscall (freebsd-arm64), const EV_ENABLE ideal-int pkg syscall (freebsd-arm64), const EV_EOF = 32768 pkg syscall (freebsd-arm64), const EV_EOF ideal-int pkg syscall (freebsd-arm64), const EV_ERROR = 16384 pkg syscall (freebsd-arm64), const EV_ERROR ideal-int pkg syscall (freebsd-arm64), const EV_FLAG1 = 8192 pkg syscall (freebsd-arm64), const EV_FLAG1 ideal-int pkg syscall (freebsd-arm64), const EV_ONESHOT = 16
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Fri Feb 17 20:31:46 UTC 2023 - 508.9K bytes - Viewed (0) -
api/go1.13.txt
pkg syscall (netbsd-arm64-cgo), const CLONE_PTRACE ideal-int pkg syscall (netbsd-arm64-cgo), const CLONE_SIGHAND = 2048 pkg syscall (netbsd-arm64-cgo), const CLONE_SIGHAND ideal-int pkg syscall (netbsd-arm64-cgo), const CLONE_VFORK = 16384 pkg syscall (netbsd-arm64-cgo), const CLONE_VFORK ideal-int pkg syscall (netbsd-arm64-cgo), const CLONE_VM = 256 pkg syscall (netbsd-arm64-cgo), const CLONE_VM ideal-int pkg syscall (netbsd-arm64-cgo), const CREAD = 2048
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Thu Aug 08 18:44:16 UTC 2019 - 452.6K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/URLConnectionTest.kt
reusedConnectionFailsWithPost(TransferKind.END_OF_STREAM, 16384) } @Test fun postFailsWithChunkedRequestForSmallRequest() { reusedConnectionFailsWithPost(TransferKind.CHUNKED, 1024) } @Test fun postFailsWithChunkedRequestForLargeRequest() { reusedConnectionFailsWithPost(TransferKind.CHUNKED, 16384) } @Test
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Sat Jun 21 20:36:35 UTC 2025 - 133.2K bytes - Viewed (0) -
cmd/erasure-server-pool.go
// Initialize byte pool once for all sets, bpool size is set to // setCount * setDriveCount with each memory upto blockSizeV2. buffers := bpool.NewBytePoolCap(n, blockSizeV2, blockSizeV2*2) if n >= 16384 { // pre-populate buffers only n >= 16384 which is (32Gi/2Mi) // for all setups smaller than this avoid pre-alloc. buffers.Populate() } globalBytePoolCap.Store(buffers) var localDrives []StorageAPI
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Sun Sep 28 20:59:21 UTC 2025 - 89.2K bytes - Viewed (0) -
api/go1.3.txt
pkg syscall (netbsd-386), const CLONE_PTRACE ideal-int pkg syscall (netbsd-386), const CLONE_SIGHAND = 2048 pkg syscall (netbsd-386), const CLONE_SIGHAND ideal-int pkg syscall (netbsd-386), const CLONE_VFORK = 16384 pkg syscall (netbsd-386), const CLONE_VFORK ideal-int pkg syscall (netbsd-386), const CLONE_VM = 256 pkg syscall (netbsd-386), const CLONE_VM ideal-int pkg syscall (netbsd-386), const MADV_DONTNEED = 4
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Mon Jun 02 02:45:00 UTC 2014 - 117K bytes - Viewed (0) -
api/go1.10.txt
pkg debug/macho, const FlagBindAtLoad = 8 pkg debug/macho, const FlagBindAtLoad uint32 pkg debug/macho, const FlagBindsToWeak = 65536 pkg debug/macho, const FlagBindsToWeak uint32 pkg debug/macho, const FlagCanonical = 16384 pkg debug/macho, const FlagCanonical uint32 pkg debug/macho, const FlagDeadStrippableDylib = 4194304 pkg debug/macho, const FlagDeadStrippableDylib uint32 pkg debug/macho, const FlagDyldLink = 4
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Tue Feb 06 05:00:01 UTC 2018 - 30.1K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/http2/Http2ConnectionTest.kt
val ping = peer.takeFrame() assertThat(ping.type).isEqualTo(Http2.TYPE_PING) assertThat(ping.payload1).isEqualTo(2) } @Test fun clientDoesNotLimitFlowControl() { val dataLength = 16384 // Write the mocking script. peer.sendFrame().settings(Settings()) peer.acceptFrame() // ACK peer.acceptFrame() // SYN_STREAM peer.sendFrame().headers(false, 3, headerEntries("b", "banana"))
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Thu Jul 31 04:18:40 UTC 2025 - 75.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/io/Smb2ReadRequestTest.java
request.setPadding((byte) 1); request.setReadFlags(Smb2ReadRequest.SMB2_READFLAG_READ_UNBUFFERED); request.setReadLength(8192); request.setOffset(16384L); request.setMinimumCount(1024); request.setRemainingBytes(4096); // Calculate expected size int expectedSize = ((Smb2Constants.SMB2_HEADER_LENGTH + 49 + 7) / 8) * 8;
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 24.8K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/idn/IdnaMappingTableTest.kt
// Less than 65,536 bytes, because we binary search on a 14-bit index with a stride of 4 bytes. assertThat(compactTable.ranges.length).isLessThan((1 shl 14) * 4) // Less than 16,384 chars, because we index on a 14-bit index in the ranges table. assertThat(compactTable.mappings.length).isLessThan(1 shl 14) // Confirm the data strings are ASCII.Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Fri Dec 27 13:39:56 UTC 2024 - 8.9K bytes - Viewed (0)