- Sort Score
- Result 10 results
- Languages All
Results 1 - 7 of 7 for 16777216 (0.03 sec)
-
src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateResponse.java
throw new SMBProtocolDecodingException("Invalid maxTransactSize: " + this.maxTransactSize + " (must be 0-16777216)"); } if (this.maxReadSize < 0 || this.maxReadSize > 16777216) { // 16MB max throw new SMBProtocolDecodingException("Invalid maxReadSize: " + this.maxReadSize + " (must be 0-16777216)"); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 24K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/ioctl/SrvCopyChunkCopyResponseTest.java
1048576, // 1MB per chunk 16777216 // 16MB total ); int bytesDecoded = response.decode(buffer, 0, buffer.length); assertEquals(12, bytesDecoded); assertEquals(16, response.getChunksWritten()); assertEquals(1048576, response.getChunkBytesWritten()); assertEquals(16777216, response.getTotalBytesWritten()); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 19.8K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/nego/Smb2NegotiateResponseInputValidationTest.java
assertTrue(bytesRead > 0); assertEquals(0x0302, response.getDialectRevision()); // SMB 3.0.2 assertTrue(response.getMaxTransactSize() > 0); assertTrue(response.getMaxTransactSize() <= 16777216); // Within validated limits } /** * Creates a basic negotiate response buffer with minimum valid structure. */ private byte[] createBasicNegotiateResponseBuffer() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 15.8K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/http2/Http2Test.kt
writer.frameHeader(0, 16777216, Http2.TYPE_DATA, FLAG_NONE) }.also { expected -> // TODO: real max is based on settings between 16384 and 16777215 assertThat(expected.message).isEqualTo("FRAME_SIZE_ERROR length > 16384: 16777216") } } @Test fun ackSettingsAppliesMaxFrameSize() { val newMaxFrameSize = 16777215 val writer = Http2Writer(Buffer(), true)
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 28.1K bytes - Viewed (0) -
api/go1.10.txt
pkg debug/macho, const FlagLazyInit = 64 pkg debug/macho, const FlagLazyInit uint32 pkg debug/macho, const FlagNoFixPrebinding = 1024 pkg debug/macho, const FlagNoFixPrebinding uint32 pkg debug/macho, const FlagNoHeapExecution = 16777216 pkg debug/macho, const FlagNoHeapExecution uint32 pkg debug/macho, const FlagNoMultiDefs = 512 pkg debug/macho, const FlagNoMultiDefs uint32 pkg debug/macho, const FlagNoReexportedDylibs = 1048576
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Tue Feb 06 05:00:01 UTC 2018 - 30.1K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http2/Http2Reader.kt
} } // SETTINGS_MAX_FRAME_SIZE 5 -> { if (value < INITIAL_MAX_FRAME_SIZE || value > 16777215) { throw IOException("PROTOCOL_ERROR SETTINGS_MAX_FRAME_SIZE: $value") } } // SETTINGS_MAX_HEADER_LIST_SIZE 6 -> { // Advisory only, so ignored. }
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Dec 27 13:39:56 UTC 2024 - 19.8K bytes - Viewed (0) -
api/go1.11.txt
pkg debug/elf, const R_RISCV_TPREL_S R_RISCV pkg debug/elf, method (R_RISCV) GoString() string pkg debug/elf, method (R_RISCV) String() string pkg debug/elf, type R_RISCV int pkg debug/macho, const CpuArm64 = 16777228 pkg debug/macho, const CpuArm64 Cpu pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_ARCHITECTURE = 7 pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_ARCHITECTURE ideal-int pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_BASERELOC = 5
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Aug 22 03:48:56 UTC 2018 - 25K bytes - Viewed (0)