- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 99 for Updater (0.04 seconds)
-
src/test/java/org/codelibs/fess/dict/stopwords/StopwordsFileTest.java
assertNull(result); updater.close(); } @Test public void test_updater_writeLine() { StopwordsFile.StopwordsUpdater updater = stopwordsFile.new StopwordsUpdater(null); // Test writing a comment line updater.write("# This is a comment"); updater.close(); } // Test edge cases @Test
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 18K bytes - Click Count (0) -
src/main/resources/fess_indices/fess_config.scheduled_job/scheduled_job.bulk
{"name":"Score Updater","target":"all","cronExpression":"0 * * * *","scriptType":"groovy","scriptData":"return container.getComponent(\"scoreUpdater\").execute();","jobLogging":false,"crawler":false,"available":true,"sortOrder":10,"createdBy":"system","createdTime":0,"updatedBy":"system","updatedTime":0} {"index":{"_index":"fess_config.scheduled_job","_id":"label_updater"}}Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 5K bytes - Click Count (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.Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 30.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/ds/DataStoreFactoryTest.java
testFactory.lastLoadedTime = System.currentTimeMillis() - 70000L; // One thread updates Thread updater = new Thread(() -> { testFactory.getDataStoreNames(); }); updater.start(); updater.join(); // Multiple threads read the lastLoadedTime for (int i = 0; i < 10; i++) { final int index = i;
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 18.2K bytes - Click Count (0) -
.github/workflows/update-test-buckets.yml
with: commit-message: Update test buckets branch: devprod/update-test-buckets branch-suffix: timestamp delete-branch: true title: 'Update test buckets' signoff: true sign-commits: true labels: | in:building-gradle @dev-productivity body: |Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Tue Mar 24 22:05:21 GMT 2026 - 2.4K bytes - Click Count (0) -
build-logic/build-update-utils/src/main/kotlin/gradlebuild.update-versions.gradle.kts
tasks.register<FixProjectHealthTask>("fixProjectHealth") tasks.register<PreparePatchRelease>("preparePatchRelease") { group = "Versioning" description = "Prepares the repository for a patch release: bumps version.txt, updates released-versions.json, and clears accepted API changes." versionFile = layout.projectDirectory.file("version.txt") releasedVersionsFile = releasedVersionsFile() dependsOn(":architecture-test:cleanAcceptedApiChanges")
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Mon Mar 23 14:47:12 GMT 2026 - 2.8K bytes - Click Count (0) -
.github/workflows/update-perf-test-buckets.yml
branch-suffix: timestamp delete-branch: true title: 'Update performance test durations' signoff: true sign-commits: true labels: | in:building-gradle @dev-productivity body: |Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Tue Mar 24 22:05:21 GMT 2026 - 1.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/job/PurgeDocJobTest.java
// Configure field and index names with special characters expiresFieldName = "expires-field.with@special#chars"; documentUpdateIndex = "fess.update-index$special%chars"; // Re-register FessConfig with updated values fessConfig = new TestFessConfig() { @Override public String getIndexFieldExpires() { return expiresFieldName; }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 16.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/it/admin/DocumentsTests.java
refresh(); // Verify documents were updated response = checkMethodBase(searchBody).get(SEARCHLIST_API_PATH + "/docs").asString(); List<Map<String, Object>> updatedDocs = JsonPath.from(response).getList("response.docs"); logger.info("Updated documents: {}", updatedDocs); // Verify updated content for (Map<String, Object> doc : updatedDocs) {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 9.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/webconfig/AdminWebconfigAction.java
}); return redirect(getClass()); } /** * Updates an existing web crawler configuration. * * @param form the edit form containing the updated web config data * @return HTML response redirecting to the list page after update */ @Execute @Secured({ ROLE }) public HtmlResponse update(final EditForm form) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:54:13 GMT 2026 - 22.2K bytes - Click Count (0)