Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 413 for logs (0.01 sec)

  1. docs/works_with_okhttp.md

     * ⬜️ [Moshi](https://github.com/square/moshi): A modern JSON library for Android and Java.
     * [Ok2Curl](https://github.com/mrmike/Ok2Curl): Convert OkHttp requests into curl logs.
     * [OkHttp AWS Signer](https://github.com/babbel/okhttp-aws-signer): AWS V4 signing algorithm for OkHttp requests
     * [okhttp-digest](https://github.com/rburgst/okhttp-digest): A digest authenticator for OkHttp.
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Feb 15 16:18:51 UTC 2025
    - 3.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/joblog/EditForm.java

    import org.lastaflute.web.validation.Required;
    import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
    
    /**
     * Form class for editing job log entries in the admin interface.
     * This form handles the editing of system job execution logs,
     * providing details about scheduled tasks and their execution status.
     */
    public class EditForm {
    
        /**
         * Creates a new EditForm instance.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.3K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/it/CrawlTestBase.java

            final Map<String, Object> searchBody = new HashMap<>();
            final String response = checkMethodBase(searchBody).get("/api/admin/" + apiName + "/logs").asString();
            final List<Map<String, Object>> itemList = JsonPath.from(response).getList("response.logs");
            logger.info("itemList: {}", itemList);
            return itemList;
        }
    
        protected static Response deleteMethod(final String path) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 10K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/env/crawler/resources/log4j2.xml

    <Configuration status="WARN">
    
    	<Properties>
    		<Property name="domain.name" value="${sys:fess.log.name:-fess}" />
    		<Property name="log.level" value="${sys:fess.log.level:-debug}" />
    		<Property name="root.log.level" value="${sys:fess.log.level:-info}" />
    		<Property name="log.pattern" value="%d [%t] %-5p %msg%n" />
    		<Property name="log.file.basedir" value="${sys:fess.log.path:-target/logs}" />
    		<Property name="backup.date.suffix" value="_%d{yyyyMMdd}" />
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Mon Feb 20 13:05:30 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/joblog/AdminJoblogAction.java

    import jakarta.annotation.Resource;
    
    /**
     * Admin action for Job Log.
     *
     */
    public class AdminJoblogAction extends FessAdminAction {
    
        /**
         * Default constructor.
         */
        public AdminJoblogAction() {
            super();
        }
    
        /** The role name for job log administration. */
        public static final String ROLE = "admin-joblog";
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 10.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/exec/SuggestCreator.java

    import jakarta.annotation.Resource;
    
    /**
     * This class is a command-line application for creating and managing the suggest index.
     * It provides functionality to index words from documents and search logs, as well as
     * to purge old suggest data.
     */
    public class SuggestCreator {
    
        /**
         * Constructs a new suggest creator.
         */
        public SuggestCreator() {
            // do nothing
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 11K bytes
    - Viewed (0)
  7. src/main/resources/fess_label.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: Sat Jun 28 08:40:50 UTC 2025
    - 40.7K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/it/admin/JobLogTests.java

        private static final String NAME_PREFIX = "joblogTest_";
        private static final String API_PATH = "/api/admin/joblog";
        private static final String LIST_ENDPOINT_SUFFIX = "logs";
        private static final String ITEM_ENDPOINT_SUFFIX = "log";
    
        private static final String KEY_PROPERTY = "";
    
        @Override
        protected String getNamePrefix() {
            return NAME_PREFIX;
        }
    
        @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jun 19 07:14:01 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/thumbnail/impl/CommandGenerator.java

         * <p>
         * This method starts a process with the given command list, manages its execution,
         * handles timeouts, and logs relevant information. It ensures the process is destroyed
         * if it exceeds the allowed execution time or becomes unresponsive. The method also
         * captures and logs the process output for debugging purposes.
         * </p>
         *
         * @param thumbnailId the identifier for the thumbnail being generated
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Fri Jul 18 14:34:06 UTC 2025
    - 14.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/base/FessAdminAction.java

            } catch (final UserRoleLoginException e) {
                return redirect(e.getActionClass());
            }
        }
    
        /**
         * Hook method called before action execution.
         * <p>
         * This method logs user access activity for the current request.
         * </p>
         *
         * @param runtime the action runtime context
         * @return the action response from the parent hook
         */
        @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 7.1K bytes
    - Viewed (0)
Back to top