Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 118 for rapide (0.26 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiIdeaProjectIntegrationTest.groovy

            fixture.assertNoConfigurationCache()
            with(originalIdeaModel.children.find { it.name == "impl" }) { impl ->
                impl.dependencies.size() == 1
                def apiDep = impl.dependencies[0] as IdeaModuleDependency
                apiDep.targetModuleName == "api"
            }
    
            when: "fetching with Isolated Projects"
            executer.withArguments(ENABLE_CLI)
            def ideaModel = fetchModel(BasicIdeaProject)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/typecheck/iexport.go

    // appends additional compiler-specific details after declarations.
    // Third-party tools are not expected to depend on these details and
    // they're expected to change much more rapidly, so they're omitted
    // here. See exportWriter's varExt/funcExt/etc methods for details.
    
    package typecheck
    
    import (
    	"strings"
    )
    
    const blankMarker = "$"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 21 02:40:02 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  3. pkg/controller/certificates/cleaner/cleaner.go

    */
    
    // Package cleaner implements an automated cleaner that does garbage collection
    // on CSRs that meet specific criteria. With automated CSR requests and
    // automated approvals, the volume of CSRs only increases over time, at a rapid
    // rate if the certificate duration is short.
    package cleaner
    
    import (
    	"context"
    	"crypto/x509"
    	"encoding/pem"
    	"fmt"
    	"time"
    
    	"k8s.io/klog/v2"
    
    	capi "k8s.io/api/certificates/v1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 15 03:26:08 UTC 2023
    - 8K bytes
    - Viewed (0)
  4. docs/en/docs/tutorial/security/index.md

    **FastAPI** provides several tools to help you deal with **Security** easily, rapidly, in a standard way, without having to study and learn all the security specifications.
    
    But first, let's check some small concepts.
    
    ## In a hurry?
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jun 24 14:47:15 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/sparsetree.go

    	// and "after" the block.
    	AdjustBefore = -1 // defined before phi
    	AdjustWithin = 0  // defined by phi
    	AdjustAfter  = 1  // defined within block
    )
    
    // A SparseTree is a tree of Blocks.
    // It allows rapid ancestor queries,
    // such as whether one block dominates another.
    type SparseTree []SparseTreeNode
    
    // newSparseTree creates a SparseTree from a block-to-parent map (array indexed by Block.ID).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 8.1K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/ops/gen/README.md

    ```
    
    ## Design
    
    ### Generator Framework
    
    The generator framework is a loose Model/View/Controller arrangement:
    
    The *Model* classes live in the ***model/*** directory. They are representations
    of the `OpDef` and `ApiDef` protos, normalized and resolved.
    
    > _For example, an `OpDef` proto's `ArgDef` members contain a type string, which
    > must be dereferenced to an `AttrDef` by name to determine its type. This
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 21 18:51:25 UTC 2021
    - 5.7K bytes
    - Viewed (0)
  7. docs/fr/docs/tutorial/path-params.md

        Dans ce cas, l'URL serait : `/files//home/johndoe/myfile.txt`, avec un double slash (`//`) entre `files` et `home`.
    
    ## Récapitulatif
    
    Avec **FastAPI**, en utilisant les déclarations de type rapides, intuitives et standards de Python, vous bénéficiez de :
    
    * Support de l'éditeur : vérification d'erreurs, auto-complétion, etc.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10K bytes
    - Viewed (0)
  8. pkg/kubelet/prober/worker.go

    func (w *worker) run() {
    	ctx := context.Background()
    	probeTickerPeriod := time.Duration(w.spec.PeriodSeconds) * time.Second
    
    	// If kubelet restarted the probes could be started in rapid succession.
    	// Let the worker wait for a random portion of tickerPeriod before probing.
    	// Do it only if the kubelet has started recently.
    	if probeTickerPeriod > time.Since(w.probeManager.start) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 27 01:28:06 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/CoreJavadocOptions.java

         * use both -sourcepath and -classpath.
         * <p>
         * For example, if you want to document com.mypackage, whose source files reside in the directory C:/user/src/com/mypackage,
         * and if this package relies on a library in C:/user/lib, you would specify:
         * <p>
         *   javadoc -classpath /user/lib -sourcepath /user/src com.mypackage
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 28.2K bytes
    - Viewed (0)
  10. docs/pt/docs/python-types.md

    Ao declarar tipos para suas variáveis, editores e ferramentas podem oferecer um melhor suporte.
    
    Este é apenas um **tutorial rápido / atualização** sobre type hints Python. Ele cobre apenas o mínimo necessário para usá-los com o **FastAPI** ... que é realmente muito pouco.
    
    O **FastAPI** é baseado nesses type hints, eles oferecem muitas vantagens e benefícios.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 9.6K bytes
    - Viewed (0)
Back to top