Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 302 for childs (0.46 sec)

  1. maven-core/src/main/java/org/apache/maven/exception/DefaultExceptionHandler.java

                children = new ArrayList<>();
    
                for (ProjectBuildingResult result : results) {
                    ExceptionSummary child = handle(result);
                    if (child != null) {
                        children.add(child);
                    }
                }
    
                message = "The build could not read " + children.size() + " project" + (children.size() == 1 ? "" : "s");
            } else {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 10:31:03 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  2. tests/integration/telemetry/tracing/tracing.go

    		return false
    	}
    	if len(got.ChildSpans) < len(want.ChildSpans) {
    		t.Logf("got %d child spans from, want %d child spans, maybe trace has not be fully reported",
    			len(got.ChildSpans), len(want.ChildSpans))
    		return false
    	} else if len(got.ChildSpans) > len(want.ChildSpans) {
    		t.Logf("got %d child spans from, want %d child spans, maybe destination rule has not became effective",
    			len(got.ChildSpans), len(want.ChildSpans))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 19:05:09 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  3. src/runtime/debug/stack_test.go

    	err = cmd.Run()
    	stderr := fmt.Sprint(cmd.Stderr)
    	if err == nil {
    		t.Fatalf("child process succeeded unexpectedly (stderr: %s)", stderr)
    	}
    	t.Logf("child process finished with error %v and stderr <<%s>>", err, stderr)
    
    	// Read the file the child process should have written.
    	// It should contain a crash report such as this:
    	//
    	// panic: oops
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:19:04 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/oldresult/DefaultResolvedConfigurationBuilder.java

        public void done(DependencyGraphNode root) {
            builder.done(root.getNodeId());
        }
    
        @Override
        public void addChild(DependencyGraphNode parent, DependencyGraphNode child, int artifactsId) {
            builder.parentChildMapping(parent.getNodeId(), child.getNodeId(), artifactsId);
        }
    
        @Override
        public void addNodeArtifacts(DependencyGraphNode node, int artifactsId) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/css/base.css

    .appendix h1 {
        margin-bottom: 1.0em;
    }
    
    .footnote sup {
        vertical-align: baseline;
        font-size: 100%;
    }
    
    .note p:first-child, .tip p:first-child {
        margin-top: 0;
    }
    
    .note > :last-child, .tip > :last-child, .examplelocation > :last-child {
        margin-bottom: 0;
    }
    
    .note, .tip, .exampleLocation {
        border-left: 1px solid #ddddd8;
        color: rgba(0,0,0,0.6);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

        }
    
        def "transform is re-executed when input file content changes between builds"() {
            given:
            buildFile << declareAttributes() << multiProjectWithJarSizeTransform(incremental: true) << withClassesSizeTransform() << withFileLibDependency()
    
            file("lib/dir1.classes").file("child").createFile()
    
            when:
            succeeds ":util:resolve", ":app:resolve"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/ConfigurationOnDemandIntegrationTest.groovy

        @ToBeFixedForConfigurationCache(skip = INVESTIGATE)
        def "extra properties defined in parent project are accessible to child"() {
            createDirs("a", "a/child")
            settingsFile << "include 'a', 'a:child'"
            file('a/build.gradle') << """
    ext.foo = "Moo!!!"
    """
            file('a/child/build.gradle') << """
    task printExt {
        doLast {
            println "The Foo says " + foo
        }
    }
    """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 12:57:53 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/project/DefaultProjectDependenciesResolver.java

            }
    
            depRequest.setRoot(node);
    
            if (logger.isWarnEnabled()) {
                for (DependencyNode child : node.getChildren()) {
                    if (!child.getRelocations().isEmpty()) {
                        org.eclipse.aether.artifact.Artifact artifact =
                                child.getDependency().getArtifact();
                        String message =
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jun 12 07:49:10 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  9. 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)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r33/BuildActionCompositeBuildCrossVersionSpec.groovy

            }
            singleProjectBuildInSubfolder("includedBuild")
    
            when:
            def builds = withConnection {
                action(new FetchBuilds()).run()
            }
    
            then:
            builds.rootProject.name == ["root", "includedBuild"]
        }
    
        def "Can fetch project scoped models from included builds"() {
            given:
            multiProjectBuildInRootFolder("root", ["a", "b"]) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top