Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for WriterThread (0.28 sec)

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

            }
        }
    
    }
    
    
    class WriterThread extends Thread {
    
        private byte[] b;
        private int n;
        private boolean ready;
        private SmbFileOutputStream out;
    
        private SmbException e = null;
    
    
        WriterThread () {
            super("JCIFS-WriterThread");
            this.ready = false;
        }
    
    
        /**
         * @return the ready
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 10:52:42 UTC 2020
    - 17.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbFile.java

        }
    
        class WriterThread extends Thread {
            byte[] b;
            int n;
            long off;
            boolean ready;
            SmbFile dest;
            SmbException e = null;
            boolean useNTSmbs;
            SmbComWriteAndX reqx;
            SmbComWrite req;
            ServerMessageBlock resp;
    
            WriterThread() throws SmbException {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbFile.java

                 */
                if ( this.fileLocator.overlaps(dest.getLocator()) ) {
                    throw new SmbException("Source and destination paths overlap.");
                }
    
                WriterThread w = new WriterThread();
                w.setDaemon(true);
    
                try {
                    w.start();
                    // use commonly acceptable buffer size
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
Back to top