Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 229 for child3 (0.29 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildTreeStructureIntegrationTest.groovy

            createDirs("include/inner-include/child", "include/child", "child")
            settingsFile << """
                rootProject.name = 'thing'
                includeBuild "include"
                include "child"
            """
            defineTaskInSettings(settingsFile)
    
            when:
            configurationCacheRun(task)
    
            then:
            with(fixture.all(LoadBuildBuildOperationType)) {
                size() == 3
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ConfigurationDefaultsIntegrationTest.groovy

            configurations.conf.dependencies.add project.dependencies.create("org:default-dependency:1.0")
        }
    }
    task broken {
        def child = configurations.child
        def conf = configurations.conf
        doLast {
            child.files
            conf.files
        }
    }
    """
    
            when:
            fails "broken"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:18:46 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  3. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/file/TestFile.java

            assert file.isDirectory();
            for (File child : file.listFiles()) {
                if (child.isFile() || !ignoreDirs && child.isDirectory() && child.list().length == 0) {
                    names.add(prefix + child.getName());
                } else if (child.isDirectory()) {
                    visit(names, prefix + child.getName() + "/", child, ignoreDirs);
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 18:31:52 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/dwarfgen/dwinl.go

    // transitively include all of the ranges for its child inlines.
    func unifyCallRanges(inlcalls dwarf.InlCalls, idx int) {
    	ic := &inlcalls.Calls[idx]
    	for _, childIdx := range ic.Children {
    		// First make sure child ranges are unified.
    		unifyCallRanges(inlcalls, childIdx)
    
    		// Then merge child ranges into ranges for this inline.
    		cic := inlcalls.Calls[childIdx]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:45:07 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  5. 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)
  6. src/cmd/link/internal/ld/dwarf_test.go

    			mainIdx := ex.IdxFromOffset(maindie.Offset)
    			childDies := ex.Children(mainIdx)
    			var iEntry *dwarf.Entry
    			for _, child := range childDies {
    				if child.Tag == dwarf.TagVariable && child.Val(dwarf.AttrName).(string) == "i" {
    					iEntry = child
    					break
    				}
    			}
    			if iEntry == nil {
    				t.Fatalf("didn't find DW_TAG_variable for i in main.main")
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 01:38:11 UTC 2024
    - 48.6K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/PomReader.java

            Element dependenciesElement = getFirstChildElement(parentElement, DEPENDENCIES);
            if (dependenciesElement != null) {
                NodeList childs = dependenciesElement.getChildNodes();
                for (int i = 0; i < childs.getLength(); i++) {
                    Node node = childs.item(i);
                    if (node instanceof Element && DEPENDENCY.equals(node.getNodeName())) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 15:53:23 UTC 2024
    - 30K bytes
    - Viewed (0)
  8. src/encoding/xml/read_test.go

    	Bs       []bool
    	BPtrs    []*bool
    	Bytes    []byte
    	BytesPtr *[]byte
    	S        string
    	SPtr     *string
    	Ss       []string
    	SPtrs    []*string
    	MyI      MyInt
    	Child    Child
    	Children []Child
    	ChildPtr *Child
    	ChildToEmbed
    }
    
    const (
    	emptyXML = `
    <Parent>
        <I></I>
        <IPtr></IPtr>
        <Is></Is>
        <IPtrs></IPtrs>
        <F></F>
        <FPtr></FPtr>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  9. subprojects/composite-builds/src/test/groovy/org/gradle/composite/internal/DefaultIncludedBuildTaskGraphParallelTest.groovy

            def services = new TreeServices(workers)
            def childBuild = build(services, new DefaultBuildIdentifier(Path.path(":child")))
            def build = build(services, DefaultBuildIdentifier.ROOT)
            def childNode = new TestNode("child build node")
            def node = new TestNode("main build node")
    
            when:
            def result = scheduleAndRun(services) { builder ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  10. 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)
Back to top