Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 43 for Logs (0.01 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/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)
  3. 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
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 40.7K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/entity/QueryContextTest.java

        }
    
        // Test constructor with isQuery true and no existing field logs
        public void test_constructor_isQueryTrueNoExistingFieldLogs() {
            queryContext = new QueryContext("test", true);
            assertEquals("test", queryContext.getQueryString());
    
            // Verify that field logs are created
            Object fieldLogs = getMockRequest().getAttribute(Constants.FIELD_LOGS);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 17.4K bytes
    - Viewed (0)
  5. okhttp-logging-interceptor/src/main/kotlin/okhttp3/logging/HttpLoggingInterceptor.kt

        var level = Level.NONE
    
        enum class Level {
          /** No logs. */
          NONE,
    
          /**
           * Logs request and response lines.
           *
           * Example:
           * ```
           * --> POST /greeting http/1.1 (3-byte body)
           *
           * <-- 200 OK (22ms, 6-byte body)
           * ```
           */
          BASIC,
    
          /**
           * Logs request and response lines and their respective headers.
           *
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Aug 21 14:27:04 UTC 2025
    - 11.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/SearchLogHelper.java

        /** Queue for storing search logs. */
        protected Queue<SearchLog> searchLogQueue = new ConcurrentLinkedQueue<>();
    
        /** Queue for storing click logs. */
        protected Queue<ClickLog> clickLogQueue = new ConcurrentLinkedQueue<>();
    
        /** Cache for storing user information. */
        protected LoadingCache<String, UserInfo> userInfoCache;
    
        /** Name of the logger for search logs. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 26.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/api/ApiResult.java

            }
    
            /**
             * The total number of logs.
             */
            protected long total = 0;
    
            /**
             * Sets the list of log entries.
             * @param logs The list of log entries.
             * @return This ApiLogsResponse instance.
             */
            public ApiLogsResponse<T> logs(final List<T> logs) {
                this.logs = logs;
                return this;
            }
    
            /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/service/SearchLogService.java

    import jakarta.annotation.Resource;
    
    /**
     * Service class for managing search logs and related analytics.
     *
     * This service provides functionality for querying, aggregating, and managing
     * various types of search logs including search logs, click logs, favorite logs,
     * and user information logs. It supports different aggregation types for
     * analytics and reporting purposes.
     */
    public class SearchLogService {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 32.7K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/job/PurgeLogJobTest.java

            assertEquals(5, userInfoDeletedDays[0]);
    
            // Assert skip message for job logs only
            assertTrue(result.contains("Skipped to purge job logs"));
            assertFalse(result.contains("Skipped to purge search logs"));
            assertFalse(result.contains("Skipped to purge user info logs"));
        }
    
        // Test exception in searchLogService
        public void test_execute_searchLogException() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 32.5K bytes
    - Viewed (0)
  10. okhttp-logging-interceptor/src/test/java/okhttp3/logging/HttpLoggingInterceptorTest.kt

          apply {
            assertThat(index, "No more messages found")
              .isLessThan(logs.size)
            assertThat(logs[index++])
              .matches(Regex(prefix.pattern + regex.pattern, RegexOption.DOT_MATCHES_ALL))
          }
    
        fun assertNoMoreLogs() {
          assertThat(logs.size, "More messages remain: ${logs.subList(index, logs.size)}")
            .isEqualTo(index)
        }
    
        override fun log(message: String) {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Aug 21 14:27:04 UTC 2025
    - 37.5K bytes
    - Viewed (0)
Back to top