Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 456 for utiliza (0.12 sec)

  1. docs/es/docs/advanced/additional-status-codes.md

        Asegúrate de que la respuesta tenga los datos que quieras, y que los valores sean JSON válidos (si estás usando `JSONResponse`).
    
    !!! note "Detalles Técnicos"
        También podrías utilizar `from starlette.responses import JSONResponse`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jan 13 11:57:27 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. docs/pt/docs/deployment/versions.md

    Por exemplo, supondo que você está usando a versão `0.45.0` em sua aplicação.
    
    Caso você utilize o arquivo `requirements.txt`, você poderia especificar a versão com:
    
    ```txt
    fastapi==0.45.0
    ```
    
    Isso significa que você conseguiria utilizar a versão exata `0.45.0`.
    
    Ou, você poderia fixá-la com:
    
    ```txt
    fastapi>=0.45.0,<0.46.0
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jul 29 20:14:40 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/internal/operations/MaxWorkersTest.groovy

            instant.child2Started > instant.child1Finished || instant.child1Started > instant.child2Finished
    
            cleanup:
            workerLeaseService?.stop()
        }
    
        def "BuildOperationExecutor can fully utilize worker leases when multiple threads owning worker leases are submitting work (maxWorkers: #maxWorkers)"() {
            CountDownLatch leaseAcquiredLatch = new CountDownLatch(maxWorkers)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/cc/pass_pipeline.h

    // Passes for unpacking quantized ops to int valued StableHLO ops. This is
    // useful when uniform quantized types are suboptimal for the hardware. It goes
    // through a StableHLO <-> MHLO roundtrip to utilize the MHLOQuantToInt pass.
    void AddStablehloQuantToIntPasses(OpPassManager& pm);
    
    // Processes tensors with NCHW format (== (batch, channel, height, weight)) by
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 12:53:33 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/binaryinfo/FileArchOnlyBinaryInfo.groovy

        }
    
        @Override
        List<BinaryInfo.Symbol> listDebugSymbols() {
            throw new UnsupportedOperationException("Only getting the architecture is supported using the file utility")
        }
    
        @Override
        String getSoName() {
            throw new UnsupportedOperationException("Only getting the architecture is supported using the file utility")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/util/certs/util.go

    	"path/filepath"
    	"testing"
    	"time"
    
    	certutil "k8s.io/client-go/util/cert"
    	"k8s.io/client-go/util/keyutil"
    
    	"k8s.io/kubernetes/cmd/kubeadm/app/util/pkiutil"
    )
    
    // SetupCertificateAuthority is a utility function for kubeadm testing that creates a
    // CertificateAuthority cert/key pair
    func SetupCertificateAuthority(t *testing.T) (*x509.Certificate, crypto.Signer) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. cmd/kubeadm/test/util.go

    	certtestutil "k8s.io/kubernetes/cmd/kubeadm/app/util/certs"
    	configutil "k8s.io/kubernetes/cmd/kubeadm/app/util/config"
    	"k8s.io/kubernetes/cmd/kubeadm/app/util/pkiutil"
    )
    
    // SetupTempDir is a utility function for kubeadm testing, that creates a temporary directory
    // NB. it is up to the caller to cleanup the folder at the end of the test with defer os.RemoveAll(tmpdir)
    func SetupTempDir(t *testing.T) string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 01 05:59:41 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  8. cmd/kubeadm/test/kubeconfig/util.go

    	"encoding/pem"
    	"testing"
    	"time"
    
    	clientcmdapi "k8s.io/client-go/tools/clientcmd/api"
    
    	certstestutil "k8s.io/kubernetes/cmd/kubeadm/app/util/certs"
    )
    
    // AssertKubeConfigCurrentCluster is a utility function for kubeadm testing that asserts if the CurrentCluster in
    // the given KubeConfig object contains refers to a specific cluster
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  9. docs/fr/docs/benchmarks.md

    La hiérarchie est la suivante :
    
    * **Uvicorn** : un serveur ASGI
        * **Starlette** : (utilise Uvicorn) un micro-framework web
            * **FastAPI**: (utilise Starlette) un micro-framework pour API disposant de fonctionnalités additionnelles pour la création d'API, avec la validation des données, etc.
    
    * **Uvicorn** :
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jul 27 18:49:56 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  10. testing/internal-testing/src/main/groovy/org/gradle/test/precondition/TestPrecondition.java

        /**
         * Returns true if the precondition is satisfied.
         * @throws Exception if the precondition cannot be checked
         */
        boolean isSatisfied() throws Exception;
    
        /**
         * Utility method to check if a precondition class is satisfied.
         *
         * @param preconditionClass the class of the precondition to be checked
         * @return true if the precondition is satisfied
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top