- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 62 for 0x00A80001 (0.04 sec)
-
src/main/java/jcifs/SmbConstants.java
/** * File is temporary. */ int ATTR_TEMPORARY = 0x100; // access mask encoding /** * Permission to read data from the file. */ int FILE_READ_DATA = 0x00000001; // 1 /** * Permission to write data to the file. */ int FILE_WRITE_DATA = 0x00000002; // 2 /** * Permission to append data to the file. */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:49:49 UTC 2025 - 12.8K bytes - Viewed (0) -
docs/smb3-features/06-witness-protocol-design.md
FILE_SERVER_WITNESS, // Individual file server witness SCALE_OUT_WITNESS, // Scale-out file server witness DFS_WITNESS // DFS namespace witness } public enum WitnessVersion { VERSION_1(0x00010001), // Windows Server 2012 VERSION_2(0x00020000); // Windows Server 2012 R2+ private final int version; WitnessVersion(int version) { this.version = version; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 42K bytes - Viewed (0) -
src/main/java/jcifs/FileNotifyInformation.java
* Any file name change in the watched directory or subtree causes a change notification wait operation to return. * Changes include renaming, creating, or deleting a file. */ int FILE_NOTIFY_CHANGE_FILE_NAME = 0x00000001; /** * Any directory-name change in the watched directory or subtree causes a change notification wait operation to * return. Changes include creating or deleting a directory. */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.2K bytes - Viewed (0) -
src/test/java/jcifs/FileNotifyInformationTest.java
class FilterFlagsTests { @Test @DisplayName("Verify FILE_NOTIFY_CHANGE_FILE_NAME constant value") void testFileNotifyChangeFileName() { assertEquals(0x00000001, FileNotifyInformation.FILE_NOTIFY_CHANGE_FILE_NAME); } @Test @DisplayName("Verify FILE_NOTIFY_CHANGE_DIR_NAME constant value") void testFileNotifyChangeDirName() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.1K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/msrpc/MsrpcLsarOpenPolicy2Test.java
void setUp() { MockitoAnnotations.openMocks(this); } @Test void constructor_shouldInitializeFieldsCorrectly() { // Given String server = "testServer"; int access = 0x00000001; // Example access value // When MsrpcLsarOpenPolicy2 msrpcLsarOpenPolicy2 = new MsrpcLsarOpenPolicy2(server, access, mockPolicyHandle); // Then
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 2.1K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/DcerpcError.java
package jcifs.dcerpc; /** * DCE/RPC error codes and fault constants */ public interface DcerpcError { /** * Generic fault code for other errors */ int DCERPC_FAULT_OTHER = 0x00000001; /** * Access denied fault code */ int DCERPC_FAULT_ACCESS_DENIED = 0x00000005; /** * Cannot perform operation fault code */ int DCERPC_FAULT_CANT_PERFORM = 0x000006D8;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/witness/WitnessVersion.java
* Each version corresponds to different Windows Server releases and capabilities. */ public enum WitnessVersion { /** * Witness Protocol Version 1 - Windows Server 2012 */ VERSION_1(0x00010001), /** * Witness Protocol Version 2 - Windows Server 2012 R2 and later */ VERSION_2(0x00020000); private final int version; /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 09:06:40 UTC 2025 - 1.9K 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/main/java/jcifs/smb1/dcerpc/DcerpcError.java
/** * DCE/RPC error codes and fault constants for SMB1 compatibility */ public interface DcerpcError { /** * Generic fault code for other errors */ int DCERPC_FAULT_OTHER = 0x00000001; /** * Access denied fault code */ int DCERPC_FAULT_ACCESS_DENIED = 0x00000005; /** * Cannot perform operation fault code */ int DCERPC_FAULT_CANT_PERFORM = 0x000006D8;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/Smb2Constants.java
/** * SMB2 Channel constant for RDMA V1 * Used in SMB2 READ and WRITE requests to indicate RDMA channel */ public static final int SMB2_CHANNEL_RDMA_V1 = 0x00000001; /** * SMB2 Channel constant for RDMA V1 invalidate * Used to indicate RDMA with invalidation */ public static final int SMB2_CHANNEL_RDMA_V1_INVALIDATE = 0x00000002; /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 4.5K bytes - Viewed (0)