Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 144 for tienes (0.21 sec)

  1. 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)
  2. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/platform/internal/ReadelfBinaryInfoTest.groovy

      Einstiegspunktadresse:               0x19bc0
      Beginn der Programm-Header:          52 (Bytes in Datei)
      Beginn der Sektions-header:          1739908 (Bytes in Datei)
      Flags:                             0x0
      Größe dieses Headers:              52 (Byte)
      Größe der Programm-Header:         32 (Byte)
      Number of program headers:         10
      Größe der Sektions-Header:         40 (bytes)
      Anzahl der Sektions-Header:        67
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 23:09:11 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/credentials-handling/pass-credentials-to-external-tool-via-stdin/README.adoc

    include::sample[dir="groovy",files="build.gradle[]"]
    ====
    
    The `login` task declares an input property and connects it with a credentials provider.
    The credentials provider will fetch the credentials pieces from the link:{userManualPath}/build_environment.html#sec:project_properties[project properties].
    
    Credentials can be passed to a task in multiple ways:
    
     * via command-line properties:
    =====
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. docs/de/docs/advanced/advanced-dependencies.md

        !!! tip "Tipp"
            Bevorzugen Sie die `Annotated`-Version, falls möglich.
    
        ```Python hl_lines="10"
        {!> ../../../docs_src/dependencies/tutorial011.py!}
        ```
    
    In diesem Fall ist dieses `__call__` das, was **FastAPI** verwendet, um nach zusätzlichen Parametern und Unterabhängigkeiten zu suchen, und das ist es auch, was später aufgerufen wird, um einen Wert an den Parameter in Ihrer *Pfadoperation-Funktion* zu übergeben.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:18:49 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/incubating/java/jvm-multi-project-with-code-coverage-standalone/README.adoc

    ====
    
    The standalone project applies `jacoco-report-aggregation`, but requires additional configuration if the `jvm-test-suite` plugin is not also present.
    
    In this scenario, two additional pieces of setup are necessary:
    
    <1> Declare dependencies using the `jacocoAggregation` configuration
    <2> Define a report of type `JacocoCoverageReport` which collects coverage data from unit test suites
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/incubating/java/jvm-multi-project-with-test-aggregation-standalone/README.adoc

    The standalone project applies `test-report-aggregation`, but requires additional configuration if the `jvm-test-suite` plugin is not also present (it will be automatically applied by the `java` plugin).
    
    In this scenario, two additional pieces of setup are necessary:
    
    <1> Declare dependencies using the `testReportAggregation` configuration
    <2> Define a report of type `AggregateTestReport` which collects test data from unit test suites
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top