- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for QUERY2 (0.07 sec)
-
src/test/java/org/codelibs/fess/helper/QueryHelperTest.java
Set.of("QUERY1", "QUERY2"), // buildQuery("QUERY1 AND QUERY2")); assertQuery( functionScoreQuery( orQuery(simpleQuery("QUERY1", titleBoost, contentBoost), simpleQuery("QUERY2", titleBoost, contentBoost))), Map.of("_default", List.of("QUERY1", "QUERY2")), // Set.of("QUERY1", "QUERY2"), //
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Jul 11 08:26:36 UTC 2024 - 39.8K bytes - Viewed (0) -
tests/test_schema_extra_examples.py
examples=["query1", "query2"], ), ): return data with pytest.warns(DeprecationWarning): @app.get("/query_example_examples/") def query_example_examples( data: Union[str, None] = Query( default=None, example="query_overridden", examples=["query1", "query2"], ), ):
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Oct 24 20:26:06 UTC 2023 - 37.7K bytes - Viewed (0) -
tests/test_openapi_examples.py
"summary": "Query One Summary", "description": "Query One Description", "value": "query1", }, "Query Two": { "value": "query2", }, }, ), ): return data @app.get("/header_examples/") def header_examples( data: Union[str, None] = Header( default=None, examples=[
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Sep 06 15:57:43 UTC 2024 - 17.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/search/SearchApiTests.java
@Test public void searchTestWithBoost() throws Exception { String field = "content"; String query1 = "java"; String query2 = "sample"; Map<String, String> params = new HashMap<>(); params.put("q", field + ":" + query1 + "^1000 OR " + field + ":" + query2); params.put("num", "100"); String response = checkMethodBase(new HashMap<>()).params(params).get("/api/v1/documents").asString();
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 18.6K bytes - Viewed (0)