- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 101 for Ford (0.03 sec)
-
src/test/java/org/codelibs/fess/suggest/request/suggest/SuggestResponseTest.java
List<SuggestItem> items = new ArrayList<>(); for (int i = 0; i < 100; i++) { words.add("word" + i); String[][] readings = new String[1][]; readings[0] = new String[] { "word" + i }; items.add(new SuggestItem(new String[] { "word" + i }, readings, new String[] { "content" }, 1, 0, -1, new String[] { "tag1" },
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 6.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/index/contents/DefaultContentsParser.java
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 14.9K 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: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/ElevateWordService.java
}).createPageNumberList()); return elevateWordList; } /** * Retrieves a specific elevate word by its ID, including associated label type information. * * @param id the unique identifier of the elevate word * @return OptionalEntity containing the elevate word if found, or empty if not found */ public OptionalEntity<ElevateWord> getElevateWord(final String id) {
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 18.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/entity/ElevateWord.java
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Fri Jul 04 14:00:23 UTC 2025 - 4K 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: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/settings/BadWordSettings.java
} if (logger.isDebugEnabled()) { logger.debug("Adding bad word: index={}, word={}", arraySettings.arraySettingsIndexName, badWord); } arraySettings.add(BAD_WORD_SETTINGS_KEY, badWord); } /** * Delete a bad word. * @param badWord Bad word */ public void delete(final String badWord) { if (logger.isDebugEnabled()) {Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Sun Nov 23 03:02:17 UTC 2025 - 5.3K bytes - Viewed (0) -
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: Sat Dec 20 09:19:18 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/api/admin/elevateword/EditBody.java
import org.codelibs.fess.app.web.admin.elevateword.EditForm; /** * Request body class for elevate word edit operations in the admin REST API. * This class extends EditForm to inherit the necessary form validation and binding capabilities * for elevate word management operations. */ public class EditBody extends EditForm { /** * Default constructor. */ public EditBody() {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.1K bytes - Viewed (0) -
src/main/resources/fess_config.properties
# Seed value for popular word suggestion. suggest.popular.word.seed=0 # Tags for popular word suggestion. suggest.popular.word.tags= # Fields for popular word suggestion. suggest.popular.word.fields= # Excluded words for popular word suggestion. suggest.popular.word.excludes= # Number of popular words to suggest. suggest.popular.word.size=10 # Window size for popular word suggestion.
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Dec 11 09:47:03 UTC 2025 - 54.8K bytes - Viewed (0)