Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 381 for child7 (0.33 sec)

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

        private ProjectInternal childProject
        private ProjectInternal anotherChildProject
    
        def setup() {
            childProject = TestUtil.createChildProject(project, "child")
            anotherChildProject = TestUtil.createChildProject(project, "child2")
        }
    
        def "adds extension to root project"() {
            when:
            applyPluginToProjects()
    
            then:
            project.idea instanceof IdeaModel
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  2. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/DirectoryNodeTest.groovy

            interaction { noMoreInteractions() }
    
            where:
            vfsSpec << onlyDirectChildren(NO_COMMON_PREFIX)
        }
    
        def "invalidate a single child creates a partial directory node without the child (#vfsSpec)"() {
            setupTest(vfsSpec)
    
            when:
            def resultRoot = initialRoot.invalidate(searchedPath, CASE_SENSITIVE, diffListener).get()
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  3. platforms/software/platform-base/src/test/groovy/org/gradle/platform/base/internal/DefaultComponentSpecIdentifierTest.groovy

        }
    
        def "construct child"() {
            expect:
            def id = new DefaultComponentSpecIdentifier(":project", "name")
            def child = id.child("child")
            def grandchild = child.child("grandchild")
    
            child.parent == id
            child.path == Path.path("name:child")
            child.projectScopedName == "nameChild"
    
            grandchild.parent == child
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  4. platforms/core-runtime/build-profile/src/main/java/org/gradle/profile/FragmentedOperation.java

            for (ContinuousOperation child : children) {
                result += child.getElapsedTime();
            }
            return result;
        }
    
        @Override
        public String getDescription() {
            return description;
        }
    
        public ContinuousOperation start(long start) {
            ContinuousOperation child = new ContinuousOperation("<child>");
            child.setStart(start);
            children.add(child);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/checkstyle/CheckstylePluginMultiProjectTest.groovy

            given:
            settingsFile << "include 'child'"
            file('child/build.gradle') << javaProjectUsingCheckstyle()
            file('child/src/main/java/Dummy.java') << javaClassWithNewLineAtEnd()
            file('child/config/checkstyle/checkstyle.xml') << simpleCheckStyleConfig()
    
            expect:
            fails(':child:checkstyleMain')
            checkStyleReportFile(file('child')).assertDoesNotExist()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 13:39:06 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationPublicationsTest.groovy

            variantDef.attributes.attribute(Attribute.of("thing", String), "value")
            variantDef.artifacts.add(artifact)
    
            expect:
            def variants = getOutgoingVariants(publications)
            variants.size() == 1
    
            def child = variants.first()
            child.displayName.displayName == '<config> variant child'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:21:15 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  7. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/internal/tooling/BuildInvocationsBuilderTest.groovy

            // child tasks (one public, one private)
            def task1OfChild1 = child.tasks.create('t2', DefaultTask)
            task1OfChild1.group = 'build'
            task1OfChild1.description = 'T2 from child'
    
            def task2OfChild1 = child.tasks.create('t3', DefaultTask)
            task2OfChild1.group = null
            task2OfChild1.description = 'T3 from child'
    
            // grand child tasks (one public, one private)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  8. pkg/test/framework/integration/framework_test.go

    	}
    
    	// Now make sure children cleanup occurred after cleanup for this test.
    	for _, child := range tst.children {
    		if child.cleanupEnd.After(tst.cleanupStart) {
    			return fmt.Errorf("child %s cleanupEnd (%v) occurred after parent %s cleanupStart (%v)",
    				child.name, child.cleanupEnd, tst.name, tst.cleanupStart)
    		}
    	}
    
    	if !tst.runChildrenParallel {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/core/ModelPathTest.groovy

            def child = path.child(name)
    
            expect:
            child.parent == path
            child.name == name
            child.size() == 2
            child.toString() == "parent.${name}" as String
    
            where:
            name       | _
            "."        | _
            "..."      | _
            "file.txt" | _
        }
    
        def "is direct child"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  10. maven-model-builder/src/test/java/org/apache/maven/model/inheritance/DefaultInheritanceAssemblerTest.java

            Model child = getModel(baseName + "-child");
    
            if (fromRepo) {
                // when model is read from repo, a stream is used, then pomFile == null
                // (has consequences in inheritance algorithm since getProjectDirectory() returns null)
                parent = Model.newBuilder(parent, true).pomFile(null).build();
                child = Model.newBuilder(child, true).pomFile(null).build();
            }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 13 11:39:50 UTC 2023
    - 7.9K bytes
    - Viewed (0)
Back to top