- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 82 for old1 (0.01 sec)
-
src/test/java/org/codelibs/fess/dict/mapping/CharMappingItemTest.java
assertEquals("a,b,c=>output", item.toLineString()); } public void test_toLineString_withUpdates() { String[] inputs = { "old1", "old2" }; CharMappingItem item = new CharMappingItem(1L, inputs, "oldOutput"); item.setNewInputs(new String[] { "new1", "new2", "new3" }); item.setNewOutput("newOutput");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.2K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/testers/MapMergeTester.java
v3(), (oldV, newV) -> { assertEquals(v0(), oldV); assertEquals(v3(), newV); return null; })); expectMissing(e0()); } public void testMergeNullValue() { try { getMap() .merge( k0(), null, (oldV, newV) -> {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 6.8K bytes - Viewed (0) -
guava-testlib/src/com/google/common/collect/testing/testers/MapMergeTester.java
v3(), (oldV, newV) -> { assertEquals(v0(), oldV); assertEquals(v3(), newV); return null; })); expectMissing(e0()); } public void testMergeNullValue() { try { getMap() .merge( k0(), null, (oldV, newV) -> {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 6.8K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/google/MultisetRemoveTester.java
int originalCount = getMultiset().count(e0()); assertEquals("old count", originalCount, getMultiset().remove(e0(), 0)); expectUnchanged(); } @CollectionSize.Require(absent = ZERO) @CollectionFeature.Require(SUPPORTS_REMOVE) public void testRemove_occurrences_present() { assertEquals( "multiset.remove(present, 2) didn't return the old count", 1, getMultiset().remove(e0(), 2));
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 7K bytes - Viewed (0) -
guava-testlib/src/com/google/common/collect/testing/google/MultisetRemoveTester.java
int originalCount = getMultiset().count(e0()); assertEquals("old count", originalCount, getMultiset().remove(e0(), 0)); expectUnchanged(); } @CollectionSize.Require(absent = ZERO) @CollectionFeature.Require(SUPPORTS_REMOVE) public void testRemove_occurrences_present() { assertEquals( "multiset.remove(present, 2) didn't return the old count", 1, getMultiset().remove(e0(), 2));
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/DataIndexHelper.java
* <li>Old document deletion after successful crawling</li> * <li>Crawling execution monitoring and timing</li> * </ul> */ public class DataIndexHelper { /** Logger instance for this class */ private static final Logger logger = LogManager.getLogger(DataIndexHelper.class); /** Parameter key for controlling deletion of old documents */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 18.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/IndexingHelper.java
} /** * Deletes old documents that have the same URL but different document IDs * as the documents in the provided list. This prevents duplicate documents * from accumulating in the index. * * @param searchEngineClient the search engine client to use for deletion * @param docList the list of new documents to check against * @return the number of old documents that were deleted */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 26.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/PurgeLogJob.java
import org.codelibs.fess.app.service.UserInfoService; import org.codelibs.fess.helper.SystemHelper; import org.codelibs.fess.util.ComponentUtil; /** * Job for purging old log entries from the system. * This job removes old crawling sessions, search logs, job logs, and user info logs * based on configured retention periods. It helps maintain system performance by * preventing log tables from growing too large. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.6K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/AtomicLongMap.java
} /** * Increments by one the value currently associated with {@code key}, and returns the old value. */ @CanIgnoreReturnValue public long getAndIncrement(K key) { return getAndAdd(key, 1); } /** * Decrements by one the value currently associated with {@code key}, and returns the old value. */ @CanIgnoreReturnValue public long getAndDecrement(K key) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 11.7K bytes - Viewed (0) -
src/main/resources/fess_label_en.properties
labels.popular_word_word_enabled=Popular Word Response labels.supported_search_web=Web labels.supported_search_none=Unavailable labels.purge_search_log_day=Delete old search logs labels.purge_job_log_day=Delete old job logs labels.purge_user_info_day=Delete old user logs labels.purge_by_bots=Bot names to delete logs labels.log_level=Log Level labels.csv_file_encoding=CSV File Encoding labels.notification_to=Notification Mail
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 40.7K bytes - Viewed (0)