Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 460 for child3 (0.18 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. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r30/CustomToolingModelCrossVersionSpec.groovy

                connection.model(CustomModel).get()
            }
    
            then:
            model.thing.is(model.thing)
            model.things[0].is(model.thing)
            model.thingsByName.child.is(model.thing)
            model.findThing("child").is(model.thing)
        }
    
        def "retains underlying object identity in model returned to client via build action"() {
            settingsFile << "include 'a', 'b'"
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/codenarc/CodeNarcPluginIntegrationTest.groovy

        def "codenarc runs successfully for a child project with isolated projects"() {
            given:
            settingsFile << "include 'child:grand'"
            writeBuildFile(file("child/grand/build.gradle"))
            file("child/grand/src/main/groovy/Dummy.groovy") << "Dummy {}"
            withIsolatedProjects()
    
            expect:
            succeeds(":child:grand:codenarcMain")
            report(file("child/grand"), "main").exists()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 08:01:57 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. fess-crawler/src/main/java/org/codelibs/fess/crawler/exception/ChildUrlsException.java

    /**
     * ChildUrlsException is thrown when having child urls.
     *
     * @author shinsuke
     *
     */
    public class ChildUrlsException extends CrawlerSystemException {
    
        private static final long serialVersionUID = 1L;
    
        private final Set<RequestData> childUrlList;
    
        public ChildUrlsException(final Set<RequestData> childUrlList, final String description) {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  9. 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)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/ExtraPropertiesIntegrationTest.groovy

        def 'extra properties are inherited to child and grandchild projects'() {
            given:
            extraPropertiesMultiBuild()
    
            expect:
            succeeds checkTestPropTasks()
        }
    
        @Issue('GRADLE-3530')
        @ToBeFixedForConfigurationCache(skip = INVESTIGATE)
        def 'extra properties can be overridden on child projects'() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top