- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 443 for logo (0.06 sec)
-
okhttp/src/jvmTest/kotlin/okhttp3/TestLogHandler.kt
afterEach(null) } } } fun takeAll(): List<String> { val list = mutableListOf<String>() logs.drainTo(list) return list } fun take(): String = logs.poll(10, TimeUnit.SECONDS) ?: throw AssertionError("Timed out waiting for log message.")
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 2.5K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/UncaughtExceptionHandlers.java
try { logger .get() .log( SEVERE, String.format(Locale.ROOT, "Caught an exception in %s. Shutting down.", t), e); } catch (Throwable errorInLogging) { // sneaky checked exception // If logging fails, e.g. due to missing memory, at least try to log the // message and the cause for the failed logging.
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Feb 10 21:03:40 UTC 2025 - 2.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SuggestHelper.java
cb.specify().doColumn("searchField.*"); }, this::indexFromSearchLog); } /** * Indexes suggest data from a list of search logs. * * @param searchLogList The list of search logs to index. */ public void indexFromSearchLog(final List<SearchLog> searchLogList) { final Map<String, LocalDateTime> duplicateSessionMap = new HashMap<>();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 22.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/SearchLogPager.java
import java.io.Serializable; import java.util.List; import org.codelibs.fess.util.ComponentUtil; /** * Pager class for search log pagination and filtering. * * This class provides pagination functionality for various types of search logs * including search logs, click logs, favorite logs, and user information logs. * It also supports different aggregation types for analytics and reporting. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.8K bytes - Viewed (0) -
guava/src/com/google/common/math/BigIntegerMath.java
// Strip off 2s from this value. int shift = Long.numberOfTrailingZeros(product); product >>= shift; // Use floor(log2(num)) + 1 to prevent overflow of multiplication. int productBits = LongMath.log2(product, FLOOR) + 1; int bits = LongMath.log2(startingNumber, FLOOR) + 1; // Check for the next power of two boundary, to save us a CLZ operation. int nextPowerOfTwo = 1 << (bits - 1);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 18.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/PurgeLogJob.java
import org.codelibs.fess.helper.SystemHelper; import org.codelibs.fess.util.ComponentUtil; /** * Job for purging old log entries from the system. * This job removes old crawling sessions, search logs, job logs, and user info logs * based on configured retention periods. It helps maintain system performance by * preventing log tables from growing too large. */ public class PurgeLogJob { /** Logger instance for this class */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/failureurl/ApiAdminFailureurlAction.java
// GET /api/admin/failureurl/logs // PUT /api/admin/failureurl/logs /** * Retrieves failure URL logs with pagination. * * @param body the search criteria * @return JSON response containing the failure URL logs */ @Execute public JsonResponse<ApiResult> logs(final SearchBody body) { validateApi(body, messages -> {});
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 6.2K bytes - Viewed (0) -
src/main/webapp/WEB-INF/env/crawler/resources/log4j2.xml
<Configuration status="WARN"> <Properties> <Property name="domain.name" value="${sys:fess.log.name:-fess}" /> <Property name="log.level" value="${sys:fess.log.level:-debug}" /> <Property name="root.log.level" value="${sys:fess.log.level:-info}" /> <Property name="log.pattern" value="%d [%t] %-5p %msg%n" /> <Property name="log.file.basedir" value="${sys:fess.log.path:-target/logs}" /> <Property name="backup.date.suffix" value="_%d{yyyyMMdd}" />
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Mon Feb 20 13:05:30 UTC 2023 - 2.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/crawlinginfo/ApiAdminCrawlinginfoAction.java
/** * Retrieves crawling info logs with pagination support. * * @param body the search body containing pagination and filter parameters * @return JSON response containing list of crawling info logs */ // GET /api/admin/crawlinginfo/logs // PUT /api/admin/crawlinginfo/logs @Execute public JsonResponse<ApiResult> logs(final SearchBody body) { validateApi(body, messages -> {});
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 6.1K bytes - Viewed (0) -
samples/guide/src/main/java/okhttp3/recipes/kt/WiresharkExample.kt
import okhttp3.recipes.kt.WireSharkListenerFactory.WireSharkKeyLoggerListener.Launch.Gui import okio.ByteString.Companion.toByteString /** * Logs SSL keys to a log file, allowing Wireshark to decode traffic and be examined with http2 * filter. The approach is to hook into JSSE log events for the messages between client and server * during handshake, and then take the agreed masterSecret from private fields of the session. *
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat May 10 11:15:14 UTC 2025 - 10.9K bytes - Viewed (0)