- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 138 for word2 (0.02 sec)
-
src/test/java/org/codelibs/fess/dict/stopwords/StopwordsFileTest.java
assertEquals("word3", stopwordsFile.stopwordsItemList.get(2).getInput()); } public void test_reload_withEscapedCharacters() { String content = "word\\\\1\n" + // word\1 "word\\\\\\\\2\n" + // word\\2 "word3\n"; InputStream is = new ByteArrayInputStream(content.getBytes(StandardCharsets.UTF_8));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 17.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/QueryStringBuilderTest.java
conditions.put("q", new String[] { "search term" }); conditions.put("epq", new String[] { "exact phrase" }); conditions.put("oq", new String[] { "word1 word2" }); conditions.put("nq", new String[] { "exclude" }); conditions.put("filetype", new String[] { "pdf" }); conditions.put("sitesearch", new String[] { "example.com" });
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 16.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/stopwords/StopwordsItemTest.java
StopwordsItem item = new StopwordsItem(123, "word"); assertEquals("StopwordsItem [id=123, inputs=word, newInputs=null]", item.toString()); item.setNewInput("updated"); assertEquals("StopwordsItem [id=123, inputs=word, newInputs=updated]", item.toString()); item.setNewInput(""); assertEquals("StopwordsItem [id=123, inputs=word, newInputs=]", item.toString()); }
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/ProtwordsFileTest.java
// Create content with empty lines and comments String content = "# Comment line\n" + "\n" + // empty line "word1\n" + " \n" + // whitespace line (may be treated as content) "# Another comment\n" + "word2\n"; // Write content to test file writeTestFile(content); // Reload and verify protwordsFile.reload(null);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 20.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SuggestHelper.java
* * @param word The elevate word. * @param reading The reading of the word. * @param tags The tags associated with the word. * @param permissions The permissions for the word. * @param boost The boost value for the word. * @param apply true to apply the changes immediately. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 22.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/elevateword/AdminElevatewordAction.java
/** * Shows the main elevate word management page. * * @return HTML response for the elevate word list page */ @Execute @Secured({ ROLE, ROLE + VIEW }) public HtmlResponse index() { return asListHtml(); } /** * Lists elevate words with pagination support. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 22.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/BadWordService.java
} /** * Gets a bad word by its ID. * @param id The bad word ID. * @return Optional entity containing the bad word if found. */ public OptionalEntity<BadWord> getBadWord(final String id) { return badWordBhv.selectByPK(id); } /** * Stores (inserts or updates) a bad word. * @param badWord The bad word to store. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.6K bytes - Viewed (0) -
src/main/resources/fess_label_en.properties
labels.suggest_word_configuration=Suggest Word labels.suggest_word_title_details=Suggest Word labels.suggest_word_type=Word Type labels.suggest_word_number=Number of Words labels.suggest_word_type_all=All labels.suggest_word_type_document=Document labels.suggest_word_type_query=Query labels.elevate_word_configuration=Elevate Word labels.elevate_word_title_details=Elevate Word labels.elevate_word_link_list=List
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 40.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/elevateword/ApiAdminElevatewordAction.java
import org.lastaflute.web.response.StreamResponse; import jakarta.annotation.Resource; /** * API action for admin elevate word management. * Provides RESTful API endpoints for managing elevate word settings in the Fess search engine. * Elevate words boost specific search terms to appear higher in search results. */ public class ApiAdminElevatewordAction extends FessApiAdminAction {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 12.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/badword/ApiAdminBadwordAction.java
/** Helper for managing search suggestions and bad words */ @Resource protected SuggestHelper suggestHelper; /** * Retrieves bad word settings with pagination support. * * @param body the search body containing pagination and filter parameters * @return JSON response containing list of bad word configurations */ // GET /api/admin/badword/settings
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 10.3K bytes - Viewed (0)