Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,008 for Child (0.4 sec)

  1. 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)
  2. 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)
  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. 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)
  5. 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)
  6. maven-model-builder/src/test/java/org/apache/maven/model/inheritance/DefaultInheritanceAssemblerTest.java

            Model child = getModel(baseName + "-child");
    
            if (fromRepo) {
                // when model is read from repo, a stream is used, then pomFile == null
                // (has consequences in inheritance algorithm since getProjectDirectory() returns null)
                parent = Model.newBuilder(parent, true).pomFile(null).build();
                child = Model.newBuilder(child, true).pomFile(null).build();
            }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 13 11:39:50 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  7. 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)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ConfigurationBuildDependenciesIntegrationTest.groovy

                }
                dependencies {
                    compile project(':child')
                    compile files('main-lib.jar') { builtBy lib }
                }
                project(':child') {
                    artifacts {
                        compile file: file('child.jar'), builtBy: jar
                    }
                    dependencies {
                        compile files('child-lib.jar') { builtBy lib }
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  9. platforms/jvm/language-jvm/src/testFixtures/groovy/org/gradle/api/tasks/compile/AbstractCompilerDaemonReuseIntegrationTest.groovy

                    }
                }
            """
        }
    
        def withCompositeBuildSources() {
            TestFile child = file("child").createDir()
            component.writeSources(file("src/main"))
            component.writeSources(child.file("src/main"))
            child.file("build.gradle") << """
                allprojects {
                    ${applyAndConfigure}
    
                    tasks.withType(${compileTaskType}) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenParentPomResolveIntegrationTest.groovy

            parent.publish()
    
            def child = mavenRepo.module("org", "child", "1.0")
            child.parent("org", "parent", "1.0")
            child.dependsOn("org", "child_dep", null)
            child.dependsOn("org", "typed_dep", null, "bar", null, null)
            child.dependsOn("org", "classified_dep", null, null, null, "classy")
            child.dependsOn("org", "fq_dep", null, "bar", null, "classy")
            child.publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 14.5K bytes
    - Viewed (0)
Back to top