Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 484 for projectE (0.1 sec)

  1. platforms/software/dependency-management/src/integTest/resources/org/gradle/integtests/resolve/ArtifactDependenciesIntegrationTest/canUseDynamicVersions/projectB-1.5-ivy.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <ivy-module version="1.0">
        <info organisation="test" module="projectB" revision="1.5" status="release"/>
        <configurations>
            <conf name="runtime" visibility="public"/>
            <conf name="default" visibility="public" extends="runtime"/>
        </configurations>
        <publications>
            <artifact name="projectB" type="jar" ext="jar" conf="runtime"/>
        </publications>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 436 bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/resources/org/gradle/integtests/resolve/ArtifactDependenciesIntegrationTest/dependencyReportWithConflicts/projectB-1.5-ivy.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <ivy-module version="1.0">
    	<info organisation="test"
    		module="projectB"
    		revision="1.5"
    	/>
    	<configurations>
    		<conf name="runtime" visibility="public"/>
    		<conf name="default" visibility="public" extends="runtime"/>
    	</configurations>
    	<publications>
    		<artifact name="projectB" type="jar" ext="jar" conf="runtime"/>
    	</publications>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 392 bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/resources/org/gradle/integtests/resolve/ArtifactDependenciesIntegrationTest/dependencyReportWithConflicts/projectB-2.1.5-ivy.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <ivy-module version="1.0">
    	<info organisation="test"
    		module="projectB"
    		revision="2.1.5"
    	/>
    	<configurations>
    		<conf name="runtime" visibility="public"/>
    		<conf name="default" visibility="public" extends="runtime"/>
    	</configurations>
    	<publications>
    		<artifact name="projectB" type="jar" ext="jar" conf="runtime"/>
    	</publications>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 394 bytes
    - Viewed (0)
  4. testing/integ-test/src/integTest/groovy/org/gradle/integtests/environment/BuildEnvironmentIntegrationTest.groovy

        def "build is executed with working directory set to where the build was launched from"() {
            def project1 = file("project1")
            def project2 = file("project2")
    
            project1.file('build.gradle') << """
    def expectedDir = new File(new URI('${project1.toURI()}'))
    def dir = new File('.')
    assert dir.canonicalFile == expectedDir.canonicalFile
    assert dir.directory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r56/ToolingApiEclipseModelTestSourcesCrossVersionSpec.groovy

                """
            }
    
            when:
            EclipseProject project = loadToolingModel(EclipseProject)
            EclipseProject projectA = project.children[0]
            EclipseProject projectB = project.children[1]
            EclipseProject projectC = project.children[2]
            EclipseProject projectD = project.children[3]
    
            then:
            projectA.classpath.collect { it.file.name } as Set == [ 'commons-lang3-3.9.jar' ] as Set
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/resources/org/gradle/integtests/resolve/ArtifactDependenciesIntegrationTest/canUseDynamicVersions/build.gradle

                ivyPattern projectDir.absolutePath + '/[module]-[revision]-ivy.xml'
            }
        }
        compile group: 'test', name: 'projectA', version: '1.+'
    }
    
    file("projectA-1.2.jar").text = ''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 391 bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/initialization/ProjectDirectoryProjectSpecTest.groovy

        }
    
        def "select project fails when multiple projects have specified project dir"() {
            ProjectIdentifier project1 = project(dir);
            ProjectIdentifier project2 = project(dir);
    
            when:
            spec.selectProject("settings 'foo'", registry(project1, project2));
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:56:11 UTC 2021
    - 3.9K bytes
    - Viewed (0)
  8. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/NestedInputKotlinImplementationTrackingIntegrationTest.groovy

        }
    
        @Issue("https://github.com/gradle/gradle/issues/11703")
        def "nested bean from closure can be used with the build cache"() {
            def project1 = file("project1").createDir()
            def project2 = file("project2").createDir()
            [project1, project2].each { projectDir ->
                def buildFile = projectDir.file("build.gradle.kts")
                setupTaskWithNestedAction('(File) -> Unit', '', projectDir)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 06:52:58 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/jvm/AbstractConsoleJvmTestWorkerFunctionalTest.groovy

        }
    
        def "shows test class execution #description test class name in work-in-progress area of console for multi-project build"() {
            given:
            settingsFile << "include 'project1', 'project2'"
            buildFile << """
                subprojects {
                    apply plugin: 'java-library'
    
                    ${RepoScriptBlockUtil.mavenCentralRepository()}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanParallelTest.groovy

        }
    
        def "one non-async task per project is allowed"() {
            given:
            //2 projects, 2 non parallelizable tasks each
            def projectA = project(project, "a")
            def projectB = project(project, "b")
    
            def fooA = task("foo", project: projectA)
            def barA = task("bar", project: projectA)
    
            def fooB = task("foo", project: projectB)
            def barB = task("bar", project: projectB)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 93.5K bytes
    - Viewed (0)
Back to top