Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,232 for child6 (0.16 sec)

  1. src/runtime/traceback_system_test.go

    traceback_system_test.go:85: runtime_test.child7: 	panic("oops")
    traceback_system_test.go:68: runtime_test.child6: 	child7() // appears in stack trace
    traceback_system_test.go:59: runtime_test.child5: 	child6() // appears in stack trace
    traceback_system_test.go:53: runtime_test.child4: 	child5()
    traceback_system_test.go:49: runtime_test.child3: 	child4()
    traceback_system_test.go:45: runtime_test.child2: 	child3()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:19:04 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/internal/tooling/eclipse/EclipseModelBuilderDependenciesTest.groovy

            child5 = ProjectBuilder.builder().withName("child5").withParent(project).build()
    
            def libsDir = new File(project.projectDir, "libs")
            libsDir.mkdirs()
            new File(libsDir, "test-1.0.jar").createNewFile()
            [project, child1, child2, child3, child4, child5].each { it.pluginManager.apply(EclipsePlugin) }
            [child1, child2, child3, child4, child5].each {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 24 15:55:52 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/TasksFromDependentProjectsTest.groovy

            child3.configurations.create "conf"
            child3.configurations.create "testRuntime"
            child3.dependencies.add("conf", child1) //different config dependency, no good
    
            child4.configurations.create "conf"     //different config, no good
    
            expect:
            checker.isDependent(child1, "testRuntime", child2)
            !checker.isDependent(child1, "testRuntime", child3)
            !checker.isDependent(child1, "testRuntime", child4)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r211/ToolingApiIdeaModelCrossVersionSpec.groovy

            ideaProject.modules.find { it.name == 'child1' }.javaLanguageSettings == null
            ideaProject.modules.find { it.name == 'child2' }.javaLanguageSettings == null
        }
    
        def "can retrieve project and module language level for multi project build"() {
            given:
            settingsFile << "\ninclude 'root', 'child1', 'child2', 'child3'"
            buildFile << """
                apply plugin: 'idea'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/file/copy/DefaultCopySpecTest.groovy

            DefaultCopySpec child2 = spec.addChild()
    
            then:
            child1
            child2
            spec.children == [child1, child2]
    
            when:
            DefaultCopySpec child3 = spec.addChildBeforeSpec(child2)
    
            then:
            child3
            spec.children == [child1, child3, child2]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 26 08:05:50 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/test/groovy/org/gradle/plugins/ide/internal/tooling/DefaultGradleProjectTest.groovy

            def child21 = new DefaultGradleProject().setProjectIdentifier(new DefaultProjectIdentifier(new File("."), ":child2:child21"))
    
            root.children = [child1, child2]
            child1.children = [child11, child12]
            child2.children = [child21]
    
            expect:
            root.findByPath(':') == root
            root.findByPath('') == null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/projectmodule/DefaultProjectDependencyPublicationResolverTest.groovy

            }
            root.variants >> [child2, child3]
    
            def publication = pub('mock', "pub-group", "pub-name", "pub-version", root)
            def publication2 = pub('pub2', "pub-group-child1", "pub-name-child1", "pub-version-child1", child1)
            def publication3 = pub('pub3', "pub-group-child2", "pub-name-child2", "pub-version-child2", child2)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 19 01:37:13 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/CompositeFileCollectionSpec.groovy

        def "visits children when visitor requests contents"() {
            def child1 = Mock(FileCollectionInternal)
            def child2 = Mock(FileTreeInternal)
            def collection = new TestCollection() {
                @Override
                protected void visitChildren(Consumer<FileCollectionInternal> visitor) {
                    visitor.accept(child1)
                    visitor.accept(child2)
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 12K bytes
    - Viewed (0)
  9. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/vfs/impl/VersionHierarchyRootTest.groovy

            ['/my/child1', '/my/child2', '/my/child1/other/child'] | '/my/child1/other/child/inside' | ['/my/child1/other/child/inside']           | ['/my/other', '/my/child2']
            ['/my/child1', '/my/child2', '/my/child1/other/child'] | '/my/child1'                    | ['/my/child1/other/child']                  | ['/my/other', '/my/child2']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/api/internal/initialization/ClassLoaderScopeIdentifierTest.groovy

        }
    
        def "creates child"() {
            def child = root.child(root.name)
    
            expect:
            child.localId() == child.localId()
            child.localId() != child.exportId()
            child.exportId() != child.localId()
            child.exportId() == child.exportId()
        }
    
        def "children with same name are equivalent"() {
            def child1 = root.child(root.name)
            def child2 = root.child(root.name)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 05 18:43:41 UTC 2019
    - 2.7K bytes
    - Viewed (0)
Back to top