- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for testPredicates (0.12 sec)
-
guava-tests/test/com/google/common/io/MoreFilesTest.java
assertEquals("blah", MoreFiles.getNameWithoutExtension(root().resolve("foo.bar/blah"))); assertEquals("blah", MoreFiles.getNameWithoutExtension(root().resolve("foo/.bar/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. */
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 17 02:42:09 UTC 2024 - 27.4K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/io/FilesTest.java
} }; File asciiFile = getTestFile("ascii.txt"); byte[] result = Files.readBytes(asciiFile, processor); assertEquals(1, result.length); } public void testPredicates() throws IOException { File asciiFile = getTestFile("ascii.txt"); File dir = asciiFile.getParentFile(); assertTrue(Files.isDirectory().apply(dir)); assertFalse(Files.isFile().apply(dir));
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jul 23 14:22:54 UTC 2024 - 22.1K bytes - Viewed (0) -
guava-tests/test/com/google/common/io/FilesTest.java
} }; File asciiFile = getTestFile("ascii.txt"); byte[] result = Files.readBytes(asciiFile, processor); assertEquals(1, result.length); } public void testPredicates() throws IOException { File asciiFile = getTestFile("ascii.txt"); File dir = asciiFile.getParentFile(); assertTrue(Files.isDirectory().apply(dir)); assertFalse(Files.isFile().apply(dir));
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jul 23 14:22:54 UTC 2024 - 22.1K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/io/MoreFilesTest.java
assertEquals("blah", MoreFiles.getNameWithoutExtension(root().resolve("foo.bar/blah"))); assertEquals("blah", MoreFiles.getNameWithoutExtension(root().resolve("foo/.bar/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. */
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 31 16:07:00 UTC 2024 - 26.5K bytes - Viewed (0)