Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 363 for child7 (0.18 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/m4/ToolingApiEclipseMinimalModelCrossVersionSpec.groovy

            createDirs("child")
            file('settings.gradle').text = 'include "child"'
            file('build.gradle').text = """
    apply plugin: 'java'
    dependencies {
        ${implementationConfiguration} project(':child')
        ${implementationConfiguration} files { throw new RuntimeException() }
        ${implementationConfiguration} 'this.lib.surely.does.not.exist:indeed:1.0'
    }
    project(':child') {
        apply plugin: 'java'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. maven-model-builder/src/main/java/org/apache/maven/model/inheritance/InheritanceAssembler.java

        /**
         * Merges values from the specified parent model into the given child model. Implementations are expected to keep
         * parent and child completely decoupled by injecting deep copies of objects into the child rather than the original
         * objects from the parent.
         *
         * @param child The child model into which to merge the values inherited from the parent, must not be
         *            <code>null</code>.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/DeferredTaskFailureIntegrationTest.groovy

    class DeferredTaskFailureIntegrationTest extends AbstractDeferredTaskDefinitionIntegrationTest {
        def "reports failure in task constructor when task realized"() {
            createDirs("child")
            settingsFile << """
                include "child"
            """
            file("child/build.gradle") << """
                class Broken extends DefaultTask {
                    Broken() {
                        throw new RuntimeException("broken task")
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. pkg/test/framework/scope_test.go

    	exp := []*resource.FakeResource{
    		{
    			IDValue:    "child-resource",
    			OtherValue: "child",
    		},
    		{
    			IDValue:    "parent-resource",
    			OtherValue: "parent",
    		},
    	}
    
    	g := NewWithT(t)
    	parent := newScope("parent", nil)
    	parent.add(exp[1], &resourceID{id: exp[1].IDValue})
    	child := newScope("child", parent)
    	child.add(exp[0], &resourceID{id: exp[0].IDValue})
    	var got []OtherInterface
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/ArchiveTaskPermissionsIntegrationTest.groovy

                }
                """
            when:
            run "pack"
            file(archName).usingNativeTools()."$unpackMethod"(file("build"))
            then:
            file("build/child").mode == 0777
            file("build/child/reference.txt").mode == 0746
            where:
            taskName | unpackMethod
            "Zip"    | "unzipTo"
            "Tar"    | "untarTo"
        }
    
        @Requires(UnitTestPreconditions.FilePermissions)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 11 06:18:03 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/consumer/trivial/child/pom.xml

    <project xmlns="http://maven.apache.org/POM/4.1.0">
      <parent>
        <groupId>org.my.group</groupId>
        <artifactId>parent</artifactId>
      </parent>
      <artifactId>child</artifactId>
      <packaging>jar</packaging>
    
      <properties>
        <prop-child>bar</prop-child>
      </properties>
      <dependencies>
        <dependency>
          <groupId>org.slf4j</groupId>
          <artifactId>slf4j-api</artifactId>
        </dependency>
      </dependencies>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 28 17:17:10 UTC 2023
    - 430 bytes
    - Viewed (0)
  7. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/generator/XmlPersistableConfigurationObject.java

            Node child = findFirstChildNamed(root, name);
            if (child == null) {
                child = root.appendNode(name);
            }
            return child;
        }
    
        public static Node findOrCreateFirstChildWithAttributeValue(@Nullable Node root, String childName, String attribute, String value) {
            Node child = findFirstChildWithAttributeValue(root, childName, attribute, value);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r40/BuildProgressCrossVersionSpec.groovy

            orphans.findAll { it.descriptor.name.startsWith('Unmanaged thread operation #') } == orphans
            orphans[0].child "Download ${module.rootMetaData.uri}"
            orphans[1].child "Download ${module.rootMetaData.sha1.uri}"
            orphans[2].child "Download ${module.rootMetaData.uri}"
            orphans[3].child "Download ${module.rootMetaData.sha1.uri}"
        }
    
        MavenHttpRepository getMavenHttpRepo() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  9. platforms/ide/ide-native/src/test/groovy/org/gradle/ide/visualstudio/plugins/VisualStudioPluginTest.groovy

        }
    
        def "adds extension to child project"() {
            def child = ProjectBuilder.builder().withParent(project).withProjectDir(projectDir).withName("child").build()
    
            when:
            child.pluginManager.apply(VisualStudioPlugin)
    
            then:
            child.visualStudio instanceof VisualStudioExtension
        }
    
        def "adds 'openVisualStudio' task"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. platforms/ide/ide-native/src/test/groovy/org/gradle/ide/xcode/plugins/XcodePluginTest.groovy

        }
    
        def "adds extension to child project"() {
            def child = ProjectBuilder.builder().withParent(project).withProjectDir(projectDir).withName("child").build()
    
            when:
            child.pluginManager.apply(XcodePlugin)
    
            then:
            child.xcode instanceof XcodeExtension
        }
    
        def "adds 'openXcode' task"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top