- Sort Score
- Result 10 results
- Languages All
Results 321 - 330 of 550 for nwait (0.02 sec)
-
docs/em/docs/index.md
def read_item(item_id: int, q: Union[str, None] = None): return {"item_id": item_id, "q": q} ``` <details markdown="1"> <summary>โ๏ธ โ๏ธ <code>async def</code>...</summary> ๐ฅ ๐ ๐ โ๏ธ `async` / `await`, โ๏ธ `async def`: ```Python hl_lines="9 14" from typing import Union from fastapi import FastAPI app = FastAPI() @app.get("/") async def read_root(): return {"Hello": "World"}
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 20 19:20:23 UTC 2024 - 17.1K bytes - Viewed (0) -
docs/he/docs/index.md
return {"item_id": item_id, "q": q} ``` <details markdown="1"> <summary>ืื ืืฉืชืืฉื ื - <code>async def</code>...</summary> ืื ืืงืื ืฉืืื ืืฉืชืืฉ ื - `async` / `await`, ืืฉืชืืฉื ื - `async def`: ```Python hl_lines="9 14" from typing import Union from fastapi import FastAPI app = FastAPI() @app.get("/") async def read_root():
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 20 19:20:23 UTC 2024 - 21.2K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/util/concurrent/GeneratedMonitorTest.java
} /** A typical timeout value we'll use in the tests. */ private static final long SMALL_TIMEOUT_MILLIS = 10; /** How long to wait when determining that a thread is blocked if we expect it to be blocked. */ private static final long EXPECTED_HANG_DELAY_MILLIS = 75; /** * How long to wait when determining that a thread is blocked if we DON'T expect it to be blocked. */
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:51:36 UTC 2024 - 27.1K bytes - Viewed (0) -
internal/kms/kes.go
item = madmin.ItemOnline } else { item = madmin.ItemOffline } results[i] = Result{ Endpoint: c.client.Endpoints[i], ItemState: item, } }(i) } wg.Wait() status := make(map[string]madmin.ItemState, len(results)) for _, r := range results { if r.ItemState == madmin.ItemOnline { status[r.Endpoint] = madmin.ItemOnline } else {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sun Aug 18 06:43:03 UTC 2024 - 7.3K bytes - Viewed (0) -
docs/em/docs/tutorial/dependencies/index.md
โซ๏ธ ๐ซ ๐ค. **FastAPI** ๐ ๐ญ โซ๏ธโ. /// note ๐ฅ ๐ ๐ซ ๐ญ, โ [๐: *"๐ โ" *](../../async.md){.internal-link target=_blank} ๐ ๐ `async` & `await` ๐ฉบ. /// ## ๐ ๏ธ โฎ๏ธ ๐ ๐ ๐จ ๐, ๐ฌ & ๐ ๐ ๐ (& ๐ง-๐) ๐ ๐ ๏ธ ๐ ๐ ๐. , ๐ ๐ฉบ ๐ โ๏ธ ๐ โน โช๏ธโก๏ธ ๐ซ ๐ ๐โโ๏ธ: <img src="/img/tutorial/dependencies/image01.png"> ## ๐ โ๏ธ
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 6.7K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/internal/publicsuffix/PublicSuffixDatabase.kt
if (!listRead.get() && listRead.compareAndSet(false, true)) { readTheListUninterruptibly() } else { try { readCompleteLatch.await() } catch (_: InterruptedException) { Thread.currentThread().interrupt() // Retain interrupted status. } } check(::publicSuffixListBytes.isInitialized) {
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 11.7K bytes - Viewed (0) -
docs/ja/docs/tutorial/testing.md
```Python hl_lines="2 12 15-18" {!../../docs_src/app_testing/tutorial001.py!} ``` /// tip | "่ฑ็ฅ่ญ" ใในใ้ขๆฐใฏ `async def` ใงใฏใชใใ้ๅธธใฎ `def` ใงใใใใจใซๆณจๆใใฆใใ ใใใ ใพใใใฏใฉใคใขใณใใธใฎๅผใณๅบใใ้ๅธธใฎๅผใณๅบใใงใใใ`await` ใไฝฟ็จใใพใใใ ใใใซใใใ็ ฉ้ใซใชใใใซใ`pytest` ใ็ดๆฅไฝฟ็จใงใใพใใ /// /// note | "ๆ่ก่ฉณ็ดฐ" `from starlette.testclient import TestClient` ใไฝฟ็จใงใใพใใ
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 5.8K bytes - Viewed (0) -
guava-tests/test/com/google/common/util/concurrent/AbstractAbstractFutureTest.java
long nanosPerSecond = NANOSECONDS.convert(1, SECONDS); assertThat(nanosPerSecond * Long.MAX_VALUE).isLessThan(0L); // Check that we wait long enough anyway (presumably as long as MAX_VALUE nanos): TimedWaiterThread waiter = new TimedWaiterThread(future, Long.MAX_VALUE, SECONDS); waiter.start(); waiter.awaitWaiting(); future.set(1);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Oct 21 15:41:36 UTC 2024 - 15.5K bytes - Viewed (0) -
cmd/site-replication-utils.go
sm.peerResyncMap[dID] = rs wg.Add(1) go func() { defer wg.Done() saveSiteResyncMetadata(ctx, st, newObjectLayerFn()) }() } } wg.Wait() sm.Unlock() } sTimer.Reset(siteResyncSaveInterval) case <-ctx.Done(): return } } } // update overall site resync state
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Jan 18 07:03:17 UTC 2024 - 8.9K bytes - Viewed (0) -
docs/debugging/s3-verify/main.go
targetFailed = true } else if tgtSize != tgtCtnt.Size { fmt.Printf("unreadable on target - size differs upon read: %s\n", tgtCtnt.Key) targetFailed = true } }() wg.Wait() sobj.Close() tobj.Close() if !sourceFailed && !targetFailed { ssum := srcSha256.Sum(nil) tsum := tgtSha256.Sum(nil) allgood = bytes.Equal(ssum, tsum) if !allgood {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed Jun 22 15:12:47 UTC 2022 - 8.4K bytes - Viewed (0)