Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,020 for Request (0.07 sec)

  1. docs/en/docs/reference/request.md

    # `Request` class
    
    You can declare a parameter in a *path operation function* or dependency to be of type `Request` and then you can access the raw request object directly, without any validation, etc.
    
    You can import it directly from `fastapi`:
    
    ```python
    from fastapi import Request
    ```
    
    /// tip
    
    Registered: 2025-05-25 07:19
    - Last Modified: 2024-08-06 04:48
    - 518 bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/suggest/request/Request.java

     */
    package org.codelibs.fess.suggest.request;
    
    import org.codelibs.fess.suggest.concurrent.Deferred;
    import org.codelibs.fess.suggest.exception.SuggesterException;
    import org.opensearch.core.common.Strings;
    import org.opensearch.transport.client.Client;
    
    /**
     * Abstract class representing a request that can be executed to produce a response.
     *
    Registered: 2025-06-06 09:08
    - Last Modified: 2025-05-18 02:59
    - 1.7K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/services/Request.java

    /**
     * Base interface for service requests in Maven. This interface defines the common contract
     * for all request types within the Maven service layer, providing access to session context
     * and request tracing capabilities.
     *
     * <p>Each request is associated with a {@link ProtoSession} that contains the configuration
     * and context necessary for request processing, including:
     * <ul>
    Registered: 2025-05-24 08:56
    - Last Modified: 2025-02-07 00:45
    - 4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/util/transport/Request.java

    package jcifs.util.transport;
    
    
    /**
     * 
     *
     */
    public interface Request extends Message {
    
        /**
         * @return number of credits this request requires
         */
        int getCreditCost ();
    
    
        /**
         * @param credits
         */
        void setRequestCredits ( int credits );
    
    
        /**
         * @return whether this is a cancel request
         */
        boolean isCancel ();
    
    
        /**
    Registered: 2025-05-25 00:10
    - Last Modified: 2018-07-01 13:12
    - 1.3K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/Request.java

     */
    package jcifs.internal;
    
    
    import jcifs.CIFSContext;
    
    
    /**
     * @author mbechler
     * @param <T>
     *            response type
     *
     */
    public interface Request <T extends CommonServerMessageBlockResponse> extends CommonServerMessageBlockRequest {
    
        /**
         * 
         * @param tc
         * @return the initialized response
         * @internal
         */
    Registered: 2025-05-25 00:10
    - Last Modified: 2018-07-01 13:12
    - 1.3K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/util/transport/Request.java

    package jcifs.smb1.util.transport;
    
    public interface Request {
    Registered: 2025-05-25 00:10
    - Last Modified: 2019-03-22 20:39
    - 65 bytes
    - Viewed (0)
  7. docs/en/docs/tutorial/request-files.md

    # Request Files
    
    You can define files to be uploaded by the client using `File`.
    
    /// info
    
    To receive uploaded files, first install <a href="https://github.com/Kludex/python-multipart" class="external-link" target="_blank">`python-multipart`</a>.
    
    Make sure you create a [virtual environment](../virtual-environments.md){.internal-link target=_blank}, activate it, and then install it, for example:
    
    ```console
    $ pip install python-multipart
    ```
    
    Registered: 2025-05-25 07:19
    - Last Modified: 2024-11-09 16:39
    - 7K bytes
    - Viewed (0)
  8. docs/de/docs/tutorial/request-files.md

    # Dateien im Request
    
    Mit `File` können sie vom Client hochzuladende Dateien definieren.
    
    /// info
    
    Um hochgeladene Dateien zu empfangen, installieren Sie zuerst <a href="https://andrew-d.github.io/python-multipart/" class="external-link" target="_blank">`python-multipart`</a>.
    
    Z. B. `pip install python-multipart`.
    
    Das, weil hochgeladene Dateien als „Formulardaten“ gesendet werden.
    
    ///
    
    ## `File` importieren
    
    Registered: 2025-05-25 07:19
    - Last Modified: 2024-11-18 02:25
    - 8K bytes
    - Viewed (0)
  9. docs/es/docs/tutorial/request-forms.md

    ///
    
    /// warning | Advertencia
    
    Puedes declarar múltiples parámetros `Form` en una *path operation*, pero no puedes también declarar campos `Body` que esperas recibir como JSON, ya que el request tendrá el body codificado usando `application/x-www-form-urlencoded` en lugar de `application/json`.
    
    Esto no es una limitación de **FastAPI**, es parte del protocolo HTTP.
    
    ///
    
    ## Recapitulación
    
    Registered: 2025-05-25 07:19
    - Last Modified: 2024-12-30 18:26
    - 2.9K bytes
    - Viewed (0)
  10. docs/en/docs/tutorial/request-forms.md

    ///
    
    /// warning
    
    You can declare multiple `Form` parameters in a *path operation*, but you can't also declare `Body` fields that you expect to receive as JSON, as the request will have the body encoded using `application/x-www-form-urlencoded` instead of `application/json`.
    
    This is not a limitation of **FastAPI**, it's part of the HTTP protocol.
    
    ///
    
    ## Recap
    
    Registered: 2025-05-25 07:19
    - Last Modified: 2024-11-10 17:10
    - 2.6K bytes
    - Viewed (0)
Back to top