Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 38 for timeStamp (0.04 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/main/java/org/codelibs/fess/helper/LogNotificationHelper.java

            private final long timestamp;
    
            private final String level;
    
            private final String loggerName;
    
            private final String message;
    
            private final String throwable;
    
            /**
             * Constructs a new LogNotificationEvent.
             *
             * @param timestamp the event timestamp in milliseconds
             * @param level the log level name
    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)
  2. src/main/java/org/codelibs/fess/entity/ChatSession.java

            this.userId = userId;
        }
    
        /**
         * Gets the creation timestamp.
         *
         * @return the creation timestamp
         */
        public LocalDateTime getCreatedAt() {
            return createdAt;
        }
    
        /**
         * Sets the creation timestamp.
         *
         * @param createdAt the creation timestamp
         */
        public void setCreatedAt(final LocalDateTime createdAt) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 07 01:53:06 GMT 2026
    - 6.7K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/timer/MonitorTargetTest.java

            monitorTarget.appendTimestamp(buf);
            String result = buf.toString();
            assertTrue(result.startsWith("\"timestamp\":\""));
            assertTrue(result.endsWith("\""));
            // Verify a timestamp was properly formatted
            assertNotNull(result);
            assertTrue(result.length() > "\"timestamp\":\"\"".length());
        }
    
        // Test appendException method with simple exception
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 11.3K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/helper/ActivityHelperTest.java

        }
    
        @Test
        public void test_login_ecs() {
            activityHelper.useEcsFormat = true;
            activityHelper.login(OptionalThing.empty());
            assertEquals(
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 11:45:43 GMT 2026
    - 24.3K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/job/LogNotificationJobTest.java

        public void test_formatDetails() {
            TestableLogNotificationJob testableJob = new TestableLogNotificationJob();
    
            long timestamp = 1700000000000L; // fixed timestamp for predictable output
            List<LogNotificationEvent> events = new ArrayList<>();
            events.add(new LogNotificationEvent(timestamp, "ERROR", "org.codelibs.fess.TestClass", "Something went wrong", null));
    
            String details = testableJob.testFormatDetails(events);
    
    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)
  6. src/main/resources/fess_indices/fess_log.notification_queue/notification_queue.json

        "loggerName": {
          "type": "keyword"
        },
        "message": {
          "type": "text",
          "index": false
        },
        "throwable": {
          "type": "text",
          "index": false
        },
        "timestamp": {
          "type": "date",
          "format": "epoch_millis"
        }
      }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 386 bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/util/QueryStringBuilderTest.java

            final String k = "timestamp";
            assertEquals("", getAsQuery(Collections.singletonMap(k, new String[] { "" })));
            assertEquals("timestamp:2023-01-01", getAsQuery(Collections.singletonMap(k, new String[] { "2023-01-01" })));
            assertEquals("timestamp:2023-12-31", getAsQuery(Collections.singletonMap(k, new String[] { " 2023-12-31 " })));
            assertEquals("timestamp:2023-01-01 timestamp:2023-12-31",
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 16.7K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/job/LogNotificationJob.java

                final String timestamp = TIMESTAMP_FORMATTER.format(Instant.ofEpochMilli(event.getTimestamp()));
                String message = event.getMessage();
                if (message != null && message.length() > maxMessageLength) {
                    message = message.substring(0, maxMessageLength) + "...";
                }
                sb.append('[')
                        .append(timestamp)
                        .append("] ")
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 9.4K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/helper/PluginHelper.java

         * @return the actual version string with timestamp and build number, or null if not found
         * @throws SAXException if XML parsing fails
         * @throws IOException if I/O error occurs
         */
        protected String getSnapshotActualVersion(final DocumentBuilder builder, final String pluginUrl, final String version)
                throws SAXException, IOException {
            String timestamp = null;
            String buildNumber = null;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Mar 04 15:19:41 GMT 2026
    - 25.1K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/app/web/chat/ChatAction.java

                RenderDataUtil.register(data, "displayLabelTypeItems", labelTypeItems != null && !labelTypeItems.isEmpty());
                // Facet query views for filter UI (file type, timestamp, size)
                RenderDataUtil.register(data, "facetQueryViewList", ComponentUtil.getViewHelper().getFacetQueryViewList());
            });
        }
    
        /**
         * Clears the chat session.
         *
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Tue Mar 10 14:54:51 GMT 2026
    - 4.4K bytes
    - Click Count (0)
Back to Top