Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for testPredicates (0.07 seconds)

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

              }
            };
    
        File asciiFile = getTestFile("ascii.txt");
        byte[] result = Files.readBytes(asciiFile, processor);
        assertThat(result).hasLength(1);
      }
    
      public void testPredicates() throws IOException {
        File asciiFile = getTestFile("ascii.txt");
        File dir = asciiFile.getParentFile();
        assertTrue(Files.isDirectory().apply(dir));
        assertFalse(Files.isFile().apply(dir));
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 19 18:53:45 GMT 2026
    - 22.8K bytes
    - Click Count (0)
  2. guava-tests/test/com/google/common/io/MoreFilesTest.java

        assertThat(MoreFiles.getNameWithoutExtension(root().resolve("foo/.bar/blah")))
            .isEqualTo("blah");
      }
    
      public void testPredicates() throws IOException {
        /*
         * We use a fake filesystem to sidestep the lack of support for symlinks in the default
         * filesystem under Android's desugared java.nio.file.
         */
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Mar 17 19:26:39 GMT 2026
    - 27.5K bytes
    - Click Count (0)
  3. android/guava-tests/test/com/google/common/io/MoreFilesTest.java

        assertThat(MoreFiles.getNameWithoutExtension(root().resolve("foo/.bar/blah")))
            .isEqualTo("blah");
      }
    
      public void testPredicates() throws IOException {
        /*
         * We use a fake filesystem to sidestep the lack of support for symlinks in the default
         * filesystem under Android's desugared java.nio.file.
         */
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Mar 17 19:26:39 GMT 2026
    - 26.6K bytes
    - Click Count (0)
Back to Top