Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for SmbTreeConnection (0.27 sec)

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

        private static final Random RAND = new Random();
    
    
        protected SmbTreeConnection ( CIFSContext ctx ) {
            this.ctx = ctx;
            this.delegate = null;
        }
    
    
        protected SmbTreeConnection ( SmbTreeConnection treeConnection ) {
            this.ctx = treeConnection.ctx;
            this.delegate = treeConnection;
        }
    
    
        static SmbTreeConnection create ( CIFSContext c ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 10:50:16 UTC 2020
    - 31K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbTreeConnectionTrace.java

    package jcifs.smb;
    
    
    import jcifs.CIFSContext;
    
    
    /**
     * @author mbechler
     *
     */
    class SmbTreeConnectionTrace extends SmbTreeConnection {
    
        SmbTreeConnectionTrace ( CIFSContext ctx ) {
            super(ctx);
        }
    
    
        SmbTreeConnectionTrace ( SmbTreeConnection conn ) {
            super(conn);
        }
    
    
        @Override
        protected void finalize () throws Throwable {
            checkRelease();
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sat Jul 20 08:41:19 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  3. src/test/resources/log4j.properties

    log4j.appender.stderr.layout.ConversionPattern=%d{yyyy-MM-dd HH:mm:ss} %-5p %c{1}:%L - %m%n
    
    
    log4j.logger.jcifs: INFO
    #log4j.logger.jcifs.internal.smb2.create: DEBUG
    #log4j.logger.jcifs.smb.SmbTreeConnection: DEBUG
    #log4j.logger.jcifs.smb.SmbTransportImpl: DEBUG
    #log4j.logger.jcifs.util.transport.Transport: DEBUG
    #log4j.logger.jcifs.smb.DfsImpl: DEBUG
    #log4j.logger.jcifs.smb: DEBUG
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 806 bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbTreeHandleImpl.java

        private final SmbResourceLocatorImpl resourceLoc;
        private final SmbTreeConnection treeConnection;
    
        private final AtomicLong usageCount = new AtomicLong(1);
    
    
        /**
         * @param resourceLoc
         * @param treeConnection
         */
        public SmbTreeHandleImpl ( SmbResourceLocatorImpl resourceLoc, SmbTreeConnection treeConnection ) {
            this.resourceLoc = resourceLoc;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 8.9K bytes
    - Viewed (1)
  5. src/main/java/jcifs/smb/SmbEnumerationUtil.java

                        }
                    }
                }
                catch ( IOException ioe ) {
                    log.debug("DS enumeration failed", ioe);
                }
            }
    
            SmbTreeConnection treeConn = SmbTreeConnection.create(tc);
            try ( SmbTreeHandleImpl th = treeConn.connectHost(locator, locator.getServerWithDfs());
                  SmbSessionImpl session = th.getSession();
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sat Jul 20 08:41:19 UTC 2019
    - 12.5K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/SmbFile.java

            if ( context.getLocator().getShare() != null && ( context instanceof SmbFile ) ) {
                this.treeConnection = SmbTreeConnection.create( ( (SmbFile) context ).treeConnection);
            }
            else {
                this.treeConnection = SmbTreeConnection.create(context.getContext());
            }
        }
    
    
        private static String checkName ( String name ) throws MalformedURLException {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
Back to top