- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 46 for kong (0.01 seconds)
-
src/test/java/org/codelibs/fess/job/LogNotificationJobTest.java
@Test public void test_formatDetails_truncation() { TestableLogNotificationJob testableJob = new TestableLogNotificationJob(); long timestamp = 1700000000000L; List<LogNotificationEvent> events = new ArrayList<>(); // Create many events with long messages for (int i = 0; i < 100; i++) { String longMessage = "A".repeat(300) + " event " + i;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 14:36:23 GMT 2026 - 10.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/CoordinatorHelper.java
} final long expiredTime = getLongValue(source, "expiredTime"); final String ownerInstanceId = getStringValue(source, "instanceId"); final long now = System.currentTimeMillis(); // Check if expired or owner is no longer active if (expiredTime < now || !isInstanceActive(ownerInstanceId)) { final long seqNo = getLongValue(result, "_seq_no");Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 33.3K bytes - Click Count (0) -
src/main/resources/fess_indices/fess_config.coordinator/coordinator.json
"targetInstanceId": { "type": "keyword" }, "data": { "type": "text", "index": false }, "createdTime": { "type": "long" }, "expiredTime": { "type": "long" } }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 541 bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/ScheduledJob.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:55:54 GMT 2026 - 3.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/api/ApiResult.java
/** * The number of deleted items. */ protected long count = 1; /** * Sets the count of deleted items. * @param count The number of deleted items. * @return The ApiDeleteResponse instance. */ public ApiDeleteResponse count(final long count) { this.count = count; return this; }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:55:54 GMT 2026 - 25.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/CoordinatorHelperTest.java
final long before = System.currentTimeMillis(); helper.sendHeartbeat(); final long after = System.currentTimeMillis(); assertNotNull(capturedBody.get()); final Map<String, Object> body = coordinatorHelper.parseJson(capturedBody.get()); final long createdTime = ((Number) body.get("createdTime")).longValue();Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 58.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/api/json/SearchApiManager.java
final long startRecordNumber = data.getCurrentStartRecordNumber(); final long endRecordNumber = data.getCurrentEndRecordNumber(); final List<String> pageNumbers = data.getPageNumberList(); final boolean partial = data.isPartialResults(); final String searchQuery = data.getSearchQuery(); final long requestedTime = data.getRequestedTime();
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 27 13:56:32 GMT 2026 - 55.4K bytes - Click Count (1) -
src/test/java/org/codelibs/fess/helper/SystemHelperTest.java
assertNotNull(currentTime); final long now = System.currentTimeMillis(); assertTrue(Math.abs(currentTime.getTime() - now) < 1000); } @Test public void test_getCurrentTimeAsLong() { final long currentTime = systemHelper.getCurrentTimeAsLong(); final long now = System.currentTimeMillis(); assertTrue(Math.abs(currentTime - now) < 1000);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 44.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/LogNotificationHelper.java
} return events; } /** * Represents a captured log event for notification. */ public static class LogNotificationEvent { private final long timestamp; private final String level; private final String loggerName; private final String message; private final String throwable; /**Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 5.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/SystemHelper.java
/** The product version string. */ protected String productVersion; /** The end-of-life timestamp for the application. */ protected long eolTime; private short systemCpuPercent; private long systemCpuCheckTime; private long systemCpuCheckInterval = 1000L; private volatile short searchEngineCpuPercent; private volatile TimeoutTask loadControlMonitorTask;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 43.2K bytes - Click Count (0)