- Sort Score
- Num 10 results
- Language All
Results 1 - 8 of 8 for FILE_ACTION_MODIFIED_STREAM (0.15 seconds)
-
src/test/java/jcifs/FileNotifyInformationTest.java
} @Test @DisplayName("Verify FILE_ACTION_MODIFIED_STREAM constant value") void testFileActionModifiedStream() { assertEquals(0x00000008, FileNotifyInformation.FILE_ACTION_MODIFIED_STREAM); } @Test @DisplayName("Verify FILE_ACTION_REMOVED_BY_DELETE constant value")Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 18.1K bytes - Click Count (0) -
src/main/java/jcifs/FileNotifyInformation.java
/** * File stream has been removed */ int FILE_ACTION_REMOVED_STREAM = 0x00000007; /** * File stream has modified */ int FILE_ACTION_MODIFIED_STREAM = 0x00000008; /** * File has been removed by delete operation */ int FILE_ACTION_REMOVED_BY_DELETE = 0x00000009; /**Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 5.2K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb2/notify/Smb2ChangeNotifyResponseTest.java
"5, FILE_ACTION_RENAMED_NEW_NAME", "6, FILE_ACTION_ADDED_STREAM", "7, FILE_ACTION_REMOVED_STREAM", "8, FILE_ACTION_MODIFIED_STREAM" }) void testDifferentFileActions(int action, String description) throws Exception { // Given byte[] buffer = new byte[512]; int offset = 0;
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 18.8K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb2/lease/DirectoryChangeNotifier.java
Shinsuke Sugaya <******@****.***> 1756533483 +0900
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 13.7K bytes - Click Count (0) -
docs/smb3-features/04-directory-leasing-design.md
Shinsuke Sugaya <******@****.***> 1755312830 +0900
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 02:53:50 GMT 2025 - 36.2K bytes - Click Count (0) -
src/test/java/jcifs/internal/NotifyResponseTest.java
FileNotifyInformation modifiedStream = mock(FileNotifyInformation.class); when(modifiedStream.getAction()).thenReturn(FileNotifyInformation.FILE_ACTION_MODIFIED_STREAM); when(modifiedStream.getFileName()).thenReturn("file.txt:modifiedstream"); List<FileNotifyInformation> notifications = Arrays.asList(addedStream, removedStream, modifiedStream);Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 21.2K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb1/trans/nt/FileNotifyInformationImplTest.java
FileNotifyInformation.FILE_ACTION_RENAMED_NEW_NAME, FileNotifyInformation.FILE_ACTION_ADDED_STREAM, FileNotifyInformation.FILE_ACTION_REMOVED_STREAM, FileNotifyInformation.FILE_ACTION_MODIFIED_STREAM, FileNotifyInformation.FILE_ACTION_REMOVED_BY_DELETE }) void testDecodeWithVariousActions(int action) throws SMBProtocolDecodingException { String fileName = "file.dat";Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 13.1K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb1/trans/nt/NtTransNotifyChangeResponseTest.java
FileNotifyInformation.FILE_ACTION_RENAMED_NEW_NAME, FileNotifyInformation.FILE_ACTION_ADDED_STREAM, FileNotifyInformation.FILE_ACTION_REMOVED_STREAM, FileNotifyInformation.FILE_ACTION_MODIFIED_STREAM }) void testReadParametersWireFormatWithVariousActions(int action) throws Exception { byte[] buffer = createSingleNotificationBuffer("testfile.dat", action);Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 14.7K bytes - Click Count (0)