Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,188 for T_nested (0.25 sec)

  1. pkg/volume/util/nested_volumes.go

    			for _, mp := range allMountPoints {
    				if !strings.HasPrefix(mp, myMPSlash) {
    					continue // skip -- not nested beneath myMountPoint
    				}
    
    				isNested := false
    				for _, prevNestedMP := range prevNestedMPs {
    					if strings.HasPrefix(mp, prevNestedMP) {
    						isNested = true
    						break
    					}
    				}
    				if isNested {
    					continue // skip -- double nested beneath myMountPoint
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 18 12:19:17 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  2. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildDetectionIntegrationTest.groovy

        }
    
        def "included build is flagged as a nested build without composite parent on initial configuration"() {
            when:
            buildB.buildFile << """
                assert !isComposite(gradle)
                assert isNested(gradle)
    
                assert isComposite(gradle.parent)
                assert !isNested(gradle.parent)
    """
    
            then:
            execute(buildA, "jar")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 07 07:37:19 UTC 2021
    - 2.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/cli-runtime/artifacts/deeply-nested.yaml

    Maciej Szulik <******@****.***> 1534848399 +0200
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 21 15:08:30 UTC 2018
    - 314 bytes
    - Viewed (0)
  4. docs/ko/docs/tutorial/body-nested-models.md

    이를 아래처럼:
    
    ```Python hl_lines="15"
    {!../../../docs_src/body_nested_models/tutorial008.py!}
    ```
    
    ## 어디서나 편집기 지원
    
    그리고 어디서나 편집기 지원을 받을수 있습니다.
    
    리스트 내부 항목의 경우에도:
    
    <img src="/img/tutorial/body-nested-models/image01.png">
    
    Pydantic 모델 대신에 `dict`를 직접 사용하여 작업할 경우, 이러한 편집기 지원을 받을수 없습니다.
    
    하지만 수신한 딕셔너리가 자동으로 변환되고 출력도 자동으로 JSON으로 변환되므로 걱정할 필요는 없습니다.
    
    ## 단독 `dict`의 본문
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Jun 12 12:49:35 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  5. docs/ru/docs/tutorial/body-nested-models.md

        ```
    
    ## Универсальная поддержка редактора
    
    И вы получаете поддержку редактора везде.
    
    Даже для элементов внутри списков:
    
    <img src="/img/tutorial/body-nested-models/image01.png">
    
    Вы не могли бы получить такую поддержку редактора, если бы работали напрямую с `dict`, а не с моделями Pydantic.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. subprojects/core/src/integTest/groovy/org/gradle/initialization/BuildInitializationBuildOperationsIntegrationTest.groovy

                    ":nested",
                    ":nested:buildSrc",
                    ":nested:buildSrc:buildSrc",
                    ":nested-cli:nested-cli-nested",
                    ":nested-cli:nested-cli-nested:buildSrc",
                    ":nested-cli:nested-cli-nested:buildSrc:buildSrc",
                    ":nested-cli",
                    ":nested-cli:buildSrc",
                    ":nested-cli:buildSrc:buildSrc",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 27 15:36:36 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top