- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 177 for wordt (0.03 sec)
-
src/main/resources/fess_indices/fess/nl/stopwords.txt
nu ge geen omdat iets worden toch al waren veel meer doen toen moet ben zonder kan hun dus alles onder ja eens hier wie werd altijd doch wordt wezen kunnen ons zelf tegen na reeds wil kon niets uw iemand geweest
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Mon Nov 27 12:59:36 UTC 2023 - 592 bytes - Viewed (0) -
src/main/resources/fess_message_nl.properties
errors.invalid_query_sort_value = De opgegeven sorteerwaarde {0} is ongeldig. errors.invalid_query_unsupported_sort_field = Het opgegeven sorteerveld {0} wordt niet ondersteund. errors.invalid_query_unsupported_sort_order = De opgegeven sorteervolgorde {0} wordt niet ondersteund. errors.invalid_query_cannot_process=Kan de opgegeven query niet verwerken. errors.crud_invalid_mode = Ongeldige modus. (Is {1}, niet {0})
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 12K bytes - Viewed (0) -
src/main/resources/fess_label_nl.properties
labels.facet_contentLength_5m=5MB - labels.facet_filetype_title=Bestandstype labels.facet_filetype_html=HTML labels.facet_filetype_word=MS Word labels.facet_filetype_excel=MS Excel labels.facet_filetype_powerpoint=MS PowerPoint labels.facet_filetype_odt=ODF Word labels.facet_filetype_ods=ODF Spreadsheet labels.facet_filetype_odp=ODF Presentatie labels.facet_filetype_pdf=PDF labels.facet_filetype_fb2=FictionBook
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 42.8K bytes - Viewed (1) -
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/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/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/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/resources/fess_indices/_aws/fess.json
}, "dutch_keywords": { "type": "keyword_marker",
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jun 14 00:36:40 UTC 2025 - 117.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)