Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,700 for parms (0.09 sec)

  1. docs/de/docs/tutorial/query-params.md

    * `skip`, ein `int` mit einem Defaultwert `0`.
    * `limit`, ein optionales `int`.
    
    !!! tip "Tipp"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 25 14:53:41 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. docs/zh/docs/tutorial/query-params.md

    {!../../../docs_src/query_params/tutorial006.py!}
    ```
    
    本例中有 3 个查询参数:
    
    * `needy`,必选的 `str` 类型参数
    * `skip`,默认值为 `0` 的 `int` 类型参数
    * `limit`,可选的 `int` 类型参数
    
    !!! tip "提示"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. docs/en/docs/tutorial/query-params.md

    * `needy`, a required `str`.
    * `skip`, an `int` with a default value of `0`.
    * `limit`, an optional `int`.
    
    !!! tip
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Oct 20 09:08:42 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  4. docs/fr/docs/tutorial/query-params.md

    * `skip`, un `int` avec comme valeur par défaut `0`.
    * `limit`, un `int` optionnel.
    
    !!! tip "Astuce"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Sep 27 20:52:31 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/negotiation/negotiate_test.go

    		if err != nil {
    			panic(err)
    		}
    		parts := strings.SplitN(mediaType, "/", 2)
    		if len(parts) == 1 {
    			// this is an error on the server side
    			parts = append(parts, "")
    		}
    
    		info := runtime.SerializerInfo{
    			Serializer:       n.serializer,
    			MediaType:        s,
    			MediaTypeType:    parts[0],
    			MediaTypeSubType: parts[1],
    			EncodesAsText:    true,
    		}
    		for _, t := range n.streamTypes {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 10 10:53:34 UTC 2019
    - 9K bytes
    - Viewed (0)
  6. docs/ja/docs/tutorial/query-params.md

    {!../../../docs_src/query_params/tutorial006.py!}
    ```
    
    この場合、3つのクエリパラメータがあります。:
    
    * `needy`、必須の `str` 。
    * `skip`、デフォルト値を `0` とする `int` 。
    * `limit`、オプショナルな `int` 。
    
    !!! tip "豆知識"
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  7. docs/pt/docs/tutorial/query-params-str-validations.md

    A documentação interativa da API irá atualizar de acordo, permitindo múltiplos valores:
    
    <img src="/img/tutorial/query-params-str-validations/image02.png">
    
    ### Lista de parâmetros de consulta / múltiplos valores por padrão
    
    E você também pode definir uma lista (`list`) de valores padrão caso nenhum seja informado:
    
    ```Python hl_lines="9"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 14 11:59:59 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  8. docs/em/docs/tutorial/query-params-str-validations.md

      "q": [
        "foo",
        "bar"
      ]
    }
    ```
    
    !!! tip
        📣 🔢 🔢 ⏮️ 🆎 `list`, 💖 🖼 🔛, 👆 💪 🎯 ⚙️ `Query`, ⏪ ⚫️ 🔜 🔬 📨 💪.
    
    🎓 🛠️ 🩺 🔜 ℹ ➡️, ✔ 💗 💲:
    
    <img src="/img/tutorial/query-params-str-validations/image02.png">
    
    ### 🔢 🔢 📇 / 💗 💲 ⏮️ 🔢
    
    &amp; 👆 💪 🔬 🔢 `list` 💲 🚥 👌 🚚:
    
    === "🐍 3️⃣.6️⃣ &amp; 🔛"
    
        ```Python hl_lines="9"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssagen/abi.go

    		if line == "" || strings.HasPrefix(line, "#") {
    			continue
    		}
    
    		parts := strings.Fields(line)
    		switch parts[0] {
    		case "def", "ref":
    			// Parse line.
    			if len(parts) != 3 {
    				log.Fatalf(`%s:%d: invalid symabi: syntax is "%s sym abi"`, file, lineNum, parts[0])
    			}
    			sym, abistr := parts[1], parts[2]
    			abi, valid := obj.ParseABI(abistr)
    			if !valid {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  10. fastapi/params.py

    Sebastián Ramírez <******@****.***> 1713469257 -0500
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 27.5K bytes
    - Viewed (0)
Back to top