Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for FILE_NOTIFY_CHANGE_STREAM_NAME (0.17 sec)

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

            }
    
            @Test
            @DisplayName("Verify FILE_NOTIFY_CHANGE_STREAM_NAME constant value")
            void testFileNotifyChangeStreamName() {
                assertEquals(0x00000200, FileNotifyInformation.FILE_NOTIFY_CHANGE_STREAM_NAME);
            }
    
            @Test
            @DisplayName("Verify FILE_NOTIFY_CHANGE_STREAM_SIZE 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

                "64, FILE_NOTIFY_CHANGE_CREATION", "128, FILE_NOTIFY_CHANGE_EA", "256, FILE_NOTIFY_CHANGE_SECURITY",
                "512, FILE_NOTIFY_CHANGE_STREAM_NAME", "1024, FILE_NOTIFY_CHANGE_STREAM_SIZE", "2048, FILE_NOTIFY_CHANGE_STREAM_WRITE" })
        void testCompletionFilterConstants(int value, String description) {
            // Given & When
    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/FileNotifyInformation.java

        int FILE_NOTIFY_CHANGE_SECURITY = 0x00000100;
    
        /**
         * Any change to a named stream of a file in the watched directory or subtree causes a change notification wait operation to return.
         */
        int FILE_NOTIFY_CHANGE_STREAM_NAME = 0x00000200;
    
        /**
         * Any change in the size of a named stream of a file in the watched directory or subtree causes a change notification wait operation to return.
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb2/notify/Smb2ChangeNotifyRequest.java

         */
        public static final int FILE_NOTIFY_CHANGE_SECURITY = 0x100;
        /**
         * Notify when alternate data stream name changes
         */
        public static final int FILE_NOTIFY_CHANGE_STREAM_NAME = 0x200;
        /**
         * Notify when alternate data stream size changes
         */
        public static final int FILE_NOTIFY_CHANGE_STREAM_SIZE = 0x400;
        /**
         * Notify when alternate data stream is written
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.5K bytes
    - Viewed (0)
  5. src/test/java/jcifs/internal/smb1/trans/nt/NtTransNotifyChangeTest.java

        private static final int FILE_NOTIFY_CHANGE_EA = 0x00000080;
        private static final int FILE_NOTIFY_CHANGE_SECURITY = 0x00000100;
        private static final int FILE_NOTIFY_CHANGE_STREAM_NAME = 0x00000200;
        private static final int FILE_NOTIFY_CHANGE_STREAM_SIZE = 0x00000400;
        private static final int FILE_NOTIFY_CHANGE_STREAM_WRITE = 0x00000800;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 18.4K bytes
    - Viewed (0)
Back to top