Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 70 for Openat (0.18 sec)

  1. platforms/core-runtime/base-services/src/integTest/groovy/org/gradle/internal/work/ProjectLockStatisticsIntegrationTest.groovy

            when:
            executer.withArguments("--parallel", "-D${DefaultWorkerLeaseService.PROJECT_LOCK_STATS_PROPERTY}")
            succeeds(":wait", ":child:blocked")
    
            then:
            result.assertHasPostBuildOutput("Time spent waiting on project locks")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. docs/en/docs/history-design-future.md

    Also, the best approach was to use already existing standards.
    
    So, before even starting to code **FastAPI**, I spent several months studying the specs for OpenAPI, JSON Schema, OAuth2, etc. Understanding their relationship, overlap, and differences.
    
    ## Design
    
    Then I spent some time designing the developer "API" I wanted to have as a user (as a developer using FastAPI).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. docs/pt/docs/advanced/events.md

    
    Isso é que nós iremos resolver, vamos carregar o modelo antes das requisições serem manuseadas, mas apenas um pouco antes da aplicação começar a receber requisições, não enquanto o código estiver sendo carregado.
    
    ## Vida útil (_Lifespan_)
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/validation/metrics.go

    }
    
    func init() {
    	legacyregistry.MustRegister(Metrics.(*validationMetrics).RatchetingTime)
    }
    
    type validationMetrics struct {
    	RatchetingTime *metrics.Histogram
    }
    
    // ObserveRatchetingTime records the time spent on ratcheting
    func (m *validationMetrics) ObserveRatchetingTime(d time.Duration) {
    	m.RatchetingTime.Observe(d.Seconds())
    }
    
    // Reset resets the metrics. This is meant to be used for testing. Panics
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:57:34 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/metrics.go

    			Namespace:      namespace,
    			Subsystem:      subsystem,
    			Name:           "jwt_authenticator_latency_seconds",
    			Help:           "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).",
    			StabilityLevel: metrics.ALPHA,
    			// default histogram buckets with a 1ms starting point
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 19:29:33 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/device_compilation_profiler.h

        // Number of times the cluster has been (re-)compiled.
        int64_t compile_count = 0;
    
        // The number of times this cluster has been executed.
        int64_t execution_count = 0;
    
        // Cumulative time spent compiling the cluster.
        int64_t cumulative_compile_time_us = 0;
    
        // True if we have decided that this cluster is too dynamic (i.e. its shapes
        // change too frequently) to profitably JIT compile.  Once a cluster is
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/cache/AbstractCache.java

         * #recordMisses}, this method should only be called by the loading thread.
         *
         * @param loadTime the number of nanoseconds the cache spent computing or retrieving the new
         *     value
         */
        @SuppressWarnings("GoodTime") // should accept a java.time.Duration
        void recordLoadSuccess(long loadTime);
    
        /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 15 18:00:07 UTC 2021
    - 9.1K bytes
    - Viewed (0)
  8. docs/pt/docs/advanced/templates.md

    
    !!! note "Detalhes Técnicos"
        Você também poderia usar `from starlette.templating import Jinja2Templates`.
    
        **FastAPI** fornece o mesmo `starlette.templating` como `fastapi.templating` apenas como uma conveniência para você, o desenvolvedor. Mas a maioria das respostas disponíveis vêm diretamente do Starlette. O mesmo acontece com `Request` e `StaticFiles`.
    
    ## Escrevendo Templates
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Mar 28 04:05:17 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. docs/pt/docs/tutorial/query-params-str-validations.md

        = None
        ```
    
        Ou com:
    
        ```Python
        = Query(default=None)
        ```
    
        E irá utilizar o `None` para detectar que o parâmetro de consulta não é obrigatório.
    
        O `Union` é apenas para permitir que seu editor de texto lhe dê um melhor suporte.
    
    Então, podemos passar mais parâmetros para `Query`. Neste caso, o parâmetro `max_length` que se aplica a textos:
    
    ```Python
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 14 11:59:59 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  10. docs/pt/docs/deployment/versions.md

    Já é possível criar aplicativos de produção com **FastAPI** (e provavelmente você já faz isso há algum tempo), apenas precisando ter certeza de usar uma versão que funcione corretamente com o resto do seu código.
    
    ## Fixe a sua versão de `fastapi`
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jul 29 20:14:40 UTC 2021
    - 3.8K bytes
    - Viewed (0)
Back to top