Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,062 for tparams (0.29 sec)

  1. src/crypto/tls/quic_test.go

    	}
    
    	if cli.gotParams == nil {
    		t.Errorf("client did not get transport params")
    	}
    	if srv.gotParams == nil {
    		t.Errorf("server did not get transport params")
    	}
    	if len(cli.gotParams) != 0 {
    		t.Errorf("client got transport params: %v, want empty", cli.gotParams)
    	}
    	if len(srv.gotParams) != 0 {
    		t.Errorf("server got transport params: %v, want empty", srv.gotParams)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  2. docs/ru/docs/tutorial/path-params-numeric-validations.md

        ```
    
    ## Резюме
    
    С помощью `Query`, `Path` (и других классов, которые мы пока не затронули) вы можете добавлять метаданные и строковую валидацию тем же способом, как и в главе [Query-параметры и валидация строк](query-params-str-validations.md){.internal-link target=_blank}.
    
    А также вы можете добавить валидацию числовых данных:
    
    * `gt`: больше (`g`reater `t`han)
    * `ge`: больше или равно (`g`reater than or `e`qual)
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  3. docs/zh/docs/tutorial/query-params-str-validations.md

        "foo",
        "bar"
      ]
    }
    ```
    
    !!! tip
        要声明类型为 `list` 的查询参数,如上例所示,你需要显式地使用 `Query`,否则该参数将被解释为请求体。
    
    交互式 API 文档将会相应地进行更新,以允许使用多个值:
    
    <img src="https://fastapi.tiangolo.com/img/tutorial/query-params-str-validations/image02.png">
    
    ### 具有默认值的查询参数列表 / 多个值
    
    你还可以定义在没有任何给定值时的默认 `list` 值:
    
    ```Python hl_lines="9"
    {!../../../docs_src/query_params_str_validations/tutorial012.py!}
    ```
    
    如果你访问:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. docs/ko/docs/tutorial/query-params-str-validations.md

        "bar"
      ]
    }
    ```
    
    !!! tip "팁"
        위의 예와 같이 `list` 자료형으로 쿼리 매개변수를 선언하려면 `Query`를 명시적으로 사용해야 합니다. 그렇지 않으면 요청 본문으로 해석됩니다.
    
    대화형 API 문서는 여러 값을 허용하도록 수정 됩니다:
    
    <img src="/img/tutorial/query-params-str-validations/image02.png">
    
    ### 쿼리 매개변수 리스트 / 기본값을 사용하는 다중값
    
    그리고 제공된 값이 없으면 기본 `list` 값을 정의할 수도 있습니다:
    
    ```Python hl_lines="9"
    {!../../../docs_src/query_params_str_validations/tutorial012.py!}
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Feb 11 13:48:31 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/NestedBeanGroovyInterOpIntegrationTest.groovy

                import ${Nested.name}
    
                public abstract class SomeTask extends DefaultTask {
                    @Nested
                    abstract Params getParams()
    
                    @TaskAction
                    void run() {
                        System.out.println("flag = " + params.flag.get())
                    }
                }
            """
        }
    
        @Override
        void pluginDefinesTask() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  6. docs/ru/docs/tutorial/query-params-str-validations.md

    Интерактивная документация API будет обновлена соответствующим образом, где будет разрешено множество значений:
    
    <img src="/img/tutorial/query-params-str-validations/image02.png">
    
    ### Query-параметр со множеством значений по умолчанию
    
    Вы также можете указать тип `list` со списком значений по умолчанию на случай, если вам их не предоставят:
    
    === "Python 3.9+"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 38K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/ActionConfiguration.java

         *
         * @param params - the parameters to use during construction
         */
        void params(Object... params);
    
        /**
         * Sets any initialization parameters to use when constructing an instance of the implementation class.
         *
         * @param params - the parameters to use during construction
         */
        void setParams(Object... params);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 05 13:15:03 UTC 2019
    - 2.2K bytes
    - Viewed (0)
  8. docs/de/docs/tutorial/query-params-str-validations.md

    Die interaktive API-Dokumentation wird entsprechend aktualisiert und erlaubt jetzt mehrere Werte.
    
    <img src="/img/tutorial/query-params-str-validations/image02.png">
    
    ### Query-Parameter-Liste / Mehrere Werte mit Defaults
    
    Und Sie können auch eine Default-`list`e von Werten definieren, wenn keine übergeben werden:
    
    === "Python 3.9+"
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 17:58:59 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  9. docs/en/docs/tutorial/path-params-numeric-validations.md

    And you can also declare numeric validations:
    
    * `gt`: `g`reater `t`han
    * `ge`: `g`reater than or `e`qual
    * `lt`: `l`ess `t`han
    * `le`: `l`ess than or `e`qual
    
    !!! info
        `Query`, `Path`, and other classes you will see later are subclasses of a common `Param` class.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jun 01 21:05:52 UTC 2024
    - 9K bytes
    - Viewed (0)
  10. docs/em/docs/tutorial/cookie-params.md

    === "🐍 3️⃣.1️⃣0️⃣ &amp; 🔛"
    
        ```Python hl_lines="7"
        {!> ../../../docs_src/cookie_params/tutorial001_py310.py!}
        ```
    
    !!! note "📡 ℹ"
        `Cookie` "👭" 🎓 `Path` &amp; `Query`. ⚫️ 😖 ⚪️➡️ 🎏 ⚠ `Param` 🎓.
    
        ✋️ 💭 👈 🕐❔ 👆 🗄 `Query`, `Path`, `Cookie` &amp; 🎏 ⚪️➡️ `fastapi`, 👈 🤙 🔢 👈 📨 🎁 🎓.
    
    !!! info
        📣 🍪, 👆 💪 ⚙️ `Cookie`, ↩️ ⏪ 🔢 🔜 🔬 🔢 🔢.
    
    ## 🌃
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Apr 01 09:26:04 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top