- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 148 for klog (0.01 sec)
-
android/guava/src/com/google/common/eventbus/EventBus.java
checkNotNull(e); checkNotNull(context); try { exceptionHandler.handleException(e, context); } catch (Throwable e2) { // if the handler threw an exception... well, just log it logger.log( Level.SEVERE, String.format(Locale.ROOT, "Exception %s thrown while handling exception: %s", e2, e), e2); } } /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 03:10:51 UTC 2024 - 12.7K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/concurrent/TaskRunnerTest.kt
redQueue.schedule("task", 100.µs) { log += "run@${taskFaker.nanoTime}" return@schedule delays.removeAt(0) } taskFaker.advanceUntil(0.µs) assertThat(log).containsExactly() taskFaker.advanceUntil(100.µs) assertThat(log).containsExactly("run@100000") taskFaker.advanceUntil(150.µs) assertThat(log).containsExactly("run@100000", "run@150000")
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 23K 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/resources/fess_label_en.properties
labels.advance_search_timestamp_pastyear=Past year labels.searchlog_configuration=Search Log labels.searchlog_title=Search Log labels.searchlog_log_type=Log Type labels.searchlog_log_type_search=Search Log labels.searchlog_log_type_click=Click Log labels.searchlog_log_type_favorite=Favorite Log labels.searchlog_log_type_user_info=User Log labels.searchlog_log_type_search_keyword=Keyword Count
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 40.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/log/cbean/ca/bs/BsUserInfoCA.java
*/ package org.codelibs.fess.opensearch.log.cbean.ca.bs; import org.codelibs.fess.opensearch.log.allcommon.EsAbstractConditionAggregation; import org.codelibs.fess.opensearch.log.allcommon.EsAbstractConditionQuery; import org.codelibs.fess.opensearch.log.cbean.ca.UserInfoCA; import org.codelibs.fess.opensearch.log.cbean.cq.UserInfoCQ; import org.codelibs.fess.opensearch.log.cbean.cq.bs.BsUserInfoCQ;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 12.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/backup/AdminBackupAction.java
import org.codelibs.fess.opensearch.log.exbhv.ClickLogBhv; import org.codelibs.fess.opensearch.log.exbhv.FavoriteLogBhv; import org.codelibs.fess.opensearch.log.exbhv.SearchLogBhv; import org.codelibs.fess.opensearch.log.exbhv.UserInfoBhv; import org.codelibs.fess.opensearch.log.exentity.ClickLog; import org.codelibs.fess.opensearch.log.exentity.FavoriteLog; import org.codelibs.fess.opensearch.log.exentity.SearchLog;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 29.8K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/ServiceManager.java
if (state != null) { // Log before the transition, so that if the process exits in response to server failure, // there is a higher likelihood that the cause will be in the logs. boolean log = !(service instanceof NoOpService); /* * We have already exposed startup exceptions to the user in the form of suppressed * exceptions. We don't need to log those exceptions again. */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 33.2K 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) -
okhttp-logging-interceptor/src/main/kotlin/okhttp3/logging/HttpLoggingInterceptor.kt
if (!buffer.isProbablyUtf8()) { logger.log("") logger.log("<-- END HTTP (${totalMs}ms, binary ${buffer.size}-byte body omitted)") return response } if (contentLength != 0L) { logger.log("") logger.log(buffer.clone().readString(charset)) } logger.log( buildString {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Thu Aug 21 14:27:04 UTC 2025 - 11.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SearchLogHelper.java
import org.codelibs.fess.opensearch.log.exbhv.ClickLogBhv; import org.codelibs.fess.opensearch.log.exbhv.FavoriteLogBhv; import org.codelibs.fess.opensearch.log.exbhv.SearchLogBhv; import org.codelibs.fess.opensearch.log.exbhv.UserInfoBhv; import org.codelibs.fess.opensearch.log.exentity.ClickLog; import org.codelibs.fess.opensearch.log.exentity.SearchLog; import org.codelibs.fess.opensearch.log.exentity.UserInfo;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 26.3K bytes - Viewed (0)