Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 229 for child3 (0.28 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. subprojects/core/src/main/java/org/gradle/execution/selection/DefaultBuildTaskSelector.java

                });
            }
            for (ProjectState child : project.getChildProjects()) {
                ProjectState previous = candidates.put(child.getIdentityPath().getName(), child);
                if (previous != null) {
                    throw new IllegalStateException("Duplicate child project names for " + project.getDisplayName());
                }
            }
            ProjectState child = candidates.get(childName);
            if (child != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 14K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/AbstractConsoleBuildPhaseFunctionalTest.groovy

                    }
                }
                ${buildFinishedCall('root-build-finished')}
            """
            createDirs("child/a", "child/b")
            file("child/settings.gradle") << """
                include 'a', 'b'
            """
            file("child/build.gradle") << """
                ${server.callFromBuild('child-build-script')}
                task hello {
                    dependsOn {
                        // call during task graph calculation
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 07:25:15 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ProgressEvents.groovy

            }
    
            Operation child(Spec<String> displayNameSpec) {
                def child = children.find { displayNameSpec.isSatisfiedBy(it.descriptor.displayName) }
                if (child == null) {
                    throw new AssertionFailedError("No operation matching display name found in children of '$descriptor.displayName':\n${describeList(children)}")
                }
                return child
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 13:50:05 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  10. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/event/DefaultListenerManagerTest.groovy

            manager.useLogger(listener1)
            def child = manager.createChild(Scope.Build)
            def broadcaster = child.getBroadcaster(BuildScopeListener.class)
            child.useLogger(listener2)
    
            when:
            broadcaster.foo("param")
    
            then:
            1 * listener2.foo("param")
            0 * _
    
            when:
            child.useLogger(listener3)
            broadcaster.foo("param2")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 29.1K bytes
    - Viewed (0)
Back to top