- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 130 for _updated (0.04 seconds)
-
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) -
.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) -
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) -
.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/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()); } @Test
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 11.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/dict/protwords/ProtwordsFileTest.java
// Create test input stream String content = "updated1\n" + "updated2\n"; InputStream is = new ByteArrayInputStream(content.getBytes(StandardCharsets.UTF_8)); // Update from input stream protwordsFile.update(is); // Verify update PagingList<ProtwordsItem> list = protwordsFile.selectList(0, 100); assertEquals(2, list.size());Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 21.2K bytes - Click Count (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()); } @Test
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 10.7K 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/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)