Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 22 for Scharf (0.14 sec)

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

        }
    
    
        /**
         * @throws MalformedURLException
         * 
         */
        private synchronized void canonicalizePath () {
            char[] in = this.url.getPath().toCharArray();
            char[] out = new char[in.length];
            int length = in.length, prefixLen = 0, state = 0;
    
            /*
             * The canonicalization routine
             */
            for ( int i = 0; i < length; i++ ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sat Jul 20 08:24:53 GMT 2019
    - 23.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/netbios/Name.java

            String n = this.name;
    
            // fix MSBROWSE name
            if ( n == null ) {
                n = "null";
            }
            else if ( n.charAt(0) == 0x01 ) {
                char c[] = n.toCharArray();
                c[ 0 ] = '.';
                c[ 1 ] = '.';
                c[ 14 ] = '.';
                n = new String(c);
            }
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 7.7K bytes
    - Viewed (0)
  3. src/main/java/jcifs/netbios/NbtAddress.java

        @Override
        public String firstCalledName () {
    
            this.calledName = this.hostName.name;
    
            if ( Character.isDigit(this.calledName.charAt(0)) ) {
                int i, len, dots;
                char[] data;
    
                i = dots = 0; /* quick IP address validation */
                len = this.calledName.length();
                data = this.calledName.toCharArray();
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 15.2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/util/Hexdump.java

            if( length == 0 ) {
                return;
            }
    
            int s = length % 16;
            int r = ( s == 0 ) ? length / 16 : length / 16 + 1;
            char[] c = new char[r * (74 + NL_LENGTH)];
            char[] d = new char[16];
            int i;
            int si = 0;
            int ci = 0;
    
            do {
                toHexChars( si, c, ci, 5 );
                ci += 5;
                c[ci++] = ':';
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 5.4K bytes
    - Viewed (0)
  5. src/main/java/jcifs/dcerpc/UUID.java

                }
                count++;
            }
    
            return value;
        }
    
        static final char[] HEXCHARS = {
            '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F'
        };
    
    
        private static String bin_to_hex ( int value, int length ) {
            char[] arr = new char[length];
            int ai = arr.length;
            while ( ai-- > 0 ) {
                arr[ ai ] = HEXCHARS[ value & 0xF ];
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 4.6K bytes
    - Viewed (0)
  6. src/main/java/jcifs/util/Encdec.java

        }
    
    
        public static String dec_utf8 ( byte[] src, int si, int slim ) throws IOException {
            char[] uni = new char[slim - si];
            int ui, ch;
    
            for ( ui = 0; si < slim && ( ch = src[ si++ ] & 0xFF ) != 0; ui++ ) {
                if ( ch < 0x80 ) {
                    uni[ ui ] = (char) ch;
                }
                else if ( ( ch & 0xE0 ) == 0xC0 ) {
                    if ( ( slim - si ) < 2 ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 11K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SmbRandomAccessFile.java

            }
            return Encdec.dec_uint16be(this.tmp, 0) & 0xFFFF;
        }
    
    
        @Override
        public final char readChar () throws SmbException {
            if ( ( read(this.tmp, 0, 2) ) < 0 ) {
                throw new SmbEndOfFileException();
            }
            return (char) Encdec.dec_uint16be(this.tmp, 0);
        }
    
    
        @Override
        public final int readInt () throws SmbException {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Wed Jan 08 12:01:33 GMT 2020
    - 18.5K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/NtlmPasswordAuthenticator.java

        static String unescape ( String str ) throws NumberFormatException, UnsupportedEncodingException {
            char ch;
            int i, j, state, len;
            char[] out;
            byte[] b = new byte[1];
    
            if ( str == null ) {
                return null;
            }
    
            len = str.length();
            out = new char[len];
            state = 0;
            for ( i = j = 0; i < len; i++ ) {
                switch ( state ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 12:07:20 GMT 2020
    - 18.8K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/dcerpc/DcerpcHandle.java

         */ 
        protected static DcerpcBinding parseBinding(String str) throws DcerpcException {
            int state, mark, si;
            char[] arr = str.toCharArray();
            String proto = null, key = null;
            DcerpcBinding binding = null;
    
            state = mark = si = 0;
            do {
                char ch = arr[si];
    
                switch (state) {
                    case 0:
                        if (ch == ':') {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 8.8K bytes
    - Viewed (0)
  10. src/main/java/jcifs/http/NetworkExplorer.java

            out.println("</td></tr></table>");
            out.println("</BODY></HTML>");
            out.close();
        }
    
    
        private static String parseServerAndShare ( String pathInfo ) {
            char[] out = new char[256];
            char ch;
            int len, p, i;
    
            if ( pathInfo == null ) {
                return null;
            }
            len = pathInfo.length();
    
            p = i = 0;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 21.3K bytes
    - Viewed (0)
Back to top