- Sort Score
- Result 10 results
- Languages All
Results 231 - 240 of 1,102 for cquery (0.07 sec)
-
README.md
suggester.indexer() .indexFromDocument(reader, 2, 100) // threads=2, batch=100 .getResponse(); ``` ### Index from Query Logs ```java import org.codelibs.fess.suggest.index.contents.querylog.QueryLog; // Add suggestions from search query logs QueryLog queryLog = new QueryLog("user search query", "user123"); suggester.indexer().indexFromQueryLog(queryLog); ``` ### Popular Words Analytics ```java
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Sun Aug 31 03:31:14 UTC 2025 - 12.1K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/app/service/RequestHeaderService.java
op.setRefreshPolicy(Constants.TRUE); }); } /** * Sets up the database query conditions for retrieving request headers based on pager criteria. * * @param cb the condition bean for building the database query * @param requestHeaderPager the pager containing search and filter criteria */
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.2K bytes - Viewed (0) -
scripts/sponsors.py
*, settings: Settings, query: str, after: str | None = None, ) -> dict[str, Any]: headers = {"Authorization": f"token {settings.sponsors_token.get_secret_value()}"} variables = {"after": after} response = httpx.post( github_graphql_url, headers=headers, timeout=settings.httpx_timeout, json={"query": query, "variables": variables, "operationName": "Q"}, )Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Tue Dec 16 12:34:01 UTC 2025 - 6.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/FileConfigService.java
cb.query().setDescription_Wildcard(fileConfigPager.description); } else if (fileConfigPager.description.endsWith("*")) { cb.query().setDescription_Prefix(fileConfigPager.description.replaceAll("\\*$", StringUtil.EMPTY)); } else { cb.query().setDescription_MatchPhrase(fileConfigPager.description); } }
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.4K bytes - Viewed (0) -
tests/test_request_params/test_query/test_optional_str.py
@app.get("/optional-alias") async def read_optional_alias( p: Annotated[Optional[str], Query(alias="p_alias")] = None, ): return {"p": p} class QueryModelOptionalAlias(BaseModel): p: Optional[str] = Field(None, alias="p_alias") @app.get("/model-optional-alias") async def read_model_optional_alias(p: Annotated[QueryModelOptionalAlias, Query()]): return {"p": p.p} @pytest.mark.parametrize( "path",
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Sat Dec 27 18:19:10 UTC 2025 - 8.1K bytes - Viewed (0) -
docs/ru/docs/tutorial/cookie-params.md
Вы можете задать параметры Cookie таким же способом, как `Query` и `Path` параметры. ## Импорт `Cookie` { #import-cookie } Сначала импортируйте `Cookie`: {* ../../docs_src/cookie_params/tutorial001_an_py310.py hl[3] *} ## Объявление параметров `Cookie` { #declare-cookie-parameters } Затем объявляйте параметры cookie, используя ту же структуру, что и с `Path` и `Query`.Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Tue Sep 30 11:24:39 UTC 2025 - 2.6K bytes - Viewed (0) -
tests/test_query_cookie_header_model_extra_params.py
from fastapi import Cookie, FastAPI, Header, Query from fastapi.testclient import TestClient from pydantic import BaseModel app = FastAPI() class Model(BaseModel): param: str model_config = {"extra": "allow"} @app.get("/query") async def query_model_with_extra(data: Model = Query()): return data @app.get("/header") async def header_model_with_extra(data: Model = Header()): return data
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Sat Dec 20 15:55:38 UTC 2025 - 2.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/RelatedContentService.java
cb.query().setContent_Wildcard(wrapQuery(relatedContentPager.content)); } // TODO Long, Integer, String supported only. // setup condition cb.query().addOrderBy_Term_Asc(); cb.query().addOrderBy_CreatedTime_Asc(); // search } /** * Retrieves a list of all available related content entities.
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.8K bytes - Viewed (0) -
docs/resiliency/resiliency-verify-healing-script.sh
FILE=$(echo $1 | jq -r '.args.file') DIR=$(echo $1 | jq -r '.args.dir') DEEP=$(echo $1 | jq -r '.args.deep') WANT=$(echo $1 | jq 'del(.args)') # ... and remove args from wanted result ALIAS_NAME=myminio BUCKET="test-bucket" JQUERY='select(.name=="'"${BUCKET}"'/'"${DIR}"'/'"${FILE}"'") | {"before":{"color": .before.color, "missing": .before.missing, "corrupted": .before.corrupted},"after":{"color": .after.color, "missing": .after.missing, "corrupted": .after.corrupted}}'
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Sat Dec 21 04:24:45 UTC 2024 - 996 bytes - Viewed (0) -
README.md
* Both _paths_ take `GET` operations (also known as HTTP _methods_). * The _path_ `/items/{item_id}` has a _path parameter_ `item_id` that should be an `int`. * The _path_ `/items/{item_id}` has an optional `str` _query parameter_ `q`. ### Interactive API docs Now go to <a href="http://127.0.0.1:8000/docs" class="external-link" target="_blank">http://127.0.0.1:8000/docs</a>.Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Thu Dec 25 11:01:37 UTC 2025 - 26.4K bytes - Viewed (0)