Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 391 - 400 of 986 for Parametre (0.05 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. docs/ko/docs/tutorial/schema-extra-example.md

    JSON 스키마는 `examples`를 가지고 있지 않았고, 따라서 OpenAPI는 그들만의 `example` 필드를 수정된 버전에 추가했습니다.
    
    OpenAPI는 또한 `example`과 `examples` 필드를 명세서의 다른 부분에 추가했습니다:
    
    * [`Parameter Object` (명세서에 있는)](https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.0.md#parameter-object)는 FastAPI의 다음 기능에서 쓰였습니다:
        * `Path()`
        * `Query()`
        * `Header()`
        * `Cookie()`
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 10.3K bytes
    - Click Count (0)
  2. docs/es/docs/tutorial/middleware.md

    Para crear un middleware usas el decorador `@app.middleware("http")` encima de una función.
    
    La función middleware recibe:
    
    * La `request`.
    * Una función `call_next` que recibirá la `request` como parámetro.
        * Esta función pasará la `request` a la correspondiente *path operation*.
        * Luego devuelve la `response` generada por la correspondiente *path operation*.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 4.1K bytes
    - Click Count (0)
  3. docs/ru/docs/tutorial/body-updates.md

    Но в данном руководстве более или менее понятно, как они должны использоваться.
    
    ///
    
    ### Использование параметра `exclude_unset` в Pydantic { #using-pydantics-exclude-unset-parameter }
    
    Если вы хотите получать частичные обновления, очень полезно использовать параметр `exclude_unset` в `.model_dump()` модели Pydantic.
    
    Например, `item.model_dump(exclude_unset=True)`.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:56:20 GMT 2026
    - 7.1K bytes
    - Click Count (0)
  4. docs/uk/docs/tutorial/body-updates.md

    Але цей посібник показує вам, більш-менш, як їх задумано використовувати.
    
    ///
    
    ### Використання параметра `exclude_unset` у Pydantic { #using-pydantics-exclude-unset-parameter }
    
    Якщо Ви хочете отримувати часткові оновлення, дуже корисно використовувати параметр `exclude_unset` у `.model_dump()` моделі Pydantic.
    
    Наприклад: `item.model_dump(exclude_unset=True)`.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 6.7K bytes
    - Click Count (0)
  5. okhttp/src/commonJvmAndroid/kotlin/okhttp3/MultipartReader.kt

        @Throws(IOException::class)
        constructor(response: ResponseBody) : this(
          source = response.source(),
          boundary =
            response.contentType()?.parameter("boundary")
              ?: throw ProtocolException("expected the Content-Type to have a boundary parameter"),
        )
    
        @Throws(IOException::class)
        fun nextPart(): Part? {
          check(!closed) { "closed" }
    
          if (noMoreParts) return null
    
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Jan 27 09:00:39 GMT 2026
    - 7.3K bytes
    - Click Count (0)
  6. fastapi/.agents/skills/fastapi/SKILL.md

    Prefer to set the entrypoint in `pyproject.toml` when possible.
    
    ## Use `Annotated`
    
    Always prefer the `Annotated` style for parameter and dependency declarations.
    
    It keeps the function signatures working in other contexts, respects the types, allows reusability.
    
    ### In Parameter Declarations
    
    Use `Annotated` for parameter declarations, including `Path`, `Query`, `Header`, etc.:
    
    ```python
    from typing import Annotated
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Mar 01 10:05:57 GMT 2026
    - 10.1K bytes
    - Click Count (0)
  7. android/guava/src/com/google/common/graph/StandardMutableGraph.java

     *
     * <p>Time complexities for mutation methods are all O(1) except for {@code removeNode(N node)},
     * which is in O(d_node) where d_node is the degree of {@code node}.
     *
     * @author James Sexton
     * @param <N> Node parameter type
     */
    final class StandardMutableGraph<N> extends ForwardingGraph<N> implements MutableGraph<N> {
      private final MutableValueGraph<N, Presence> backingValueGraph;
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sat Dec 21 03:10:51 GMT 2024
    - 2.3K bytes
    - Click Count (0)
  8. okhttp/src/commonJvmAndroid/kotlin/okhttp3/HttpUrl.kt

      val querySize: Int
        get() {
          return if (queryNamesAndValues != null) queryNamesAndValues.size / 2 else 0
        }
    
      /**
       * The first query parameter named `name` decoded using UTF-8, or null if there is no such query
       * parameter.
       *
       * | URL                               | `queryParameter("a")` |
       * | :-------------------------------- | :-------------------- |
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Jan 27 09:00:39 GMT 2026
    - 63.5K bytes
    - Click Count (0)
  9. android/guava/src/com/google/common/graph/StandardMutableValueGraph.java

     * which is in O(d_node) where d_node is the degree of {@code node}.
     *
     * @author James Sexton
     * @author Joshua O'Madadhain
     * @author Omar Darwish
     * @param <N> Node parameter type
     * @param <V> Value parameter type
     */
    final class StandardMutableValueGraph<N, V> extends StandardValueGraph<N, V>
        implements MutableValueGraph<N, V> {
    
      private final ElementOrder<N> incidentEdgeOrder;
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sun Dec 22 03:38:46 GMT 2024
    - 6.3K bytes
    - Click Count (0)
  10. guava-tests/test/com/google/common/collect/ComparatorsTest.java

        Optional<String> z = Optional.of("z");
    
        Comparator<Optional<String>> comparator = emptiesFirst(comparing(String::length));
        testComparator(comparator, empty, z, abc);
    
        // Just demonstrate that no explicit type parameter is required
        Comparator<Optional<String>> unused = emptiesFirst(naturalOrder());
      }
    
      public void testEmptiesLast() {
        Optional<String> empty = Optional.empty();
        Optional<String> abc = Optional.of("abc");
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sat Apr 12 15:07:59 GMT 2025
    - 6.4K bytes
    - Click Count (0)
Back to Top