- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 120 for timeStamp (0.46 sec)
-
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 */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/DictionaryCreator.java
* Creates a dictionary file for the given path and timestamp if it matches this creator's pattern. * * @param path the file path to create a dictionary file for * @param timestamp the timestamp of the dictionary file * @return a DictionaryFile instance if the path matches, null otherwise */ public DictionaryFile<? extends DictionaryItem> create(final String path, final Date timestamp) { if (!isTarget(path)) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/convert/TimestampConversionUtil.java
} } final Date date = toDate(str, locale); if (date != null) { return new Timestamp(date.getTime()); } final Timestamp timestamp = toSqlTimestampJdbcEscape(str); if (timestamp != null) { return timestamp; } throw new ParseRuntimeException(str); } /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 20.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/kuromoji/KuromojiCreator.java
* @param path The path of the dictionary file. * @param timestamp The timestamp of the dictionary file. * @return A new dictionary file. */ @Override protected DictionaryFile<? extends DictionaryItem> newDictionaryFile(final String id, final String path, final Date timestamp) { return new KuromojiFile(id, path, timestamp).manager(dictionaryManager); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideCreator.java
* @param timestamp The last modified timestamp of the file. * @return A new {@link StemmerOverrideFile} associated with the dictionary manager. */ @Override protected DictionaryFile<? extends DictionaryItem> newDictionaryFile(final String id, final String path, final Date timestamp) { return new StemmerOverrideFile(id, path, timestamp).manager(dictionaryManager); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/ActivityHelperTest.java
} public void test_login_ecs() { activityHelper.useEcsFormat = true; activityHelper.login(OptionalThing.empty()); assertEquals(
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 05:35:01 UTC 2025 - 18.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/stopwords/StopwordsCreator.java
* @param timestamp The last modified timestamp of the file. * @return A new {@link StopwordsFile} associated with the dictionary manager. */ @Override protected DictionaryFile<? extends DictionaryItem> newDictionaryFile(final String id, final String path, final Date timestamp) { return new StopwordsFile(id, path, timestamp).manager(dictionaryManager); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/badword/CreateForm.java
*/ @Size(max = 1000) public String createdBy; /** * The timestamp when this bad word entry was created. */ @ValidateTypeFailure public Long createdTime; /** * Initializes the form with default values including current user and timestamp. */ public void initialize() { createdBy = ComponentUtil.getSystemHelper().getUsername();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/SearchRenderData.java
*/ public void setSearchQuery(final String searchQuery) { this.searchQuery = searchQuery; } /** * Sets the timestamp when the search request was made. * * @param requestedTime The request timestamp */ public void setRequestedTime(final long requestedTime) { this.requestedTime = requestedTime; } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 12.5K bytes - Viewed (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
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11K bytes - Viewed (0)