Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for compareNames (0.25 sec)

  1. src/main/java/jcifs/smb1/http/NetworkExplorer.java

                while(( n = in.read( buf )) != -1 ) {
                    out.write( buf, 0, n );
                }
            }
            // TODO catch IOException
        }
        protected int compareNames( SmbFile f1, String f1name, SmbFile f2 ) throws IOException {
            if( f1.isDirectory() != f2.isDirectory() ) {
                return f1.isDirectory() ? -1 : 1;
            }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Wed Jan 22 03:57:31 UTC 2020
    - 19.7K bytes
    - Viewed (0)
  2. src/main/java/jcifs/http/NetworkExplorer.java

                resp.setHeader("Accept-Ranges", "Bytes");
    
                while ( ( n = in.read(buf) ) != -1 ) {
                    out.write(buf, 0, n);
                }
            }
        }
    
    
        protected int compareNames ( SmbFile f1, String f1name, SmbFile f2 ) throws IOException {
            if ( f1.isDirectory() != f2.isDirectory() ) {
                return f1.isDirectory() ? -1 : 1;
            }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 21.3K bytes
    - Viewed (0)
  3. src/internal/trace/traceviewer/static/trace_viewer_full.html

    compareNames(other){return this.name.localeCompare(other.name);}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (0)
Back to top