Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,835 for childs (0.14 sec)

  1. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/idea/model/IdeaProjectTest.groovy

        private ProjectInternal childProject
        private ProjectInternal anotherChildProject
    
        def setup() {
            childProject = TestUtil.createChildProject(project, "child", new File("."))
            anotherChildProject = TestUtil.createChildProject(project, "child2", new File("."))
        }
    
        def "location tracks change to outputFile property"() {
            when:
            project.pluginManager.apply(IdeaPlugin)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/telemetry/internal/crashmonitor/monitor.go

    // exclusive use of a writable pipe connected to the child process's stdin.
    func Parent(pipe *os.File) {
    	writeSentinel(pipe)
    	// Ensure that we get pc=0x%x values in the traceback.
    	debug.SetTraceback("system")
    	setCrashOutput(pipe)
    }
    
    // Child runs the part of the crashmonitor that runs in the child process.
    // It expects its stdin to be connected via a pipe to the parent which has
    // run Parent.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/oldresult/ResolvedConfigurationBuilder.java

    //builds old model of resolved dependency graph based on the result events
    public interface ResolvedConfigurationBuilder {
    
        void addFirstLevelDependency(Dependency moduleDependency, DependencyGraphNode dependency);
    
        void addChild(DependencyGraphNode parent, DependencyGraphNode child, int artifactsId);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. 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)
  5. operator/pkg/helmreconciler/common.go

    	tree[componentName] = make(ComponentTree)
    	for _, child := range children[componentName] {
    		insertChildrenRecursive(child, tree[componentName].(ComponentTree), children)
    	}
    }
    
    // InstallTreeString returns a string representation of the dependency tree.
    func InstallTreeString() string {
    	var sb strings.Builder
    	buildInstallTreeString(name.IstioBaseComponentName, "", &sb)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 12 17:12:54 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  6. pkg/volume/util/subpath/subpath_linux_test.go

    			},
    			expectError: true,
    		},
    		{
    			name: "subpath-child-outside-exists",
    			prepare: func(base string) ([]string, string, string, error) {
    				volpath, _ := getTestPaths(base)
    				subpathDir := filepath.Join(volpath, "dir0")
    				child := filepath.Join(base, "child0")
    				subpath := filepath.Join(subpathDir, "child0")
    				if err := os.MkdirAll(volpath, defaultPerm); err != nil {
    					return nil, "", "", err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 10 16:52:55 UTC 2021
    - 37.3K bytes
    - Viewed (0)
  7. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/GradleProjectBuilder.java

                .setBuildTreePath(projectIdentityPath)
                .setChildren(children);
    
            gradleProject.getBuildScript().setSourceFile(project.getBuildFile());
    
            for (DefaultGradleProject child : children) {
                child.setParent(gradleProject);
            }
    
            if (realizeTasks) {
                List<LaunchableGradleProjectTask> tasks = collectTasks(gradleProject, (TaskContainerInternal) project.getTasks());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 13:57:30 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  8. maven-core/src/test/resources/projects/child-with-bogus-parent.xml

    Jason van Zyl <******@****.***> 1172702970 +0000
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 22:49:30 UTC 2007
    - 947 bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/BuildSessionServiceReuseContinuousIntegrationTest.groovy

    import org.gradle.process.internal.worker.WorkerProcessFactory
    import org.gradle.process.internal.worker.child.WorkerProcessClassPathProvider
    
    
    class BuildSessionServiceReuseContinuousIntegrationTest extends AbstractContinuousIntegrationTest {
        @ToBeFixedForConfigurationCache
        def "reuses #service across continuous builds" () {
            def triggerFileName = "trigger"
            def triggerFile = file(triggerFileName).createFile()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  10. 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)
Back to top