Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 157 of 157 for model_b (0.12 sec)

  1. docs/de/docs/async.md

    ### Nebenläufigkeit + Parallelität: Web + maschinelles Lernen
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  2. docs/es/docs/async.md

    ### Concurrencia + Paralelismo: Web + Machine Learning
    
    Con **FastAPI** puedes aprovechar la concurrencia que es muy común para el desarrollo web (atractivo principal de NodeJS).
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Mon Aug 19 18:15:21 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  3. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"message/vnd.si.simp",
    				"model/example",
    				"model/iges",
    				"model/mesh",
    				"model/vnd.dwf",
    				"model/vnd.dwfx+xps",
    				"model/vnd.flatland.3dml",
    				"model/vnd.gdl",
    				"model/vnd.gs-gdl",
    				"model/vnd.gs.gdl",
    				"model/vnd.gtw",
    				"model/vnd.moml+xml",
    				"model/vnd.mts",
    				"model/vnd.parasolid.transmit.binary",
    				"model/vnd.parasolid.transmit.text",
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  4. docs/changelogs/changelog_3x.md

     *  **OkHttp now does cookies.** We've replaced `java.net.CookieHandler` with
        a new interface, `CookieJar` and added our own `Cookie` model class. This
        new cookie follows the latest RFC and supports the same cookie attributes
        as modern web browsers.
    
     *  **Form and Multipart bodies are now modeled.** We've replaced the opaque
        `FormEncodingBuilder` with the more powerful `FormBody` and
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  5. RELEASE.md

        *   `Model.fit_generator`, `Model.evaluate_generator`,
            `Model.predict_generator`, `Model.train_on_batch`,
            `Model.test_on_batch`, and `Model.predict_on_batch` methods now respect
            the `run_eagerly` property, and will correctly run using `tf.function`
            by default. Note that `Model.fit_generator`, `Model.evaluate_generator`,
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Tue Oct 22 14:33:53 UTC 2024
    - 735.3K bytes
    - Viewed (0)
  6. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

      <mime-type type="model/vnd.flatland.3dml"/>
      <mime-type type="model/vnd.gdl">
        <glob pattern="*.gdl"/>
      </mime-type>
      <mime-type type="model/vnd.gs-gdl"/>
      <mime-type type="model/vnd.gs.gdl"/>
      <mime-type type="model/vnd.gtw">
        <glob pattern="*.gtw"/>
      </mime-type>
      <mime-type type="model/vnd.moml+xml"/>
      <mime-type type="model/vnd.mts">
        <glob pattern="*.mts"/>
      </mime-type>
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  7. docs/en/docs/release-notes.md

    @app.get("/items/")
    async def read_items(filter_query: Annotated[FilterParams, Query()]):
        return filter_query
    ```
    
    Read the new docs: [Query Parameter Models](https://fastapi.tiangolo.com/tutorial/query-param-models/).
    
    #### `Header` Parameter Models
    
    Use Pydantic models for `Header` parameters:
    
    ```python
    from typing import Annotated
    
    from fastapi import FastAPI, Header
    from pydantic import BaseModel
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Fri Nov 01 11:25:57 UTC 2024
    - 460.3K bytes
    - Viewed (0)
Back to top