- Sort Score
- Num 10 results
- Language All
Results 141 - 150 of 172 for curry (0.02 seconds)
-
docs/ru/docs/index.md
return {"item_id": item_id, "q": q} ``` **Примечание**: Если не уверены, посмотрите раздел _«Нет времени?»_ о [`async` и `await` в документации](https://fastapi.tiangolo.com/ru/async/#in-a-hurry). </details> ### Запуск { #run-it } Запустите сервер командой: <div class="termy"> ```console $ fastapi dev ╭────────── FastAPI CLI - Development mode ───────────╮Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:56:20 GMT 2026 - 30.4K bytes - Click Count (0) -
android/guava/src/com/google/common/math/LongMath.java
/* * a * b == aHi * bHi * 2^64 + (aHi * bLo + aLo * bHi) * 2^32 + aLo * bLo. * == (aHi * bHi * 2^32 + aHi * bLo + aLo * bHi) * 2^32 + aLo * bLo * * We carry out this computation in modular arithmetic. Since times2ToThe32Mod accepts any * unsigned long, we don't have to do a mod on every operation, only when intermediate * results can exceed 2^63. */Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 09 23:01:02 GMT 2026 - 46.8K bytes - Click Count (0) -
docs/ko/docs/async.md
# 동시성과 async / await { #concurrency-and-async-await } *경로 처리 함수*에서의 `async def` 문법에 대한 세부사항과 비동기 코드, 동시성 및 병렬성에 대한 배경 ## 바쁘신가요? { #in-a-hurry } <abbr title="too long; didn't read - 너무 길어서 읽지 않음"><strong>TL;DR:</strong></abbr> 다음과 같이 `await`를 사용해 호출하라고 안내하는 제3자 라이브러리를 사용하는 경우: ```Python results = await some_library() ``` 다음처럼 *경로 처리 함수*를 `async def`를 사용해 선언하십시오: ```Python hl_lines="2" @app.get('/')Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 27.5K bytes - Click Count (0) -
docs/ja/docs/tutorial/first-steps.md
この場合、この関数は`async`関数です。 --- `async def`の代わりに通常の関数として定義することもできます: {* ../../docs_src/first_steps/tutorial003_py310.py hl[7] *} /// note | 備考 違いが分からない場合は、[Async: *「急いでいますか?」*](../async.md#in-a-hurry)を確認してください。 /// ### Step 5: コンテンツの返信 { #step-5-return-the-content } {* ../../docs_src/first_steps/tutorial001_py310.py hl[8] *} `dict`、`list`、`str`、`int`などの単一の値を返すことができます。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 15.9K bytes - Click Count (0) -
docs/ja/docs/async.md
# 並行処理と async / await { #concurrency-and-async-await } *path operation 関数*のための `async def` 構文に関する詳細と、非同期コード、並行処理、並列処理の背景についてです。 ## 急いでいますか? { #in-a-hurry } <abbr title="too long; didn't read - 長すぎて読まなかった"><strong>TL;DR:</strong></abbr> 次のように `await` で呼び出すよう指示されているサードパーティライブラリを使っているなら: ```Python results = await some_library() ``` *path operation 関数*は次のように `async def` で宣言します: ```Python hl_lines="2" @app.get('/')Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 27.9K bytes - Click Count (0) -
docs/fr/docs/index.md
``` **Remarque** : Si vous ne savez pas, consultez la section « Vous êtes pressés ? » à propos de [`async` et `await` dans la documentation](https://fastapi.tiangolo.com/fr/async/#in-a-hurry). </details> ### Lancer { #run-it } Lancez le serveur avec : <div class="termy"> ```console $ fastapi dev ╭────────── FastAPI CLI - Development mode ───────────╮
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 23.8K bytes - Click Count (0) -
docs/tr/docs/index.md
async def read_item(item_id: int, q: str | None = None): return {"item_id": item_id, "q": q} ``` **Not**: Eğer bilmiyorsanız, dokümanlardaki [`async` ve `await`](https://fastapi.tiangolo.com/tr/async/#in-a-hurry) hakkında _"Aceleniz mi var?"_ bölümüne bakın. </details> ### Çalıştıralım { #run-it } Sunucuyu şu komutla çalıştıralım: <div class="termy"> ```console $ fastapi dev
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 23.2K bytes - Click Count (0) -
docs/changelogs/changelog_4x.md
## Version 4.7.0 _2020-05-17_ * New: `HandshakeCertificates.Builder.addInsecureHost()` makes it easy to turn off security in private development environments that only carry test data. Prefer this over creating an all-trusting `TrustManager` because only hosts on the allowlist are insecure. From [our DevServer sample][dev_server]: ```kotlin
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Wed Apr 17 13:25:31 GMT 2024 - 25.2K bytes - Click Count (0) -
docs/en/docs/virtual-environments.md
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 22.1K bytes - Click Count (0) -
src/test/java/org/codelibs/curl/io/IOIntegrationTest.java
@Test public void test_UrlWithSpecialCharacters_ThroughRealConnectPath() throws Exception { // ## Arrange ## // URLs with special characters (spaces, curly braces, pipes) must be accepted // by the real connect() path using new URL() String[] specialUrls = { "http://localhost:9200/{index}/_search", "http://example.com/path?q=a|b",Created: Thu Apr 02 15:34:12 GMT 2026 - Last Modified: Sat Mar 21 12:00:34 GMT 2026 - 44.1K bytes - Click Count (0)