- Sort Score
- Result 10 results
- Languages All
Results 641 - 650 of 1,990 for spath (0.02 sec)
-
docs/ko/llm-prompt.md
### Preferred translations / glossary Use the following preferred translations when they apply in documentation prose: - request (HTTP): 요청 - response (HTTP): 응답 - path operation: 경로 처리 - path operation function: 경로 처리 함수 ### `///` admonitions 1) Keep the admonition keyword in English (do not translate `note`, `tip`, etc.). 2) If a title is present, prefer these canonical titles:
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Sat Dec 20 17:32:05 UTC 2025 - 1.4K bytes - Viewed (0) -
docs/es/docs/advanced/additional-status-codes.md
# Códigos de Estado Adicionales { #additional-status-codes } Por defecto, **FastAPI** devolverá los responses usando un `JSONResponse`, colocando el contenido que devuelves desde tu *path operation* dentro de ese `JSONResponse`. Usará el código de estado por defecto o el que configures en tu *path operation*. ## Códigos de estado adicionales { #additional-status-codes_1 }Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Tue Dec 16 16:33:45 UTC 2025 - 2.1K bytes - Viewed (0) -
scripts/topic_repos.py
owner_html_url=repo.owner.html_url, ) ) data = [repo.model_dump() for repo in final_repos] # Local development # repos_path = Path("../docs/en/data/topic_repos.yml") repos_path = Path("./docs/en/data/topic_repos.yml") repos_old_content = repos_path.read_text(encoding="utf-8") new_repos_content = yaml.dump(data, sort_keys=False, width=200, allow_unicode=True)Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Tue Dec 16 12:34:01 UTC 2025 - 2.7K bytes - Viewed (0) -
tests/test_tutorial/test_query_params/test_tutorial004.py
), ( "/users/42/items/baz?short=true", {"item_id": "baz", "owner_id": 42}, ), ], ) def test_read_user_item(client: TestClient, path, expected_json): response = client.get(path) assert response.status_code == 200 assert response.json() == expected_json def test_openapi_schema(client: TestClient): response = client.get("/openapi.json")Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Fri Dec 26 10:43:02 UTC 2025 - 5.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/thumbnail/ThumbnailAction.java
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.4K bytes - Viewed (0) -
docs/zh/docs/how-to/general.md
在文档界面中添加**路径操作**的标签和进行分组,请阅读 [教程 - 路径操作配置 - Tags 参数](../tutorial/path-operation-configuration.md#tags){.internal-link target=_blank} 文档。 ## 文档的概要和描述 - OpenAPI 在文档界面中添加**路径操作**的概要和描述,请阅读 [教程 - 路径操作配置 - Summary 和 Description 参数](../tutorial/path-operation-configuration.md#summary-description){.internal-link target=_blank} 文档。 ## 文档的响应描述 - OpenAPIRegistered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Mon Apr 22 23:41:09 UTC 2024 - 2.1K bytes - Viewed (0) -
docs/es/docs/tutorial/dependencies/dependencies-with-yield.md
* `"function"`: iniciar la dependencia antes de la *path operation function* que maneja el request, terminar la dependencia después de que termine la *path operation function*, pero **antes** de que el response se envíe de vuelta al cliente. Entonces, la función de dependencia se ejecutará **alrededor** de la *path operation **function***.
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 20:41:43 UTC 2025 - 13.7K bytes - Viewed (0) -
internal/config/notify/help.go
config.HelpKV{ Key: target.KafkaClientTLSCert, Description: "path to client certificate for mTLS auth", Optional: true, Type: "path", Sensitive: true, }, config.HelpKV{ Key: target.KafkaClientTLSKey, Description: "path to client key for mTLS auth", Optional: true, Type: "path", Sensitive: true, }, config.HelpKV{Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Fri Sep 06 23:06:30 UTC 2024 - 19.2K bytes - Viewed (0) -
docs/pt/docs/advanced/using-request-directly.md
/// tip | Dica Note que neste caso, nós estamos declarando o parâmetro de path ao lado do parâmetro da requisição. Assim, o parâmetro de path será extraído, validado, convertido para o tipo especificado e anotado com OpenAPI. Do mesmo jeito, você pode declarar qualquer outro parâmetro normalmente, e além disso, obter o `Request` também.
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 20:41:43 UTC 2025 - 2.7K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFile.java
* @throws SmbException if an error occurs while resolving the DFS path */ public String getDfsPath() throws SmbException { try { String path = this.treeConnection.ensureDFSResolved(this.fileLocator).getDfsPath(); if (path != null && isDirectory()) { path += '/'; } return path; } catch (final CIFSException e) {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 103.2K bytes - Viewed (0)