- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for FLAGS_NO_PROPAGATE (0.07 sec)
-
src/test/java/jcifs/ACETest.java
assertEquals(0x02, ACE.FLAGS_CONTAINER_INHERIT, "FLAGS_CONTAINER_INHERIT should be 0x02"); assertEquals(0x04, ACE.FLAGS_NO_PROPAGATE, "FLAGS_NO_PROPAGATE should be 0x04"); assertEquals(0x08, ACE.FLAGS_INHERIT_ONLY, "FLAGS_INHERIT_ONLY should be 0x08"); assertEquals(0x10, ACE.FLAGS_INHERITED, "FLAGS_INHERITED should be 0x10"); } }
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/dtyp/ACETest.java
ace.flags = ACE.FLAGS_INHERIT_ONLY; assertEquals("Invalid", ace.getApplyToText()); // Test with FLAGS_NO_PROPAGATE (should not affect the result) ace.flags = ACE.FLAGS_OBJECT_INHERIT | ACE.FLAGS_CONTAINER_INHERIT | ACE.FLAGS_NO_PROPAGATE; assertEquals("This folder, subfolders and files", ace.getApplyToText()); // Test with FLAGS_INHERITED (should not affect the result)
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
/** * Inheritance flag: child containers inherit this ACE */ int FLAGS_CONTAINER_INHERIT = 0x02; /** * Inheritance flag: inheritance stops after one level */ int FLAGS_NO_PROPAGATE = 0x04; /** * Inheritance flag: ACE applies only to children, not to the object itself */ int FLAGS_INHERIT_ONLY = 0x08; /** * Inheritance flag: ACE was inherited from parent
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/main/java/jcifs/smb1/smb1/ACE.java
/** Inheritance flag: child containers inherit this ACE */ public static final int FLAGS_CONTAINER_INHERIT = 0x02; /** Inheritance flag: inheritance stops after one level */ public static final int FLAGS_NO_PROPAGATE = 0x04; /** Inheritance flag: ACE applies only to children, not to the object itself */ public static final int FLAGS_INHERIT_ONLY = 0x08; /** Inheritance flag: ACE was inherited from parent */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.8K bytes - Viewed (0)