- Sort Score
- Result 10 results
- Languages All
Results 2521 - 2530 of 2,560 for into (0.09 sec)
-
docs/pt/docs/async.md
```Python hl_lines="1" async def get_burgers(number: int): # Fazer alguma coisa assíncrona para criar os hambúrgueres return burgers ``` ...ao invés de `def`: ```Python hl_lines="2" # Isso não é assíncrono def get_sequential_burgers(number: int): # Faz alguma coisa sequencial para criar os hambúrgueres return burgers ```
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 22.2K bytes - Viewed (0) -
api/go1.13.txt
pkg syscall (netbsd-arm64-cgo), const AF_DLI = 13 pkg syscall (netbsd-arm64-cgo), const AF_DLI ideal-int pkg syscall (netbsd-arm64-cgo), const AF_E164 = 26 pkg syscall (netbsd-arm64-cgo), const AF_E164 ideal-int pkg syscall (netbsd-arm64-cgo), const AF_ECMA = 8 pkg syscall (netbsd-arm64-cgo), const AF_ECMA ideal-int pkg syscall (netbsd-arm64-cgo), const AF_HYLINK = 15 pkg syscall (netbsd-arm64-cgo), const AF_HYLINK ideal-int
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Thu Aug 08 18:44:16 UTC 2019 - 452.6K bytes - Viewed (0) -
docs/ko/docs/tutorial/dependencies/index.md
그리고 여러분이 원하는 무엇이든 반환할 수 있습니다. 이 경우, 이 의존성은 다음과 같은 경우를 기대합니다: * 선택적인 쿼리 매개변수 `q`, `str`을 자료형으로 가집니다. * 선택적인 쿼리 매개변수 `skip`, `int`를 자료형으로 가지며 기본 값은 `0`입니다. * 선택적인 쿼리 매개변수 `limit`,`int`를 자료형으로 가지며 기본 값은 `100`입니다. 그 후 위의 값을 포함한 `dict` 자료형으로 반환할 뿐입니다. /// info | "정보" FastAPI는 0.95.0 버전부터 `Annotated`에 대한 지원을 (그리고 이를 사용하기 권장합니다) 추가했습니다. 옛날 버전을 가지고 있는 경우, `Annotated`를 사용하려 하면 에러를 맞이하게 될 것입니다.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 13.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java
/** The key of the message: System Info */ public static final String LABELS_menu_system_log = "{labels.menu_system_log}"; /** The key of the message: Config Info */ public static final String LABELS_menu_system_info = "{labels.menu_system_info}"; /** The key of the message: Crawling Info */ public static final String LABELS_menu_crawling_info = "{labels.menu_crawling_info}";
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Mar 22 11:58:34 UTC 2024 - 146.4K bytes - Viewed (0) -
docs/en/docs/help-fastapi.md
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Thu Aug 15 23:30:12 UTC 2024 - 13.7K bytes - Viewed (0) -
docs/pt/docs/deployment/docker.md
<div class="termy"> ```console $ pip install -r requirements.txt ---> 100% Successfully installed fastapi pydantic uvicorn ``` </div> /// info Há outros formatos e ferramentas para definir e instalar dependências de pacote. Eu vou mostrar um exemplo depois usando Poetry em uma seção abaixo. 👇 /// ### Criando o Código do **FastAPI**
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Mon Aug 12 21:47:53 UTC 2024 - 37.4K bytes - Viewed (0) -
cmd/xl-storage_test.go
if err != nil { t.Fatalf("expected: <nil>, got: %s", err) } if len(volInfos) != 2 { t.Fatalf("expected: 2, got: %d", len(volInfos)) } volFound := false for _, info := range volInfos { if info.Name == "success-vol" { volFound = true break } } if !volFound { t.Errorf("expected: success-vol to be created") } // removing the path and simulating disk failure
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed Aug 14 17:11:51 UTC 2024 - 66.7K bytes - Viewed (0) -
docs/de/docs/help-fastapi.md
* Schreiben Sie dann einen **Kommentar** und berichten, dass Sie das getan haben. So weiß ich, dass Sie ihn wirklich überprüft haben. /// info Leider kann ich PRs, nur weil sie von Mehreren gutgeheißen wurden, nicht einfach vertrauen.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 16K bytes - Viewed (0) -
docs/zh/docs/advanced/settings.md
<div class="termy"> ```console $ ADMIN_EMAIL="******@****.***" APP_NAME="ChimichangApp"uvicorn main:app <span style="color: green;">INFO</span>: Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit) ``` </div> /// tip 要为单个命令设置多个环境变量,只需用空格分隔它们,并将它们全部放在命令之前。 /// 然后,`admin_email` 设置将为 `"******@****.***"`。 `app_name` 将为 `"ChimichangApp"`。
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 13.8K bytes - Viewed (0) -
internal/dsync/drwmutex.go
// Also, pass the trace context info if found for debugging netLockCtx := context.Background() tc, ok := ctx.Value(mcontext.ContextTraceKey).(*mcontext.TraceCtxt) if ok { netLockCtx = context.WithValue(netLockCtx, mcontext.ContextTraceKey, tc) } for index, c := range restClnts { wg.Add(1) // broadcast lock request to all nodes go func(index int, isReadLock bool, c NetLocker) { defer wg.Done()
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Sep 09 15:49:49 UTC 2024 - 20.4K bytes - Viewed (0)