- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 99 for 8192 (0.09 sec)
-
src/test/java/jcifs/internal/smb1/trans/nt/NtTransNotifyChangeTest.java
} @Test @DisplayName("Test configuration usage for notify buffer size") void testConfigurationNotifyBufferSize() { int notifyBufferSize = 8192; when(mockConfig.getNotifyBufferSize()).thenReturn(notifyBufferSize); notifyChange = new NtTransNotifyChange(mockConfig, 0x1234, FILE_NOTIFY_CHANGE_FILE_NAME, false);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.4K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/DcerpcPipeHandleTest.java
lenient().when(mockContext.getBufferCache()).thenReturn(mockBufferCache); // Setup buffer cache to return buffers for sendrecv operations lenient().when(mockBufferCache.getBuffer()).thenReturn(new byte[8192]); } /** * Helper method to create a DcerpcPipeHandle with injected mocks * Uses mock to avoid constructor issues while allowing real method calls */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 21K bytes - Viewed (0) -
api/go1.1.txt
pkg syscall (darwin-386), const EV_ERROR = 16384 pkg syscall (darwin-386), const EV_FLAG0 = 4096 pkg syscall (darwin-386), const EV_FLAG1 = 8192 pkg syscall (darwin-386), const EV_ONESHOT = 16 pkg syscall (darwin-386), const EV_OOBAND = 8192 pkg syscall (darwin-386), const EV_POLL = 4096 pkg syscall (darwin-386), const EV_RECEIPT = 64 pkg syscall (darwin-386), const EV_SYSFLAGS = 61440
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Thu Mar 31 20:37:15 UTC 2022 - 2.6M bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans2/Trans2FindNext2Test.java
private static final int TEST_RESUME_KEY = 0xABCD; private static final String TEST_FILENAME = "testfile.txt"; private static final int TEST_BATCH_COUNT = 100; private static final int TEST_BATCH_SIZE = 8192; @BeforeEach void setUp() throws Exception { MockitoAnnotations.openMocks(this); Properties props = new Properties(); config = new PropertyConfiguration(props); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/fscc/FileSystemInformationTest.java
buffer[4] = 0x04; // sectPerAlloc = 4 buffer[8] = 0x00; buffer[9] = 0x20; // alloc = 8192 buffer[16] = 0x00; buffer[17] = 0x04; // bytesPerSect = 1024 smbInfoAllocation.decode(buffer, 0, buffer.length); assertEquals(4L * 8192L * 1024L, smbInfoAllocation.getCapacity()); } @Test @DisplayName("Should handle zero values")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.1K bytes - Viewed (0) -
doc/godebug.md
Go 1.22 adds a configurable limit to control the maximum acceptable RSA key size that can be used in TLS handshakes, controlled by the [`tlsmaxrsasize` setting](/pkg/crypto/tls#Conn.Handshake). The default is tlsmaxrsasize=8192, limiting RSA to 8192-bit keys. To avoid denial of service attacks, this setting and default was backported to Go 1.19.13, Go 1.20.8, and Go 1.21.1. Go 1.22 made it an error for a request or response read by a net/http
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Tue Jul 08 18:30:38 UTC 2025 - 22.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/create/CreateContextRequestTest.java
Arrays.fill(largeData, (byte) 'Y'); TestCreateContextRequest request = new TestCreateContextRequest(largeName, largeData); byte[] buffer = new byte[8192]; int result = request.encode(buffer, 100); assertTrue(result > 0); assertTrue(result <= buffer.length - 100); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 24.9K bytes - Viewed (0) -
api/go1.3.txt
pkg syscall (netbsd-386), const CLONE_FS ideal-int pkg syscall (netbsd-386), const CLONE_PID = 4096 pkg syscall (netbsd-386), const CLONE_PID ideal-int pkg syscall (netbsd-386), const CLONE_PTRACE = 8192 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
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Mon Jun 02 02:45:00 UTC 2014 - 117K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/DcerpcHandleTest.java
void setUp() { // Setup buffer cache mocks with lenient stubbing lenient().when(mockContext.getBufferCache()).thenReturn(mockBufferCache); lenient().when(mockBufferCache.getBuffer()).thenReturn(new byte[8192]); handle = new TestDcerpcHandle(mockContext, mockBinding); } @Nested @DisplayName("Binding Parsing Tests") class BindingParsingTests { @ParameterizedTest
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 15.3K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/session/Smb2SessionSetupRequestTest.java
Smb2SessionSetupRequest req = new Smb2SessionSetupRequest(mockContext, TEST_SECURITY_MODE, TEST_CAPABILITIES, TEST_PREVIOUS_SESSION_ID, largeToken); byte[] buffer = new byte[8192]; // When req.encode(buffer, 0); // Then int bodyOffset = Smb2Constants.SMB2_HEADER_LENGTH; assertEquals(largeToken.length, SMBUtil.readInt2(buffer, bodyOffset + 14));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 21.2K bytes - Viewed (0)