- Sort Score
- Result 10 results
- Languages All
Results 221 - 230 of 857 for loggers (0.04 sec)
-
cmd/config-versions.go
// Storage class configuration StorageClass storageclass.Config `json:"storageclass"` // Notification queue configuration. Notify notify.Config `json:"notify"` // Logger configuration Logger logger.Config `json:"logger"` // Compression configuration Compression compress.Config `json:"compress"` // OpenID configuration OpenID openid.Config `json:"openid"` // External policy enforcements.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri May 24 23:05:23 UTC 2024 - 2.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/FacetQueryView.java
* including automatic generation of file type facets and custom query mappings. */ public class FacetQueryView { /** Logger instance for this class */ private static final Logger logger = LogManager.getLogger(FacetQueryView.class); /** Title for this facet query view */ protected String title; /** Map of display keys to their corresponding query strings */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessApiFailureHook.java
return stacktraceString.get(); } final String errorCode = UUID.randomUUID().toString(); if (logger.isDebugEnabled()) { logger.debug("[{}] {}", errorCode, stacktraceString.get().replace("\n", "\\n")); } else { logger.warn("[{}] {}", errorCode, cause.getMessage()); } return "error_code:" + errorCode; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/exbhv/ScheduledJobBhv.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 2.2K bytes - Viewed (0) -
gorm.go
DefaultContextTimeout time.Duration // NamingStrategy tables, columns naming strategy NamingStrategy schema.Namer // FullSaveAssociations full save associations FullSaveAssociations bool // Logger Logger logger.Interface // NowFunc the function to be used when creating a new timestamp NowFunc func() time.Time // DryRun generate sql without execute DryRun bool // PrepareStmt executes the given query in cached statement
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Tue Aug 26 06:24:29 UTC 2025 - 12.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/SuggestJob.java
* It builds and runs a command-line process to generate suggest data, * handling classpath setup, system properties, and process monitoring. */ public class SuggestJob extends ExecJob { private static final Logger logger = LogManager.getLogger(SuggestJob.class); /** * Constructs a new suggest job. */ public SuggestJob() { // do nothing } @Override public String execute() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 10.5K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/concurrent/TaskQueue.kt
task: Task, delayNanos: Long = 0L, ) { taskRunner.withLock { if (shutdown) { if (task.cancelable) { taskRunner.logger.taskLog(task, this) { "schedule canceled (queue is shutdown)" } return } taskRunner.logger.taskLog(task, this) { "schedule failed (queue is shutdown)" } throw RejectedExecutionException() }
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed May 28 23:28:25 UTC 2025 - 7.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/concurrent/CommonPoolUtil.java
*/ package org.codelibs.core.concurrent; import java.util.concurrent.ForkJoinPool; import org.codelibs.core.log.Logger; /** * Utility for common pool operations. */ public abstract class CommonPoolUtil { private static final Logger logger = Logger.getLogger(CommonPoolUtil.class); protected CommonPoolUtil() { // nothing } /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 1.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/GsaConfigParser.java
* <li>URL pattern matching with regular expressions and contains filters</li> * </ul> * */ public class GsaConfigParser extends DefaultHandler { /** Logger instance for this class. */ private static final Logger logger = LogManager.getLogger(GsaConfigParser.class); /** Prefix for regular expression patterns. */ public static final String REGEXP = "regexp:";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 21.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/kuromoji/ApiAdminDictKuromojiAction.java
public class ApiAdminDictKuromojiAction extends FessApiAdminAction { /** * Default constructor. */ public ApiAdminDictKuromojiAction() { super(); } private static final Logger logger = LogManager.getLogger(ApiAdminDictKuromojiAction.class); @Resource private KuromojiService kuromojiService; /** * Retrieves Kuromoji dictionary settings with pagination support. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.4K bytes - Viewed (0)