- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 421 for logged (2.37 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java
@Required @Min(0) @Max(100) @ValidateTypeFailure public Integer crawlingThreadCount; /** * Enable or disable search query logging. * When enabled, user search queries are logged for analysis. */ @Size(max = 10) public String searchLog; /** * Enable or disable user information tracking. * When enabled, user information is stored and tracked. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/sso/SsoAction.java
if (ssoManager.available()) { if (logger.isDebugEnabled()) { logger.debug("SSO is available but no user found."); } saveError(messages -> messages.addErrorsSsoLoginError(GLOBAL)); } if (logger.isDebugEnabled()) { logger.debug("Redirecting to login page."); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/FessBaseAction.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 15K bytes - Viewed (0) -
src/main/java/org/codelibs/core/sql/ResultSetUtil.java
private static final Logger logger = Logger.getLogger(ResultSetUtil.class); /** * Do not instantiate. */ protected ResultSetUtil() { } /** * Closes the result set. * <p> * If {@link ResultSet#close()} throws an exception, an error message is logged. The exception is not rethrown. * </p> * * @param resultSet * The result set
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 2.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/CloseableUtil.java
*/ protected CloseableUtil() { } private static final Logger logger = Logger.getLogger(CloseableUtil.class); /** * Closes a {@link Closeable}. * <p> * If an exception is thrown by {@link Closeable#close()}, an error message is logged. The exception is not rethrown. This prevents the original exception from being lost in situations like the following: * </p> * <pre>
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 2.5K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/ListenableFuture.java
* during {@code Executor.execute} (e.g., a {@code RejectedExecutionException} or an exception * thrown by {@linkplain MoreExecutors#directExecutor direct execution}) will be caught and * logged. * * <p>Note: If your listener is lightweight -- and will not cause stack overflow by completing * more futures or adding more {@code directExecutor()} listeners inline -- consider {@link
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 8K bytes - Viewed (0) -
okhttp-logging-interceptor/README.md
.addInterceptor(logging) .build(); ``` You can change the log level at any time by calling `setLevel()`. To log to a custom location, pass a `Logger` instance to the constructor. ```java HttpLoggingInterceptor logging = new HttpLoggingInterceptor(new Logger() { @Override public void log(String message) { Timber.tag("OkHttp").d(message); } }); ```
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Jul 07 19:32:33 UTC 2025 - 1.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/sql/StatementUtil.java
* * @author higa */ public abstract class StatementUtil { private static final Logger logger = Logger.getLogger(StatementUtil.class); /** * Do not instantiate. */ protected StatementUtil() { } /** * Executes the SQL. * * @param statement * {@link Statement}. Must not be {@literal null}. * @param sql
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/ThreadUtil.java
*/ package org.codelibs.core.lang; import org.codelibs.core.exception.InterruptedRuntimeException; import org.codelibs.core.log.Logger; /** * Utility class for Thread class * * @author shinsuke * */ public abstract class ThreadUtil { private static final Logger logger = Logger.getLogger(ThreadUtil.class); /** * Do not instantiate. */ protected ThreadUtil() { } /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 2.3K bytes - Viewed (0) -
android/guava/src/com/google/common/cache/CacheBuilder.java
return 0; } }; // We use a holder class to delay initialization: https://github.com/google/guava/issues/6566 private static final class LoggerHolder { static final Logger logger = Logger.getLogger(CacheBuilder.class.getName()); } static final int UNSET_INT = -1; boolean strictParsing = true; int initialCapacity = UNSET_INT; int concurrencyLevel = UNSET_INT;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 51.7K bytes - Viewed (0)