Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 505 for Action (0.2 sec)

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

                ",dataSize=" + dataSize +
                ",grantedAccess=" + grantedAccess +
                ",fileType=" + fileType +
                ",deviceState=" + deviceState +
                ",action=" + action +
                ",serverFid=" + serverFid + "]" );
        }
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 2.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/FileNotifyInformation.java

         */
        public static final int FILE_ACTION_MODIFIED_STREAM = 0x00000008;
    
        /**
         * 
         */
        public static final int FILE_ACTION_REMOVED_BY_DELETE = 0x00000009;
    
    
        /**
         * @return the action triggering this entry (FILE_ACTION_*)
         */
        int getAction ();
    
    
        /**
         * @return the file name affected by the action
         */
        String getFileName ();
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 4.9K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb1/trans/nt/FileNotifyInformationImpl.java

    public class FileNotifyInformationImpl implements FileNotifyInformation, Decodable {
    
        int nextEntryOffset;
        int action;
        int fileNameLength;
        String fileName;
    
    
        /**
         * 
         */
        public FileNotifyInformationImpl () {}
    
    
        @Override
        public int getAction () {
            return this.action;
        }
    
    
        @Override
        public String getFileName () {
            return this.fileName;
        }
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sat Nov 17 08:55:32 GMT 2018
    - 3K bytes
    - Viewed (0)
  4. src/test/java/jcifs/tests/WatchTest.java

                    assertNotified(w, FileNotifyInformation.FILE_ACTION_ADDED, "created", null);
                }
    
                try ( SmbResource cr = new SmbFile(this.base, "created2") ) {
                    cr.createNewFile();
                }
    
                setupWatch(w);
                assertNotified(w, FileNotifyInformation.FILE_ACTION_ADDED, "created2", null);
            }
            catch ( TimeoutException e ) {
    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)
  5. src/main/java/jcifs/smb1/smb1/SmbTree.java

                }
            }
            request.tid = tid;
            if( inDfs && !service.equals("IPC") && request.path != null && request.path.length() > 0 ) {
                /* When DFS is in action all request paths are
                 * full UNC paths minus the first backslash like
                 *   \server\share\path\to\file
                 * as opposed to normally
                 *   \path\to\file
                 */
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 8K bytes
    - Viewed (0)
  6. src/main/java/jcifs/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;
        static final int FLAGS2_LONG_FILENAMES = 0x0001;
        static final int FLAGS2_EXTENDED_ATTRIBUTES = 0x0002;
    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)
  7. src/main/java/jcifs/internal/smb1/com/SmbComOpenAndXResponse.java

        /**
         * @return the deviceState
         */
        public final int getDeviceState () {
            return this.deviceState;
        }
    
    
        /**
         * @return the action
         */
        public final int getAction () {
            return this.action;
        }
    
    
        /**
         * @return the serverFid
         */
        public final int getServerFid () {
            return this.serverFid;
        }
    
    
        /**
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 5.2K bytes
    - Viewed (0)
  8. .github/workflows/codeql-analysis.yml

        - run: git checkout HEAD^2
          if: ${{ github.event_name == 'pull_request' }}
    
        # Initializes the CodeQL tools for scanning.
        - name: Initialize CodeQL
          uses: github/codeql-action/init@v1
          with:
            languages: ${{ matrix.language }}
            # If you wish to specify custom queries, you can do so here or in a config file.
    Others
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Oct 02 13:22:07 GMT 2020
    - 2.5K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/Trans2QueryFSInformation.java

     * This library is free software; you can redistribute it and/or
     * modify it under the terms of the GNU Lesser General Public
     * License as published by the Free Software Foundation; either
     * version 2.1 of the License, or (at your option) any later version.
     * 
     * This library is distributed in the hope that it will be useful,
     * but WITHOUT ANY WARRANTY; without even the implied warranty of
     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 2.5K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/smb1/trans2/Trans2QueryFSInformation.java

     * This library is free software; you can redistribute it and/or
     * modify it under the terms of the GNU Lesser General Public
     * License as published by the Free Software Foundation; either
     * version 2.1 of the License, or (at your option) any later version.
     * 
     * This library is distributed in the hope that it will be useful,
     * but WITHOUT ANY WARRANTY; without even the implied warranty of
     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.5K bytes
    - Viewed (0)
Back to top