Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for pathNamesPossiblyEqual (0.21 sec)

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

                return false;
            }
    
            SmbResourceLocatorImpl o = (SmbResourceLocatorImpl) obj;
    
            /*
             * If uncertain, pathNamesPossiblyEqual returns true.
             * Comparing canonical paths is definitive.
             */
            if ( pathNamesPossiblyEqual(this.url.getPath(), o.url.getPath()) ) {
                if ( getURLPath().equalsIgnoreCase(o.getURLPath()) ) {
                    try {
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Sat Jul 20 08:24:53 GMT 2019
    - 23.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbFile.java

                boolean ret;
    
                if (this == f)
                    return true;
    
                /* If uncertain, pathNamesPossiblyEqual returns true.
                 * Comparing canonical paths is definitive.
                 */
                if (pathNamesPossiblyEqual(url.getPath(), f.url.getPath())) {
    
                    getUncPath0();
                    f.getUncPath0();
    
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 107.9K bytes
    - Viewed (2)
Back to top