Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Oliver (0.18 sec)

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

                this.treeHandle.ensureDFSResolved();
                if ( this.transportContext.getConfig().isStrictResourceLifecycle() ) {
                    // one extra share to keep the tree alive
                    return this.treeHandle.acquire();
                }
                return this.treeHandle;
            }
            return this.treeHandle.acquire();
        }
    
    
        /**
         * @param context
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 81.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbFile.java

                         */
    /* Technically we should also try to authenticate here but that means doing the session setup and tree connect separately. For now a simple connect will at least tell us if the host is alive. That should be sufficient for 99% of the cases. We can revisit this again for 2.0.
     */
                        trans.connect();
                        tree = trans.getSmbSession( auth ).getSmbTree( dr.share, service );
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 107.9K bytes
    - Viewed (2)
Back to top