Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for GetContext (0.08 sec)

  1. src/test/java/jcifs/SmbTransportTest.java

            // Arrange
            when(smbTransport.getContext()).thenReturn(cifsContext);
    
            // Act
            CIFSContext result = smbTransport.getContext();
    
            // Assert
            assertNotNull(result, "Context should not be null");
            assertEquals(cifsContext, result, "Returned context should be the mocked context");
            verify(smbTransport).getContext(); // Verify that the method was called
        }
    
        @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/rdma/RdmaTransport.java

        }
    
        @Override
        public int getInflightRequests() {
            return delegate.getInflightRequests();
        }
    
        @Override
        public CIFSContext getContext() {
            return delegate.getContext();
        }
    
        @Override
        @SuppressWarnings("unchecked")
        public <T extends SmbTransport> T unwrap(Class<T> type) {
            if (type.isAssignableFrom(this.getClass())) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 05:11:12 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  3. src/test/java/jcifs/smb/SmbTreeImplTest.java

        private SmbTransportImpl transport;
    
        @BeforeEach
        void setUp() throws Exception {
            MockitoAnnotations.openMocks(this);
            when(session.getConfig()).thenReturn(config);
            when(session.getContext()).thenReturn(context);
            when(session.getTransport()).thenReturn(transport);
            when(session.acquire()).thenReturn(session);
            when(config.isTraceResourceUsage()).thenReturn(false);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbFileDirectoryLeasingExtension.java

                // Check if we can use directory leasing
                DirectoryLeaseManager dirManager = getDirectoryLeaseManager(th);
                if (dirManager != null && smbFile.getContext().getConfig().isUseDirectoryLeasing()) {
                    return listFilesWithDirectoryLeasing(smbFile, dirManager);
                } else {
                    // Fall back to regular directory listing
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 02:21:31 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  5. src/test/java/jcifs/smb/HandlerTest.java

            // Assert
            assertTrue(conn instanceof SmbFile);
            SmbFile file = (SmbFile) conn;
            assertNotNull(file.getContext(), "Context must be non-null");
            assertSame(SingletonContext.getInstance(), file.getContext(), "Should use SingletonContext when none provided");
        }
    
        @Test
        @DisplayName("parseURL: exact 'smb://' sets default port")
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  6. src/main/java/jcifs/SmbSession.java

        <T extends SmbSession> T unwrap(Class<T> type);
    
        /**
         * Returns the CIFS context that this session is attached to.
         *
         * @return the context this session is attached to
         */
        CIFSContext getContext();
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  7. src/main/java/jcifs/SmbTransport.java

    public interface SmbTransport extends AutoCloseable {
    
        /**
         * Gets the CIFS context associated with this transport.
         *
         * @return the context this transport is attached to
         */
        CIFSContext getContext();
    
        /**
         * Unwraps the transport to the specified type.
         *
         * @param <T> the type to unwrap to
         * @param type the class of the transport type to unwrap
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  8. compat/maven-compat/src/test/java/org/apache/maven/project/LegacyLocalRepositoryManager.java

            LocalMetadataResult result = new LocalMetadataResult(request);
    
            String path;
    
            Metadata metadata = request.getMetadata();
            String context = request.getContext();
            RemoteRepository remote = request.getRepository();
    
            if (remote != null) {
                path = getPathForRemoteMetadata(metadata, remote, context);
            } else {
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  9. src/main/java/jcifs/dcerpc/DcerpcPipeHandle.java

                url.append("?").append(params.substring(1));
            }
    
            return url.toString();
        }
    
        @Override
        public CIFSContext getTransportContext() {
            return this.pipe.getContext();
        }
    
        @Override
        public String getServer() {
            return this.pipe.getLocator().getServer();
        }
    
        @Override
        public String getServerWithDfs() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  10. src/main/java/jcifs/SmbException.java

         */
        public Category getCategory() {
            return category;
        }
    
        /**
         * Gets the error context
         *
         * @return the context map
         */
        public Map<String, Object> getContext() {
            return new HashMap<>(context);
        }
    
        /**
         * Gets a specific context value
         *
         * @param key the context key
         * @return the context value or null
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 6.4K bytes
    - Viewed (0)
Back to top