Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for netlify (0.17 sec)

  1. src/main/java/jcifs/internal/smb2/notify/Smb2ChangeNotifyRequest.java

        /**
         * 
         */
        public static final int FILE_NOTIFY_CHANGE_LAST_ACCESS = 0x20;
        /**
         * 
         */
        public static final int FILE_NOTIFY_CHANGE_CREATION = 0x40;
        /**
         * 
         */
        public static final int FILE_NOTIFY_CHANGE_EA = 0x80;
        /**
         * 
         */
        public static final int FILE_NOTIFY_CHANGE_SECURITY = 0x100;
        /**
         * 
         */
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 4.6K bytes
    - Viewed (0)
  2. src/test/java/jcifs/tests/WatchTest.java

            // samba 4 starting with some version does not seem to handle this correctly :(
            try ( SmbWatchHandle w = this.base
                    .watch(FileNotifyInformation.FILE_NOTIFY_CHANGE_ATTRIBUTES | FileNotifyInformation.FILE_NOTIFY_CHANGE_LAST_WRITE, false) ) {
                try ( SmbFile cr = new SmbFile(this.base, "modified") ) {
                    cr.createNewFile();
                    setupWatch(w);
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 8.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb1/trans/nt/NtTransNotifyChange.java

         * @param fid
         * @param completionFilter
         * @param watchTree
         */
        public NtTransNotifyChange ( Configuration config, int fid, int completionFilter, boolean watchTree ) {
            super(config, NT_TRANSACT_NOTIFY_CHANGE);
            this.fid = fid;
            this.completionFilter = completionFilter;
            this.watchTree = watchTree;
            this.setupCount = 0x04;
            this.totalDataCount = 0;
            this.maxDataCount = 0;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.2K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/test/java/org/codelibs/core/io/CloseableUtilTest.java

            private String notify_;
    
            @Override
            public void write(final int arg0) throws IOException {
            }
    
            @Override
            public void close() throws IOException {
                super.close();
                notify_ = "closed";
            }
    
            public String getNotify() {
                return notify_;
            }
        }
    
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 2.2K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top