Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 230 for Child (0.19 sec)

  1. 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)
  2. testing/integ-test/src/integTest/groovy/org/gradle/integtests/ProjectLoadingIntegrationTest.java

            testFile("settings.gradle").writelns(
                "include 'child'",
                "project(':child').buildFileName = 'child.gradle'"
            );
    
            TestFile subDirectory = getTestDirectory().file("child");
            subDirectory.file("build.gradle").write("throw new RuntimeException()");
            subDirectory.file("child.gradle").write("task('do-stuff')");
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 18K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. src/syscall/exec_linux.go

    		// If we're in the parent, we must return immediately
    		// so we're not in the same stack frame as the child.
    		// This can at most use the return PC, which the child
    		// will not modify, and the results of
    		// rawVforkSyscall, which must have been written after
    		// the child was replaced.
    		return
    	}
    
    	// Fork succeeded, now in child.
    
    	// Enable the "keep capabilities" flag to set ambient capabilities later.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 23K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolvedConfigurationIntegrationTest.groovy

                        files = compile.getFiles { true }
    
                        assert files.collect { it.name } == ['hiphop-1.0.jar', 'child.jar', 'rock-1.0.jar']
    
                        def artifacts = compile.artifacts
    
                        assert artifacts.size() == 3
                        assert artifacts.collect { it.file.name } == ['hiphop-1.0.jar', 'child.jar', 'rock-1.0.jar']
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeStateTest.groovy

            def child = nextNode()
            def edge1 = edge(parent1, false, null, child)
            def edge2 = edge(parent2, false, null, child)
            parent1.collectAncestorsStrictVersions([parent1Edge])
            parent2.collectAncestorsStrictVersions([parent2Edge])
            child.collectAncestorsStrictVersions([edge1, edge2])
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  10. src/os/signal/signal_cgo_test.go

    	//
    	// In principle, what we are doing is:
    	// 1. Creating a new PTY parent/child FD pair.
    	// 2. Create a child that is in the foreground process group of the PTY, and read() from that process.
    	// 3. Stop the child with ^Z.
    	// 4. Take over as foreground process group of the PTY from the parent.
    	// 5. Make the child foreground process group again.
    	// 6. Continue the child.
    	//
    	// On Darwin, step 4 results in the read() returning EINTR once the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 10:09:15 UTC 2024
    - 10.7K bytes
    - Viewed (0)
Back to top