- Sort Score
- Result 10 results
- Languages All
Results 1 - 7 of 7 for directories (0.05 sec)
-
src/test/java/org/codelibs/fess/thumbnail/ThumbnailManagerTest.java
File emptyDir = new File(tempDir, "empty"); emptyDir.mkdirs(); assertTrue(emptyDir.exists()); // Simulate the behavior of postVisitDirectory - delete empty directories if (emptyDir.isDirectory() && emptyDir.list().length == 0) { emptyDir.delete(); } assertFalse(emptyDir.exists()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 18.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java
* Expiration time in milliseconds for no-image placeholder files. */ protected long noImageExpired = 24 * 60 * 60 * 1000L; // 24 hours /** * Hash size for splitting thumbnail storage directories. */ protected int splitHashSize = 10; /** * Default constructor for ThumbnailManager. */ public ThumbnailManager() { // Default constructor }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 26.9K bytes - Viewed (0) -
pom.xml
<type>perm</type> <filemode>755</filemode> <user>${packaging.fess.user}</user> <group>${packaging.fess.group}</group> </mapper> </data> <!-- Add log and temp directories --> <data> <type>template</type> <paths> <path>${packaging.fess.log.dir}</path> <path>${packaging.fess.temp.dir}</path> </paths> <mapper>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Sep 04 05:22:58 UTC 2025 - 49.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/storage/AdminStorageAction.java
@Execute @Secured({ ROLE, ROLE + VIEW }) public HtmlResponse index() { saveToken(); return asListHtml(StringUtil.EMPTY); } /** * Displays a list of files and directories in the specified path. * * @param id the encoded path ID to list (optional) * @return action response with the storage list or redirect */ @Execute @Secured({ ROLE, ROLE + VIEW })
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 25.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/GenerateThumbnailJobTest.java
assertSame(thumbnailJob, result); assertTrue(thumbnailJob.cleanup); } // Test execute method with successful execution public void test_execute_success() { // Create necessary directories in temp dir new File(tempDir, "WEB-INF/lib").mkdirs(); new File(tempDir, "WEB-INF/env/thumbnail/lib").mkdirs(); new File(tempDir, "WEB-INF/plugin").mkdirs();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 18.8K bytes - Viewed (0) -
guava-gwt/pom.xml
<!-- TODO(cpovirk): Why do we have separate src and src-super directories, anyway? --> <resource> <directory>${project.build.directory}/guava-gwt-sources</directory> </resource> </resources> <testResources> <testResource>
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Sep 04 21:35:58 UTC 2025 - 19.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/SuggestJobTest.java
if (tempDir != null && tempDir.exists()) { deleteDirectory(tempDir); } super.tearDown(); } private void createRequiredDirectories() { // Create necessary directories for SuggestJob execution new File(tempDir, "WEB-INF/lib").mkdirs(); new File(tempDir, "WEB-INF/env/suggest/lib").mkdirs(); new File(tempDir, "WEB-INF/plugin").mkdirs(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 31.4K bytes - Viewed (0)