Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Turing (0.15 sec)

  1. src/main/java/jcifs/smb1/smb1/ACE.java

            sid = new SID(buf, bi);
            return size;
        }
    
        void appendCol(StringBuffer sb, String str, int width) {
            sb.append(str);
            int count = width - str.length();
            for (int i = 0; i < count; i++) {
                sb.append(' ');
            }
        }
        /**
         * Return a string represeting this ACE.
         * <p>
         * Note: This function should probably be changed to return SDDL
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 7.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/dtyp/ACE.java

            return size;
        }
    
    
        void appendCol ( StringBuffer sb, String str, int width ) {
            sb.append(str);
            int count = width - str.length();
            for ( int i = 0; i < count; i++ ) {
                sb.append(' ');
            }
        }
    
    
        /**
         * Return a string represeting this ACE.
         * <p>
         * Note: This function should probably be changed to return SDDL
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 5.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/ACE.java

         * directories such as 'This folder, subfolder and files'. For
         * files the text is always 'This object only'.
         * 
         * @return descriptive text for the ACE scope
         */
        String getApplyToText ();
    
    
        /**
         * Returns the flags for this ACE. The <tt>isInherited()</tt>
         * method checks the <tt>FLAGS_INHERITED</tt> bit in these flags.
         * 
         * @return the ACE flags
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6.5K bytes
    - Viewed (0)
Back to top