- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 79 for CommonServerMessageBlockRequest (0.21 seconds)
-
src/main/java/jcifs/internal/CommonServerMessageBlockRequest.java
/** * * @return next chained message */ @Override CommonServerMessageBlockRequest getNext(); /** * Splits this request for processing. * * @return the following message */ CommonServerMessageBlockRequest split(); /** * Gets the size of this message. * * @return the size of this message */ int size(); /**Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 2.4K bytes - Click Count (0) -
src/test/java/jcifs/internal/CommonServerMessageBlockRequestTest.java
/** * Test class for CommonServerMessageBlockRequest interface */ @ExtendWith(MockitoExtension.class) class CommonServerMessageBlockRequestTest { @Mock private CommonServerMessageBlockRequest request; @Mock private CommonServerMessageBlockRequest nextRequest; @Mock private CommonServerMessageBlockRequest splitRequest; @MockCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 12.1K bytes - Click Count (0) -
src/test/java/jcifs/internal/CommonServerMessageBlockResponseTest.java
void testPrepareWithDifferentRequestTypes() { // Given CommonServerMessageBlockRequest regularRequest = mock(CommonServerMessageBlockRequest.class); CommonServerMessageBlockRequest asyncRequest = mock(CommonServerMessageBlockRequest.class); when(asyncRequest.isResponseAsync()).thenReturn(true); when(regularRequest.isResponseAsync()).thenReturn(false);
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 20.3K bytes - Click Count (0) -
src/main/java/jcifs/internal/CommonServerMessageBlockResponse.java
CommonServerMessageBlockResponse getNextResponse(); /** * Prepares this response for the next request. * * @param next the next request to prepare for */ void prepare(CommonServerMessageBlockRequest next);
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 1.6K bytes - Click Count (0) -
src/test/java/jcifs/internal/CommonServerMessageBlockTest.java
Shinsuke Sugaya <******@****.***> 1755149504 +0900
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 15.7K bytes - Click Count (0) -
src/main/java/jcifs/internal/CommonServerMessageBlock.java
Shinsuke Sugaya <******@****.***> 1755307968 +0900
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 3.4K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb2/ServerMessageBlock2Request.java
/** * {@inheritDoc} * * @see jcifs.internal.CommonServerMessageBlockRequest#isResponseAsync() */ @Override public boolean isResponseAsync() { return getAsyncId() != 0; } /** * {@inheritDoc} * * @see jcifs.internal.CommonServerMessageBlockRequest#allowChain(jcifs.internal.CommonServerMessageBlockRequest) */ @OverrideCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Mon Aug 25 14:34:10 GMT 2025 - 7.2K bytes - Click Count (0) -
src/test/java/jcifs/internal/RequestTest.java
@Test @DisplayName("Test Request interface extends CommonServerMessageBlockRequest") void testRequestExtendsCommonServerMessageBlockRequest() { // Then assertTrue(CommonServerMessageBlockRequest.class.isAssignableFrom(Request.class)); } @Test @DisplayName("Test Request methods inherited from CommonServerMessageBlockRequest") void testInheritedMethods() { // GivenCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 14.5K bytes - Click Count (0) -
src/test/java/jcifs/smb/SmbTreeConnectionTest.java
// Setup a tree that will fail with transport error first, then succeed SmbTreeImpl tree = mock(SmbTreeImpl.class); when(tree.acquire(false)).thenReturn(tree); CommonServerMessageBlockRequest req = mock(CommonServerMessageBlockRequest.class); CommonServerMessageBlockResponse resp = mock(CommonServerMessageBlockResponse.class); // Configure the tree to throw transport error on first call, succeed on secondCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 07:14:38 GMT 2025 - 13K bytes - Click Count (0) -
src/main/java/jcifs/internal/Request.java
* allowing requests to specify their expected response type. * * @author mbechler * @param <T> response type */ public interface Request<T extends CommonServerMessageBlockResponse> extends CommonServerMessageBlockRequest { /** * Initializes and returns a response object for this request. * * @param tc the CIFS context * @return the initialized response */
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 1.6K bytes - Click Count (0)