- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 87 for 0x00000010 (0.18 sec)
-
src/main/java/jcifs/smb1/smb1/ACE.java
/** Permission to write extended attributes */ public static final int FILE_WRITE_EA = 0x00000010; // 5 /** Permission to execute a file or traverse a directory */ public static final int FILE_EXECUTE = 0x00000020; // 6 /** Permission to delete a file or directory */ public static final int FILE_DELETE = 0x00000040; // 7 /** Permission to read file attributes */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComNTCreateAndX.java
*/ static final int FILE_OVERWRITE_IF = 0x5; // create options static final int FILE_WRITE_THROUGH = 0x00000002; static final int FILE_SEQUENTIAL_ONLY = 0x00000004; static final int FILE_SYNCHRONOUS_IO_ALERT = 0x00000010; static final int FILE_SYNCHRONOUS_IO_NONALERT = 0x00000020; // security flags static final int SECURITY_CONTEXT_TRACKING = 0x01; static final int SECURITY_EFFECTIVE_ONLY = 0x02;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 6.5K 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/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/main/java/jcifs/internal/smb1/com/SmbComNTCreateAndX.java
*/ static final int FILE_OVERWRITE_IF = 0x5; // create options static final int FILE_WRITE_THROUGH = 0x00000002; static final int FILE_SEQUENTIAL_ONLY = 0x00000004; static final int FILE_SYNCHRONOUS_IO_ALERT = 0x00000010; static final int FILE_SYNCHRONOUS_IO_NONALERT = 0x00000020; // security flags static final int SECURITY_CONTEXT_TRACKING = 0x01; static final int SECURITY_EFFECTIVE_ONLY = 0x02;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.6K 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) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/http2/FrameLogTest.kt
assertThat(frameLog(false, 0, 0, TYPE_SETTINGS, FLAG_ACK)) .isEqualTo(">> 0x00000000 0 SETTINGS ACK") assertThat(frameLog(true, 0, 0, TYPE_SETTINGS, FLAG_ACK)) .isEqualTo("<< 0x00000000 0 SETTINGS ACK") assertThat(frameLog(true, 3, 22, TYPE_HEADERS, FLAG_END_HEADERS)) .isEqualTo("<< 0x00000003 22 HEADERS END_HEADERS")
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Dec 27 13:39:56 UTC 2024 - 5.9K bytes - Viewed (0) -
okhttp-tls/src/test/java/okhttp3/tls/internal/der/DerTest.kt
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 31.7K bytes - Viewed (0) -
src/test/java/jcifs/internal/witness/WitnessNotificationTest.java
} @Test void testResourceStateConstants() { assertEquals(0x00000000, WitnessNotification.WITNESS_RESOURCE_STATE_UNKNOWN); assertEquals(0x00000001, WitnessNotification.WITNESS_RESOURCE_STATE_AVAILABLE); assertEquals(0x000000FF, WitnessNotification.WITNESS_RESOURCE_STATE_UNAVAILABLE); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 09:06:40 UTC 2025 - 5K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/DcerpcErrorTest.java
@DisplayName("Should verify DCERPC_FAULT_OTHER constant value") void testDcerpcFaultOther() { assertEquals(0x00000001, DcerpcError.DCERPC_FAULT_OTHER); } @Test @DisplayName("Should verify DCERPC_FAULT_ACCESS_DENIED constant value") void testDcerpcFaultAccessDenied() { assertEquals(0x00000005, DcerpcError.DCERPC_FAULT_ACCESS_DENIED); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7K bytes - Viewed (0)