Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for FILE_NOTIFY_CHANGE_SIZE (0.08 sec)

  1. src/test/java/jcifs/FileNotifyInformationTest.java

                        | FileNotifyInformation.FILE_NOTIFY_CHANGE_LAST_WRITE;
    
                // Remove FILE_NOTIFY_CHANGE_SIZE flag
                flags &= ~FileNotifyInformation.FILE_NOTIFY_CHANGE_SIZE;
    
                // Verify FILE_NOTIFY_CHANGE_SIZE is removed
                assertFalse((flags & FileNotifyInformation.FILE_NOTIFY_CHANGE_SIZE) != 0);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 18.1K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/smb1/trans/nt/NtTransNotifyChangeTest.java

        void testVariousBufferOffsets(int offset) {
            notifyChange = new NtTransNotifyChange(mockConfig, 0x5678, FILE_NOTIFY_CHANGE_SIZE, true);
            byte[] dst = new byte[100];
    
            int bytesWritten = notifyChange.writeSetupWireFormat(dst, offset);
    
            assertEquals(8, bytesWritten);
            assertEquals(FILE_NOTIFY_CHANGE_SIZE, SMBUtil.readInt4(dst, offset));
            assertEquals(0x5678, SMBUtil.readInt2(dst, offset + 4));
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 18.4K bytes
    - Viewed (0)
  3. src/test/java/jcifs/internal/smb2/notify/Smb2ChangeNotifyRequestTest.java

    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 17.1K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb2/lease/DirectoryChangeNotifier.java

        private static final int FILE_NOTIFY_CHANGE_DIR_NAME = 0x00000002;
        private static final int FILE_NOTIFY_CHANGE_ATTRIBUTES = 0x00000004;
        private static final int FILE_NOTIFY_CHANGE_SIZE = 0x00000008;
        private static final int FILE_NOTIFY_CHANGE_LAST_WRITE = 0x00000010;
    
        /**
         * Change notification handle
         */
        public static class ChangeNotificationHandle {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 13.7K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb2/notify/Smb2ChangeNotifyRequest.java

        /**
         * Notify when file attributes change
         */
        public static final int FILE_NOTIFY_CHANGE_ATTRIBUTES = 0x4;
        /**
         * Notify when file size changes
         */
        public static final int FILE_NOTIFY_CHANGE_SIZE = 0x8;
        /**
         * Notify when last write time changes
         */
        public static final int FILE_NOTIFY_CHANGE_LAST_WRITE = 0x10;
        /**
         * Notify when last access time changes
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.5K bytes
    - Viewed (0)
  6. src/main/java/jcifs/FileNotifyInformation.java

         * systems that use extensive caching, detection occurs only when the cache is sufficiently flushed.s
         */
        int FILE_NOTIFY_CHANGE_SIZE = 0x00000008;
    
        /**
         * Any change to the last write-time of files in the watched directory or subtree causes a change notification wait
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  7. docs/smb3-features/04-directory-leasing-design.md

        }
        
        private int getNotificationFilter() {
            return FILE_NOTIFY_CHANGE_FILE_NAME
                 | FILE_NOTIFY_CHANGE_DIR_NAME
                 | FILE_NOTIFY_CHANGE_ATTRIBUTES
                 | FILE_NOTIFY_CHANGE_SIZE
                 | FILE_NOTIFY_CHANGE_LAST_WRITE;
        }
        
        // SMB2 Change Notify constants
        private static final int FILE_ACTION_ADDED = 0x00000001;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 36.2K bytes
    - Viewed (0)
Back to top