- Sort Score
- Num 10 results
- Language All
Results 661 - 670 of 1,005 for trip (0.09 seconds)
-
docs/tr/docs/tutorial/body-updates.md
* Veriyi DB'nize kaydedin. * Güncellenmiş modeli döndürün. {* ../../docs_src/body_updates/tutorial002_py310.py hl[28:35] *} /// tip | İpucu Aynı tekniği HTTP `PUT` operasyonu ile de kullanabilirsiniz. Ancak buradaki örnek `PATCH` kullanıyor, çünkü bu kullanım senaryoları için tasarlanmıştır. /// /// note | Not
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 4.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/job/LogNotificationJob.java
postcard.addReplyTo(fessConfig.getMailReturnPath()); if (toAddresses.length > 0) { stream(toAddresses).of(stream -> stream.map(String::trim).forEach(address -> { postcard.addTo(address); })); } else { postcard.addTo(fessConfig.getMailFromAddress());
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 9.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/it/search/ScrollSearchApiTests.java
String body = response.getBody().asString(); assertTrue(body != null && body.length() > 0, "Response body should not be empty"); // NDJSON format: each line is a JSON object String[] lines = body.trim().split("\n"); assertTrue(lines.length > 0, "Should have at least one line in NDJSON response"); } @Test public void testScrollSearch_withNum() {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Dec 20 03:03:44 GMT 2025 - 7.5K bytes - Click Count (0) -
docs/pt/docs/advanced/advanced-dependencies.md
``` ...e passar o que quer que isso retorne como valor da dependência em nossa *função de operação de rota* como o parâmetro `fixed_content_included`: {* ../../docs_src/dependencies/tutorial011_an_py310.py hl[22] *} /// tip | Dica Tudo isso parece não ser natural. E pode não estar muito claro ou aparentar ser útil ainda. Estes exemplos são intencionalmente simples, porém mostram como tudo funciona.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:20:43 GMT 2026 - 9.9K bytes - Click Count (0) -
docs/zh-hant/docs/advanced/events.md
這裡我們透過在 `yield` 之前把(假的)模型函式放進機器學習模型的字典中,來模擬昂貴的 *startup* 載入模型操作。這段程式會在應用**開始接收請求之前**執行,也就是 *startup* 階段。 接著,在 `yield` 之後,我們卸載模型。這段程式會在應用**完成處理請求之後**、也就是 *shutdown* 前執行。這可以用來釋放資源,例如記憶體或 GPU。 /// tip `shutdown` 會在你**停止**應用程式時發生。 也許你要啟動新版本,或只是不想再跑它了。🤷 /// ### Lifespan 函式 { #lifespan-function } 首先要注意的是,我們定義了一個帶有 `yield` 的 async 函式。這和帶有 `yield` 的依賴(Dependencies)非常相似。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 7.2K bytes - Click Count (0) -
docs/ja/docs/tutorial/testing.md
`httpx` と同じ様に `TestClient` オブジェクトを使用します。 チェックしたい Python の標準的な式と共に、シンプルに `assert` 文を記述します (これも `pytest` の標準です)。 {* ../../docs_src/app_testing/tutorial001_py310.py hl[2,12,15:18] *} /// tip テスト関数は `async def` ではなく、通常の `def` であることに注意してください。 また、クライアントへの呼び出しも通常の呼び出しであり、`await` を使用しません。 これにより、煩雑にならずに、`pytest` を直接使用できます。 /// /// note | 技術詳細Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 7.1K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java
for (Plugin plugin : plugins) { if (plugin.getGroupId() == null || (plugin.getGroupId() != null && plugin.getGroupId().trim().isEmpty())) { addViolation( problems, Severity.FATAL, Version.V20,Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Sep 03 15:06:05 GMT 2025 - 66.8K bytes - Click Count (0) -
configure.py
except subprocess.CalledProcessError as e: output = e.output else: output = subprocess.check_output(cmd, stderr=stderr) return output.decode('UTF-8').strip() def cygpath(path): """Convert path from posix to windows.""" return os.path.abspath(path).replace('\\', '/') def get_python_path(environ_cp, python_bin_path):Created: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Fri Dec 19 16:32:04 GMT 2025 - 48.3K bytes - Click Count (0) -
docs/de/docs/advanced/strict-content-type.md
Er stellt eine API bereit unter ``` http://localhost:8000/v1/agents/multivac ``` Es gibt auch ein Frontend unter ``` http://localhost:8000 ``` /// tip | Tipp Beachten Sie, dass beide denselben Host haben. /// Dann können Sie über das Frontend den KI-Agenten Dinge in Ihrem Namen erledigen lassen.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:48:21 GMT 2026 - 3.6K bytes - Click Count (0) -
docs/zh/docs/tutorial/request-forms.md
使用 `Form` 可以像使用 `Body`(以及 `Query`、`Path`、`Cookie`)一样声明相同的配置,包括校验、示例、别名(例如将 `username` 写成 `user-name`)等。 /// info `Form` 是直接继承自 `Body` 的类。 /// /// tip 要声明表单请求体,必须显式使用 `Form`,否则这些参数会被当作查询参数或请求体(JSON)参数。 /// ## 关于 "表单字段" { #about-form-fields } HTML 表单(`<form></form>`)向服务器发送数据时通常会对数据使用一种“特殊”的编码方式,这与 JSON 不同。 **FastAPI** 会确保从正确的位置读取这些数据,而不是从 JSON 中读取。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 2.5K bytes - Click Count (0)