Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for Erling (0.2 sec)

  1. src/main/java/jcifs/util/transport/Transport.java

                case 4:
                    this.state = 6;
                    throw new TransportException("Connection in error", this.te);
                case 5:
                case 6:
                    log.debug("Trying to connect a disconnected transport");
                    return false;
                default:
                    TransportException tex = new TransportException("Invalid state: " + st);
                    throw tex;
                }
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Nov 01 18:12:21 GMT 2020
    - 24.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/DfsImpl.java

                        if ( log.isTraceEnabled() ) {
                            log.trace("Found at " + link);
                        }
                        break;
                    }
    
                    // walk up trying to find a match, do not go up to the root
                    int nextSep = link.lastIndexOf('\\');
                    if ( nextSep > 0 ) {
                        link = link.substring(0, nextSep);
                    }
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Thu Jan 05 13:07:29 GMT 2023
    - 29.1K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/SmbSession.java

                try {
                    transport.wait();
                } catch (InterruptedException ie) {
                    throw new SmbException(ie.getMessage(), ie);
                }
            }
            connectionState = 1; // trying ...
    
            try {
                transport.connect();
    
                /*
                 * Session Setup And X Request / Response
                 */
        
                if( transport.log.level >= 4 )
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 18.6K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbCopyUtil.java

         */
        @SuppressWarnings ( "resource" )
        private static void serverSideCopy ( SmbFile src, SmbFile dest, SmbTreeHandleImpl sh, SmbTreeHandleImpl dh, boolean write ) throws CIFSException {
            log.debug("Trying server side copy");
            SmbFileHandleImpl dfd = null;
            try {
                long size;
                byte[] resumeKey;
    
                // despite there being a resume key, we still need an open file descriptor?
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Tue Jul 07 10:52:42 GMT 2020
    - 17.1K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/util/Hexdump.java

            }
            return new String( c );
        }
    
    /** 
     * This is the same as {@link jcifs.smb1.util.Hexdump#toHexString(int val, int
     * size)} but provides a more practical form when trying to avoid {@link
     * java.lang.String} concatenation and {@link java.lang.StringBuffer}.
     */ 
        public static void toHexChars( int val, char dst[], int dstIndex, int size ) {
            while( size > 0 ) {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 5.4K bytes
    - Viewed (0)
  6. src/main/java/jcifs/SmbResource.java

         *
         * @throws CIFSException
         */
        void setReadOnly () throws CIFSException;
    
    
        /**
         * Set the attributes of this file. Attributes are composed into a
         * bitset by bitwise ORing the <tt>ATTR_*</tt> constants. Setting the
         * value returned by <tt>getAttributes</tt> will result in both files
         * having the same attributes.
         * 
         * @param attrs
         *            attribute flags
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Dec 20 14:09:34 GMT 2020
    - 26K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SmbTransportImpl.java

                }
    
                /* out of phase maybe? */
                /* inch forward 1 byte and try again */
                for ( int i = 0; i < 35; i++ ) {
                    log.warn("Possibly out of phase, trying to resync " + Hexdump.toHexString(this.sbuf, 0, 16));
                    this.sbuf[ i ] = this.sbuf[ i + 1 ];
                }
                int b;
                if ( ( b = this.in.read() ) == -1 )
                    return null;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Wed Jan 18 23:47:00 GMT 2023
    - 67K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/smb1/SmbTree.java

                    session.transport.wait();
                } catch (InterruptedException ie) {
                    throw new SmbException(ie.getMessage(), ie);
                }
            }
            connectionState = 1; // trying ...
    
            try {
                /* The hostname to use in the path is only known for
                 * sure if the NetBIOS session has been successfully
                 * established.
                 */
        
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 8K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/SmbFile.java

        }
    /**
     * Constructs an SmbFile representing a file on an SMB network. The
     * <tt>shareAccess</tt> parameter controls what permissions other
     * clients have when trying to access the same file while this instance
     * is still open. This value is either <tt>FILE_NO_SHARE</tt> or any
     * combination of <tt>FILE_SHARE_READ</tt>, <tt>FILE_SHARE_WRITE</tt>,
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 107.9K bytes
    - Viewed (2)
  10. src/main/java/jcifs/util/Hexdump.java

            return toHexString(data, 0, data.length);
        }
    
    
        /**
         * This is the same as {@link jcifs.util.Hexdump#toHexString(int val, int
         * size)} but provides a more practical form when trying to avoid {@link
         * java.lang.String} concatenation and {@link java.lang.StringBuffer}.
         * 
         * @param val
         * @param dst
         * @param dstIndex
         * @param size
         */
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.5K bytes
    - Viewed (0)
Back to top