Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Meyers (0.16 sec)

  1. src/main/java/jcifs/SmbResource.java

    
        /**
         * Tests to see if the SMB resource exists. If the resource refers
         * only to a server, this method determines if the server exists on the
         * network and is advertising SMB services. If this resource refers to
         * a workgroup, this method determines if the workgroup name is valid on
         * the local SMB network. If this <code>SmbResource</code> refers to the root
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Dec 20 14:09:34 GMT 2020
    - 26K bytes
    - Viewed (0)
  2. LICENSE

      A "library" means a collection of software functions and/or data
    prepared so as to be conveniently linked with application programs
    (which use some of those functions and data) to form executables.
    
      The "Library", below, refers to any such software library or work
    which has been distributed under these terms.  A "work based on the
    Library" means either the Library or any derivative work under
    Plain Text
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Jan 18 20:25:38 GMT 2016
    - 25.8K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbTreeConnection.java

                return t.getShare();
            }
        }
    
    
        /**
         * 
         * Only call this method while holding a tree handle
         * 
         * @param other
         * @return whether the connection refers to the same tree
         */
        public boolean isSame ( SmbTreeConnection other ) {
            try ( SmbTreeImpl t1 = getTree();
                  SmbTreeImpl t2 = other.getTree() ) {
                return t1 == t2;
            }
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Tue Jul 07 10:50:16 GMT 2020
    - 31K bytes
    - Viewed (0)
Back to top