- Sort Score
- Result 10 results
- Languages All
Results 201 - 210 of 763 for klog (0.91 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/joblog/AdminJoblogAction.java
import jakarta.annotation.Resource; /** * Admin action for Job Log. * */ public class AdminJoblogAction extends FessAdminAction { /** * Default constructor. */ public AdminJoblogAction() { super(); } /** The role name for job log administration. */ public static final String ROLE = "admin-joblog";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 10.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java
* This message is shown to users on the main search page. */ @Size(max = 3000) public String notificationSearchTop; /** * System log level for controlling log verbosity. * Controls the level of detail in system log messages. */ @Size(max = 10) public String logLevel; /** * Storage service endpoint URL for cloud storage integration.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.9K bytes - Viewed (0) -
docs/bucket/replication/setup_3site_replication.sh
minio server --address 127.0.0.1:9004 "http://127.0.0.1:9003/tmp/multisiteb/data/disterasure/xl{1...4}" \ "http://127.0.0.1:9004/tmp/multisiteb/data/disterasure/xl{5...8}" >/tmp/siteb_2.log 2>&1 & minio server --address 127.0.0.1:9005 "http://127.0.0.1:9005/tmp/multisitec/data/disterasure/xl{1...4}" \ "http://127.0.0.1:9006/tmp/multisitec/data/disterasure/xl{5...8}" >/tmp/sitec_1.log 2>&1 &
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Sep 24 08:03:58 UTC 2024 - 10.3K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFileHandleImpl.java
log.warn("File handle was not properly closed, performing emergency cleanup: " + this); if (this.creationBacktrace != null) { log.warn(Arrays.toString(this.creationBacktrace)); } emergencyCloseHandle(); } } catch (Exception e) { log.error("Error during file handle finalization", e);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 9.4K bytes - Viewed (1) -
docs/smb3-features/03-multi-channel-design.md
} catch (Exception e) { log.debug("Keep-alive failed for channel {}", channel.getChannelId()); handleChannelFailure(channel, e); } } // Check error rate if (channel.getErrorRate() > 0.1) { log.warn("High error rate on channel {}: {}",
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 39.6K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbResourceLocatorImpl.java
if (pathConsumed < 0) { log.warn("Path consumed out of range " + pathConsumed); pathConsumed = 0; } else if (pathConsumed > this.unc.length()) { log.warn("Path consumed out of range " + pathConsumed); pathConsumed = oldUncPath.length(); } if (log.isDebugEnabled()) { log.debug("UNC is '" + oldUncPath + "'");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 23.6K bytes - Viewed (0) -
cmd/ftp-server.go
// minioLogger use an instance of this to log in a standard format type minioLogger struct{} // Print implement Logger func (log *minioLogger) Print(sessionID string, message any) { if serverDebugLog { fmt.Printf("%s %s\n", sessionID, message) } } // Printf implement Logger func (log *minioLogger) Printf(sessionID string, format string, v ...any) { if serverDebugLog {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 5.2K bytes - Viewed (0) -
okhttp/src/androidMain/kotlin/okhttp3/internal/platform/Android10Platform.kt
AndroidCertificateChainCleaner.buildIfSupported(trustManager) ?: super.buildCertificateChainCleaner(trustManager) override fun log( message: String, level: Int, t: Throwable?, ) { if (level == WARN) { Log.w(Tag, message, t) } else { Log.i(Tag, message, t) } } companion object { val isSupported: Boolean = isAndroid && Build.VERSION.SDK_INT >= 29
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sun Jul 20 11:25:50 UTC 2025 - 4.5K bytes - Viewed (0) -
docs/distributed/distributed-from-config-file.sh
EOF done minio server --config /tmp/minio.configfile.1 >/tmp/minio1_1.log 2>&1 & site1_pid=$! minio server --config /tmp/minio.configfile.2 >/tmp/minio2_1.log 2>&1 & site2_pid=$! minio server --config /tmp/minio.configfile.3 >/tmp/minio3_1.log 2>&1 & site3_pid=$! minio server --config /tmp/minio.configfile.4 >/tmp/minio4_1.log 2>&1 & site4_pid=$! export MC_HOST_minio1=http://minr0otUS2r:pBU94AGAY85e@localhost:9001
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Jun 28 09:06:49 UTC 2024 - 3.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/AggregateLogJob.java
* This job processes search logs and stores them in the search log repository. */ public class AggregateLogJob { private static final Logger logger = LogManager.getLogger(AggregateLogJob.class); /** * Default constructor. */ public AggregateLogJob() { // Default constructor } /** * Executes the search log aggregation job.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.9K bytes - Viewed (0)