- Sort Score
- Result 10 results
- Languages All
Results 111 - 120 of 140 for dictionary (0.17 sec)
-
src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideItem.java
package org.codelibs.fess.dict.stemmeroverride; import java.util.Objects; import org.codelibs.core.lang.StringUtil; import org.codelibs.fess.dict.DictionaryItem; /** * Represents an item in a stemmer override dictionary. * This class stores a mapping from an input word to its corresponding * output stem. It also tracks updated values for the item. */ public class StemmerOverrideItem extends DictionaryItem {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.3K bytes - Viewed (0) -
docs/en/docs/advanced/templates.md
* Declare a `Request` parameter in the *path operation* that will return a template. * Use the `templates` you created to render and return a `TemplateResponse`, pass the name of the template, the request object, and a "context" dictionary with key-value pairs to be used inside of the Jinja2 template. {* ../../docs_src/templates/tutorial001.py hl[4,11,15:18] *} /// note Before FastAPI 0.108.0, Starlette 0.29.0, the `name` was the first parameter.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 3.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/synonym/SynonymItem.java
import org.apache.commons.lang3.StringUtils; import org.codelibs.core.collection.ArrayUtil; import org.codelibs.core.lang.StringUtil; import org.codelibs.fess.dict.DictionaryItem; /** * Represents an item in a synonym dictionary. * This class stores a set of input words and their corresponding output synonyms. * It also tracks updated values for the item. */ public class SynonymItem extends DictionaryItem { /** The original input words. */
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/pager/StopwordsPager.java
/** The number of records per page. */ private int pageSize; /** The current page number. */ private int currentPageNumber; /** The ID of the stopwords dictionary. */ public String id; /** * Clears the pager's state to its default values. */ public void clear() { allRecordCount = 0; allPageCount = 0; existPrePage = false;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.6K bytes - Viewed (0) -
src/main/resources/fess_config.properties
online.help.name.reqheader=reqheader # Online help key for synonym dictionary. online.help.name.dict.synonym=synonym # Online help key for dictionary. online.help.name.dict=dict # Online help key for Kuromoji dictionary. online.help.name.dict.kuromoji=kuromoji # Online help key for protected words dictionary. online.help.name.dict.protwords=protwords # Online help key for stopwords dictionary. online.help.name.dict.stopwords=stopwords
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 14:45:37 UTC 2025 - 54.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/KuromojiPager.java
/** The number of items per page. */ private int pageSize; /** The current page number. */ private int currentPageNumber; /** The ID of the Kuromoji dictionary. */ public String id; /** * Clears the pager fields. */ public void clear() { allRecordCount = 0; allPageCount = 0; existPrePage = false;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/kuromoji/KuromojiItem.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.dict.kuromoji; import java.util.Objects; import org.codelibs.fess.dict.DictionaryItem; /** * An item in a Kuromoji dictionary. */ public class KuromojiItem extends DictionaryItem { private final String token; private final String segmentation; private final String reading; private final String pos;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.3K bytes - Viewed (0) -
src/main/assemblies/files/fess.in.sh
FESS_JAVA_OPTS="$FESS_JAVA_OPTS -Dfess.search_engine.http_address=$SEARCH_ENGINE_HTTP_URL" fi if [ "x$FESS_DICTIONARY_PATH" != "x" ]; then FESS_JAVA_OPTS="$FESS_JAVA_OPTS -Dfess.dictionary.path=$FESS_DICTIONARY_PATH" fi
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Jan 15 06:32:15 UTC 2023 - 4.7K bytes - Viewed (0) -
src/main/assemblies/files/fess.in.bat
REM External opensearch cluster REM set FESS_JAVA_OPTS=%FESS_JAVA_OPTS% -Dfess.search_engine.http_address=http://localhost:9200 REM set FESS_JAVA_OPTS=%FESS_JAVA_OPTS% -Dfess.dictionary.path=%SEARCH_ENGINE_HOME%/config/
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Jan 15 06:32:15 UTC 2023 - 4.2K bytes - Viewed (0) -
docs/de/docs/advanced/custom-response.md
Importieren Sie die `Response`-Klasse (-Unterklasse), die Sie verwenden möchten, und deklarieren Sie sie im *Pfadoperation-Dekorator*. Bei umfangreichen Responses ist die direkte Rückgabe einer `Response` viel schneller als ein Dictionary zurückzugeben.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 13.1K bytes - Viewed (0)