- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 88 for 0x80000000 (0.14 sec)
-
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)
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/ServerMessageBlock2Test.java
void testFlagConstants() { assertEquals(0x00000001, ServerMessageBlock2.SMB2_FLAGS_SERVER_TO_REDIR); assertEquals(0x00000002, ServerMessageBlock2.SMB2_FLAGS_ASYNC_COMMAND); assertEquals(0x00000004, ServerMessageBlock2.SMB2_FLAGS_RELATED_OPERATIONS); assertEquals(0x00000008, ServerMessageBlock2.SMB2_FLAGS_SIGNED); assertEquals(0x00000070, ServerMessageBlock2.SMB2_FLAGS_PRIORITY_MASK);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 39.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/ServerMessageBlock2.java
*/ public static final int SMB2_FLAGS_SIGNED = 0x00000008; /** * Mask for message priority bits. */ public static final int SMB2_FLAGS_PRIORITY_MASK = 0x00000070; /** * Flag indicating the operation is a DFS operation. */ public static final int SMB2_FLAGS_DFS_OPERATIONS = 0x10000000; /** * Flag indicating this is a replay operation. */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 24K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtStatus.java
/** The requested operation is not implemented */ int NT_STATUS_NOT_IMPLEMENTED = 0xC0000002; /** The specified information class is invalid */ int NT_STATUS_INVALID_INFO_CLASS = 0xC0000003; /** Invalid access to memory location */ int NT_STATUS_ACCESS_VIOLATION = 0xC0000005; /** The handle is invalid */ int NT_STATUS_INVALID_HANDLE = 0xC0000008; /** The parameter is incorrect */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 14.9K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/SmbAuthExceptionTest.java
// Known NT status code - NT_STATUS_UNSUCCESSFUL Arguments.of(0xC0000001, "A device attached to the system is not functioning."), Arguments.of(0x00000000, "NT_STATUS_SUCCESS"), // An error that maps via DOS mapping Arguments.of(0x00000002, SmbException.getMessageByCode(0x00000002)), // Unknown code → hex string (uppercase)
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 2.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/SmbDirectNegotiateResponse.java
/** Status indicating successful negotiation */ public static final int STATUS_SUCCESS = 0x00000000; /** Status indicating SMB Direct is not supported */ public static final int STATUS_NOT_SUPPORTED = 0x00000001; /** Status indicating insufficient resources for SMB Direct */ public static final int STATUS_INSUFFICIENT_RESOURCES = 0x00000002; // Message fields private int minVersion; private int maxVersion;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 9.3K bytes - Viewed (0) -
src/test/java/jcifs/internal/SmbNegotiationResponseTest.java
} @Test @DisplayName("Test haveCapability with multiple capability flags") void testHaveCapabilityMultipleFlags() { // Arrange int cap1 = 0x00000001; int cap2 = 0x00000002; int cap3 = 0x00000004; when(negotiationResponse.haveCapabilitiy(cap1)).thenReturn(true); when(negotiationResponse.haveCapabilitiy(cap2)).thenReturn(false);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/multichannel/Smb2ChannelCapabilities.java
/** * Network interface capability flag for RSS support */ public static final int NETWORK_INTERFACE_CAP_RSS = 0x00000001; /** * Network interface capability flag for RDMA support */ public static final int NETWORK_INTERFACE_CAP_RDMA = 0x00000002; /** * FSCTL code for querying network interface information */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 11:13:46 UTC 2025 - 2.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/util/SMBUtilTest.java
(byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, // 0x00000000 (byte) 0xEF, (byte) 0xCD, (byte) 0xAB, (byte) 0x89 // 0x89ABCDEF }; assertEquals(0x12345678, SMBUtil.readInt4(src, 0)); assertEquals(0xFFFFFFFF, SMBUtil.readInt4(src, 4)); assertEquals(0x00000000, SMBUtil.readInt4(src, 8)); assertEquals(0x89ABCDEF, SMBUtil.readInt4(src, 12)); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/Smb2SigningDigestTest.java
@DisplayName("Should preserve other flags when setting signed flag") void testSignPreservesOtherFlags() { // Set initial flags with some existing flags int initialFlags = 0x00000001 | 0x00000002 | 0x00000004; SMBUtil.writeInt4(initialFlags, data, 16); digest.sign(data, 0, data.length, request, response); int flags = SMBUtil.readInt4(data, 16);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 43.7K bytes - Viewed (0)