Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Erling (0.15 sec)

  1. 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 May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:07:29 GMT 2023
    - 29.1K bytes
    - Viewed (0)
  2. 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 May 05 00:10:10 GMT 2024
    - Last Modified: Wed Jan 18 23:47:00 GMT 2023
    - 67K bytes
    - Viewed (0)
  3. 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 May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 107.9K bytes
    - Viewed (2)
  4. src/main/java/jcifs/smb/SmbSessionImpl.java

    							} catch (IOException e1) {
    								log.warn("Got NT_STATUS_USER_SESSION_DELETED, disconnected transport with error", e1);
    							}   
                            }
                            log.debug("Session expired, trying reauth", e);
                            return reauthenticate(trans, this.targetDomain, request, response, params);
                        }
                        if ( log.isTraceEnabled() ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Nov 14 17:41:04 GMT 2021
    - 49K bytes
    - Viewed (0)
Back to top