Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for deleteQuietly (0.14 sec)

  1. src/main/java/org/codelibs/fess/job/ExecJob.java

         * @param ownTmpDir the temporary directory to delete
         */
        protected void deleteTempDir(final File ownTmpDir) {
            if (ownTmpDir == null) {
                return;
            }
            if (!FileUtils.deleteQuietly(ownTmpDir)) {
                logger.warn("Could not delete a temp dir: {}", ownTmpDir.getAbsolutePath());
            }
        }
    
        /**
         * Appends JAR files from the specified directory to the classpath buffer.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 14.2K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/job/ExecJobTest.java

                public LaJobRuntime getJobRuntime() {
                    return null;
                }
            }, "jobHelper");
        }
    
        @Override
        public void tearDown() throws Exception {
            FileUtils.deleteQuietly(tempDir);
    
            // Restore original helpers
            if (originalSystemHelper != null) {
                ComponentUtil.register(originalSystemHelper, "systemHelper");
            }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 24.5K bytes
    - Viewed (0)
Back to top