Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,231 for child1 (0.16 sec)

  1. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/plugins/PrecompiledGroovyPluginsIntegrationTest.groovy

            enablePrecompiledPluginsInBuildSrc()
    
            file("buildSrc/src/main/groovy/child1.gradle") << "println 'child1 applied'"
            file("buildSrc/src/main/groovy/child2.gradle") << "println 'child2 applied'"
            file("buildSrc/src/main/groovy/parent.gradle") << """
                plugins {
                    id 'child1'
                    id 'child2'
                }
                println 'parent applied'
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 28.7K bytes
    - Viewed (0)
  2. 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)
  3. platforms/software/publish/src/test/groovy/org/gradle/api/publish/internal/metadata/GradleModuleMetadataWriterTest.groovy

        }
    
        def "writes file for module that is a child of another component"() {
            def writer = new StringWriter()
            def rootComponent = Stub(TestComponent)
            def rootPublication = publication(rootComponent, id)
    
            def child1 = DefaultModuleVersionIdentifier.newId("group", "child", "1")
            def childComponent = Stub(TestComponent)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 07:21:42 UTC 2023
    - 36.9K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

        def "can resolve a graph with a local cycle caused by module replacement"() {
            given:
            def child1 = mavenRepo.module('org', 'child1', '1.0').publish()
            def child2 = mavenRepo.module('org', 'child2', '1.0').publish()
            mavenRepo.module('org', 'direct', '1.0').dependsOn(child1).dependsOn(child2).publish()
    
            buildFile << """
                repositories {
                    maven {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/DefaultModelRegistryTest.groovy

            when:
            registry.realize("thing")
    
            then:
            ModelRuleExecutionException e = thrown()
            e.cause instanceof IllegalStateException
            e.cause.message == "Cannot create 'thing.child' using creation rule 'create thing.child as String' as model element 'thing' is no longer mutable."
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 56K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. maven-core/src/test/resources/projects/child.xml

    -->
    
    <model>
    
      <extend>project.xml</extend>
    
      <parent>
        <groupId>maven</groupId>
        <artifactId>maven-project-test</artifactId>
        <version>1.0-beta-9</version>
      </parent>
    
      <artifactId>child-artifact</artifactId>
      <groupId>maven</groupId>
      <version>1.0-beta-9</version>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 22:49:30 UTC 2007
    - 1K bytes
    - Viewed (0)
  9. maven-model-builder/src/test/resources/poms/inheritance/urls-child.xml

      <parent>
        <groupId>inheritance</groupId>
        <artifactId>parent</artifactId>
        <version>11-SNAPSHOT</version>
      </parent>
    
      <artifactId>child-artifact-id</artifactId>
      <name>Model urls inheritance test child</name>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 1.3K bytes
    - Viewed (0)
  10. maven-model-builder/src/test/resources/poms/inheritance/plugin-configuration-child.xml

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