- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 36 for 16388 (0.03 sec)
-
src/archive/tar/writer_test.go
}, nil}, testWrite{"", 0, nil}, testClose{nil}, }, }, { // The truncated test file was produced using these commands: // dd if=/dev/zero bs=1048576 count=16384 > /tmp/16gig.txt // tar -b 1 -c -f- /tmp/16gig.txt | dd bs=512 count=8 > writer-big.tar file: "testdata/writer-big.tar", tests: []testFnc{ testHeader{Header{ Typeflag: TypeReg,
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Mon Sep 23 14:32:33 UTC 2024 - 39.4K bytes - Viewed (0) -
docs/changelogs/changelog_2x.md
`https://facebook.com` when SPDY and HTTP/2 are both disabled. Otherwise an unexpected NPN response is received and OkHttp crashes. * Fix: Write continuation frames when HPACK data is larger than 16383 bytes. * Fix: Don't drop uncaught exceptions thrown in async calls. * Fix: Throw an exception eagerly when a request body is not legal. Previously we ignored the problem at request-building time, only to crash later with a
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sun Feb 06 02:19:09 UTC 2022 - 26.6K bytes - Viewed (0) -
api/go1.16.txt
pkg syscall (darwin-arm64), const EV_ENABLE ideal-int pkg syscall (darwin-arm64), const EV_EOF = 32768 pkg syscall (darwin-arm64), const EV_EOF ideal-int pkg syscall (darwin-arm64), const EV_ERROR = 16384 pkg syscall (darwin-arm64), const EV_ERROR ideal-int pkg syscall (darwin-arm64), const EV_FLAG0 = 4096 pkg syscall (darwin-arm64), const EV_FLAG0 ideal-int pkg syscall (darwin-arm64), const EV_FLAG1 = 8192
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Fri Dec 02 16:30:41 UTC 2022 - 479.2K 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 Nov 05 11:13:11 UTC 2024 - Last Modified: Thu Aug 08 18:44:16 UTC 2019 - 452.6K bytes - Viewed (0) -
okhttp/src/test/java/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 Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Jan 20 10:30:28 UTC 2024 - 131.7K 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 Nov 03 19:28:11 UTC 2024 - Last Modified: Sun Sep 29 22:40:36 UTC 2024 - 89.8K 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 Nov 05 11:13:11 UTC 2024 - Last Modified: Fri Feb 17 20:31:46 UTC 2023 - 508.9K 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 Nov 05 11:13:11 UTC 2024 - 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 Nov 05 11:13:11 UTC 2024 - Last Modified: Tue Feb 06 05:00:01 UTC 2018 - 30.1K bytes - Viewed (0) -
okhttp/src/test/java/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 Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Apr 20 17:03:43 UTC 2024 - 75.4K bytes - Viewed (0)