Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,835 for childs (0.11 sec)

  1. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/internal/tooling/GradleBuildBuilderTest.groovy

            model.projects*.name == ["root", "child1", "child2"]
            model.projects*.path == [":", ":child1", ":child2"]
            model.includedBuilds.empty
            model.editableBuilds.empty
    
            where:
            startProject | _
            project      | _
            child2       | _
        }
    
        def "builds model for included builds"() {
            def buildRegistry = Mock(BuildStateRegistry)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/test/groovy/org/gradle/api/tasks/diagnostics/ProjectReportTaskTest.groovy

        def rendersReportForRootProjectWithChildren() {
            project.description = 'this is the root project'
            Project child1 = TestUtil.createChildProject(project, "child1")
            child1.description = 'this is a subproject'
            TestUtil.createChildProject(child1, "child1")
            TestUtil.createChildProject(project, "child2")
    
            when:
            def model = task.calculateReportModelFor(project)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 29 22:32:34 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ParallelDownloadsIntegrationTest.groovy

            given:
            def child1 = mavenRepo.module("org", "child1", "1.0")
            child1.parent("org", "parent1", "1.0")
            child1.publish()
    
            def child2 = mavenRepo.module("org", "child2", "1.0")
            child2.parent("org", "parent2", "1.0")
            child2.publish()
    
            def parent1 = mavenRepo.module("org", "parent1", "1.0")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 13K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/img/exploded-war-child-copy-spec-example.png

    exploded-war-child-copy-spec-example.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 21:47:26 UTC 2024
    - 126.9K bytes
    - Viewed (0)
  5. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/vfs/impl/AbstractVirtualFileSystemTest.groovy

                    vfsStore.store(regularFile("${location}/some/child"))
                    vfsStore.store(regularFile("${location}/other/child"))
                    instant.partialSnapshotsStored
                    thread.blockUntil.invalidated
                    vfsStore.store(regularFile("${location}/other/child2"))
                    vfsStore.store(regularFile("${location}/some/child2"))
                    instant.snapshottingFinished
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  6. subprojects/diagnostics/src/test/groovy/org/gradle/api/tasks/diagnostics/AbstractReportTaskTest.groovy

            final Project child1 = createChildProject(project, "child1")
            final Project child2 = createChildProject(project, "child2")
    
            when:
            task.setProjects(project.getAllprojects())
            task.generate()
    
            then:
            1 * renderer.setClientMetaData(_)
            1 * renderer.setOutput(_ as StyledTextOutput)
            [project, child1, child2].each {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:56:11 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  7. src/syscall/exec_unix_test.go

    	cmd.Start()
    	defer cmd.Stop()
    
    	cpid, cpgrp := cmd.Info()
    
    	if cpid == ppid {
    		t.Fatalf("Parent and child have the same process ID")
    	}
    
    	if cpgrp == ppgrp {
    		t.Fatalf("Parent and child are in the same process group")
    	}
    
    	if cpid != cpgrp {
    		t.Fatalf("Child's process group is not the child's process ID")
    	}
    }
    
    func TestPgid(t *testing.T) {
    	ppid, ppgrp := parent()
    
    	cmd1 := create(t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 04:41:27 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/api/internal/initialization/DefaultClassLoaderScopeTest.groovy

            scope1.exportClassLoader
    
            def scope2 = root.createChild("child2", null).export(c1).local(c2).lock()
            scope2.exportClassLoader
    
            then:
            scope1.exportClassLoader.is scope2.exportClassLoader
    
            when:
            def child = scope1.createChild("child", null).export(c1).local(c2).lock()
            child.exportClassLoader
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 24 13:56:30 UTC 2022
    - 13.8K bytes
    - Viewed (0)
  9. maven-core/src/test/resources-project-builder/parent-inheritance/pom.xml

    <project>
      <parent>
        <groupId>gid</groupId>
        <artifactId>child-3</artifactId>
        <version>1.0</version>
        <relativePath>child3.xml</relativePath>
      </parent>
      <modelVersion>4.0.0</modelVersion>
      <artifactId>child-2</artifactId>
      <packaging>pom</packaging>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Aug 05 21:42:06 UTC 2009
    - 279 bytes
    - Viewed (0)
  10. maven-model-builder/src/test/resources/poms/inheritance/plugin-configuration-expected.xml

                <parent>child</parent>
                <child>child</child>
                <parent-only>parent</parent-only>
              </defaults>
              <appends combine.children="append">
                <parent-only>parent</parent-only>
                <parent>parent</parent>
                <parent>child</parent>
                <child>child</child>
              </appends>
              <overrides combine.self="override">
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 2.9K bytes
    - Viewed (0)
Back to top