- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 518 for logs (0.01 sec)
-
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) -
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) -
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) -
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) -
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) -
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) -
src/main/java/jcifs/smb/NtStatus.java
"The account used is a Computer Account. Use your global user account or local user account to access this server.", "The user must change his password before he logs on the first time.", "The object was not found.", "The referenced account is currently locked out and may not be logged on to.", "Connection refused", "The remote system is not reachable by the transport.",
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 14.9K bytes - Viewed (0) -
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) -
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) -
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)