- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 1,038 for terme (0.31 sec)
-
docs/fr/docs/tutorial/body-multiple-params.md
# Body - Paramètres multiples Maintenant que nous avons vu comment manipuler `Path` et `Query`, voyons comment faire pour le corps d'une requête, communément désigné par le terme anglais "body". ## Mélanger les paramètres `Path`, `Query` et body Tout d'abord, sachez que vous pouvez mélanger les déclarations des paramètres `Path`, `Query` et body, **FastAPI** saura quoi faire.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sat Nov 09 11:10:17 UTC 2024 - 5.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/FuzzyQueryCommandTest.java
QueryBuilder result = fuzzyQueryCommand.convertFuzzyQuery(context, fuzzyQuery, 1.0f); assertNotNull(result); assertTrue(result.toString().contains(text)); } } // Test with empty term text public void test_convertFuzzyQuery_withEmptyTerm() { QueryContext context = new QueryContext("test", false); Term term = new Term("title", "");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/RelatedQueryHelper.java
return queries; } } return StringUtil.EMPTY_STRINGS; } private String toLowerCase(final String term) { return term != null ? term.toLowerCase(Locale.ROOT) : term; }
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/webapp/WEB-INF/view/common/help.jsp
</dd> <dt>Boost</dt> <dd> To boost a term use the "^" symbol with a boost factor (a number) at the end of the term you are searching. <pre>Fess^100</pre> </dd> <dt>Fuzzy</dt> <dd> To do a fuzzy search use the "~" symbol at the end of a single word term. For example to search for a term similar in spelling to "Fess" use the fuzzy search: <pre>Fess~0.5</pre> </dd>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Mon Feb 26 14:01:31 UTC 2018 - 2.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/mapping/CreateForm.java
/** CRUD operation mode (CREATE, EDIT, etc.) */ @ValidateTypeFailure public Integer crudMode; /** Input terms (comma-separated) that will be mapped to the output term */ @Required @Size(max = 1000) public String inputs; /** Output term that input terms will be mapped to */ @Size(min = 1, max = 1000) public String output; /**
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/query/PhraseQueryCommand.java
final Term[] terms = phraseQuery.getTerms(); if (terms.length == 0) { throw new InvalidQueryException(messages -> messages.addErrorsInvalidQueryUnknown(UserMessages.GLOBAL_PROPERTY_KEY), "Unknown phrase query: " + phraseQuery); } final FessConfig fessConfig = ComponentUtil.getFessConfig(); final String field = terms[0].field();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/FacetResponse.java
/** * Constructs a Field from OpenSearch Terms aggregation. * Decodes the field name and processes all term buckets to extract * field values and their document counts. * * @param termFacet the OpenSearch Terms aggregation containing field facet data */ public Field(final Terms termFacet) {
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/test/java/org/codelibs/fess/query/PhraseQueryCommandTest.java
} public void test_convertPhraseQuery_multipleTerms_defaultField() { // Test with multiple terms in default field PhraseQuery.Builder builder = new PhraseQuery.Builder(); builder.add(new Term(Constants.DEFAULT_FIELD, "hello")); builder.add(new Term(Constants.DEFAULT_FIELD, "world")); PhraseQuery phraseQuery = builder.build();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/RelatedContentHelper.java
} private String toLowerCase(final String term) { return term != null ? term.toLowerCase(Locale.ROOT) : term; } /** * Sets the prefix used to identify regex patterns in related content terms. * When a term starts with this prefix, it is treated as a regular expression * pattern rather than an exact match term. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/RelatedQueryService.java
* This method configures wildcard searches for term and queries fields, and sets up ordering. * * @param cb the condition bean for building the query * @param relatedQueryPager the pager containing search parameters */ protected void setupListCondition(final RelatedQueryCB cb, final RelatedQueryPager relatedQueryPager) { if (StringUtil.isNotBlank(relatedQueryPager.term)) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.4K bytes - Viewed (0)