- Sort Score
- Num 10 results
- Language All
Results 821 - 830 of 2,268 for inf1 (0.02 seconds)
-
cmd/notification.go
ctx, cancel := context.WithTimeout(ctx, 10*time.Second) defer cancel() info, err := client.ServerInfo(ctx, metrics) if err != nil { info.Endpoint = client.host.String() info.State = string(madmin.ItemOffline) info.Disks = getOfflineDisks(info.Endpoint, globalEndpoints) } reply[idx] = info }(client, i) } wg.Wait() return reply }
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 46K bytes - Click Count (0) -
dbflute_fess/schema/_readme.txt
Directory for files of schema info Files are auto-generated by DBFlute tasks.
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Jul 04 22:46:31 GMT 2015 - 129 bytes - Click Count (0) -
docs/en/docs/advanced/openapi-webhooks.md
This can make it a lot easier for your users to **implement their APIs** to receive your **webhook** requests, they might even be able to autogenerate some of their own API code. /// info Webhooks are available in OpenAPI 3.1.0 and above, supported by FastAPI `0.99.0` and above. /// ## An app with webhooks { #an-app-with-webhooks }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 2.9K bytes - Click Count (0) -
docs/es/docs/advanced/openapi-webhooks.md
Esto puede hacer mucho más fácil para tus usuarios **implementar sus APIs** para recibir tus requests de **webhook**, incluso podrían ser capaces de autogenerar algo de su propio código de API. /// info | Información Los webhooks están disponibles en OpenAPI 3.1.0 y superiores, soportados por FastAPI `0.99.0` y superiores. /// ## Una aplicación con webhooks { #an-app-with-webhooks }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:15:55 GMT 2026 - 3.1K bytes - Click Count (0) -
docs/de/docs/advanced/strict-content-type.md
{* ../../docs_src/strict_content_type/tutorial001_py310.py hl[4] *} Mit dieser Einstellung werden Requests ohne `Content-Type`-Header im Body als JSON geparst. Das entspricht dem Verhalten älterer FastAPI-Versionen. /// info | Info Dieses Verhalten und diese Konfiguration wurden in FastAPI 0.132.0 hinzugefügt.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:48:21 GMT 2026 - 3.6K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecycleDebugLogger.java
@Singleton public class LifecycleDebugLogger { private final Logger logger = LoggerFactory.getLogger(getClass()); public void debug(String s) { logger.debug(s); } public void info(String s) { logger.info(s); } public void debugReactorPlan(ProjectBuildList projectBuilds) { if (!logger.isDebugEnabled()) { return; }Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 5.8K bytes - Click Count (0) -
docs/fr/docs/how-to/extending-openapi.md
* `routes` : Une liste de routes ; chacune correspond à un *chemin d'accès* enregistré. Elles sont extraites de `app.routes`. /// info Le paramètre `summary` est disponible à partir d'OpenAPI 3.1.0, pris en charge par FastAPI 0.99.0 et versions ultérieures. /// ## Remplacer les valeurs par défaut { #overriding-the-defaults }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 3.7K bytes - Click Count (0) -
docs/fr/docs/advanced/openapi-webhooks.md
Cela peut grandement faciliter la tâche de vos utilisateurs pour implémenter leurs API afin de recevoir vos requêtes de webhook ; ils pourront même peut-être générer automatiquement une partie de leur propre code d'API. /// info Les webhooks sont disponibles dans OpenAPI 3.1.0 et versions ultérieures, pris en charge par FastAPI `0.99.0` et versions ultérieures. /// ## Créer une application avec des webhooks { #an-app-with-webhooks }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 3.4K bytes - Click Count (0) -
docs/zh/docs/tutorial/request-forms.md
# 表单数据 { #form-data } 当你需要接收表单字段而不是 JSON 时,可以使用 `Form`。 /// info 要使用表单,首先安装 [`python-multipart`](https://github.com/Kludex/python-multipart)。 请先创建并激活一个[虚拟环境](../virtual-environments.md),然后再进行安装,例如: ```console $ pip install python-multipart ``` /// ## 导入 `Form` { #import-form } 从 `fastapi` 导入 `Form`: {* ../../docs_src/request_forms/tutorial001_an_py310.py hl[3] *}Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 2.5K bytes - Click Count (0) -
logger/slog_test.go
"testing" "time" ) func TestSlogLogger(t *testing.T) { buf := &bytes.Buffer{} handler := slog.NewTextHandler(buf, &slog.HandlerOptions{AddSource: true}) logger := NewSlogLogger(slog.New(handler), Config{LogLevel: Info}) logger.Trace(context.Background(), time.Now(), func() (string, int64) { return "select count(*) from users", 0 }, nil) if strings.Contains(buf.String(), "gorm/logger/slog.go") {
Created: Sun Apr 05 09:35:12 GMT 2026 - Last Modified: Thu Oct 30 10:56:26 GMT 2025 - 782 bytes - Click Count (0)