Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 176 for annotated (0.14 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/dataflow_actions.adoc

    ----
    ====
    <1> Parameters in the parameter type must be annotated. If a parameter is annotated with link:{javadocPath}/org/gradle/api/services/ServiceReference.html[`@ServiceReference`], then a suitable shared build service implementation is automatically assigned to the parameter when the action is created, according to the <<build_services.adoc#sec:service_references,usual rules>>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:10 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. docs/de/docs/reference/parameters.md

    # Request-Parameter
    
    Hier die Referenzinformationen für die Request-Parameter.
    
    Dies sind die Sonderfunktionen, die Sie mittels `Annotated` in *Pfadoperation-Funktion*-Parameter oder Abhängigkeitsfunktionen einfügen können, um Daten aus dem Request abzurufen.
    
    Dies beinhaltet:
    
    * `Query()`
    * `Path()`
    * `Body()`
    * `Cookie()`
    * `Header()`
    * `Form()`
    * `File()`
    
    Sie können diese alle direkt von `fastapi` importieren:
    
    ```python
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:17:26 UTC 2024
    - 635 bytes
    - Viewed (0)
  3. docs/en/docs/reference/parameters.md

    # Request Parameters
    
    Here's the reference information for the request parameters.
    
    These are the special functions that you can put in *path operation function* parameters or dependency functions with `Annotated` to get data from the request.
    
    It includes:
    
    * `Query()`
    * `Path()`
    * `Body()`
    * `Cookie()`
    * `Header()`
    * `Form()`
    * `File()`
    
    You can import them all directly from `fastapi`:
    
    ```python
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 603 bytes
    - Viewed (0)
  4. platforms/core-runtime/service-provider/src/main/java/org/gradle/internal/service/ServiceRegistrationProvider.java

     * limitations under the License.
     */
    
    package org.gradle.internal.service;
    
    /**
     * Marker interface for service registration providers.
     *
     * These are types contain method annotated with {@literal @}{@link Provides} to register services.
     */
    public interface ServiceRegistrationProvider {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 871 bytes
    - Viewed (0)
  5. docs/de/docs/advanced/security/http-basic-auth.md

    === "Python 3.8+"
    
        ```Python hl_lines="2  7  11"
        {!> ../../../docs_src/security/tutorial006_an.py!}
        ```
    
    === "Python 3.8+ nicht annotiert"
    
        !!! tip "Tipp"
            Bevorzugen Sie die `Annotated`-Version, falls möglich.
    
        ```Python hl_lines="2  6  10"
        {!> ../../../docs_src/security/tutorial006.py!}
        ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:28:08 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/problems/KnownProblemIds.groovy

            'validation:property-validation:annotation-invalid-in-context' : 'Invalid annotation in context',
            'validation:property-validation:cannot-use-optional-on-primitive-types' : 'Property should be annotated with @Optional',
            'validation:property-validation:cannot-write-output' : 'Property is not writable',
            'validation:property-validation:cannot-write-to-reserved-location' : 'Cannot write to reserved location',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. docs/de/docs/tutorial/request-forms.md

    === "Python 3.8+"
    
        ```Python hl_lines="1"
        {!> ../../../docs_src/request_forms/tutorial001_an.py!}
        ```
    
    === "Python 3.8+ nicht annotiert"
    
        !!! tip "Tipp"
            Bevorzugen Sie die `Annotated`-Version, falls möglich.
    
        ```Python hl_lines="1"
        {!> ../../../docs_src/request_forms/tutorial001.py!}
        ```
    
    ## `Form`-Parameter definieren
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:06:54 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/RelevantMethods.java

                    if (method.getAnnotation(Provides.class) == null) {
                        throw new ServiceValidationException(String.format("Method %s.%s() must be annotated with @Provides.", type.getName(), method.getName()));
                    }
                    if (method.getReturnType().equals(Void.TYPE)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:53:25 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  9. docs/ko/docs/tutorial/dependencies/global-dependencies.md

        ```
    
    === "Python 3.8+"
    
        ```Python hl_lines="16"
        {!> ../../../docs_src/dependencies/tutorial012_an.py!}
        ```
    
    === "Python 3.8 Annotated가 없는 경우"
    
        !!! tip "팁"
            가능하다면 `Annotated`가 달린 버전을 권장합니다.
    
        ```Python hl_lines="15"
        {!> ../../../docs_src/dependencies/tutorial012.py!}
        ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Feb 14 15:05:47 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/properties/annotations/TypeMetadata.java

    public interface TypeMetadata {
        void visitValidationFailures(@Nullable String ownerPropertyPath, TypeValidationContext validationContext);
    
        /**
         * Returns the set of relevant properties, that is, those properties annotated with a relevant annotation.
         */
        Set<PropertyMetadata> getPropertiesMetadata();
    
        boolean hasAnnotatedProperties();
    
        PropertyAnnotationHandler getAnnotationHandlerFor(PropertyMetadata propertyMetadata);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:21 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top