- Sort Score
- Num 10 results
- Language All
Results 1 - 5 of 5 for NT_STATUS_PENDING (0.08 seconds)
-
src/main/java/jcifs/smb/NtStatus.java
* block is automatically generated from the ntstatus package. */ /** The operation completed successfully */ int NT_STATUS_SUCCESS = 0x00000000; /** The request is pending */ int NT_STATUS_PENDING = 0x00000103; /** A notify change request is being completed and information is being returned */ int NT_STATUS_NOTIFY_ENUM_DIR = 0x0000010C; /** The data was too large to fit into the specified buffer */Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 14.9K bytes - Click Count (0) -
src/test/java/jcifs/smb/NtStatusTest.java
} @Test @DisplayName("Should handle pending status") void testPendingStatus() { // Given int pendingStatus = NtStatus.NT_STATUS_PENDING; // When/Then assertEquals((int) 0x00000103L, pendingStatus); // Pending status is informational (not error) assertTrue((pendingStatus & (int) 0xC0000000L) != (int) 0xC0000000L);Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 5.6K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb2/ServerMessageBlock2ResponseTest.java
@DisplayName("Should handle async pending status") void testReceivedAsyncPending() throws InterruptedException { response.setAsync(true); response.setStatusForTest(NtStatus.NT_STATUS_PENDING); CountDownLatch latch = new CountDownLatch(1); Thread waiter = new Thread(() -> { synchronized (response) { try {Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 19.3K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb2/ServerMessageBlock2Response.java
/** * {@inheritDoc} * * @see jcifs.util.transport.Response#received() */ @Override public final void received() { if (isAsync() && getStatus() == NtStatus.NT_STATUS_PENDING) { synchronized (this) { notifyAll(); } return; } this.received = true; synchronized (this) { notifyAll();Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 8.1K bytes - Click Count (0) -
src/main/java/jcifs/smb/SmbTransportImpl.java
final ServerMessageBlock2Response resp = (ServerMessageBlock2Response) response; synchronized (resp) { if (resp.isAsync() && !resp.isAsyncHandled() && resp.getStatus() == NtStatus.NT_STATUS_PENDING && resp.getAsyncId() != 0) { resp.setAsyncHandled(true); final boolean first = !req.isAsync(); req.setAsyncId(resp.getAsyncId());Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 69.8K bytes - Click Count (0)