- Sort Score
- Result 10 results
- Languages All
Results 361 - 370 of 627 for nwait (0.03 sec)
-
internal/s3select/message.go
close(writer.payloadCh) // Wait until the `start` go-routine is done. <-writer.doneCh return nil } } func (writer *messageWriter) FinishWithError(errorCode, errorMessage string) error { select { case <-writer.doneCh: return fmt.Errorf("messageWriter is done") case writer.errCh <- newErrorMessage([]byte(errorCode), []byte(errorMessage)): // Wait until the `start` go-routine is done.
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Aug 30 15:26:43 UTC 2022 - 15.2K bytes - Viewed (0) -
.github/DISCUSSION_TEMPLATE/questions.yml
By asking questions in a structured way (following this) it will be much easier to help you. And there's a high chance that you will find the solution along the way and you won't even have to submit it and wait for an answer. ๐ As there are too many questions, I'll have to discard and close the incomplete ones. That will allow me (and others) to focus on helping people like you that follow the whole process and help us help you. ๐ค
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Thu Aug 03 15:59:41 UTC 2023 - 5.8K bytes - Viewed (0) -
docs/pl/docs/index.md
return {"item_id": item_id, "q": q} ``` <details markdown="1"> <summary>Albo uลผyj <code>async def</code>...</summary> Jeลผeli twรณj kod korzysta z `async` / `await`, uลผyj `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 - 19.3K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/FastFallbackTest.kt
var first = true override fun createSocket(): Socket { if (first) { first = false firstConnectLatch.await() } return super.createSocket() } } client = client.newBuilder() .protocols(listOf(Protocol.H2_PRIOR_KNOWLEDGE))
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 10.3K bytes - Viewed (0) -
cmd/iam-object-store.go
return fmt.Errorf("unable to load the user `%s`: %w", userName, err) } userIdentities[index] = user return nil }, index) } err := errors.Join(g.Wait()...) return userIdentities, err } func (iamOS *IAMObjectStore) loadUser(ctx context.Context, user string, userType IAMUserType, m map[string]UserIdentity) error { u, err := iamOS.loadUserIdentity(ctx, user, userType)
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Oct 10 23:40:37 UTC 2024 - 26.6K bytes - Viewed (0) -
cmd/peer-rest-server.go
if traceOpts.TraceTypes().Contains(madmin.TraceBootstrap) { go globalBootstrapTracer.Publish(ctx, globalTrace) } // Wait for remote to cancel and SubscribeJSON to exit. wg.Wait() return nil } func (s *peerRESTServer) BackgroundHealStatusHandler(_ *grid.MSS) (*grid.JSON[madmin.BgHealState], *grid.RemoteErr) {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Oct 04 11:32:32 UTC 2024 - 53.2K bytes - Viewed (0) -
docs/ko/docs/tutorial/background-tasks.md
๋ฐฑ๊ทธ๋ผ์ด๋ ์์ ์ผ๋ก ์คํํ ํจ์๋ฅผ ์ ์ํฉ๋๋ค. ์ด๊ฒ์ ๋จ์ํ ๋งค๊ฐ๋ณ์๋ฅผ ๋ฐ์ ์ ์๋ ํ์ค ํจ์์ผ ๋ฟ์ ๋๋ค. **FastAPI**๋ ์ด๊ฒ์ด `async def` ํจ์์ด๋ , ์ผ๋ฐ `def` ํจ์์ด๋ ๋ด๋ถ์ ์ผ๋ก ์ด๋ฅผ ์ฌ๋ฐ๋ฅด๊ฒ ์ฒ๋ฆฌํฉ๋๋ค. ์ด ๊ฒฝ์ฐ, ์๋ ์์ ์ ํ์ผ์ ์ฐ๋ ํจ์์ ๋๋ค. (์ด๋ฉ์ผ ๋ณด๋ด๊ธฐ ์๋ฌผ๋ ์ด์ ) ๊ทธ๋ฆฌ๊ณ ์ด ์์ ์ `async`์ `await`๋ฅผ ์ฌ์ฉํ์ง ์์ผ๋ฏ๋ก ์ผ๋ฐ `def` ํจ์๋ก ์ ์ธํฉ๋๋ค. ```Python hl_lines="6-9" {!../../docs_src/background_tasks/tutorial001.py!} ``` ## ๋ฐฑ๊ทธ๋ผ์ด๋ ์์ ์ถ๊ฐ _๊ฒฝ๋ก ์๋ ํจ์_ ๋ด์์ ์์ ํจ์๋ฅผ `.add_task()` ํจ์ ํตํด _๋ฐฑ๊ทธ๋ผ์ด๋ ์์ _ ๊ฐ์ฒด์ ์ ๋ฌํฉ๋๋ค.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 5.7K bytes - Viewed (0) -
docs/nl/docs/index.md
return {"item_id": item_id, "q": q} ``` <details markdown="1"> <summary>Of maak gebruik van <code>async def</code>...</summary> Als je code gebruik maakt van `async` / `await`, gebruik dan `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) -
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) -
internal/grid/muxclient.go
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Jun 07 15:51:52 UTC 2024 - 15.9K bytes - Viewed (0)