- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 58 for timeStamp (0.04 seconds)
-
src/main/java/org/codelibs/fess/dict/DictionaryFile.java
protected String path; /** The timestamp when this dictionary file was created or last modified. */ protected Date timestamp; /** * Creates a new DictionaryFile with the specified parameters. * * @param id the unique identifier for this dictionary file * @param path the file path of this dictionary * @param timestamp the timestamp of the dictionary file */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 20 07:09:00 GMT 2025 - 11.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/entity/ChatMessage.java
/** * Gets the message timestamp. * * @return the message timestamp */ public LocalDateTime getTimestamp() { return timestamp; } /** * Sets the message timestamp. * * @param timestamp the message timestamp */ public void setTimestamp(final LocalDateTime timestamp) { this.timestamp = timestamp; } /**Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 12 04:52:31 GMT 2026 - 10.1K bytes - Click Count (0) -
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 @TestCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 11.3K bytes - Click Count (0) -
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) -
src/test/java/org/codelibs/fess/api/chat/ChatApiManagerTest.java
createFacetQueryView("timestamp", "1month", "timestamp:[now-1M TO *]", "1year", "timestamp:[now-1y TO *]")); final MockHttpServletRequest request = new MockHttpServletRequest(); request.setParameterValues("ex_q", new String[] { "filetype:HTML", "timestamp:[now-1M TO *]" }); final String[] result = chatApiManager.parseExtraQueries(request);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 14 01:39:16 GMT 2026 - 35K bytes - Click Count (0) -
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) -
src/main/java/org/codelibs/fess/dict/protwords/ProtwordsFile.java
/** * Constructor for ProtwordsFile. * @param id the file identifier * @param path the file path * @param timestamp the file timestamp */ public ProtwordsFile(final String id, final String path, final Date timestamp) { super(id, path, timestamp); } @Override public String getType() { return PROTWORDS; } @Override public String getPath() {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 20 07:09:00 GMT 2025 - 11.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/dict/stopwords/StopwordsFile.java
* @param id The unique identifier for this dictionary file. * @param path The path to the dictionary file. * @param timestamp The last modified timestamp of the file. */ public StopwordsFile(final String id, final String path, final Date timestamp) { super(id, path, timestamp); } @Override public String getType() { return STOPWORDS; } @OverrideCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 20 07:09:00 GMT 2025 - 13K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideFile.java
* @param id The unique identifier for this dictionary file. * @param path The path to the dictionary file. * @param timestamp The last modified timestamp of the file. */ public StemmerOverrideFile(final String id, final String path, final Date timestamp) { super(id, path, timestamp); } @Override public String getType() { return STEMMER_OVERRIDE; } @OverrideCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Dec 20 05:56:45 GMT 2025 - 14.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/CrawlerStatsHelper.java
// Default constructor } /** Logger instance for this class. */ private static final Logger logger = LogManager.getLogger(CrawlerStatsHelper.class); /** Key used to store the begin timestamp in statistics objects. */ private static final String BEGIN_KEY = "begin"; /** Logger instance specifically for outputting crawler statistics. */ protected Logger statsLogger = null;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 17.4K bytes - Click Count (0)