Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for Logs (0.03 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  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. .gitignore

    /dbflute_fess/extlib/*
    /dbflute_fess/log/*.log
    /dbflute_h2/log/*.log
    /dbflute_mysql/log/*.log
    /dbflute_oracle/log/*.log
    /src/main/webapp/WEB-INF/conf/*.properties
    /src/main/webapp/WEB-INF/db/*.lock.db
    /src/main/webapp/WEB-INF/logs/fess*
    /.settings/
    .project
    .classpath
    *.iml
    .idea
    .vscode
    .DS_Store
    /plugins/
    /modules/
    /tomcat.8080/
    dbflute_fess/output/doc/lastadoc-fess.html
    dbflute_fess/schema/project-lastadoc-fess.json
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/api/admin/failureurl/ApiAdminFailureurlAction.java

        // GET /api/admin/failureurl/logs
        // PUT /api/admin/failureurl/logs
        /**
         * Retrieves failure URL logs with pagination.
         *
         * @param body the search criteria
         * @return JSON response containing the failure URL logs
         */
        @Execute
        public JsonResponse<ApiResult> logs(final SearchBody body) {
            validateApi(body, messages -> {});
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/api/admin/crawlinginfo/ApiAdminCrawlinginfoAction.java

        /**
         * Retrieves crawling info logs with pagination support.
         *
         * @param body the search body containing pagination and filter parameters
         * @return JSON response containing list of crawling info logs
         */
        // GET /api/admin/crawlinginfo/logs
        // PUT /api/admin/crawlinginfo/logs
        @Execute
        public JsonResponse<ApiResult> logs(final SearchBody body) {
            validateApi(body, messages -> {});
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 6.1K bytes
    - Viewed (0)
Back to top