Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Fontaine (0.16 sec)

  1. src/main/java/jcifs/internal/dtyp/ACE.java

        }
    
    
        @Override
        public int getFlags () {
            return this.flags;
        }
    
    
        @Override
        public String getApplyToText () {
            switch ( this.flags & ( FLAGS_OBJECT_INHERIT | FLAGS_CONTAINER_INHERIT | FLAGS_INHERIT_ONLY ) ) {
            case 0x00:
                return "This folder only";
            case 0x03:
                return "This folder, subfolders and files";
            case 0x0B:
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 5.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/ACE.java

        /**
         * 
         */
        public static final int FLAGS_OBJECT_INHERIT = 0x01;
        /**
         * 
         */
        public static final int FLAGS_CONTAINER_INHERIT = 0x02;
        /**
         * 
         */
        public static final int FLAGS_NO_PROPAGATE = 0x04;
        /**
         * 
         */
        public static final int FLAGS_INHERIT_ONLY = 0x08;
        /**
         * 
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/ACE.java

        public static final int GENERIC_READ          = 0x80000000; // 31
    
        public static final int FLAGS_OBJECT_INHERIT    = 0x01;
        public static final int FLAGS_CONTAINER_INHERIT = 0x02;
        public static final int FLAGS_NO_PROPAGATE      = 0x04;
        public static final int FLAGS_INHERIT_ONLY      = 0x08;
        public static final int FLAGS_INHERITED         = 0x10;
    
        boolean allow;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 7.2K bytes
    - Viewed (0)
Back to top