Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 44 for kong (0.02 seconds)

  1. 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)
  2. 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)
  3. 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)
  4. src/main/java/org/codelibs/fess/opensearch/config/exentity/ScheduledJob.java

        public String getId() {
            return asDocMeta().id();
        }
    
        public void setId(final String id) {
            asDocMeta().id(id);
        }
    
        public Long getVersionNo() {
            return asDocMeta().version();
        }
    
        public void setVersionNo(final Long version) {
            asDocMeta().version(version);
        }
    
        @Override
        public String toString() {
    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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. src/main/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistAction.java

                        entity.put(fessConfig.getIndexFieldId(), newId);
                        entity.remove(fessConfig.getIndexFieldVersion());
                        final Long seqNo = (Long) entity.remove(fessConfig.getIndexFieldSeqNo());
                        final Long primaryTerm = (Long) entity.remove(fessConfig.getIndexFieldPrimaryTerm());
                        if (seqNo != null && primaryTerm != null && oldId != null) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:38:39 GMT 2026
    - 25.5K bytes
    - Click Count (1)
Back to Top