Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 135 for Logs (0.18 sec)

  1. CHANGELOG/CHANGELOG-1.29.md

    ### CVE-2024-5321: Incorrect permissions on Windows containers logs
    
    A security issue was discovered in Kubernetes clusters with Windows nodes
    where BUILTIN\Users may be able to read container logs and NT
    AUTHORITY\Authenticated Users may be able to modify container logs.
    
    **Affected Versions**:
      - kubelet <= 1.27.15
      - kubelet <= 1.28.11
      - kubelet <= 1.29.6
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Mar 12 00:36:01 UTC 2025
    - 429.6K bytes
    - Viewed (1)
  2. src/main/webapp/WEB-INF/env/suggest/resources/log4j2.xml

    		<Property name="root.log.level" value="${sys:fess.log.level:-warn}" />
    		<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}" />
    		<Property name="backup.max.history" value="10" />
    	</Properties>
    
    	<Appenders>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Mon Feb 20 13:05:30 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. src/main/webapp/WEB-INF/env/thumbnail/resources/log4j2.xml

    		<Property name="root.log.level" value="${sys:fess.log.level:-warn}" />
    		<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}" />
    		<Property name="backup.max.history" value="10" />
    	</Properties>
    
    	<Appenders>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Mon Feb 20 13:05:30 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/joblog/EditForm.java

    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.
         */
        public EditForm() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/joblog/AdminJoblogAction.java

            return asHtml(path_AdminJoblog_AdminJoblogJsp).renderWith(data -> {
                searchPaging(data, form);
            });
        }
    
        /**
         * Searches job logs based on the form criteria.
         *
         * @param form the search form
         * @return HTML response for the search results
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
    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/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)
  7. mkdocs.yml

        - 'Providers': security/security_providers.md
        - 'Configuration History': security/tls_configuration_history.md
      - 'Works with OkHttp': works_with_okhttp.md
      - 'API': 5.x/okhttp/okhttp3/
      - 'Change Logs':
        - 'Change Log': changelogs/changelog.md
        - '4.x Change Log': changelogs/changelog_4x.md
        - 'Upgrading to OkHttp 4': changelogs/upgrading_to_okhttp_4.md
        - '3.x Change Log': changelogs/changelog_3x.md
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Nov 21 07:19:31 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  8. 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
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jun 28 08:40:50 UTC 2025
    - 40.7K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/it/admin/JobLogTests.java

    public class JobLogTests extends CrudTestBase {
    
        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;
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jun 19 07:14:01 UTC 2025
    - 2.5K 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