Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 737 for pieces (0.91 sec)

  1. docs/fr/docs/tutorial/index.md

    $ pip install fastapi[all]
    
    ---> 100%
    ```
    
    </div>
    
    ... qui comprend également `uvicorn`, que vous pouvez utiliser comme serveur pour exécuter votre code.
    
    !!! note
        Vous pouvez également l'installer pièce par pièce.
    
        C'est ce que vous feriez probablement une fois que vous voudrez déployer votre application en production :
    
        ```
        pip install fastapi
        ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jul 27 18:51:55 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  2. docs_src/python_types/tutorial008.py

    from typing import Dict
    
    
    def process_items(prices: Dict[str, float]):
        for item_name, item_price in prices.items():
            print(item_name)
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Jan 16 14:44:08 UTC 2022
    - 171 bytes
    - Viewed (0)
  3. docs/es/docs/advanced/path-operation-advanced-configuration.md

    # Configuración avanzada de las operaciones de path
    
    ## OpenAPI operationId
    
    !!! warning "Advertencia"
        Si no eres una persona "experta" en OpenAPI, probablemente no necesitas leer esto.
    
    Puedes asignar el `operationId` de OpenAPI para ser usado en tu *operación de path* con el parámetro `operation_id`.
    
    En este caso tendrías que asegurarte de que sea único para cada operación.
    
    ```Python hl_lines="6"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Jul 04 12:49:31 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/timeout/Timeout.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.execution.timeout;
    
    /**
     * Represents a timeout for some piece of work.
     */
    public interface Timeout {
        /**
         * Stops the timeout and returns whether the work did time out.
         */
        boolean stop();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 854 bytes
    - Viewed (0)
  5. docs/es/docs/deployment/index.md

    ## Estrategias de despliegue
    
    Existen varias formas de hacerlo dependiendo de tu caso de uso específico y las herramientas que uses.
    
    Puedes **desplegar un servidor** tú mismo usando un conjunto de herramientas, puedes usar **servicios en la nube** que haga parte del trabajo por ti, o usar otras posibles opciones.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Feb 07 11:55:38 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. build/util.sh

      # This takes:
      # Client Version: version.Info{Major:"1", Minor:"1+", GitVersion:"v1.1.0-alpha.0.2328+3c0a05de4a38e3", GitCommit:"3c0a05de4a38e355d147dbfb4d85bad6d2d73bb9", GitTreeState:"clean"}
      # and spits back the GitVersion piece in a way that is somewhat
      # resilient to the other fields changing (we hope)
      "${KUBE_ROOT}/cluster/kubectl.sh" version --client | sed "s/, */\\
    /g" | grep -E "^GitVersion:" | cut -f2 -d: | cut -f2 -d\"
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 16 08:37:13 UTC 2019
    - 1.3K bytes
    - Viewed (0)
  7. tensorflow/c/kernels.h

    // places it into *val. *status is set to TF_OK.
    //
    // If the attribute could not be found or could not be interpreted as
    // bool, *status is populated with an error.
    TF_CAPI_EXPORT extern void TF_OpKernelConstruction_GetAttrBool(
        TF_OpKernelConstruction* ctx, const char* attr_name, TF_Bool* val,
        TF_Status* status);
    
    // Interprets the named kernel construction attribute as string and
    // places it into *val. `val` must
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 09 22:46:22 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  8. docs/de/docs/how-to/separate-openapi-schemas.md

    Sehen wir uns an, wie das funktioniert und wie Sie es bei Bedarf ändern können.
    
    ## Pydantic-Modelle für Eingabe und Ausgabe
    
    Nehmen wir an, Sie haben ein Pydantic-Modell mit Defaultwerten wie dieses:
    
    === "Python 3.10+"
    
        ```Python hl_lines="7"
        {!> ../../../docs_src/separate_openapi_schemas/tutorial001_py310.py[ln:1-7]!}
    
        # Code unterhalb weggelassen 👇
        ```
    
        <details>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:18:03 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  9. docs/es/docs/advanced/additional-status-codes.md

    Utilizará el código de estado por defecto, o el que hayas asignado en tu *operación de path*.
    
    ## Códigos de estado adicionales
    
    Si quieres devolver códigos de estado adicionales además del principal, puedes hacerlo devolviendo directamente una `Response`, como una `JSONResponse`, y asignar directamente el código de estado adicional.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jan 13 11:57:27 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. CREDITS

    have the freedom to distribute copies of free software (and charge for
    them if you wish), that you receive source code or can get it if you
    want it, that you can change the software or use pieces of it in new
    free programs, and that you know you can do these things.
    
      Developers that use our General Public Licenses protect your rights
    with two steps: (1) assert copyright on the software, and (2) offer
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 15:34:20 UTC 2024
    - 1.7M bytes
    - Viewed (0)
Back to top