Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 102 for tienes (0.1 sec)

  1. docs/de/docs/tutorial/encoder.md

        ```Python hl_lines="5  22"
        {!> ../../../docs_src/encoder/tutorial001.py!}
        ```
    
    In diesem Beispiel wird das Pydantic-Modell in ein `dict`, und das `datetime`-Objekt in ein `str` konvertiert.
    
    Das Resultat dieses Aufrufs ist etwas, das mit Pythons Standard-<a href="https://docs.python.org/3/library/json.html#json.dumps" class="external-link" target="_blank">`json.dumps()`</a> kodiert werden kann.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:07:21 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/flow/FlowScope.java

    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    /**
     * Augments the cached work graph with {@link FlowAction dataflow actions}, anonymous, parameterized and
     * isolated pieces of work that are triggered solely based on the availability of their input parameters.
     *
     * @since 8.1
     */
    @Incubating
    @ServiceScope(Scope.Build.class)
    public interface FlowScope {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. docs/de/docs/python-types.md

        ```
    
    Das bedeutet:
    
    * Die Variable `prices` ist ein `dict`:
        * Die Schlüssel dieses `dict` sind vom Typ `str` (z. B. die Namen der einzelnen Artikel).
        * Die Werte dieses `dict` sind vom Typ `float` (z. B. der Preis jedes Artikels).
    
    #### <abbr title="Union – Verbund, Einheit‚ Vereinigung: Eines von Mehreren">Union</abbr>
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:29:25 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  4. docs/de/docs/advanced/index.md

    ## Externe Kurse
    
    Obwohl das [Tutorial – Benutzerhandbuch](../tutorial/index.md){.internal-link target=_blank} und dieses **Handbuch für fortgeschrittene Benutzer** als geführtes Tutorial (wie ein Buch) geschrieben sind und für Sie ausreichen sollten, um **FastAPI zu lernen**, möchten Sie sie vielleicht durch zusätzliche Kurse ergänzen.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:19:44 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. docs/de/docs/how-to/custom-request-and-route.md

        Dieses Beispiel ist jedoch immer noch gültig und zeigt, wie mit den internen Komponenten interagiert wird.
    
    Wir können denselben Ansatz auch verwenden, um in einem Exceptionhandler auf den Requestbody zuzugreifen.
    
    Alles, was wir tun müssen, ist, den Request innerhalb eines `try`/`except`-Blocks zu handhaben:
    
    ```Python hl_lines="13  15"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:18:23 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  6. docs/de/docs/tutorial/body.md

    <img src="/img/tutorial/body/image03.png">
    
    Sie bekommen auch Fehler-Meldungen für inkorrekte Typoperationen:
    
    <img src="/img/tutorial/body/image04.png">
    
    Das ist nicht zufällig so, das ganze Framework wurde um dieses Design herum aufgebaut.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/build.gradle.kts

        api(project(":tooling-api"))
    
        // This project contains the Gradle client, daemon and tooling API provider implementations.
        // It should be split up, but for now, add dependencies on both the client and daemon pieces
        api(project(":client-services"))
        api(project(":daemon-services"))
    
        api(libs.guava)
        api(libs.jsr305)
    
        implementation(project(":build-configuration"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 4K bytes
    - Viewed (0)
  8. docs/de/docs/tutorial/body-updates.md

        {!> ../../../docs_src/body_updates/tutorial002.py!}
        ```
    
    !!! tip "Tipp"
        Sie können tatsächlich die gleiche Technik mit einer HTTP `PUT` Operation verwenden.
    
        Aber dieses Beispiel verwendet `PATCH`, da dieses für solche Anwendungsfälle geschaffen wurde.
    
    !!! note "Hinweis"
        Beachten Sie, dass das hereinkommende Modell immer noch validiert wird.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:26:37 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  9. docs/de/docs/tutorial/security/oauth2-jwt.md

    !!! tip "Tipp"
        Dieses Tutorial verwendete zuvor <a href="https://pyjwt.readthedocs.io/" class="external-link" target="_blank">PyJWT</a>.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:27:06 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/debug.go

    	startBlock, startValue ID
    	// The location of each piece of the variable, in the same order as the
    	// SlotIDs in varParts.
    	pieces []VarLoc
    }
    
    func (e *pendingEntry) clear() {
    	e.present = false
    	e.startBlock = 0
    	e.startValue = 0
    	for i := range e.pieces {
    		e.pieces[i] = VarLoc{}
    	}
    }
    
    // canMerge reports whether a new location description is a superset
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
Back to top