- Sort Score
- Result 10 results
- Languages All
Results 161 - 170 of 853 for _query (0.04 sec)
-
src/test/java/org/codelibs/fess/job/UpdateLabelJobTest.java
} // Test query() method public void test_query() { QueryBuilder queryBuilder = QueryBuilders.matchAllQuery(); UpdateLabelJob returnedJob = updateLabelJob.query(queryBuilder); assertSame(updateLabelJob, returnedJob); // Method chaining assertEquals(queryBuilder, updateLabelJob.queryBuilder); } // Test query() method with null
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/QueryProcessor.java
* @param boost the boost factor to apply to the query * @return the processed OpenSearch QueryBuilder */ public QueryBuilder execute(final QueryContext context, final Query query, final float boost) { return filterChain.execute(context, query, boost); } /** * Adds a query command to the processor. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.1K bytes - Viewed (0) -
docs/ja/docs/tutorial/path-params-numeric-validations.md
## まとめ `Query`と`Path`(そしてまだ見たことない他のもの)では、[クエリパラメータと文字列の検証](query-params-str-validations.md){.internal-link target=_blank}と同じようにメタデータと文字列の検証を宣言することができます。 また、数値のバリデーションを宣言することもできます: * `gt`: より大きい(`g`reater `t`han) * `ge`: 以上(`g`reater than or `e`qual) * `lt`: より小さい(`l`ess `t`han) * `le`: 以下(`l`ess than or `e`qual) /// info | 情報 `Query`、`Path`などは後に共通の`Param`クラスのサブクラスを見ることになります。(使う必要はありません)
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sat Jan 04 10:53:58 UTC 2025 - 5.9K bytes - Viewed (0) -
docs/em/docs/tutorial/body-multiple-params.md
# 💪 - 💗 🔢 🔜 👈 👥 ✔️ 👀 ❔ ⚙️ `Path` & `Query`, ➡️ 👀 🌅 🏧 ⚙️ 📨 💪 📄. ## 🌀 `Path`, `Query` & 💪 🔢 🥇, ↗️, 👆 💪 🌀 `Path`, `Query` & 📨 💪 🔢 📄 ➡ & **FastAPI** 🔜 💭 ⚫️❔. & 👆 💪 📣 💪 🔢 📦, ⚒ 🔢 `None`: {* ../../docs_src/body_multiple_params/tutorial001.py hl[19:21] *} /// note 👀 👈, 👉 💼, `item` 👈 🔜 ✊ ⚪️➡️ 💪 📦. ⚫️ ✔️ `None` 🔢 💲. /// ## 💗 💪 🔢
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 3.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/WildcardQueryCommand.java
"Unknown q: " + query.getClass() + " => " + query); } /** * Converts a wildcard query to an appropriate OpenSearch QueryBuilder. * * @param context The query context containing field and search information * @param wildcardQuery The Lucene wildcard query to convert * @param boost The boost factor to apply to the query * @return The converted OpenSearch QueryBuilder
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.7K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/HttpUrlJvmTest.kt
@Test fun toJavaNetUrl() { val httpUrl = "http://username:password@host/path?query#fragment".toHttpUrl() val javaNetUrl = httpUrl.toUrl() assertThat(javaNetUrl.toString()) .isEqualTo("http://username:password@host/path?query#fragment") } @Test fun toUri() { val httpUrl = "http://username:password@host/path?query#fragment".toHttpUrl() val uri = httpUrl.toUri() assertThat(uri.toString())
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 12K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/RoleService.java
}); userBhv.selectCursor(cb -> cb.query().setRoles_Equal(role.getId()), entity -> { entity.setRoles( stream(entity.getRoles()).get(stream -> stream.filter(s -> !s.equals(role.getId())).toArray(n -> new String[n]))); userBhv.insertOrUpdate(entity); }); } /** * Sets up the list condition for the role query. * @param cb The role condition bean.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SuggestHelper.java
import org.codelibs.fess.util.ComponentUtil; import org.opensearch.common.lucene.search.function.CombineFunction; import org.opensearch.index.query.BoolQueryBuilder; import org.opensearch.index.query.QueryBuilders; import org.opensearch.index.query.functionscore.FunctionScoreQueryBuilder; import org.opensearch.index.query.functionscore.ScoreFunctionBuilders; import org.opensearch.search.sort.SortBuilders; import jakarta.annotation.PostConstruct; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 22.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java
* * @param query the search query string * @param params search request parameters including pagination and filters * @param userBean optional user information for personalized search * @return list of search result documents with fused ranking scores */ public List<Map<String, Object>> search(final String query, final SearchRequestParams params,
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 24.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/BoostDocumentRuleService.java
cb.query().setBoostExpr_Wildcard(wrapQuery(boostDocumentRulePager.boostExpr)); } // TODO Long, Integer, String supported only. // setup condition cb.query().addOrderBy_SortOrder_Asc(); cb.query().addOrderBy_CreatedTime_Asc(); // search }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.5K bytes - Viewed (0)