- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 12 for isUpdated (0.05 sec)
-
src/test/java/org/codelibs/fess/dict/stopwords/StopwordsItemTest.java
public void test_isUpdated() { // Test isUpdated method StopwordsItem item = new StopwordsItem(1, "original"); assertFalse(item.isUpdated()); item.setNewInput("updated"); assertTrue(item.isUpdated()); item.setNewInput(""); assertTrue(item.isUpdated()); item.setNewInput(null); assertFalse(item.isUpdated()); } public void test_isDeleted() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/protwords/ProtwordsItemTest.java
public void test_isUpdated() { // Test isUpdated method ProtwordsItem item = new ProtwordsItem(1, "word"); assertFalse(item.isUpdated()); item.setNewInput("newword"); assertTrue(item.isUpdated()); item.setNewInput(""); assertTrue(item.isUpdated()); item.setNewInput(null); assertFalse(item.isUpdated()); } public void test_isDeleted() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 10.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/mapping/CharMappingItemTest.java
// Initially not updated assertFalse(item.isUpdated()); // Set only newInputs - still not updated item.setNewInputs(new String[] { "new" }); assertFalse(item.isUpdated()); // Set both newInputs and newOutput - now updated item.setNewOutput("newOutput"); assertTrue(item.isUpdated()); // Set newInputs to null - not updated
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/kuromoji/KuromojiFile.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 11.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/mapping/CharMappingFile.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 14.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/synonym/SynonymFile.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 15.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/protwords/ProtwordsFile.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 11.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/stopwords/StopwordsFile.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 12.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideFile.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 13.7K bytes - Viewed (0) -
src/main/java/org/codelibs/core/misc/DynamicProperties.java
} /** * Checks if the properties file has been updated since the last load. * * @return {@code true} if the file has been updated, {@code false} otherwise. */ public boolean isUpdated() { final long now = System.currentTimeMillis(); if (now - lastChecked < checkInterval) { lastChecked = now; return false; } lastChecked = now;
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 13.1K bytes - Viewed (0)