- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 1,094 for logger (0.08 sec)
-
src/main/java/org/codelibs/fess/app/web/api/admin/FessApiAdminAction.java
* that are validated against the admin role configuration.</p> */ public abstract class FessApiAdminAction extends FessApiAction { /** Logger instance for this class. */ private static final Logger logger = LogManager.getLogger(FessApiAdminAction.class); /** * Default constructor. */ public FessApiAdminAction() { super(); } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 2.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/xml/DocumentBuilderFactoryUtil.java
import org.codelibs.core.exception.ParserConfigurationRuntimeException; import org.codelibs.core.log.Logger; /** * Utility class for {@link DocumentBuilderFactory}. * * @author higa */ public abstract class DocumentBuilderFactoryUtil { private static final Logger logger = Logger.getLogger(DocumentBuilderFactoryUtil.class); /** * Do not instantiate. */
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 2.9K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/toolchain/ToolchainManagerFactory.java
import org.slf4j.Logger; @Named @Singleton @Deprecated(since = "4.0.0") public class ToolchainManagerFactory { private final Lookup lookup; private final Logger logger; @Inject ToolchainManagerFactory(Lookup lookup) { this(lookup, null); } protected ToolchainManagerFactory(Lookup lookup, Logger logger) { this.lookup = lookup;
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Sat May 31 07:20:31 UTC 2025 - 9.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/BoostQueryCommand.java
*/ public class BoostQueryCommand extends QueryCommand { /** * Default constructor for BoostQueryCommand. */ public BoostQueryCommand() { super(); } private static final Logger logger = LogManager.getLogger(BoostQueryCommand.class); @Override protected String getQueryClassName() { return BoostQuery.class.getSimpleName(); } @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.1K bytes - Viewed (0) -
api/maven-api-cli/src/main/java/org/apache/maven/api/cli/logging/AccumulatingLogger.java
import org.apache.maven.api.cli.Logger; import static java.util.Objects.requireNonNull; /** * Early CLI {@link Logger} that simply accumulates log entries until some point a real logger can emit them. This * logger is created at start, and it exists while no logging is available yet. */ public class AccumulatingLogger implements Logger {
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jan 31 20:56:58 UTC 2025 - 1.7K bytes - Viewed (0) -
okhttp-logging-interceptor/src/main/kotlin/okhttp3/logging/LoggingEventListener.kt
logger.log("[$timeMs ms] $message") } open class Factory @JvmOverloads constructor( private val logger: HttpLoggingInterceptor.Logger = HttpLoggingInterceptor.Logger.DEFAULT, ) : EventListener.Factory { override fun create(call: Call): EventListener = LoggingEventListener(logger) } companion object
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Apr 01 11:07:32 UTC 2024 - 5.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImpl.java
* data stores, including bulk operations, document transformation, and error handling. */ public class IndexUpdateCallbackImpl implements IndexUpdateCallback { private static final Logger logger = LogManager.getLogger(IndexUpdateCallbackImpl.class); /** * Default constructor for index update callback implementation. * Creates a new instance with default values. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 10.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ingest/IngestFactory.java
private static final Logger logger = LogManager.getLogger(IngestFactory.class); /** Array of registered ingesters, sorted by priority */ private Ingester[] ingesters = {}; /** * Default constructor. */ public IngestFactory() { // Default constructor } /** * Adds an ingester to the factory.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SystemHelper.java
@PostConstruct public void init() { if (logger.isDebugEnabled()) { logger.debug("Initialize {}", this.getClass().getSimpleName()); } final Calendar cal = Calendar.getInstance(TimeZone.getTimeZone("UTC")); cal.set(2027, 3 - 1, 1); // EOL Date eolTime = cal.getTimeInMillis(); if (isEoled()) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 36.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/cors/CorsHandlerFactory.java
*/ public CorsHandlerFactory() { // Default constructor } private static final Logger logger = LogManager.getLogger(CorsHandlerFactory.class); /** * Map of origin patterns to their corresponding CORS handlers. */ protected Map<String, CorsHandler> handerMap = new HashMap<>(); /** * Adds a CORS handler for the specified origin. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.2K bytes - Viewed (0)