- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 497 for Updater (0.05 sec)
-
src/test/java/org/codelibs/fess/score/ScoreUpdaterTest.java
super.setUp(); scoreUpdater = new ScoreUpdater(); } // Test constructor public void test_constructor() { ScoreUpdater updater = new ScoreUpdater(); assertNotNull(updater); } // Test execute with empty list public void test_execute_emptyList() { String result = scoreUpdater.execute(); assertEquals("", result); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 10.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/WebFsIndexHelper.java
this.crawlingExecutionInterval = crawlingExecutionInterval; } /** * Sets the thread priority for index updater operations. * * @param indexUpdaterPriority The index updater thread priority */ public void setIndexUpdaterPriority(final int indexUpdaterPriority) { this.indexUpdaterPriority = indexUpdaterPriority; } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 24.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/indexer/IndexUpdater.java
} } return target; } /** * Updates a document with additional metadata and enhancements. * Adds click counts, favorite counts, document boosting, and generates document ID. * Also applies language-specific updates through the language helper. * * @param map the document data map to update with additional metadata */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 32.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/ComponentUtil.java
* @return The file type helper. */ public static FileTypeHelper getFileTypeHelper() { return getComponent(FILE_TYPE_HELPER); } /** * Gets the index updater component. * @return The index updater. */ public static IndexUpdater getIndexUpdater() { return getComponent(INDEX_UPDATER); } /** * Gets the key match helper component.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 28.9K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/cache/DiskLruCacheTest.kt
setUp(parameters.first, parameters.second) val creator = cache.edit("k1")!! creator.setString(0, "A") creator.setString(1, "B") creator.commit() val updater = cache.edit("k1")!! updater.setString(0, "C") updater.commit() val snapshot = cache["k1"]!! snapshot.assertValue(0, "C") snapshot.assertValue(1, "B") snapshot.close() } @ParameterizedTest
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 75.7K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.4.md
### kubectl rolling-update: < v1.4.0 client vs >=v1.4.0 cluster Old version kubectl's rolling-update command is compatible with Kubernetes 1.4 and higher only if you specify a new replication controller name. You will need to update to kubectl 1.4 or higher to use the rolling update command against a 1.4 cluster if you want to keep the original name, or you'll have to do two rolling updates.
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Thu Dec 24 02:28:26 UTC 2020 - 133.5K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.5.md
* Kubelet flag '--mounter-path' renamed to '--experimental-mounter-path' ([#35646](https://github.com/kubernetes/kubernetes/pull/35646), [@vishh](https://github.com/vishh)) * Node status updater should SetNodeStatusUpdateNeeded if it fails to update status ([#34368](https://github.com/kubernetes/kubernetes/pull/34368), [@jingxu97](https://github.com/jingxu97))
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Thu Dec 24 02:28:26 UTC 2020 - 136.4K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/AtomicDoubleArray.java
} /** * Atomically updates the element at index {@code i} with the results of applying the given * function to the current and given values. * * @param i the index to update * @param x the update value * @param accumulatorFunction the accumulator function * @return the updated value * @since 31.1 */ @CanIgnoreReturnValue
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 10.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/RelatedQueryService.java
*/ public OptionalEntity<RelatedQuery> getRelatedQuery(final String id) { return relatedQueryBhv.selectByPK(id); } /** * Stores (inserts or updates) a related query in the database. * After storing, the related query helper is updated to refresh the cache. * * @param relatedQuery the RelatedQuery entity to store */ public void store(final RelatedQuery relatedQuery) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.4K bytes - Viewed (0) -
android/guava/src/com/google/common/cache/Striped64.java
/** * Computes the function of current and new value. Subclasses should open-code this update * function for most uses, but the virtualized form is needed within retryUpdate. * * @param currentValue the current value (of either base or a cell) * @param newValue the argument from a user update call * @return result of the update function */ abstract long fn(long currentValue, long newValue); /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Jan 15 22:17:15 UTC 2025 - 11.4K bytes - Viewed (0)