- Sort Score
- Num 10 results
- Language All
Results 171 - 180 of 289 for Rieger (0.05 seconds)
-
gorm.go
DB: db, ConnPool: db.ConnPool, Context: context.Background(), Clauses: map[string]clause.Clause{}, } if err == nil && !config.DisableAutomaticPing { if pinger, ok := db.ConnPool.(interface{ Ping() error }); ok { err = pinger.Ping() if err != nil { if db, _ := db.DB(); db != nil { _ = db.Close() } } } } if err != nil {
Created: Sun Apr 05 09:35:12 GMT 2026 - Last Modified: Sat Mar 21 11:35:55 GMT 2026 - 13.1K bytes - Click Count (0) -
docs/zh/docs/advanced/settings.md
你可以把这些设置放在另一个模块文件中,就像你在[更大的应用 - 多个文件](../tutorial/bigger-applications.md)中看到的那样。 例如,可以有一个 `config.py` 文件: {* ../../docs_src/settings/app01_py310/config.py *} 然后在 `main.py` 文件中使用它: {* ../../docs_src/settings/app01_py310/main.py hl[3,11:13] *} /// tip | 提示 你还需要一个 `__init__.py` 文件,就像你在[更大的应用 - 多个文件](../tutorial/bigger-applications.md)中看到的那样。 ///Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 10.4K bytes - Click Count (0) -
docs/de/docs/fastapi-cli.md
Sie können in einer `pyproject.toml`-Datei konfigurieren, wo sich Ihre App befindet, etwa so: ```toml [tool.fastapi] entrypoint = "main:app" ``` Dieser `entrypoint` teilt dem Befehl `fastapi` mit, dass die App so importiert werden soll: ```python from main import app ``` Wenn Ihr Code so strukturiert wäre: ``` . ├── backend │ ├── main.py
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:58:09 GMT 2026 - 6.2K bytes - Click Count (0) -
docs/de/docs/tutorial/metadata.md
{* ../../docs_src/metadata/tutorial001_py310.py hl[3:16, 19:32] *} /// tip | Tipp Sie können Markdown im Feld `description` verwenden, und es wird in der Ausgabe gerendert. /// Mit dieser Konfiguration würde die automatische API-Dokumentation wie folgt aussehen: <img src="/img/tutorial/metadata/image01.png"> ## Lizenzkennung { #license-identifier }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:58:09 GMT 2026 - 6.8K bytes - Click Count (0) -
docs/tr/docs/tutorial/security/index.md
* Bu otomatik keşif, OpenID Connect spesifikasyonunda tanımlanan şeydir. /// tip | İpucu Google, Facebook, X (Twitter), GitHub vb. gibi diğer authentication/authorization provider’larını entegre etmek de mümkündür ve nispeten kolaydır.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Feb 05 15:43:38 GMT 2026 - 5K bytes - Click Count (0) -
docs/pt/docs/tutorial/testing.md
### Arquivo da aplicação **FastAPI** { #fastapi-app-file } Digamos que você tenha uma estrutura de arquivo conforme descrito em [Aplicações maiores](bigger-applications.md): ``` . ├── app │ ├── __init__.py │ └── main.py ``` No arquivo `main.py` você tem sua aplicação **FastAPI**: {* ../../docs_src/app_testing/app_a_py310/main.py *}Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:20:43 GMT 2026 - 6.1K bytes - Click Count (0) -
docs/zh/docs/advanced/async-tests.md
`TestClient` 是基于 [HTTPX](https://www.python-httpx.org) 的。幸运的是,我们可以直接使用它来测试 API。 ## 示例 { #example } 举个简单的例子,让我们来看一个与[更大的应用](../tutorial/bigger-applications.md)和[测试](../tutorial/testing.md)中描述的类似文件结构: ``` . ├── app │ ├── __init__.py │ ├── main.py │ └── test_main.py ``` 文件 `main.py` 将包含:Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 3.9K bytes - Click Count (0) -
docs/ja/docs/advanced/settings.md
[大規模アプリケーション - 複数ファイル](../tutorial/bigger-applications.md) で見たように、これらの設定を別のモジュールファイルに置くこともできます。 たとえば、`config.py` というファイルに次のように書けます: {* ../../docs_src/settings/app01_py310/config.py *} そして、`main.py` というファイルでそれを使います: {* ../../docs_src/settings/app01_py310/main.py hl[3,11:13] *} /// tip | 豆知識 [大規模アプリケーション - 複数ファイル](../tutorial/bigger-applications.md) で見たように、`__init__.py` ファイルも必要です。 ///Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 12.7K bytes - Click Count (0) -
android/guava/src/com/google/common/util/concurrent/InterruptibleTask.java
/* * TODO(cpovirk): Clear interrupted status here? We currently don't, which means that an * interrupt before, during, or after runInterruptibly() (unless it produced an * InterruptedException caught above) can linger and affect listeners. */ } /** * Called before runInterruptibly - if true, runInterruptibly and afterRanInterruptibly will not * be called. */ abstract boolean isDone();Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Jan 28 22:39:02 GMT 2026 - 10K bytes - Click Count (0) -
docs/en/docs/tutorial/background-tasks.md
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 4.7K bytes - Click Count (0)