Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for shiest (0.21 sec)

  1. src/main/java/jcifs/smb/SID.java

                ret += Hexdump.toHexString(this.identifier_authority, 0, 6);
            }
            else {
                long shift = 0;
                long id = 0;
                for ( int i = 5; i > 1; i-- ) {
                    id += ( this.identifier_authority[ i ] & 0xFFL ) << shift;
                    shift += 8;
                }
                ret += id;
            }
    
            for ( int i = 0; i < this.sub_authority_count; i++ )
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 14.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/util/mime.map

    image/x-xpixmap                xpm              # X-pixmap Image File
    image/x-xwindowdump            xwd              #
    text/css                       css              # Cascading Style Sheet
    text/html                      html htm         # HTML Document
    text/plain                     txt ini log in cfg m4 sh     # Plain Text File
    text/richtext                  rtx              # Rich Text File
    Plain Text
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 5.9K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/SID.java

                ret += "0x";
                ret += Hexdump.toHexString(identifier_authority, 0, 6);
            } else {
                long shift = 0;
                long id = 0;
                for (int i = 5; i > 1; i--) {
                    id += (identifier_authority[i] & 0xFFL) << shift;
                    shift += 8;
                }
                ret += id;
            }
    
            for (int i = 0; i < sub_authority_count ; i++)
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 26.6K bytes
    - Viewed (0)
  4. src/main/java/jcifs/pac/PacDataInputStream.java

            this.size = in.available();
        }
    
    
        public void align ( int mask ) throws IOException {
            int position = this.size - this.dis.available();
            int shift = position & mask - 1;
            if ( mask != 0 && shift != 0 )
                this.dis.skip(mask - shift);
        }
    
    
        public int available () throws IOException {
            return this.dis.available();
        }
    
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sat Jul 21 21:19:58 GMT 2018
    - 5.1K bytes
    - Viewed (0)
  5. LICENSE

    redistribution under these terms (or, alternatively, under the terms of the
    ordinary General Public License).
    
      To apply these terms, attach the following notices to the library.  It is
    safest to attach them to the start of each source file to most effectively
    convey the exclusion of warranty; and each file should have at least the
    "copyright" line and a pointer to where the full notice is found.
    
        {description}
    Plain Text
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Jan 18 20:25:38 GMT 2016
    - 25.8K bytes
    - Viewed (0)
Back to top