- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 58 for definisi (0.06 sec)
-
docs/fr/docs/async.md
return burgers ``` ### Plus de détails techniques Vous avez donc compris que `await` peut seulement être utilisé dans des fonctions définies avec `async def`. Mais en même temps, les fonctions définies avec `async def` doivent être appelées avec `await` et donc dans des fonctions définies elles aussi avec `async def`. Vous avez donc remarqué ce paradoxe d'oeuf et de la poule, comment appelle-t-on la première fonction `async` ?
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:56:21 UTC 2025 - 25.4K bytes - Viewed (0) -
docs/pt/docs/tutorial/security/index.md
* `password`: alguns dos próximos capítulos tratarão disso. * `openIdConnect`: tem uma forma para definir como descobrir automaticamente o dado da autenticação OAuth2. * Essa descoberta automática é o que é definido na especificação OpenID Connect. /// tip | Dica
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:49:48 UTC 2025 - 4.8K bytes - Viewed (0) -
docs/en/docs/advanced/events.md
Maybe you need to start a new version, or you just got tired of running it. 🤷 /// ### Lifespan function { #lifespan-function } The first thing to notice, is that we are defining an async function with `yield`. This is very similar to Dependencies with `yield`. {* ../../docs_src/events/tutorial003.py hl[14:19] *}
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 7.9K bytes - Viewed (0) -
docs/pt/docs/async.md
Quando você quiser chamar uma função `async def`, você tem que "esperar" ela. Então, isso não funcionará: ```Python # Isso não irá funcionar, porquê get_burgers foi definido com: async def burgers = get_burgers(2) ``` --- Então, se você está usando uma biblioteca que diz que você pode chamá-la com `await`, você precisa criar as *funções de operação de rota* com `async def`, como em:
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:56:21 UTC 2025 - 23.6K bytes - Viewed (0) -
docs/en/docs/tutorial/first-steps.md
 ### OpenAPI { #openapi } **FastAPI** generates a "schema" with all your API using the **OpenAPI** standard for defining APIs. #### "Schema" { #schema } A "schema" is a definition or description of something. Not the code that implements it, but just an abstract description. #### API "schema" { #api-schema }
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 11K bytes - Viewed (0) -
src/main/java/jcifs/pac/ASN1Util.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.2K bytes - Viewed (0) -
docs/es/docs/async.md
Cuando deseas llamar a una función `async def`, tienes que "await" dicha función. Así que, esto no funcionará: ```Python # Esto no funcionará, porque get_burgers fue definido con: async def burgers = get_burgers(2) ``` ---
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:56:21 UTC 2025 - 24.7K bytes - Viewed (0) -
docs/es/docs/tutorial/security/index.md
**FastAPI** se basa en **OpenAPI**. Eso es lo que hace posible tener múltiples interfaces de documentación interactiva automática, generación de código, etc. OpenAPI tiene una forma de definir múltiples "esquemas" de seguridad. Al usarlos, puedes aprovechar todas estas herramientas basadas en estándares, incluidos estos sistemas de documentación interactiva. OpenAPI define los siguientes esquemas de seguridad:
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:49:48 UTC 2025 - 4.6K bytes - Viewed (0) -
src/test/java/jcifs/pac/ASN1UtilTest.java
void testReadLength_ShortForm() throws IOException { // Definite-length short form (length 10) InputStream s = new ByteArrayInputStream(new byte[] { 0x0A }); int length = ASN1Util.readLength(s, 100, false); assertEquals(10, length); } @Test void testReadLength_LongForm() throws IOException { // Definite-length long form (length 256)
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.4K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbRenewableCredentials.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.smb; /** * Interface for renewable SMB credentials. * * This interface defines methods for credentials that can be * automatically renewed during long-running operations. * * @author mbechler */ public interface SmbRenewableCredentials extends CredentialsInternal { /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.2K bytes - Viewed (0)