Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 70 for Openat (0.25 sec)

  1. docs/pt/docs/tutorial/path-params.md

    <img src="/img/tutorial/path-params/image01.png">
    
    !!! check "Verifique"
    	Novamente, apenas com a mesma declaração de tipo do Python, o **FastAPI** te dá de forma automática e interativa a documentação (integrada com o Swagger UI).
    
    	Veja que o parâmetro de rota está declarado como sendo um inteiro (int).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/metrics_test.go

    			expectedValue: `
            # HELP apiserver_authentication_jwt_authenticator_latency_seconds [ALPHA] Latency of jwt authentication operations in seconds. This is the time spent authenticating a token for cache miss only (i.e. when the token is not found in the cache).
            # TYPE apiserver_authentication_jwt_authenticator_latency_seconds histogram
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 19:29:33 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/health/DaemonHealthStats.java

            }
            message.append("]");
    
            return message.toString();
        }
    
        /**
         * 0-100, the percentage of time spent on doing the work vs time spent in gc
         */
        private int getCurrentPerformance() {
            long collectionTime = gcInfo.getCollectionTime();
            long allBuildsTime = runningStats.getAllBuildsTime();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:23:18 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. docs/pt/docs/tutorial/schema-extra-example.md

    ```Python hl_lines="4  10-13"
    {!../../../docs_src/schema_extra_example/tutorial002.py!}
    ```
    
    !!! warning "Atenção"
        Lembre-se de que esses argumentos extras passados ​​não adicionarão nenhuma validação, apenas informações extras, para fins de documentação.
    
    ## `example` e `examples` no OpenAPI
    
    Ao usar quaisquer dos:
    
    * `Path()`
    * `Query()`
    * `Header()`
    * `Cookie()`
    * `Body()`
    * `Form()`
    * `File()`
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  5. docs/pt/docs/tutorial/background-tasks.md

    ```
    
    O **FastAPI** criará o objeto do tipo `BackgroundTasks` para você e o passará como esse parâmetro.
    
    ## Criar uma função de tarefa
    
    Crie uma função a ser executada como tarefa em segundo plano.
    
    É apenas uma função padrão que pode receber parâmetros.
    
    Pode ser uma função `async def` ou `def` normal, o **FastAPI** saberá como lidar com isso corretamente.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 09 23:44:32 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  6. docs/pt/docs/tutorial/static-files.md

    ```
    
    !!! note "Detalhes técnicos"
        Você também pode usar `from starlette.staticfiles import StaticFiles`.
    
        O **FastAPI** fornece o mesmo que `starlette.staticfiles` como `fastapi.staticfiles` apenas como uma conveniência para você, o desenvolvedor. Mas na verdade vem diretamente da Starlette.
    
    ### O que é "Montagem"
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Feb 07 13:09:32 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/xla_activity.proto

    message XlaJitCompilationActivity {
      string cluster_name = 1;
    
      // The number of time this cluster has been compiled.
      int32 compile_count = 2;
    
      // Microseconds spent in the individual compilation being reported.
      int64 compile_time_us = 3;
    
      // Total microseconds spent in (re-)compiling this cluster so far.
      int64 cumulative_compile_time_us = 4;
    
      // Whether a persistent compilation cache entry was used.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 15 03:11:33 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  8. docs/pt/docs/tutorial/body.md

        Enviar um corpo em uma requisição `GET` não tem um comportamento definido nas especificações, porém é suportado pelo FastAPI, apenas para casos de uso bem complexos/extremos.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/health/gc/GarbageCollectionInfo.java

    package org.gradle.launcher.daemon.server.health.gc;
    
    import java.lang.management.GarbageCollectorMXBean;
    import java.lang.management.ManagementFactory;
    
    public class GarbageCollectionInfo {
        /**
         * Approx. time spent in gc. See {@link GarbageCollectorMXBean}
         */
        public long getCollectionTime() {
            long garbageCollectionTime = 0;
            for (GarbageCollectorMXBean gc : ManagementFactory.getGarbageCollectorMXBeans()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. docs/pt/docs/tutorial/index.md

    Mas você deveria ler primeiro o **Tutorial - Guia de Usuário** (que você está lendo agora).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top