Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for thanks (0.15 sec)

  1. src/main/java/jcifs/smb1/netbios/NameServiceClient.java

                 * request. However the chances are slim and the
                 * retry code should ensure the overall request
                 * is serviced. The alternative complicates things
                 * more than I think is worth it.
                 */
    
                if( socket != null ) {
                    socket.close();
                    socket = null;
                }
                thread = null;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 17.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/netbios/NameServiceClientImpl.java

                 * request. However the chances are slim and the
                 * retry code should ensure the overall request
                 * is serviced. The alternative complicates things
                 * more than I think is worth it.
                 */
    
                if ( this.socket != null ) {
                    this.socket.close();
                    this.socket = null;
                }
                this.thread = null;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Aug 14 14:26:22 GMT 2022
    - 38.2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/SmbFile.java

            }
        }
        void doConnect() throws IOException {
            SmbTransport trans;
            UniAddress addr;
    
            addr = getAddress();
            if (tree != null) {
                trans = tree.session.transport;
            } else {
                trans = SmbTransport.getSmbTransport(addr, url.getPort());
                tree = trans.getSmbSession(auth).getSmbTree(share, null);
            }
    
    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/internal/smb2/ioctl/SrvCopychunkCopy.java

        private final byte[] sourceKey;
        private final SrvCopychunk[] chunks;
    
    
        /**
         * @param sourceKey
         * @param chunks
         * 
         */
        public SrvCopychunkCopy ( byte[] sourceKey, SrvCopychunk... chunks ) {
            this.sourceKey = sourceKey;
            this.chunks = chunks;
        }
    
    
        /**
         * {@inheritDoc}
         *
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.9K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SmbCopyUtil.java

                                wsize = byteLimit;
                            }
    
                            int chunks = (int) ( wsize / maxChunkSize );
                            int lastChunkSize;
                            if ( chunks + 1 > maxChunks ) {
                                chunks = maxChunks;
                                lastChunkSize = maxChunkSize;
                            }
                            else {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 10:52:42 GMT 2020
    - 17.1K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/smb1/TransactNamedPipeInputStream.java

                    new_size = len + used;
                }
                tmp = pipe_buf;
                pipe_buf = new byte[new_size];
                i = tmp.length - beg_idx;
                if( used > i ) { /* 2 chunks */
                    System.arraycopy( tmp, beg_idx, pipe_buf, 0, i );
                    System.arraycopy( tmp, 0, pipe_buf, i, used - i ); 
                } else {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 4.6K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SmbTreeConnection.java

                        SmbTransportInternal trans = this.exclusiveTransport;
                        try ( SmbSessionInternal smbSession = trans.getSmbSession(this.ctx, host, targetDomain).unwrap(SmbSessionInternal.class);
                              SmbTreeImpl uct = smbSession.getSmbTree(share, null).unwrap(SmbTreeImpl.class);
                              SmbTreeImpl ct = connectTree(loc, host, share, trans, uct, dr) ) {
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 10:50:16 GMT 2020
    - 31K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/SmbResourceLocatorImpl.java

    import jcifs.SmbConstants;
    import jcifs.SmbResourceLocator;
    import jcifs.internal.util.StringUtil;
    import jcifs.netbios.NbtAddress;
    import jcifs.netbios.UniAddress;
    
    
    /**
     * 
     * 
     * This mainly tracks two locations:
     * - canonical URL path: path component of the URL: this is used to reconstruct URLs to resources and is not adjusted by
    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)
  9. src/main/java/org/codelibs/fess/app/web/admin/maintenance/AdminMaintenanceAction.java

    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 14K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/smb1/ServerMessageBlock.java

                        log.println( "byteCount=" + byteCount +
                                " but readBytesWireFormat returned " + n );
                    }
                }
                // Don't think we can rely on n being correct here. Must use byteCount.
                // Last paragraph of section 3.13.3 eludes to this.
    
                bufferIndex += byteCount;
            }
    
            length = bufferIndex - start;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 21K bytes
    - Viewed (0)
Back to top