Search Options

Results per page
Sort
Preferred Languages
Advance

Results 311 - 320 of 1,188 for parameter_ (0.11 sec)

  1. android/guava-tests/test/com/google/common/graph/MapCacheTest.java

      private final MapIteratorCache<String, String> mapCache;
    
      public MapCacheTest(MapIteratorCache<String, String> mapCache) {
        this.mapCache = mapCache;
      }
    
      @Parameters
      public static Collection<Object[]> parameters() {
        Comparator<String> nullsLast = Ordering.natural().nullsLast();
    
        return Arrays.asList(
            new Object[][] {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Apr 26 16:23:26 UTC 2021
    - 3.2K bytes
    - Viewed (0)
  2. docs/pt/docs/tutorial/path-params-numeric-validations.md

    E você não precisa declarar mais nada em relação a este parâmetro, então você não precisa necessariamente usar `Query`.
    
    Mas você ainda precisa usar `Path` para o parâmetro de rota `item_id`.
    
    O Python irá acusar se você colocar um elemento com um valor padrão definido antes de outro que não tenha um valor padrão.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  3. docs/es/docs/tutorial/query-params.md

    {!../../docs_src/query_params/tutorial002.py!}
    ```
    
    En este caso el parámetro de la función `q` será opcional y será `None` por defecto.
    
    /// check | Revisa
    
    También puedes notar que **FastAPI** es lo suficientemente inteligente para darse cuenta de que el parámetro de path `item_id` es un parámetro de path y que `q` no lo es, y por lo tanto es un parámetro de query.
    
    ///
    
    /// note | Nota
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  4. docs/de/docs/advanced/dataclasses.md

    Wenn Sie jedoch eine Menge Datenklassen herumliegen haben, ist dies ein guter Trick, um sie für eine Web-API mithilfe von FastAPI zu verwenden. 🤓
    
    ///
    
    ## Datenklassen als `response_model`
    
    Sie können `dataclasses` auch im Parameter `response_model` verwenden:
    
    ```Python hl_lines="1  7-13  19"
    {!../../docs_src/dataclasses/tutorial002.py!}
    ```
    
    Die Datenklasse wird automatisch in eine Pydantic-Datenklasse konvertiert.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  5. docs/en/docs/advanced/dataclasses.md

    But if you have a bunch of dataclasses laying around, this is a nice trick to use them to power a web API using FastAPI. 🤓
    
    ///
    
    ## Dataclasses in `response_model`
    
    You can also use `dataclasses` in the `response_model` parameter:
    
    {* ../../docs_src/dataclasses/tutorial002.py hl[1,7:13,19] *}
    
    The dataclass will be automatically converted to a Pydantic dataclass.
    
    This way, its schema will show up in the API docs user interface:
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Mon Oct 28 10:35:06 UTC 2024
    - 4K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/base/Converter.java

       *
       * So we use uncheckedCastNullableTToT here. This is a weird usage of that method: The method is
       * documented as being for use with type parameters that have parametric nullness. But Converter's
       * type parameters do not. Still, we use it here so that we can suppress a warning at a smaller
       * level than the whole method but without performing a runtime null check. That way, we can still
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 23K bytes
    - Viewed (0)
  7. helm-releases/minio-2.0.1.tgz

    can then be passed to Helm using a values file or the `--set` parameter: ``` trustedCertsSecret: "minio-trusted-certs" or --set trustedCertsSecret=minio-trusted-certs ``` Create buckets after install ---------- Install the chart, specifying the buckets you want to create after install: ```bash helm install --set buckets[0].name=bucket1,buckets[0].policy=none,buckets[0].purge=false minio/minio ``` Description of the configuration parameters used above - - `buckets[].name` - name of the bucket to create,...
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Aug 31 09:09:09 UTC 2021
    - 13.6K bytes
    - Viewed (0)
  8. docs/de/docs/tutorial/bigger-applications.md

    {!../../docs_src/bigger_applications/app/routers/users.py!}
    ```
    
    Sie können sich `APIRouter` als eine „Mini-`FastAPI`“-Klasse vorstellen.
    
    Alle die gleichen Optionen werden unterstützt.
    
    Alle die gleichen `parameters`, `responses`, `dependencies`, `tags`, usw.
    
    /// tip | "Tipp"
    
    In diesem Beispiel heißt die Variable `router`, aber Sie können ihr einen beliebigen Namen geben.
    
    ///
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 21K bytes
    - Viewed (0)
  9. okhttp-testing-support/src/main/kotlin/okhttp3/OkHttpClientTestRule.kt

                clientEventsList.add(record.message)
    
                if (record.loggerName == "javax.net.ssl") {
                  val parameters = record.parameters
    
                  if (parameters != null) {
                    clientEventsList.add(parameters.first().toString())
                  }
                }
              }
            }
          }
    
          override fun flush() {
          }
    
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  10. tests/test_tutorial/test_sql_databases/test_tutorial002.py

                            },
                        },
                        "get": {
                            "summary": "Read Heroes",
                            "operationId": "read_heroes_heroes__get",
                            "parameters": [
                                {
                                    "name": "offset",
                                    "in": "query",
                                    "required": False,
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Wed Oct 09 19:44:42 UTC 2024
    - 19.9K bytes
    - Viewed (0)
Back to top