Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 413 for logs (0.05 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java

        /**
         * Number of days to keep search logs before purging.
         * Set to -1 to disable automatic purging of search logs.
         */
        @Min(-1)
        @Max(100000)
        @ValidateTypeFailure
        public Integer purgeSearchLogDay;
    
        /**
         * Number of days to keep job logs before purging.
         * Set to -1 to disable automatic purging of job logs.
         */
        @Min(-1)
        @Max(100000)
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  2. src/test/resources/run.sh

    #!/bin/bash
    
    touch $(ls -d ./fess-*/logs)/fess-crawler.log
    tail -f ./fess-*/logs/*.log &
    
    mvn test -P integrationTests -Dtest.fess.url="http://localhost:8080" -Dtest.search_engine.url="http://localhost:9201"
    ret=$?
    
    if [ $ret != 0 ] ; then
      for f in `find ./target -type f | grep surefire-reports | grep -v /TEST-` ; do
        cat $f
      done
    fi
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Feb 10 03:25:34 UTC 2024
    - 353 bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/SuggestHelper.java

                cb.specify().doColumn("searchField.*");
            }, this::indexFromSearchLog);
        }
    
        /**
         * Indexes suggest data from a list of search logs.
         *
         * @param searchLogList The list of search logs to index.
         */
        public void indexFromSearchLog(final List<SearchLog> searchLogList) {
            final Map<String, LocalDateTime> duplicateSessionMap = new HashMap<>();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 22.3K bytes
    - Viewed (0)
  4. okhttp/src/jvmTest/kotlin/okhttp3/TestLogHandler.kt

              afterEach(null)
            }
          }
        }
    
      fun takeAll(): List<String> {
        val list = mutableListOf<String>()
        logs.drainTo(list)
        return list
      }
    
      fun take(): String =
        logs.poll(10, TimeUnit.SECONDS)
          ?: throw AssertionError("Timed out waiting for log message.")
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  5. src/main/resources/fess_label_en.properties

    labels.supported_search_web=Web
    labels.supported_search_none=Unavailable
    labels.purge_search_log_day=Delete old search logs
    labels.purge_job_log_day=Delete old job logs
    labels.purge_user_info_day=Delete old user logs
    labels.purge_by_bots=Bot names to delete logs
    labels.log_level=Log Level
    labels.csv_file_encoding=CSV File Encoding
    labels.notification_to=Notification Mail
    labels.pathmap_configuration=Path Mapping
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 40.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/api/admin/joblog/ApiAdminJoblogAction.java

        // GET /api/admin/joblog/logs
        /**
         * Returns list of job logs.
         * Supports filtering and pagination for job execution history.
         *
         * @param body search parameters for filtering and pagination
         * @return JSON response containing job logs list with pagination info
         */
        @Execute
        public JsonResponse<ApiResult> logs(final SearchBody body) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/job/PurgeLogJob.java

    import org.codelibs.fess.helper.SystemHelper;
    import org.codelibs.fess.util.ComponentUtil;
    
    /**
     * Job for purging old log entries from the system.
     * This job removes old crawling sessions, search logs, job logs, and user info logs
     * based on configured retention periods. It helps maintain system performance by
     * preventing log tables from growing too large.
     */
    public class PurgeLogJob {
    
        /** Logger instance for this class */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.6K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/entity/QueryContextTest.java

            // Verify that highlighting and field log are initialized
            assertNotNull(getMockRequest().getAttribute(Constants.HIGHLIGHT_QUERIES));
            assertNotNull(getMockRequest().getAttribute(Constants.FIELD_LOGS));
        }
    
        // Test constructor with isQuery true and no existing field logs
        public void test_constructor_isQueryTrueNoExistingFieldLogs() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 17.4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/searchlog/SearchForm.java

        public String queryId;
    
        /**
         * The user session ID field for filtering logs by session.
         */
        public String userSessionId;
    
        /**
         * The requested time range field for filtering logs by date.
         */
        public String requestedTimeRange;
    
        /**
         * The access type field for filtering logs by access method.
         */
        public String accessType;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  10. android-test/src/test/kotlin/okhttp/android/test/AndroidLoggingTest.kt

        try {
          client.newCall(request).execute()
        } catch (uhe: UnknownHostException) {
          // expected
        }
    
        val logs = ShadowLog.getLogsForTag(AndroidPlatform.Tag)
        assertThat(logs.map { it.type }).containsOnly(Log.INFO)
        assertThat(
          logs.map {
            it.msg.replace(
              "\\d+".toRegex(),
              "",
            )
          },
        ).containsExactly(
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Aug 21 14:27:04 UTC 2025
    - 3.2K bytes
    - Viewed (0)
Back to top