- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 62 for 0x00A80001 (1.08 sec)
-
src/test/java/jcifs/internal/dtyp/ACETest.java
assertEquals(32, size); assertTrue(ace.isAllow()); assertEquals(0x08, ace.getFlags()); assertEquals(0x00000001, ace.getAccessMask()); } @ParameterizedTest @DisplayName("Test various access mask values") @ValueSource(ints = { 0x00000001, // FILE_READ_DATA 0x00000002, // FILE_WRITE_DATA 0x00000004, // FILE_APPEND_DATA 0x00010000, // DELETE
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.6K bytes - Viewed (0) -
src/main/java/jcifs/ACE.java
* both <code>FILE_READ_DATA</code> and <code>FILE_WRITE_DATA</code> access. */ public interface ACE { /** * Permission to read data from a file or list directory contents */ int FILE_READ_DATA = 0x00000001; // 1 /** * Permission to write data to a file or add files to a directory */ int FILE_WRITE_DATA = 0x00000002; // 2 /** * Permission to append data to a file or add subdirectories */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.1K bytes - Viewed (0) -
src/test/java/jcifs/SmbConstantsTest.java
assertEquals(0x100, SmbConstants.ATTR_TEMPORARY); } @Test @DisplayName("Should define access mask constants") void testAccessMaskConstants() { assertEquals(0x00000001, SmbConstants.FILE_READ_DATA); assertEquals(0x00000002, SmbConstants.FILE_WRITE_DATA); assertEquals(0x00000004, SmbConstants.FILE_APPEND_DATA); assertEquals(0x00000008, SmbConstants.FILE_READ_EA);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.3K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NameServicePacket.java
static final int IMP_ERR = 0x4; static final int RFS_ERR = 0x5; static final int ACT_ERR = 0x6; static final int CFT_ERR = 0x7; // type/class static final int NB_IN = 0x00200001; static final int NBSTAT_IN = 0x00210001; static final int NB = 0x0020; static final int NBSTAT = 0x0021; static final int IN = 0x0001; static final int A = 0x0001; static final int NS = 0x0002;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 11.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbConstants.java
int ATTR_NORMAL = 0x080; /** Temporary file attribute */ int ATTR_TEMPORARY = 0x100; // access mask encoding /** File read data access right */ int FILE_READ_DATA = 0x00000001; // 1 /** File write data access right */ int FILE_WRITE_DATA = 0x00000002; // 2 /** File append data access right */ int FILE_APPEND_DATA = 0x00000004; // 3
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 10.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NameServicePacket.java
static final int IMP_ERR = 0x4; static final int RFS_ERR = 0x5; static final int ACT_ERR = 0x6; static final int CFT_ERR = 0x7; // type/class static final int NB_IN = 0x00200001; static final int NBSTAT_IN = 0x00210001; static final int NB = 0x0020; static final int NBSTAT = 0x0021; static final int IN = 0x0001; static final int A = 0x0001; static final int NS = 0x0002;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 10.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/ACE.java
*/ public ACE() { // Default constructor } /** Permission to read data from a file or list directory contents */ public static final int FILE_READ_DATA = 0x00000001; // 1 /** Permission to write data to a file or add files to a directory */ public static final int FILE_WRITE_DATA = 0x00000002; // 2 /** Permission to append data to a file or add subdirectories */
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/dcerpc/msrpc/samr.idl
[ uuid(12345778-1234-abcd-ef00-0123456789ac), version(1.0) ] interface samr { import "../rpc.idl"; import "lsarpc.idl"; typedef [v1_enum] enum { ACB_DISABLED = 0x00000001, /* 1 = User account disabled */ ACB_HOMDIRREQ = 0x00000002, /* 1 = Home directory required */ ACB_PWNOTREQ = 0x00000004, /* 1 = User password not required */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 3.1K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/DosErrorTest.java
} } @Test @DisplayName("Known DOS error is correctly mapped to NTSTATUS") void testKnownMapping() { final int dosErr = 0x00010001; final int expectedNt = 0xc0000002; Optional<Integer> actual = findNtStatus(dosErr); assertTrue(actual.isPresent(), String.format("Mapping for %08x should exist", dosErr));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 3K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/samr.idl
[ uuid(12345778-1234-abcd-ef00-0123456789ac), version(1.0) ] interface samr { import "../rpc.idl"; import "lsarpc.idl"; typedef [v1_enum] enum { ACB_DISABLED = 0x00000001, /* 1 = User account disabled */ ACB_HOMDIRREQ = 0x00000002, /* 1 = Home directory required */ ACB_PWNOTREQ = 0x00000004, /* 1 = User password not required */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.1K bytes - Viewed (0)