Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for FILE_NOTIFY_CHANGE_LAST_WRITE (0.08 sec)

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

                assertEquals(0x00000008, FileNotifyInformation.FILE_NOTIFY_CHANGE_SIZE);
            }
    
            @Test
            @DisplayName("Verify FILE_NOTIFY_CHANGE_LAST_WRITE constant value")
            void testFileNotifyChangeLastWrite() {
                assertEquals(0x00000010, FileNotifyInformation.FILE_NOTIFY_CHANGE_LAST_WRITE);
            }
    
            @Test
            @DisplayName("Verify FILE_NOTIFY_CHANGE_LAST_ACCESS constant value")
    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/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)
  3. src/main/java/jcifs/internal/smb2/lease/DirectoryChangeNotifier.java

        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 {
            private final String directoryPath;
            private final Smb2LeaseKey leaseKey;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 13.7K bytes
    - Viewed (0)
  4. src/test/java/jcifs/internal/smb1/trans/nt/NtTransNotifyChangeTest.java

        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;
        private static final int FILE_NOTIFY_CHANGE_LAST_ACCESS = 0x00000020;
        private static final int FILE_NOTIFY_CHANGE_CREATION = 0x00000040;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 18.4K bytes
    - Viewed (0)
  5. docs/smb3-features/04-directory-leasing-design.md

            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;
        private static final int FILE_ACTION_REMOVED = 0x00000002;
    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