Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for FLAGS_NO_PROPAGATE (0.06 sec)

  1. 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)
  2. 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)
Back to top