Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for simplifyPath (0.34 sec)

  1. guava-tests/test/com/google/common/io/FilesSimplifyPathTest.java

        assertEquals("/a/b/c/g?y", simplifyPath("/a/b/c/g?y"));
        assertEquals("/a/b/c/g#s", simplifyPath("/a/b/c/g#s"));
        assertEquals("/a/b/c/g?y#s", simplifyPath("/a/b/c/g?y#s"));
        assertEquals("/a/b/c/;x", simplifyPath("/a/b/c/;x"));
        assertEquals("/a/b/c/g;x", simplifyPath("/a/b/c/g;x"));
        assertEquals("/a/b/c/g;x?y#s", simplifyPath("/a/b/c/g;x?y#s"));
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Tue Jul 19 14:00:24 GMT 2016
    - 11K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/io/FilesSimplifyPathTest.java

        assertEquals("/a/b/c/g?y", simplifyPath("/a/b/c/g?y"));
        assertEquals("/a/b/c/g#s", simplifyPath("/a/b/c/g#s"));
        assertEquals("/a/b/c/g?y#s", simplifyPath("/a/b/c/g?y#s"));
        assertEquals("/a/b/c/;x", simplifyPath("/a/b/c/;x"));
        assertEquals("/a/b/c/g;x", simplifyPath("/a/b/c/g;x"));
        assertEquals("/a/b/c/g;x?y#s", simplifyPath("/a/b/c/g;x?y#s"));
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri Apr 21 02:27:51 GMT 2017
    - 11K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/io/Files.java

       * the path {@code a/../b}, which {@code simplifyPath} will change to {@code b}. If {@code a} is a
       * symlink to {@code x}, {@code a/../b} may refer to a sibling of {@code x}, rather than the
       * sibling of {@code a} referred to by {@code b}.
       *
       * @since 11.0
       */
      public static String simplifyPath(String pathname) {
        checkNotNull(pathname);
        if (pathname.length() == 0) {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 15 16:12:13 GMT 2024
    - 33.1K bytes
    - Viewed (0)
Back to top