Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 471 for child3 (0.08 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r72/CompositeBuildCrossVersionSpec.groovy

            model.projectDirectory == file("buildSrc")
        }
    
        def buildsWithBuildSrc() {
            buildSrc(projectDir)
            def child = "child"
            settingsFile << """
                includeBuild("$child")
            """
    
    
            def childBuild = file(child)
            buildSrc(childBuild)
            def nested = "nested"
            childBuild.file("settings.gradle") << """
                includeBuild("$nested")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/local/model/LocalComponentGraphResolveStateFactoryTest.groovy

            def child1 = consumable("child1", [conf1, conf2])
            consumable("child2", [conf1])
    
            addArtifact(conf1, artifact1, file1)
            addArtifact(conf2, artifact2, file2)
            addArtifact(child1, artifact3, file3)
    
            when:
            def conf1State = state.candidatesForGraphVariantSelection.getVariantByConfigurationName("child1", Stub(ResolutionFailureHandler))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  3. src/net/http/cgi/child.go

    // Copyright 2011 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file implements CGI from the perspective of a child
    // process.
    
    package cgi
    
    import (
    	"bufio"
    	"crypto/tls"
    	"errors"
    	"fmt"
    	"io"
    	"net"
    	"net/http"
    	"net/url"
    	"os"
    	"strconv"
    	"strings"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/GradleRunnerPluginClasspathInjectionIntegrationTest.groovy

            when:
            file("settings.gradle") << "include 'child1', 'child2'"
            file("child1/build.gradle") << plugin.build().useDeclaration
            file("child2/build.gradle") << plugin.useDeclaration
            buildFile << """
                task compare {
                    doLast {
                        project("child1").tasks.helloWorld1.getClass() == project("child2").tasks.helloWorld1.getClass()
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 15 03:45:31 UTC 2024
    - 13K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/DynamicObjectIntegrationTest.groovy

        def canInjectMethodsFromParentProject() {
            createDirs("child1", "child2")
            file("settings.gradle").writelns("include 'child1', 'child2'");
            buildFile """
                subprojects {
                    ext.useSomeProperty = { project.name }
                    ext.useSomeMethod = { file(it) }
                }
            """
            file("child1/build.gradle") << """
                task testTask {
                    doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r56/ClosedProjectSubstitutionCrossVersionSpec.groovy

                    .run()
            }
    
            then:
            def child2 = buildFinishedHandler.result.children.find { it.name == "child2" }
            child2.projectDependencies.isEmpty()
            child2.classpath.collect { it.file.name }.sort() == ['child1-1.0.jar']
            child2.classpath[0].source.name == 'child1-1.0-sources.jar'
            child2.classpath[0].javadoc.name == 'child1-1.0-javadoc.jar'
            taskExecuted(out, ":eclipseClosedDependencies")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/FilteredConfigurationIntegrationTest.groovy

        compile "group:test1:1.0"
        compile project(':child1')
        compile project(':child2')
    }
    project(':child1') {
        artifacts {
            compile file("child1.jar")
        }
        dependencies {
            compile files("child1-lib.jar")
            compile "group:test2:1.0"
        }
    }
    project(':child2') {
        artifacts {
            compile file("child2.jar")
        }
    }
    
    task verify {
        doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 20:27:07 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  8. testing/integ-test/src/integTest/groovy/org/gradle/integtests/TaskExecutionIntegrationTest.groovy

            expect:
            2.times {
                run("a", "c").assertTasksExecuted(":a", ":b", ":c", ":child1:b", ":child1:c", ":child1-2:b", ":child1-2:c", ":child1-2-2:b", ":child1-2-2:c", ":child2:b", ":child2:c")
                run("b", ":child2:c").assertTasksExecuted(":b", ":child1:b", ":child1-2:b", ":child1-2-2:b", ":child2:b", ":a", ":child2:c")
            }
        }
    
        def executesMultiProjectDefaultTasksInASingleBuildAndEachTaskAtMostOnce() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top