Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 1,069 for dev2 (0.03 sec)

  1. docs/pt/docs/advanced/index.md

    # Guia de Usuário Avançado
    
    ## Recursos Adicionais
    
    O [Tutorial - Guia de Usuário](../tutorial/index.md){.internal-link target=_blank} deve ser o suficiente para dar a você um tour por todos os principais recursos do **FastAPI**.
    
    Na próxima seção você verá outras opções, configurações, e recursos adicionais.
    
    !!! tip "Dica"
        As próximas seções **não são necessáriamente "avançadas"**
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Mar 31 23:52:53 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. docs/en/docs/fastapi-cli.md

    To run your FastAPI app for development, you can use the `fastapi dev` command:
    
    <div class="termy">
    
    ```console
    $ <font color="#4E9A06">fastapi</font> dev <u style="text-decoration-style:single">main.py</u>
    <font color="#3465A4">INFO    </font> Using path <font color="#3465A4">main.py</font>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Jun 12 23:39:50 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_enabled.txt

    cd $GOPATH/src/x/y
    go env GOMOD
    stdout 'NUL|/dev/null'
    
    # GO111MODULE=on should trigger everywhere
    env GO111MODULE=on
    
    cd $GOPATH/src/x/y/z
    go env GOMOD
    stdout z[/\\]go.mod
    
    cd $GOPATH/src/x/y/z/w
    go env GOMOD
    stdout z[/\\]go.mod
    
    cd $GOPATH/src/x/y
    go env GOMOD
    stdout 'NUL|/dev/null'
    go list -m
    stdout '^command-line-arguments$'
    
    cd $GOPATH/foo
    go env GOMOD
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 21 01:30:48 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/versions/versions.go

    package versions
    
    import (
    	"strings"
    )
    
    // Note: If we use build tags to use go/versions when go >=1.22,
    // we run into go.dev/issue/53737. Under some operations users would see an
    // import of "go/versions" even if they would not compile the file.
    // For example, during `go get -u ./...` (go.dev/issue/64490) we do not try to include
    // For this reason, this library just a clone of go/versions for the moment.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/developingPlugins/namedDomainObjectContainer/groovy/build.gradle

    plugins {
        id 'org.myorg.server-env'
    }
    
    environments {
        dev {
            url = 'http://localhost:8080'
        }
    
        staging {
            url = 'http://staging.enterprise.com'
        }
    
        production {
            url = 'http://prod.enterprise.com'
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 248 bytes
    - Viewed (0)
  6. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus/1.0.10/plexus-1.0.10.pom

        </mailingList>
        <mailingList>
          <name>Plexus Developer List</name>
          <subscribe>http://xircles.codehaus.org/manage_email/dev%40plexus.codehaus.org</subscribe>
          <unsubscribe>http://xircles.codehaus.org/manage_email/dev%40plexus.codehaus.org</unsubscribe>
          <archive>http://archive.plexus.codehaus.org/dev</archive>
        </mailingList>
        <mailingList>
          <name>Plexus Announce List</name>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Dec 24 18:09:10 UTC 2020
    - 7.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/developingPlugins/namedDomainObjectContainer/kotlin/build.gradle.kts

    plugins {
        id("org.myorg.server-env")
    }
    
    environments {
        create("dev") {
            url = "http://localhost:8080"
        }
    
        create("staging") {
            url = "http://staging.enterprise.com"
        }
    
        create("production") {
            url = "http://prod.enterprise.com"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 279 bytes
    - Viewed (0)
  8. gradle/dependency-management/agp-versions.properties

    # Generated - Update by running `./gradlew updateAgpVersions`
    latests=7.3.1,7.4.2,8.0.2,8.1.4,8.2.2,8.3.2,8.4.0,8.5.0-beta01
    nightlyBuildId=11829825
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 15:43:39 UTC 2024
    - 174 bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/doc/c4/C4_3_Component.puml

        Rel_Neighbor(kgp, kotlinc, "Uses", "Daemon")
    }
    
    System_Ext(buildCache, "Gradle Build Cache", "Local, Develocity Build Cache Node, etc...")
    
    Rel(dev, gradle, "Uses", "Command Line")
    Rel(dev, editor, "Uses", "GUI")
    
    Rel(providerExecution, kotlinc, "Uses", "Embedded")
    
    Rel(pluginPlugin, kgp, "Applies and configures")
    
    Rel(scriptResolver, editorDependencies, "Provides")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 17:46:30 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  10. src/runtime/proflabel.go

    // Notable members of the hall of shame include:
    //   - github.com/cloudwego/localsession
    //   - github.com/DataDog/datadog-agent
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname runtime_setProfLabel runtime/pprof.runtime_setProfLabel
    func runtime_setProfLabel(labels unsafe.Pointer) {
    	// Introduce race edge for read-back via profile.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top