Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 806 for TestTd (0.12 sec)

  1. docs/ja/docs/tutorial/body-nested-models.md

    {!../../../docs_src/body_nested_models/tutorial008.py!}
    ```
    
    ## あらゆる場所でのエディタサポート
    
    エディタのサポートもどこでも受けることができます。
    
    以下のようにリストの中の項目でも:
    
    <img src="https://fastapi.tiangolo.com/img/tutorial/body-nested-models/image01.png">
    
    Pydanticモデルではなく、`dict`を直接使用している場合はこのようなエディタのサポートは得られません。
    
    しかし、それらについて心配する必要はありません。入力された辞書は自動的に変換され、出力も自動的にJSONに変換されます。
    
    ## 任意の`dict`のボディ
    
    また、ある型のキーと別の型の値を持つ`dict`としてボディを宣言することもできます。
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. docs/zh/docs/tutorial/body-nested-models.md

        {!> ../../../docs_src/body_nested_models/tutorial008.py!}
        ```
    
    ## 无处不在的编辑器支持
    
    你可以随处获得编辑器支持。
    
    即使是列表中的元素:
    
    <img src="https://fastapi.tiangolo.com/img/tutorial/body-nested-models/image01.png">
    
    如果你直接使用 `dict` 而不是 Pydantic 模型,那你将无法获得这种编辑器支持。
    
    但是你根本不必担心这两者,传入的字典会自动被转换,你的输出也会自动被转换为 JSON。
    
    ## 任意 `dict` 构成的请求体
    
    你也可以将请求体声明为使用某类型的键和其他类型值的 `dict`。
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  3. docs/en/docs/features.md

    ### Tested
    
    * 100% <abbr title="The amount of code that is automatically tested">test coverage</abbr>.
    * 100% <abbr title="Python type annotations, with this your editor and external tools can give you better support">type annotated</abbr> code base.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/errors/errors.go

    		if fn(err) {
    			return true
    		}
    	}
    	return false
    }
    
    // filterErrors returns any errors (or nested errors, if the list contains
    // nested Errors) for which all fns return false. If no errors
    // remain a nil list is returned. The resulting slice will have all
    // nested slices flattened as a side effect.
    func filterErrors(list []error, fns ...Matcher) []error {
    	result := []error{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 29 09:44:02 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  5. src/sync/map_test.go

    			// because there are no concurrent Delete involved in this tested map.
    			if v, ok := m.Load(key); !ok || !reflect.DeepEqual(v, value) {
    				t.Fatalf("Nested Range loads unexpected value, got %+v want %+v", v, value)
    			}
    
    			// We didn't keep 42 and a value into the map before, if somehow we loaded
    			// a value from such a key, meaning there must be an internal bug regarding
    			// nested range in the Map.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 01 15:34:22 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_list_issue61415.txt

    stdout '"Subdir": "nested"'
    stdout '"TagPrefix": "nested/"'
    stdout '"TagSum": "t1:47DEQpj8HBSa\+/TImW\+5JCeuQeRkm5NMpJWZG3hSuFU="'
    stdout '"Ref": "refs/tags/has-nested"'
    stdout '"Hash": "08a4fa6bb9c04ffba03b26ae427b0d6335d90a2a"'
    
    go list -reuse=has-nested.json -json -m --versions -e vcs-test.golang.org/git/issue61415.git/nested@has-nested
    stdout '"Origin":'
    stdout '"VCS": "git"'
    stdout '"URL":'  # randomly-chosen vcweb localhost URL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 22:15:45 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_get_split.txt

    -- nested.0/go.mod --
    module example.net/split/nested
    
    go 1.16
    -- nested.1/go.mod --
    module example.net/split/nested
    
    go 1.16
    -- nested.1/nested.go --
    package nested
    -- nested.2/go.mod --
    module example.net/split/nested
    
    go 1.16
    -- nested.2/nested.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/vcstest/git/issue61415.txt

    env GIT_COMMITTER_EMAIL=$GIT_AUTHOR_EMAIL
    
    at 2023-11-14T13:00:00-05:00
    
    git init
    
    git add go.mod nested
    git commit -m 'nested: add go.mod'
    git branch -m main
    
    git tag has-nested
    
    at 2023-11-14T13:00:01-05:00
    
    git rm -r nested
    git commit -m 'nested: delete subdirectory'
    
    git show-ref --tags --heads
    cmp stdout .git-refs
    
    git log --pretty=oneline
    cmp stdout .git-log
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 22:15:45 UTC 2023
    - 928 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/modelRules/modelDsl/groovy/build.gradle

    // tag::create-rule[]
    // tag::managed-type-nested-config-rule[]
    }
    // end::create-rule[]
    // end::create-rule-no-config[]
    // end::configure-rule[]
    // end::rule-inputs[]
    // end::managed-type-nested-config-rule[]
    
    // tag::model-map-nested-configure-rule[]
    // tag::model-map-nested-create-rule[]
    // tag::model-map-all-rule[]
    model {
        people {
    // end::model-map-nested-create-rule[]
    // end::model-map-all-rule[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  10. cmd/import-boss/testdata/nested-fwd/aaa/file.go

    import (
    	_ "k8s.io/kubernetes/cmd/import-boss/testdata/nested-fwd/allowed-by-both"
    	_ "k8s.io/kubernetes/cmd/import-boss/testdata/nested-fwd/allowed-by-root"
    	_ "k8s.io/kubernetes/cmd/import-boss/testdata/nested-fwd/allowed-by-sub"
    	_ "k8s.io/kubernetes/cmd/import-boss/testdata/nested-fwd/bbb"
    	_ "k8s.io/kubernetes/cmd/import-boss/testdata/nested-fwd/forbidden-by-both"
    	_ "k8s.io/kubernetes/cmd/import-boss/testdata/nested-fwd/forbidden-by-root"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:36 UTC 2024
    - 626 bytes
    - Viewed (0)
Back to top