Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 21 - 30 of 407 for TestId (0.47 seconds)

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

  1. src/test/java/org/codelibs/fess/app/pager/RolePagerTest.java

            assertEquals(pageNumberList, rolePager.getPageNumberList());
    
        }
    
        public void test_clear() {
            RolePager rolePager = new RolePager();
            rolePager.id = "testId";
            rolePager.name = "testName";
            rolePager.versionNo = "1";
            rolePager.setAllRecordCount(100);
            rolePager.setAllPageCount(10);
            rolePager.setExistPrePage(true);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 12:58:11 GMT 2026
    - 3.2K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/app/pager/UserPagerTest.java

            assertEquals(pageNumberList, userPager.getPageNumberList());
    
        }
    
        public void test_clear() {
            UserPager userPager = new UserPager();
            userPager.id = "testId";
            userPager.name = "testName";
            userPager.roles = new String[] { "role1", "role2" };
            userPager.groups = new String[] { "group1" };
            userPager.versionNo = "1";
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 12:58:11 GMT 2026
    - 3.4K bytes
    - Click Count (0)
  3. cmd/metacache-entries_test.go

    			wantSelected: &inputSerialized[9],
    			wantOk:       true,
    		},
    	}
    
    	for testID, tt := range tests {
    		rng := rand.New(rand.NewSource(0))
    		// Run for a number of times, shuffling the input to ensure that output is consistent.
    		for i := range 10 {
    			t.Run(fmt.Sprintf("test-%d-%s-run-%d", testID, tt.name, i), func(t *testing.T) {
    				if i > 0 {
    					rng.Shuffle(len(tt.m), func(i, j int) {
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri Aug 29 02:39:48 GMT 2025
    - 31.6K bytes
    - Click Count (0)
  4. docs/es/docs/tutorial/body-nested-models.md

    # Cuerpo - Modelos Anidados { #body-nested-models }
    
    Con **FastAPI**, puedes definir, validar, documentar y usar modelos profundamente anidados de manera arbitraria (gracias a Pydantic).
    
    ## Campos de lista { #list-fields }
    
    Puedes definir un atributo como un subtipo. Por ejemplo, una `list` en Python:
    
    {* ../../docs_src/body_nested_models/tutorial001_py310.py hl[12] *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 7.2K bytes
    - Click Count (0)
  5. docs/de/docs/tutorial/body-nested-models.md

    # Body – Verschachtelte Modelle { #body-nested-models }
    
    Mit **FastAPI** können Sie (dank Pydantic) beliebig tief verschachtelte Modelle definieren, validieren, dokumentieren und verwenden.
    
    ## Listen als Felder { #list-fields }
    
    Sie können ein Attribut als Kindtyp definieren, zum Beispiel eine Python-`list`.
    
    {* ../../docs_src/body_nested_models/tutorial001_py310.py hl[12] *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 7.5K bytes
    - Click Count (0)
  6. docs/zh-hant/docs/tutorial/body-nested-models.md

    # Body - 巢狀模型 { #body-nested-models }
    
    使用 **FastAPI**,你可以定義、驗證、文件化,並使用任意深度的巢狀模型(感謝 Pydantic)。
    
    ## 列表欄位 { #list-fields }
    
    你可以將屬性定義為某個子型別。例如,Python 的 `list`:
    
    {* ../../docs_src/body_nested_models/tutorial001_py310.py hl[12] *}
    
    這會讓 `tags` 成為一個列表,儘管尚未宣告列表元素的型別。
    
    ## 具有型別參數的列表欄位 { #list-fields-with-type-parameter }
    
    不過,Python 有一種專門的方式來宣告具有內部型別(「型別參數」)的列表:
    
    ### 宣告帶有型別參數的 `list` { #declare-a-list-with-a-type-parameter }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 6.5K bytes
    - Click Count (0)
  7. docs/ja/docs/tutorial/body-nested-models.md

    # ボディ - ネストされたモデル { #body-nested-models }
    
    **FastAPI** を使用すると、深くネストされた任意のモデルを定義、検証、文書化、使用することができます(Pydanticのおかげです)。
    
    ## リストのフィールド { #list-fields }
    
    属性をサブタイプとして定義することができます。例えば、Pythonの`list`:
    
    {* ../../docs_src/body_nested_models/tutorial001_py310.py hl[12] *}
    
    これにより、各項目の型は宣言されていませんが、`tags`はリストになります。
    
    ## タイプパラメータを持つリストのフィールド { #list-fields-with-type-parameter }
    
    しかし、Pythonには内部の型、または「タイプパラメータ」を使ってリストを宣言するための特定の方法があります:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 8.6K bytes
    - Click Count (0)
  8. docs/en/docs/tutorial/body-nested-models.md

    And it will be annotated / documented accordingly too.
    
    ## Nested Models { #nested-models }
    
    Each attribute of a Pydantic model has a type.
    
    But that type can itself be another Pydantic model.
    
    So, you can declare deeply nested JSON "objects" with specific attribute names, types and validations.
    
    All that, arbitrarily nested.
    
    ### Define a submodel { #define-a-submodel }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 6.6K bytes
    - Click Count (0)
  9. docs/uk/docs/tutorial/body-nested-models.md

    # Тіло - Вкладені моделі { #body-nested-models }
    
    З **FastAPI** ви можете визначати, перевіряти, документувати та використовувати моделі, які можуть бути вкладені на будь-яку глибину (завдяки Pydantic).
    
    ## Поля списку { #list-fields }
    
    Ви можете визначити атрибут як підтип. Наприклад, Python-список (`list`):
    
    {* ../../docs_src/body_nested_models/tutorial001_py310.py hl[12] *}
    
    Це зробить `tags` списком, хоча не визначається тип елементів списку.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 10.3K bytes
    - Click Count (0)
  10. docs/ru/docs/tutorial/body-nested-models.md

    # Body - Вложенные модели { #body-nested-models }
    
    С помощью **FastAPI** вы можете определять, валидировать, документировать и использовать модели произвольной глубины вложенности (благодаря Pydantic).
    
    ## Поля-списки { #list-fields }
    
    Вы можете определить атрибут как подтип. Например, Python-тип `list`:
    
    {* ../../docs_src/body_nested_models/tutorial001_py310.py hl[12] *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:56:20 GMT 2026
    - 11.5K bytes
    - Click Count (0)
Back to Top