Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for netlify (0.28 sec)

  1. src/main/java/jcifs/smb1/smb1/TransCallNamedPipeResponse.java

                TransactNamedPipeInputStream in = (TransactNamedPipeInputStream)pipe.pipeIn;
                synchronized( in.lock ) {
                    in.receive( buffer, bufferIndex, len );
                    in.lock.notify();
                }
            }
            return len;
        }
        public String toString() {
            return new String( "TransCallNamedPipeResponse[" + super.toString() + "]" );
        }
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/TransTransactNamedPipeResponse.java

                TransactNamedPipeInputStream in = (TransactNamedPipeInputStream)pipe.pipeIn;
                synchronized( in.lock ) {
                    in.receive( buffer, bufferIndex, len );
                    in.lock.notify();
                }
            }
            return len;
        }
        public String toString() {
            return new String( "TransTransactNamedPipeResponse[" + super.toString() + "]" );
        }
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/SmbWatchHandle.java

         * opened if it is not and should be closed with {@link #close()} when no longer
         * needed.
         * 
         * Closing the context should cancel a pending notify request, but that does not seem to work reliable in all
         * implementations.
         * 
         * Changes in between these calls (as long as the file is open) are buffered by the server, so iteratively calling
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2.3K bytes
    - Viewed (0)
  4. src/main/java/jcifs/SmbConstants.java

        static final int DEFAULT_SO_TIMEOUT = 35000;
        static final int DEFAULT_RCV_BUF_SIZE = 0xFFFF;
        static final int DEFAULT_SND_BUF_SIZE = 0xFFFF;
        static final int DEFAULT_NOTIFY_BUF_SIZE = 1024;
    
        static final int DEFAULT_SSN_LIMIT = 250;
        static final int DEFAULT_CONN_TIMEOUT = 35000;
    
        static final int FLAGS_NONE = 0x00;
        static final int FLAGS_LOCK_AND_READ_WRITE_AND_UNLOCK = 0x01;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 8.9K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/util/transport/Transport.java

                    }
                    if (ex0 != null) {
                        te = new TransportException( ex0 );
                    }
                    state = 2; // run connected
                    run_thread.notify();
                }
            }
    
            /* Proccess responses
             */
            loop();
        }
    
        public String toString() {
            return name;
        }
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 9K bytes
    - Viewed (0)
  6. src/main/java/jcifs/util/transport/Transport.java

                                if ( log.isDebugEnabled() ) {
                                    log.debug("Transport still in use, no idle timeout " + this);
                                }
                                // notify, so that callers with timed-out requests can handle them
                                for ( Response response : this.response_map.values() ) {
                                    synchronized ( response ) {
    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)
  7. src/main/java/jcifs/internal/NotifyResponse.java

    import java.util.List;
    
    import jcifs.FileNotifyInformation;
    
    
    /**
     * @author mbechler
     *
     */
    public interface NotifyResponse extends CommonServerMessageBlockResponse {
    
        /**
         * @return notify information
         */
        List<FileNotifyInformation> getNotifyInformation ();
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.1K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/SmbCopyUtil.java

            this.b = buffer;
            this.n = len;
            this.out = d;
            this.ready = false;
            notify();
        }
    
    
        @Override
        public void run () {
            synchronized ( this ) {
                try {
                    for ( ;; ) {
                        notify();
                        this.ready = true;
                        while ( this.ready ) {
                            wait();
    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)
  9. src/main/java/jcifs/smb1/smb1/SmbConstants.java

        static final int FLAGS_PATH_NAMES_CASELESS            = 0x08;
        static final int FLAGS_PATH_NAMES_CANONICALIZED       = 0x10;
        static final int FLAGS_OPLOCK_REQUESTED_OR_GRANTED    = 0x20;
        static final int FLAGS_NOTIFY_OF_MODIFY_ACTION        = 0x40;
        static final int FLAGS_RESPONSE                       = 0x80;
    
        static final int FLAGS2_NONE                          = 0x0000;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 8.4K bytes
    - Viewed (0)
  10. src/main/java/jcifs/config/BaseConfiguration.java

        protected int smbSendBufferSize = SmbConstants.DEFAULT_SND_BUF_SIZE;
        protected int smbRecvBufferSize = SmbConstants.DEFAULT_RCV_BUF_SIZE;
        protected int smbNotifyBufferSize = SmbConstants.DEFAULT_NOTIFY_BUF_SIZE;
        protected String nativeOs;
        protected String nativeLanMan = "jCIFS";
        protected int vcNumber = 1;
        protected boolean dfsDisabled = false;
        protected long dfsTTL = 300;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 20.4K bytes
    - Viewed (1)
Back to top