Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 385 for Child (0.17 sec)

  1. src/internal/trace/summary_test.go

    		for _, child := range summary.Children {
    			gotChildren[child.ID] = struct{}{}
    		}
    		for _, wantChild := range want.children {
    			if _, ok := gotChildren[wantChild]; ok {
    				delete(gotChildren, wantChild)
    			} else {
    				t.Errorf("expected child task %d for task %d not found", wantChild, id)
    			}
    		}
    		if len(gotChildren) != 0 {
    			for child := range gotChildren {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/UnsupportedConfigurationMutationTest.groovy

        }
    
        @Issue("GRADLE-3155")
        def "does not allow adding dependencies to a configuration whose child has been resolved"() {
            buildFile << """
                configurations {
                    a
                    b.extendsFrom a
                    c.extendsFrom b
                }
                configurations.c.resolve()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 05 20:59:50 UTC 2024
    - 17.6K bytes
    - Viewed (2)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/GradleBuildTaskIntegrationTest.groovy

                    dir = "main"
                    tasks = ['log']
                }
            """
            file('main/settings.gradle') << """
                ${barrier.callFromBuild("child-build-started")}
                ${barrier.callFromBuild("child-build-finished")}
            """
            file('main/build.gradle') << """
                assert gradle.parent.rootProject.name == 'root'
                task log { }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/main/java/org/gradle/language/plugins/NativeBasePlugin.java

                    });
                });
            });
        }
    
        private void addPublicationFromVariant(SoftwareComponent child, PublishingExtension publishing, Project project) {
            if (child instanceof PublishableComponent) {
                publishing.getPublications().create(child.getName(), MavenPublication.class, publication -> {
                    MavenPublicationInternal publicationInternal = (MavenPublicationInternal) publication;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 26.1K bytes
    - Viewed (0)
  5. maven-core/src/test/java/org/apache/maven/project/ProjectBuilderTest.java

            org.apache.maven.project.ProjectBuilder projectBuilder =
                    getContainer().lookup(org.apache.maven.project.ProjectBuilder.class);
            File child = new File(tempDir.toFile(), "child/pom.xml");
            // build project once
            projectBuilder.build(child, configuration);
            // modify parent
            File parent = new File(tempDir.toFile(), "pom.xml");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:06:12 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  6. pkg/apis/resource/validation/validation_resourceclaimparameters_test.go

    					badName: "hello world",
    				}
    				return parameters
    			}(),
    		},
    
    		"empty-model": {
    			wantFailures: field.ErrorList{field.Required(field.NewPath("driverRequests").Index(0).Child("requests").Index(0), "exactly one structured model field must be set")},
    			parameters: func() *resource.ResourceClaimParameters {
    				parameters := testResourceClaimParameters(goodName, goodName, goodRequests)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:21:16 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  7. src/syscall/exec_plan9.go

    		}
    	}
    
    	// Allocate child status pipe close on exec.
    	e := cexecPipe(p[:])
    
    	if e != nil {
    		return 0, e
    	}
    
    	// Kick off child.
    	pid, err = forkAndExecInChild(argv0p, argvp, envvParsed, dir, attr, p[1], sys.Rfork)
    
    	if err != nil {
    		if p[0] >= 0 {
    			Close(p[0])
    			Close(p[1])
    		}
    		return 0, err
    	}
    
    	// Read child error status from pipe.
    	Close(p[1])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/local/model/LocalComponentGraphResolveStateFactoryTest.groovy

            given:
            def conf = dependencyScope("conf")
            def child = resolvable("child", [conf])
    
            conf.exclude([group: "group1", module: "module1"])
            child.exclude([group: "group2", module: "module2"])
    
            expect:
            def config = state.getConfiguration("child").metadata
            def excludes = config.excludes
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  9. src/sort/gen_sort_variants.go

    	root := lo
    	for {
    		child := 2*root + 1
    		if child >= hi {
    			break
    		}
    		if child+1 < hi && {{Less "data" "first+child" "first+child+1"}} {
    			child++
    		}
    		if !{{Less "data" "first+root" "first+child"}} {
    			return
    		}
    		{{Swap "data" "first+root" "first+child"}}
    		root = child
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/DefaultModelRegistry.java

                    }
                } else {
                    for (ModelNodeInternal child : node.getLinks()) {
                        if (!child.isAtLeast(targetState)) {
                            dependencies.add(graph.nodeAtState(new NodeAtState(child.getPath(), targetState)));
                        }
                    }
                }
                return true;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 45.7K bytes
    - Viewed (0)
Back to top