- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for deleteTempDir (0.12 sec)
-
src/main/java/org/codelibs/fess/job/ExecJob.java
.forEach(k -> addSystemProperty(cmdList, k.toString(), null, null)); } } protected void deleteTempDir(final File ownTmpDir) { if (ownTmpDir == null) { return; } if (!FileUtils.deleteQuietly(ownTmpDir)) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 7.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/GenerateThumbnailJob.java
} finally { if (propFile != null && !propFile.delete()) { logger.warn("Failed to delete {}.", propFile.getAbsolutePath()); } deleteTempDir(ownTmpDir); } } } @Override protected String getExecuteType() { return Constants.EXECUTE_TYPE_THUMBNAIL; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:20:39 UTC 2024 - 10.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/SuggestJob.java
} finally { if (propFile != null && !propFile.delete()) { logger.warn("Failed to delete {}.", propFile.getAbsolutePath()); } deleteTempDir(ownTmpDir); } } } @Override protected String getExecuteType() { return Constants.EXECUTE_TYPE_SUGGEST; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sun Jun 23 04:13:47 UTC 2024 - 10K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/CrawlJob.java
} finally { if (propFile != null && !propFile.delete()) { logger.warn("Failed to delete {}.", propFile.getAbsolutePath()); } deleteTempDir(ownTmpDir); } } } @Override protected String getExecuteType() { return Constants.EXECUTE_TYPE_CRAWLER; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sun Jun 23 04:13:47 UTC 2024 - 15.1K bytes - Viewed (0)