Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for nonExisting (0.04 seconds)

  1. src/test/java/org/codelibs/fess/thumbnail/impl/CommandGeneratorTest.java

            Path tempDir = Files.createTempDirectory("toctou_cmd_test");
            try {
                Path nonExisting = tempDir.resolve("non_existing.tmp");
                assertFalse(Files.exists(nonExisting));
    
                boolean deleted = Files.deleteIfExists(nonExisting);
    
                assertFalse(deleted);
            } finally {
                deleteDirectory(tempDir.toFile());
            }
        }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 27.8K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/ds/DataStoreFactoryTest.java

        }
    
        // Test getDataStore with non-existing name
        @Test
        public void test_getDataStore_nonExistingName() {
            DataStore retrieved = dataStoreFactory.getDataStore("nonExisting");
            assertNull(retrieved);
        }
    
        // Test getDataStore with null name
        @Test
        public void test_getDataStore_nullName() {
            DataStore retrieved = dataStoreFactory.getDataStore(null);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 18.2K bytes
    - Click Count (0)
Back to Top