Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 193 of 193 for CIFSContext (0.04 sec)

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

        /**
         * Returns the transport context for this resource
         *
         * @return the transportContext
         */
        @Deprecated
        public CIFSContext getTransportContext() {
            return this.getContext();
        }
    
        @Override
        public CIFSContext getContext() {
            return this.transportContext;
        }
    
        @Override
        public SmbResourceLocator getLocator() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 103.2K bytes
    - Viewed (0)
  2. src/test/java/jcifs/SmbTransportPoolTest.java

     */
    @ExtendWith(MockitoExtension.class)
    @DisplayName("SmbTransportPool Tests")
    class SmbTransportPoolTest {
    
        @Mock
        private SmbTransportPool transportPool;
    
        @Mock
        private CIFSContext context;
    
        @Mock
        private Address address;
    
        @Mock
        private SmbTransport transport;
    
        @Mock
        private InetAddress localAddr;
    
        private static final int DEFAULT_PORT = 445;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 22.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/SmbResource.java

         * @return the fileLocator
         */
        SmbResourceLocator getLocator();
    
        /**
         * The context this file was opened with
         *
         * @return the context associated with this file
         */
        CIFSContext getContext();
    
        /**
         * Returns the last component of the target URL. This will
         * effectively be the name of the file or directory represented by this
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 28K bytes
    - Viewed (1)
Back to top