- Sort Score
- Result 10 results
- Languages All
Results 101 - 110 of 362 for shapes (0.09 sec)
-
docs/pt/docs/tutorial/body-fields.md
Você irá aprender mais sobre adicionar informações extras posteriormente nessa documentação, quando estiver aprendendo a declarar exemplos. /// warning | Atenção Chaves extras passadas para `Field` também estarão presentes no schema OpenAPI resultante da sua aplicação.
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Nov 12 16:23:57 UTC 2025 - 2.6K bytes - Viewed (0) -
docs/de/docs/tutorial/security/oauth2-jwt.md
/// note | Hinweis Beachten Sie den Header `Authorization` mit einem Wert, der mit `Bearer ` beginnt. /// ## Fortgeschrittene Verwendung mit `scopes` { #advanced-usage-with-scopes } OAuth2 hat ein Konzept von <abbr title="Geltungsbereiche">„Scopes“</abbr>. Sie können diese verwenden, um einem JWT-Token einen bestimmten Satz von Berechtigungen zu übergeben.Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Oct 01 15:19:54 UTC 2025 - 12.7K bytes - Viewed (0) -
docs/es/docs/tutorial/security/oauth2-jwt.md
<img src="/img/tutorial/security/image10.png"> /// note | Nota Observa el header `Authorization`, con un valor que comienza con `Bearer `. /// ## Uso avanzado con `scopes` { #advanced-usage-with-scopes } OAuth2 tiene la noción de "scopes". Puedes usarlos para agregar un conjunto específico de permisos a un token JWT.
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Tue Dec 16 16:33:45 UTC 2025 - 11.3K bytes - Viewed (0) -
impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/ModelUpgradeStrategyTest.java
assertTrue(result.success(), "Model upgrade should succeed"); assertTrue(result.modifiedCount() > 0, "Should have upgraded phases"); // Verify phases were upgraded verifyCleanPluginPhases(document); verifyFailsafePluginPhases(document); verifySitePluginPhases(document);Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 18:03:26 UTC 2025 - 38.8K bytes - Viewed (0) -
generics.go
return c.with(func(db *DB) *DB { return db.Table(name, args...) }) } func (c chainG[T]) Scopes(scopes ...func(db *Statement)) ChainInterface[T] { return c.with(func(db *DB) *DB { for _, fc := range scopes { fc(db.Statement) } return db }) } func (c chainG[T]) Where(query interface{}, args ...interface{}) ChainInterface[T] {
Registered: Sun Dec 28 09:35:17 UTC 2025 - Last Modified: Sun Nov 02 14:09:18 UTC 2025 - 25.9K bytes - Viewed (0) -
samples/slack/src/main/java/okhttp3/slack/OAuthSessionFactory.java
mockWebServer.start(slackApi.port); } public HttpUrl newAuthorizeUrl(String scopes, String team, Listener listener) { if (mockWebServer == null) throw new IllegalStateException(); ByteString state = randomToken(); synchronized (this) { listeners.put(state, listener); } return slackApi.authorizeUrl(scopes, redirectUrl(), state, team); } private ByteString randomToken() {
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Thu Aug 12 07:26:27 UTC 2021 - 3.8K bytes - Viewed (1) -
tests/test_security_oauth2_authorization_code_bearer.py
"flows": { "authorizationCode": { "authorizationUrl": "authorize", "tokenUrl": "token", "scopes": {}, } }, } } },
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Fri Jun 30 18:25:16 UTC 2023 - 2.3K bytes - Viewed (0) -
.github/release-drafter.yml
Registered: Sun Dec 28 09:35:17 UTC 2025 - Last Modified: Wed Oct 09 11:31:04 UTC 2024 - 428 bytes - Viewed (0) -
docs/fr/docs/deployment/index.md
# Déploiement Le déploiement d'une application **FastAPI** est relativement simple. ## Que signifie le déploiement **Déployer** une application signifie effectuer les étapes nécessaires pour la rendre **disponible pour les utilisateurs**. Pour une **API Web**, cela implique normalement de la placer sur une **machine distante**, avec un **programme serveur**
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Sat Jun 24 14:47:15 UTC 2023 - 1.5K bytes - Viewed (0) -
tests/test_security_oauth2.py
from fastapi.testclient import TestClient from pydantic import BaseModel app = FastAPI() reusable_oauth2 = OAuth2( flows={ "password": { "tokenUrl": "token", "scopes": {"read:users": "Read the users", "write:users": "Create users"}, } } ) class User(BaseModel): username: str # Here we use string annotations to test them
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Sat Dec 27 18:19:10 UTC 2025 - 9K bytes - Viewed (0)