Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 20 for logfile (0.04 seconds)

  1. src/main/webapp/WEB-INF/view/admin/log/admin_log.jsp

                                                <c:forEach var="logFile" varStatus="s"
                                                           items="${logFileItems}">
                                                    <tr
                                                            data-href="${contextPath}/admin/log/download/${f:u(logFile.id)}/">
                                                        <td>${f:h(logFile.name)}</td>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 4.1K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/helper/SystemHelperTest.java

        }
    
        @Test
        public void test_getLogFilePath() {
            final File logFile = new File(systemHelper.getLogFilePath());
            assertEquals("logs", logFile.getName());
            assertEquals("target", logFile.getParentFile().getName());
            try {
                System.setProperty("fess.log.path", "logpath");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 44.4K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * Get the value for the key 'logging.search.use.logfile'. <br>
         * The value is, e.g. true <br>
         * comment: Whether to use a log file for search logging.
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getLoggingSearchUseLogfile();
    
        /**
         * Is the property for the key 'logging.search.use.logfile' true? <br>
         * The value is, e.g. true <br>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 576.9K bytes
    - Click Count (2)
  4. src/main/resources/fess_config.properties

    # Whether to use a log file for search logging.
    logging.search.use.logfile=true
    # Maximum queue size for search logging.
    logging.search.max.queue.size=10000
    # Maximum queue size for click logging.
    logging.click.max.queue.size=10000
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 59.3K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/app/web/admin/design/AdminDesignActionTest.java

        @Test
        public void test_isValidUploadPath_pathTraversal_outsideBase() throws Exception {
            // Test file outside base directory
            File baseDir = new File(tempDir.toFile(), "images");
            baseDir.mkdirs();
            File outsideFile = new File(tempDir.toFile(), "css/style.css");
    
            Boolean result = invokeIsValidUploadPath(outsideFile, baseDir);
            assertFalse("File outside base directory should be blocked", result);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 13.6K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/app/web/base/FessAdminActionTest.java

                assertTrue("Error message should contain var path: " + message, message.contains(varDir.toFile().getCanonicalPath()));
                assertTrue("Error message should contain webapp path: " + message, message.contains(webappDir.toFile().getCanonicalPath()));
                assertTrue("Error message should contain conf path: " + message, message.contains(confDir.toFile().getCanonicalPath()));
            }
        }
    
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 22.7K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/thumbnail/ThumbnailGeneratorTest.java

        protected void setUp(TestInfo testInfo) throws Exception {
            super.setUp(testInfo);
            tempDir = Files.createTempDirectory("thumbnail-test");
            tempOutputFile = Files.createTempFile(tempDir, "thumbnail", ".png").toFile();
    
            // Create a test implementation of ThumbnailGenerator
            thumbnailGenerator = new TestThumbnailGenerator();
        }
    
        @Override
        protected void tearDown(TestInfo testInfo) throws Exception {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 11.7K bytes
    - Click Count (0)
  8. src/main/resources/log4j2.xml

    			<AppenderRef ref="LlmFile" />
    		</Logger>
    		<Logger name="org.codelibs.fess.chat" additivity="false" level="${llm.log.level}">
    			<AppenderRef ref="LlmFile" />
    		</Logger>
    		<Logger name="org.codelibs.fess.api.chat" additivity="false" level="${llm.log.level}">
    			<AppenderRef ref="LlmFile" />
    		</Logger>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 5.2K bytes
    - Click Count (0)
  9. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild/testcleanup/TestFilesCleanupService.kt

            .listFiles()
            ?.associateWith { dir ->
                val dirPath = dir.toPath()
                Files.walk(dirPath).use { paths ->
                    paths.filter { !it.toFile().isDirectory }
                        .limit(4)
                        .map { dirPath.relativize(it).toString() }
                        .collect(Collectors.toList())
                }
            }?.filter {
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Feb 11 11:05:07 GMT 2026
    - 14.3K bytes
    - Click Count (1)
  10. src/test/java/org/codelibs/fess/thumbnail/impl/HtmlTagBasedGeneratorTest.java

                assertTrue(Files.exists(nestedPath));
                assertTrue(Files.isDirectory(nestedPath));
            } finally {
                // Cleanup
                deleteDirectory(tempDir.toFile());
            }
        }
    
        @Test
        public void test_createDirectories_existingPath() throws Exception {
            // Test that Files.createDirectories is idempotent (no exception on existing dir)
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 7.5K bytes
    - Click Count (0)
Back to Top