- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 52 for stemmo (0.3 sec)
-
src/main/resources/fess_indices/_aws/fess.json
},
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/dict/stemmeroverride/CreateForm.java
/** * Form class for creating new stemmer override dictionary entries. * This form handles the creation of stemmer override rules that modify * the stemming behavior for specific words. * */ public class CreateForm { /** * Creates a new CreateForm instance. */ public CreateForm() { } /** The dictionary ID to which this stemmer override entry belongs */ @Required
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideItem.java
this.newInput = newInput; } /** * Gets the new output stem. * * @return The new output stem. */ public String getNewOutput() { return newOutput; } /** * Sets the new output stem. * * @param newOutputs The new output stem. */ public void setNewOutput(final String newOutputs) { newOutput = newOutputs; }
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/resources/fess_label_pt_BR.properties
labels.related_content_content=Conteúdo labels.related_content_list_term=Termo de pesquisa labels.related_content_term=Termo de pesquisa labels.related_content_title_details=Conteúdo relacionado labels.related_query_configuration=Consulta relacionada labels.related_query_list_term=Termo de pesquisa labels.related_query_queries=Consultas labels.related_query_term=Termo de pesquisa labels.related_query_title_details=Consulta relacionada
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 45.1K bytes - Viewed (0) -
src/main/resources/fess_message_de.properties
errors.failed_to_upload_synonym_file = Fehler beim Hochladen einer Synonymdatei. errors.failed_to_download_stemmeroverride_file = Fehler beim Herunterladen einer Stemmer-Override-Datei. errors.failed_to_upload_stemmeroverride_file = Fehler beim Hochladen einer Stemmer-Override-Datei. errors.failed_to_download_kuromoji_file = Fehler beim Herunterladen einer Kuromoji-Datei.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 02:36:47 UTC 2025 - 12.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideFile.java
/** * Manages a dictionary file for stemmer overrides. * This class handles reading, parsing, and updating files that contain * stemmer override rules, where each rule maps an input word to an * output stem. The file format is expected to be `input => output`. * * The class provides methods for retrieving, adding, updating, and * deleting stemmer override items, as well as reloading the dictionary
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 13.7K bytes - Viewed (0) -
src/main/resources/fess_label_it.properties
labels.crawling_info_CrawlerExecTime=Tempo di esecuzione crawler labels.crawling_info_CrawlerStatus=Stato crawler labels.crawling_info_WebFsCrawlExecTime=Tempo di esecuzione scansione (Web/File) labels.crawling_info_WebFsCrawlStartTime=Ora di inizio scansione (Web/File) labels.crawling_info_WebFsCrawlEndTime=Ora di fine scansione (Web/File) labels.crawling_info_WebFsIndexExecTime=Tempo di esecuzione indicizzazione (Web/File)
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 43.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/StemmerOverrideService.java
.orElse(OptionalEntity.empty()); } /** * Retrieves a specific stemmer override item by dictionary ID and item ID. * * @param dictId The ID of the stemmer override dictionary * @param id The unique ID of the stemmer override item to retrieve * @return An OptionalEntity containing the stemmer override item if found, empty otherwise */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 5.7K bytes - Viewed (0) -
src/main/resources/fess_indices/fess.json
}, "filter": { "stemmer_en_filter": { "type": "stemmer", "name": "english" }, "english_override": { "type": "stemmer_override", "rules_path": "${fess.dictionary.path}en/stemmer_override.txt" }, "possessive_stemmer_en_filter": { "type": "stemmer", "name": "possessive_english" }, "stopword_en_filter": {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Fri Jun 06 14:17:42 UTC 2025 - 39.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/stemmeroverride/UploadForm.java
/** * 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 { /** * The dictionary ID that identifies which stemmer override dictionary configuration to update.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.7K bytes - Viewed (0)