- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 22 for 1048577 (0.05 seconds)
-
docs/smb3-features/05-rdma-smb-direct-design.md
public static final int DEFAULT_RDMA_READ_WRITE_SIZE = 1048576; // 1MB public static final int DEFAULT_RECEIVE_CREDIT_MAX = 255; public static final int DEFAULT_SEND_CREDIT_TARGET = 32; public static final int DEFAULT_MAX_RECEIVE_SIZE = 8192; public static final int DEFAULT_MAX_FRAGMENTED_SIZE = 131072; // 128KB public static final int DEFAULT_MAX_READ_WRITE_SIZE = 1048576; // 1MB } ``` ### 3.2 RDMA Provider InterfaceCreated: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 16 02:53:50 GMT 2025 - 35.9K bytes - Click Count (0) -
docs/smb3-features/03-multi-channel-design.md
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 16 02:53:50 GMT 2025 - 39.6K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb2/nego/Smb2NegotiateResponseTest.java
setResponseAsReceived(response); setPrivateField(response, "dialectRevision", 0x0300); setPrivateField(response, "maxReadSize", 1048576); setPrivateField(response, "maxWriteSize", 1048576); setPrivateField(response, "maxTransactSize", 1048576); when(mockConfig.getTransactionBufferSize()).thenReturn(65536); when(mockConfig.getReceiveBufferSize()).thenReturn(32768);
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 32.5K bytes - Click Count (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());Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 19.8K bytes - Click Count (0) -
src/cmd/asm/internal/asm/testdata/loong64enc3.s
MOVWP R5, 32768(R4) // 1e000010de931000c5038025 MOVWP R5, 65536(R4) // 1e040010de931000c5030025 MOVWP R5, 1048576(R4) // 1e400010de931000c5030025 MOVVP R5, -32768(R4) // 1efcff13de931000c5038027 MOVVP R5, 65536(R4) // 1e040010de931000c5030027 MOVVP R5, 1048576(R4) // 1e400010de931000c5030027 MOVWP -32768(R5), R4 // 1efcff13de971000c4038024 MOVWP 2229248(R5), R4 // 1e880010de971000c4030424
Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Thu Nov 27 00:46:52 GMT 2025 - 11.2K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/base/Utf8Test.java
expected[i] = 5300224; } // 97-111 are all 2342912 for (int i = 97; i <= 111; i++) { expected[i] = 2342912; } // 113-117 are all 1048576 for (int i = 113; i <= 117; i++) { expected[i] = 1048576; } // One offs expected[112] = 786432; expected[118] = 786432; expected[119] = 1048576; expected[120] = 458752; expected[121] = 524288;
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Thu Aug 07 16:05:33 GMT 2025 - 12.8K bytes - Click Count (0) -
src/test/java/jcifs/internal/SmbNegotiationResponseTest.java
} @Test @DisplayName("Test getSendBufferSize returns large size") void testGetSendBufferSizeLarge() { // Arrange int expectedSize = 1048576; when(negotiationResponse.getSendBufferSize()).thenReturn(expectedSize); // Act int size = negotiationResponse.getSendBufferSize(); // AssertCreated: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 20.6K bytes - Click Count (0) -
src/test/java/jcifs/internal/AllocInfoTest.java
class EdgeCasesTests { @ParameterizedTest @DisplayName("Should handle boundary values for capacity") @ValueSource(longs = { 0L, 1L, -1L, 1024L, 1048576L, 1073741824L, Long.MAX_VALUE, Long.MIN_VALUE, Long.MAX_VALUE - 1, Long.MIN_VALUE + 1 }) void shouldHandleBoundaryValuesForCapacity(long capacity) { // GivenCreated: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 18.8K bytes - Click Count (0) -
cmd/erasure-healing-common_test.go
Index: []uint8(nil), Checksums: map[string]string(nil), }, }, Erasure: ErasureInfo{ Algorithm: "ReedSolomon", DataBlocks: 6, ParityBlocks: 6, BlockSize: 1048576, Index: 1, Distribution: []int{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12}, Checksums: []ChecksumInfo{{PartNumber: 1, Algorithm: 0x3, Hash: []uint8{}}}, }, NumVersions: 1, Idx: 0, }
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 22.4K bytes - Click Count (0) -
src/test/java/jcifs/internal/fscc/FileInformationTest.java
} /** * Test FileEndOfFileInformation with various end of file values */ @ParameterizedTest @ValueSource(longs = { 0L, 1L, -1L, Long.MAX_VALUE, Long.MIN_VALUE, 1024L, 1048576L }) @DisplayName("Test FileEndOfFileInformation with various values") void testFileEndOfFileInformationWithVariousValues(long endOfFile) throws SMBProtocolDecodingException {Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 11.5K bytes - Click Count (0)