- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 283 for word (0.03 sec)
-
src/main/java/org/codelibs/fess/app/web/api/admin/badword/ApiAdminBadwordAction.java
.status(ApiResult.Status.OK) .result()); } /** * Retrieves a specific bad word setting by ID. * * @param id the ID of the bad word to retrieve * @return JSON response containing the bad word configuration */ // GET /api/admin/badword/{id} @Execute public JsonResponse<ApiResult> get$setting(final String id) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 10.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/elevateword/CreateForm.java
/** The label type IDs associated with this elevate word entry */ public String[] labelTypeIds; /** The CRUD operation mode for form processing */ @ValidateTypeFailure public Integer crudMode; /** The word that should trigger document elevation in search results */ @Required public String suggestWord; /** The reading/pronunciation of the suggest word for language analysis */ public String reading;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/elevateword/AdminElevatewordAction.java
}).renderWith(data -> { registerLabels(data); }); } /** * Shows the form for editing an existing elevate word. * * @param form edit form containing the elevate word ID * @return HTML response for the edit elevate word form */ @Execute @Secured({ ROLE }) public HtmlResponse edit(final EditForm form) {
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/dict/stemmeroverride/StemmerOverrideItem.java
newOutput = output; } } /** * Gets the new input word. * * @return The new input word. */ public String getNewInput() { return newInput; } /** * Sets the new input word. * * @param newInput The new input word. */ public void setNewInput(final String newInput) { this.newInput = newInput; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/elevateword/EditForm.java
super(); } /** * The unique identifier of the elevate word configuration being edited. * This is a required field for identifying which elevate word entry to update. */ @Required @Size(max = 1000) public String id; /** * The username of the user who last updated this elevate word configuration. * Used for audit trail purposes to track who made changes. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/badword/UploadForm.java
/** * Form for uploading bad word files to the Fess search engine. * This form is used in the admin interface to upload bad word dictionary files * that contain words to be filtered from search results. */ public class UploadForm { /** * The multipart file containing bad words to be uploaded. * This file should contain a list of words that will be filtered from search results. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/elevateword/UploadForm.java
/** * Form for uploading elevate word files to the Fess search engine. * Elevate words are terms that should be promoted or given higher ranking in search results. * This form is used in the admin interface to upload elevate word configuration files. */ public class UploadForm { /** * The multipart file containing the elevate word configurations to be uploaded.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.5K 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) -
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)