- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 190 for wordt (0.01 sec)
-
src/main/java/org/codelibs/fess/dict/synonym/SynonymItem.java
newOutputs = outputs; } } /** * Gets the new input words. * * @return The new input words. */ public String[] getNewInputs() { return newInputs; } /** * Sets the new input words. * * @param newInputs The new input words. */ public void setNewInputs(final String[] newInputs) { this.newInputs = newInputs;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/stopwords/DownloadForm.java
import org.lastaflute.web.validation.Required; /** * The download form for stop words dictionary. * This form is used for downloading stop words dictionary files from the admin interface. * */ public class DownloadForm { /** * Dictionary ID for identifying the stop words dictionary to download. */ @Required public String dictId; /** * Default constructor.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.1K bytes - Viewed (0) -
src/main/resources/fess_indices/fess/zh-cn/stopwords.txt
— - , 。 、 : ; ! · ? “ ” ) ( 【 】 [ ] ● # the line below contains an IDEOGRAPHIC SPACE character (Used as a space in Chinese) # English Stop Words
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jun 17 08:00:22 UTC 2017 - 310 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/stemmeroverride/UploadForm.java
import org.lastaflute.web.validation.Required; /** * Form for uploading stemmer override files to the Fess search engine. * Stemmer override allows custom rules to override the default stemming behavior for specific words. * This form is used in the admin interface to upload custom stemmer override dictionary files. */ public class UploadForm { /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/elevateword/SearchBody.java
import org.codelibs.fess.app.web.api.admin.BaseSearchBody; /** * Search request body for elevate word administration. * Extends BaseSearchBody with elevate word-specific search parameters. */ public class SearchBody extends BaseSearchBody { /** The elevate word ID to search for. */ public String id; /** * Default constructor for SearchBody. */ public SearchBody() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.1K bytes - Viewed (0) -
src/main/webapp/css/admin/style.css
font-size: 120%; font-weight: 600; } section.content table { display: table; table-layout: fixed; width } section.content table td { display: table-cell; word-wrap: break-word; overflow-wrap: break-word; } section.content table .label { color: #fff; } textarea.systemInfoData { height: 22em; line-height: 1.5em; } .login-box { height: 500px;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Feb 13 07:47:04 UTC 2020 - 1.1K bytes - Viewed (0) -
src/main/resources/fess_indices/fess/zh-tw/stopwords.txt
— - , 。 、 : ; ! · ? “ ” ) ( 【 】 [ ] ● # the line below contains an IDEOGRAPHIC SPACE character (Used as a space in Chinese) # English Stop Words
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jun 17 08:00:22 UTC 2017 - 310 bytes - Viewed (0) -
android/guava/src/com/google/common/base/CaseFormat.java
} abstract String normalizeWord(String word); String normalizeFirstWord(String word) { return normalizeWord(word); } private static String firstCharOnlyToUpper(String word) { return word.isEmpty() ? word : Ascii.toUpperCase(word.charAt(0)) + Ascii.toLowerCase(word.substring(1)); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Apr 15 22:14:00 UTC 2025 - 6.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/suggest/AdminSuggestAction.java
@Secured({ ROLE, ROLE + VIEW }) public HtmlResponse index() { saveToken(); return asHtml(path_AdminSuggest_AdminSuggestJsp).useForm(SuggestForm.class); } /** * Deletes all suggest words from the suggest index. * * @return HTML response redirecting to the index page */ @Execute @Secured({ ROLE }) public HtmlResponse deleteAllWords() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/protwords/SearchForm.java
import org.lastaflute.web.validation.Required; /** * The search form for Protected Words. */ public class SearchForm { /** * Default constructor for SearchForm. */ public SearchForm() { } /** * The dictionary ID field for protected words dictionary operations. */ @Required public String dictId;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1K bytes - Viewed (0)