Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,232 for child6 (0.26 sec)

  1. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaJavaLanguageSettingsIntegrationTest.groovy

        @Rule
        public final TestResources testResources = new TestResources(testDirectoryProvider)
    
        def setup() {
            createDirs("child1", "child2", "child3")
            settingsFile << """
    rootProject.name = 'root'
    include ':child1', ':child2', ':child3'
    """
        }
    
        @ToBeFixedForConfigurationCache
        void "global sourceCompatibility results in project language level"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenParentPomResolveIntegrationTest.groovy

    }
    configurations {
        child1
        child2
    }
    dependencies {
        child1 'org:child1:1.0'
        child2 'org:child2:1.0'
    }
    task retrieveChild1(type: Sync) {
        into 'libs/child1'
        from configurations.child1
    }
    task retrieveChild2(type: Sync) {
        into 'libs/child2'
        from configurations.child2
    }
    """
    
            when:
            child1.pom.expectGet()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/project/DefaultProjectTest.groovy

        }
    
        def compareTo() {
            expect:
            project < child1
            child1 < child2
            child1 < childchild
            child2 < childchild
        }
    
        def depthCompare() {
            expect:
            project.depthCompare(child1) < 0
            child1.depthCompare(project) > 0
            child1.depthCompare(child2) == 0
        }
    
        def depth() {
            expect:
            project.depth == 0
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  4. maven-core/src/test/resources-project-builder/parent-inheritance/child3.xml

    <project>
        <groupId>gid</groupId>
        <artifactId>child-3</artifactId>
        <version>1.0</version>
        <packaging>pom</packaging>
        <modelVersion>4.0.0</modelVersion>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Aug 05 21:42:06 UTC 2009
    - 181 bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/SelfResolvingDependencyIntegrationTest.groovy

        compile project(':child1')
        compile project(':child2')
    }
    project(':child1') {
        artifacts {
            compile file("child1.jar")
        }
        dependencies {
            compile files("child1-lib.jar")
            compile "group:test2:1.0"
            compile project(':child3')
        }
    }
    project(':child2') {
        artifacts {
            compile file("child2.jar")
        }
        dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 15:43:39 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/dag_object_graph.py

        super(TestModule, self).__init__()
        self.child1 = Child()
        self.child2 = self.child1
    
      # CHECK: tf_saved_model.global_tensor
      # CHECK-SAME: tf_saved_model.exported_names = ["child1.my_variable", "child2.my_variable"]
    
    
    if __name__ == '__main__':
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 28 21:37:05 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/m3/ToolingApiEclipseModelCrossVersionSpec.groovy

            EclipseProject child1 = children[0]
            child1.name == 'child1'
            child1.parent == rootProject
            child1.children.size() == 1
    
            EclipseProject child1Child1 = child1.children[0]
            child1Child1.name == 'grandChild1'
            child1Child1.parent == child1
            child1Child1.children.size() == 0
    
            EclipseProject child2 = children[1]
            child2.name == 'child2'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  8. src/net/http/fcgi/child.go

    	r.Flush()
    	return r.w.Close()
    }
    
    type child struct {
    	conn    *conn
    	handler http.Handler
    
    	requests map[uint16]*request // keyed by request ID
    }
    
    func newChild(rwc io.ReadWriteCloser, handler http.Handler) *child {
    	return &child{
    		conn:     newConn(rwc),
    		handler:  handler,
    		requests: make(map[uint16]*request),
    	}
    }
    
    func (c *child) serve() {
    	defer c.conn.Close()
    	defer c.cleanUp()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r212/ToolingApiIdeaModelCrossVersionSpec.groovy

            given:
            settingsFile << "\ninclude 'root', 'child1', 'child2', 'child3'"
            buildFile << """
                apply plugin: 'idea'
    
                idea {
                    project {
                        languageLevel = 1.7
                    }
                }
    
                project(':child1') {
                }
    
                project(':child2') {
                    apply plugin: 'java'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/api/internal/project/DefaultProjectSpec.groovy

            child1.toString() == "project ':child1'"
            child1.displayName == "project ':child1'"
            child1.path == ":child1"
            child1.buildTreePath == ":child1"
            child1.identityPath == Path.path(":child1")
    
            child2.toString() == "project ':child1:child2'"
            child2.displayName == "project ':child1:child2'"
            child2.path == ":child1:child2"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 12.5K bytes
    - Viewed (0)
Back to top