Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 35 of 35 for SmbTreeHandleImpl (0.06 sec)

  1. src/main/java/jcifs/smb/SmbFileInputStream.java

                throw SmbException.wrap(e);
            }
        }
    
        /**
         * @throws SmbException
         *
         */
        SmbFileInputStream(final SmbFile file, final SmbTreeHandleImpl th, final SmbFileHandleImpl fh) throws SmbException {
            this.file = file;
            this.handle = fh;
            this.unsharedFile = false;
            this.smb2 = th.isSMB2();
            try {
                init(th);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 15.6K bytes
    - Viewed (0)
  2. src/test/java/jcifs/smb/SmbWatchHandleImplTest.java

    /**
     * Tests for SmbWatchHandleImpl focusing on behavior and interactions.
     */
    @ExtendWith(MockitoExtension.class)
    class SmbWatchHandleImplTest {
    
        @Mock
        SmbFileHandleImpl handle;
    
        @Mock
        SmbTreeHandleImpl tree;
    
        // Prepare SMB2 flow with a given response
        private void setupSmb2(NotifyResponse resp, byte[] fileId) throws Exception {
            when(handle.isValid()).thenReturn(true);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  3. src/test/java/jcifs/smb/SmbFileInputStreamTest.java

    @ExtendWith(MockitoExtension.class)
    @MockitoSettings(strictness = Strictness.LENIENT)
    class SmbFileInputStreamTest {
    
        @Mock
        SmbFile mockFile;
    
        @Mock
        SmbTreeHandleImpl mockTree;
    
        @Mock
        SmbFileHandleImpl mockHandle;
    
        @Mock
        Configuration mockConfig;
    
        private SmbFileInputStream newStream() throws SmbException {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  4. src/test/java/jcifs/smb/DirFileEntryEnumIterator2Test.java

    import jcifs.internal.smb2.info.Smb2QueryDirectoryRequest;
    import jcifs.internal.smb2.info.Smb2QueryDirectoryResponse;
    
    @ExtendWith(MockitoExtension.class)
    class DirFileEntryEnumIterator2Test {
    
        @Mock
        private SmbTreeHandleImpl tree;
    
        @Mock
        private SmbResource parent;
    
        @Mock
        private SmbResourceLocator locator;
    
        @Mock
        private Configuration config;
    
        @Mock
        private CIFSContext cifsContext;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 13.7K bytes
    - Viewed (0)
  5. src/test/java/jcifs/smb/SmbPipeHandleInternalTest.java

    import jcifs.internal.smb2.ioctl.Smb2IoctlResponse;
    
    @ExtendWith(MockitoExtension.class)
    class SmbPipeHandleInternalTest {
    
        @Mock
        private SmbNamedPipe pipe;
    
        @Mock
        private SmbTreeHandleImpl tree;
    
        @Mock
        private SmbFileHandleImpl fh;
    
        @Mock
        private Smb2IoctlResponse ioctlResp;
    
        @Mock
        private Configuration config;
    
        @Mock
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 16.7K bytes
    - Viewed (0)
Back to top