- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 93 for 0x00000008 (0.03 sec)
-
src/test/java/jcifs/ACETest.java
assertEquals(0x00000020, ACE.FILE_EXECUTE, "FILE_EXECUTE should be 0x00000020"); assertEquals(0x00000040, ACE.FILE_DELETE, "FILE_DELETE should be 0x00000040"); assertEquals(0x00000080, ACE.FILE_READ_ATTRIBUTES, "FILE_READ_ATTRIBUTES should be 0x00000080"); assertEquals(0x00000100, ACE.FILE_WRITE_ATTRIBUTES, "FILE_WRITE_ATTRIBUTES should be 0x00000100"); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 24.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/nt/NtTransNotifyChangeTest.java
private static final int FILE_NOTIFY_CHANGE_DIR_NAME = 0x00000002; private static final int FILE_NOTIFY_CHANGE_ATTRIBUTES = 0x00000004; private static final int FILE_NOTIFY_CHANGE_SIZE = 0x00000008; private static final int FILE_NOTIFY_CHANGE_LAST_WRITE = 0x00000010; private static final int FILE_NOTIFY_CHANGE_LAST_ACCESS = 0x00000020;
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/main/java/jcifs/internal/smb2/lease/DirectoryChangeNotifier.java
private static final int FILE_NOTIFY_CHANGE_DIR_NAME = 0x00000002; private static final int FILE_NOTIFY_CHANGE_ATTRIBUTES = 0x00000004; private static final int FILE_NOTIFY_CHANGE_SIZE = 0x00000008; private static final int FILE_NOTIFY_CHANGE_LAST_WRITE = 0x00000010; /** * Change notification handle */ public static class ChangeNotificationHandle {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 13.7K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/nt/NtTransQuerySecurityDescTest.java
private static final int OWNER_SECURITY_INFORMATION = 0x00000001; private static final int GROUP_SECURITY_INFORMATION = 0x00000002; private static final int DACL_SECURITY_INFORMATION = 0x00000004; private static final int SACL_SECURITY_INFORMATION = 0x00000008; private static final int ALL_SECURITY_INFORMATION = 0x0000000F; @BeforeEach void setUp() { MockitoAnnotations.openMocks(this);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.9K bytes - Viewed (0) -
src/main/java/jcifs/SmbConstants.java
int WRITE_OWNER = 0x00080000; // 19 /** * Permission to synchronize. */ int SYNCHRONIZE = 0x00100000; // 20 /** * All generic permissions. */ int GENERIC_ALL = 0x10000000; // 28 /** * Generic execute permission. */ int GENERIC_EXECUTE = 0x20000000; // 29 /** * Generic write permission. */ int GENERIC_WRITE = 0x40000000; // 30 /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:49:49 UTC 2025 - 12.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbConstants.java
/** Write DAC access right */ int WRITE_DAC = 0x00040000; // 18 /** Write owner access right */ int WRITE_OWNER = 0x00080000; // 19 /** Synchronize access right */ int SYNCHRONIZE = 0x00100000; // 20 /** Generic all access right */ int GENERIC_ALL = 0x10000000; // 28 /** Generic execute access right */ int GENERIC_EXECUTE = 0x20000000; // 29
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 10.3K bytes - Viewed (0) -
docs/smb3-features/04-directory-leasing-design.md
private static final int FILE_ACTION_ADDED = 0x00000001; private static final int FILE_ACTION_REMOVED = 0x00000002; private static final int FILE_ACTION_MODIFIED = 0x00000003; private static final int FILE_ACTION_RENAMED_OLD_NAME = 0x00000004; private static final int FILE_ACTION_RENAMED_NEW_NAME = 0x00000005; private static final int FILE_NOTIFY_CHANGE_FILE_NAME = 0x00000001;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 36.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/tree/Smb2TreeConnectResponseTest.java
// Then assertEquals(16, bytesRead); assertEquals(wireData.length, bytesRead); assertEquals((byte) 0x01, response.getShareType()); assertEquals(0x00000001, response.getShareFlags()); assertEquals(0x00000008, response.getCapabilities()); assertEquals(0x001F01FF, response.getMaximalAccess()); } @Test @DisplayName("Should not modify buffer during write operation")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 19.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/ServerMessageBlock2.java
public static final int SMB2_FLAGS_SERVER_TO_REDIR = 0x00000001; /** * Flag indicating this is an asynchronous command. */ public static final int SMB2_FLAGS_ASYNC_COMMAND = 0x00000002; /** * Flag indicating this operation is related to the previous operation in a compound request. */ public static final int SMB2_FLAGS_RELATED_OPERATIONS = 0x00000004; /** * Flag indicating the message is signed.
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/MultiChannelManager.java
transport.ensureConnected(); // Verify multi-channel capability (SMB3+ required) if (!transport.isSMB2() || !transport.hasCapability(0x00000008)) { // SMB2_GLOBAL_CAP_MULTI_CHANNEL throw new CIFSException("Server does not support SMB multi-channel capability"); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 20.5K bytes - Viewed (0)