Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 460 for child3 (0.17 sec)

  1. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            assertEquals("CHILD-1", pom.getValue(prefix + "stringParams/stringParam[5]"));
            assertEquals("CHILD-3", pom.getValue(prefix + "stringParams/stringParam[6]"));
            assertEquals("CHILD-2", pom.getValue(prefix + "stringParams/stringParam[7]"));
            assertEquals("CHILD-4", pom.getValue(prefix + "stringParams/stringParam[8]"));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 93.2K bytes
    - Viewed (0)
  2. pkg/scheduler/apis/config/validation/validation.go

    		}
    
    		pluginsPath := path.Child("plugins")
    		for s, p := range stagesToPluginSet {
    			errs = append(errs, validatePluginSetForInvalidPlugins(
    				pluginsPath.Child(s), apiVersion, p)...)
    		}
    	}
    
    	seenPluginConfig := sets.New[string]()
    
    	for i := range profile.PluginConfig {
    		pluginConfigPath := path.Child("pluginConfig").Index(i)
    		name := profile.PluginConfig[i].Name
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 06:27:01 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r33/BasicProjectConfigurationProgressCrossVersionSpec.groovy

            def configureBuildSrc = buildSrc.child({ it.startsWith("Configure build") })
            configureBuildSrc.child("Configure project :buildSrc")
            configureBuildSrc.child("Configure project :buildSrc:a")
            configureBuildSrc.child("Configure project :buildSrc:b")
    
            def buildSrcTasks = buildSrc.child({ it.startsWith("Run tasks") })
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:59:43 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/DeferredTaskFailureIntegrationTest.groovy

    class DeferredTaskFailureIntegrationTest extends AbstractDeferredTaskDefinitionIntegrationTest {
        def "reports failure in task constructor when task realized"() {
            createDirs("child")
            settingsFile << """
                include "child"
            """
            file("child/build.gradle") << """
                class Broken extends DefaultTask {
                    Broken() {
                        throw new RuntimeException("broken task")
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  5. pkg/apis/resource/structured/namedresources/validation/validation_test.go

    		},
    		"version-bad": {
    			wantFailures: field.ErrorList{field.Invalid(field.NewPath("instances").Index(0).Child("attributes").Index(0).Child("version"), "1.0", "must be a string compatible with semver.org spec 2.0.0")},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:13 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/telemetry/start.go

    // If telemetryChildVar is set to "1" in the environment, this is the telemetry
    // child.
    //
    // If telemetryChildVar is set to "2", this is a child of the child, and no
    // further forking should occur.
    const telemetryChildVar = "GO_TELEMETRY_CHILD"
    
    // If telemetryUploadVar is set to "1" in the environment, the upload token has been
    // acquired by the parent, and the child should attempt an upload.
    const telemetryUploadVar = "GO_TELEMETRY_CHILD_UPLOAD"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/DefaultLenientConfigurationTest.groovy

                dependenciesById.get(id).children = entry.getValue().collect {
                    def child = dependenciesById.get(it)
                    if (child == null) {
                        child = new TestResolvedDependency()
                        dependenciesById.put(it, child)
                    }
                    child
                } as Set
            }
            def root = dependenciesById.remove(0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 03:03:36 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/apis/kubeadm/validation/validation.go

    		allErrs = append(allErrs, ValidateToken(d.TLSBootstrapToken, fldPath.Child("tlsBootstrapToken"))...)
    	}
    
    	if d.File != nil {
    		allErrs = append(allErrs, ValidateDiscoveryFile(d.File, fldPath.Child("file"))...)
    		if len(d.TLSBootstrapToken) != 0 {
    			allErrs = append(allErrs, ValidateToken(d.TLSBootstrapToken, fldPath.Child("tlsBootstrapToken"))...)
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  9. pkg/apis/storage/validation/validation.go

    	allErrs = append(allErrs, validatePodInfoOnMount(spec.PodInfoOnMount, fldPath.Child("podInfoOnMount"))...)
    	allErrs = append(allErrs, validateStorageCapacity(spec.StorageCapacity, fldPath.Child("storageCapacity"))...)
    	allErrs = append(allErrs, validateFSGroupPolicy(spec.FSGroupPolicy, fldPath.Child("fsGroupPolicy"))...)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 00:47:13 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  10. src/runtime/tracetype.go

    	w.varint(uint64(typ.PtrBytes))
    	w.varint(uint64(len(typName)))
    	w.stringData(typName)
    
    	// Recursively walk all child nodes.
    	for i := range node.children {
    		child := node.children[i].Load()
    		if child == nil {
    			continue
    		}
    		w = dumpTypesRec((*traceMapNode)(child), w)
    	}
    	return w
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:31:27 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top