Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,194 for Child (0.04 sec)

  1. pkg/apis/flowcontrol/validation/validation_test.go

    			field.Required(field.NewPath("spec").Child("rules").Index(0).Child("subjects").Index(0).Child("serviceAccount"), "serviceAccount is required when subject kind is 'ServiceAccount'"),
    			field.Forbidden(field.NewPath("spec").Child("rules").Index(0).Child("subjects").Index(0).Child("user"), "user is forbidden when subject kind is not 'User'"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 54.7K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/internal/tooling/BuildInvocationsBuilderTest.groovy

            // child tasks (one public, one private)
            def task1OfChild1 = child.tasks.create('t2', DefaultTask)
            task1OfChild1.group = 'build'
            task1OfChild1.description = 'T2 from child'
    
            def task2OfChild1 = child.tasks.create('t3', DefaultTask)
            task2OfChild1.group = null
            task2OfChild1.description = 'T3 from child'
    
            // grand child tasks (one public, one private)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  3. pkg/test/framework/integration/framework_test.go

    	}
    
    	// Now make sure children cleanup occurred after cleanup for this test.
    	for _, child := range tst.children {
    		if child.cleanupEnd.After(tst.cleanupStart) {
    			return fmt.Errorf("child %s cleanupEnd (%v) occurred after parent %s cleanupStart (%v)",
    				child.name, child.cleanupEnd, tst.name, tst.cleanupStart)
    		}
    	}
    
    	if !tst.runChildrenParallel {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    				allErrs = append(allErrs, field.Required(fldPath.Child("items").Child("properties").Key(k).Child("default"), "this property is in x-kubernetes-list-map-keys, so it must have a default or be a required property"))
    			}
    
    			if obj.Nullable {
    				allErrs = append(allErrs, field.Forbidden(fldPath.Child("items").Child("properties").Key(k).Child("nullable"), "this property is in x-kubernetes-list-map-keys, so it cannot be nullable"))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/text/TreeFormatterTest.groovy

            formatter.node("child 1")
            formatter.startChildren()
            formatter.node("child 1.1")
            formatter.node("child 1.2")
            formatter.endChildren()
            formatter.node("child 2")
            formatter.endChildren()
    
            then:
            formatter.toString() == toPlatformLineSeparators("""Some things:
      - child 1:
          - child 1.1
          - child 1.2
      - child 2""")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/core/ModelPathTest.groovy

            def child = path.child(name)
    
            expect:
            child.parent == path
            child.name == name
            child.size() == 2
            child.toString() == "parent.${name}" as String
    
            where:
            name       | _
            "."        | _
            "..."      | _
            "file.txt" | _
        }
    
        def "is direct child"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  7. maven-core/src/test/resources-project-builder/plugin-config-append/no-profile/subproject/pom.xml

                <stringParam>CHILD-1</stringParam>
                <stringParam>CHILD-3</stringParam>
                <stringParam>CHILD-2</stringParam>
                <stringParam>CHILD-4</stringParam>
              </stringParams>
              <listParam combine.children="append">
                <!-- NOTE: These values are deliberately not in alpha order! -->
                <listParam>CHILD-1</listParam>
                <listParam>CHILD-3</listParam>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 2.3K bytes
    - Viewed (0)
  8. maven-model-builder/src/test/resources/poms/inheritance/plugin-configuration-expected.xml

                <parent>child</parent>
                <child>child</child>
                <parent-only>parent</parent-only>
              </defaults>
              <appends combine.children="append">
                <parent-only>parent</parent-only>
                <parent>parent</parent>
                <parent>child</parent>
                <child>child</child>
              </appends>
              <overrides combine.self="override">
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 2.9K bytes
    - Viewed (0)
  9. pkg/apis/autoscaling/validation/validation.go

    	allErrs = append(allErrs, validateMetricIdentifier(src.Metric, fldPath.Child("metric"))...)
    	allErrs = append(allErrs, validateMetricTarget(src.Target, fldPath.Child("target"))...)
    
    	if src.Target.Value == nil && src.Target.AverageValue == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 25 00:58:00 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  10. platforms/ide/ide-native/src/test/groovy/org/gradle/ide/visualstudio/tasks/internal/RelativeFileNameTransformerTest.groovy

            filePath                   | relativePath
            "child.txt"                | "../../child.txt"
            "subdir"                   | "../../subdir"
            "subdir/child.txt"         | "../../subdir/child.txt"
            "subdir/another"           | "../../subdir/another"
            "subdir/another/child.txt" | "../../subdir/another/child.txt"
            "another/dir/child.txt"    | "../../another/dir/child.txt"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 5.7K bytes
    - Viewed (0)
Back to top