Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 413 for logs (0.4 sec)

  1. src/main/java/org/codelibs/fess/app/web/api/admin/backup/ApiAdminBackupAction.java

        }
    
        /**
         * Downloads a specific backup file by ID.
         * Supports various backup formats including system properties, bulk data, and NDJSON logs.
         *
         * @param id the backup file ID to download
         * @return stream response containing the backup file data
         */
        // GET /api/admin/backup/file/{id}
        @Execute
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/job/ExecJob.java

        /** Flag indicating whether to use local Fesen instance */
        protected boolean useLocalFesen = true;
    
        /** Path to the log file for this job execution */
        protected String logFilePath;
    
        /** Log level for this job execution */
        protected String logLevel;
    
        /** Suffix to append to log file names */
        protected String logSuffix = StringUtil.EMPTY;
    
        /** List of JVM options to apply when executing the job */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 14.2K bytes
    - Viewed (0)
  3. src/main/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:17:33 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/ThemeHelper.java

            }
            return themeName;
        }
    
        /**
         * Recursively deletes a directory and all its contents.
         * Does not throw exceptions, only logs warnings if deletion fails.
         *
         * @param dir the directory to delete
         */
        protected void closeQuietly(final Path dir) {
            if (Files.notExists(dir)) {
                if (logger.isDebugEnabled()) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/searchlog/AdminSearchlogAction.java

        /**
         * Displays the details of a specific search log entry.
         *
         * @param crudMode the CRUD mode for the operation
         * @param logType the type of log entry
         * @param id the ID of the search log entry to display
         * @return HTML response for the search log details page
         */
        @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.4K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.17.md

    - A new `--prefix` flag added into kubectl logs which prepends each log line with information about it's source (pod name and container name) ([#76471](https://github.com/kubernetes/kubernetes/pull/76471), [@m1kola](https://github.com/m1kola))
    
    ## API Changes
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Thu Jan 28 10:44:33 UTC 2021
    - 346.2K bytes
    - Viewed (1)
  7. src/main/java/org/codelibs/fess/app/pager/JobLogPager.java

    import java.io.Serializable;
    import java.util.List;
    
    import org.codelibs.fess.util.ComponentUtil;
    
    /**
     * Pager class for managing job log pagination in the admin interface.
     * This class handles pagination functionality for job log listings and provides
     * search criteria for filtering job logs.
     */
    public class JobLogPager implements Serializable {
    
        /** Serial version UID for serialization */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/io/CloseablesTest.java

      // exception.
      private void setupCloseable(boolean shouldThrow) throws IOException {
        mockCloseable = mock(Closeable.class);
        if (shouldThrow) {
          doThrow(new IOException("This should only appear in the logs. It should not be rethrown."))
              .when(mockCloseable)
              .close();
        }
      }
    
      private void doClose(Closeable closeable, boolean swallowException) throws IOException {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Dec 19 18:03:30 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/timer/SystemMonitorTarget.java

    import org.opensearch.monitor.os.OsStats;
    import org.opensearch.monitor.process.ProcessProbe;
    
    /**
     * This class is a timer target for monitoring system-level statistics.
     * It collects and logs information about the operating system, process,
     * JVM, and search engine.
     */
    public class SystemMonitorTarget extends MonitorTarget {
        private static final Logger logger = LogManager.getLogger(SystemMonitorTarget.class);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  10. src/packaging/deb/init.d/fess

    #MAX_LOCKED_MEMORY=
    
    # Fess log directory
    LOG_DIR=${packaging.fess.log.dir}
    
    # Fess data directory
    DATA_DIR=${packaging.fess.var.dir}
    
    # Fess configuration directory
    CONF_DIR=${packaging.fess.conf.dir}
    
    # Maximum number of VMA (Virtual Memory Areas) a process can own
    MAX_MAP_COUNT=262144
    
    # Path to the GC log file
    #FESS_GC_LOG_FILE=/var/log/fess/gc.log
    
    # Fess PID file directory
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Jan 15 06:32:15 UTC 2023
    - 5.8K bytes
    - Viewed (0)
Back to top