Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 27 for isolatedProjects (0.32 sec)

  1. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/testing/TestType.kt

    import org.gradle.api.tasks.testing.Test
    
    
    enum class TestType(val prefix: String, val executers: List<String>) {
        INTEGRATION("integ", listOf("embedded", "forking", "noDaemon", "parallel", "configCache", "isolatedProjects")),
        CROSSVERSION("crossVersion", listOf("embedded", "forking"))
    }
    
    
    fun Test.includeSpockAnnotation(fqcn: String) {
        systemProperties.compute("include.spock.annotation") { _, oldValue ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/configurations/FunctionalTest.kt

    }
    
    fun getTestTaskName(testCoverage: TestCoverage, subprojects: List<String>): String {
        val testTaskName =
            if (testCoverage.testType == TestType.isolatedProjects) "isolatedProjectsIntegTest" else "${testCoverage.testType.name}Test"
        return when {
            subprojects.isEmpty() -> {
                testTaskName
            }
    
            else -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 05:47:35 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/model/CIBuildModel.kt

                    TestCoverage(20, TestType.configCache, Os.LINUX, JvmCategory.MIN_VERSION, DEFAULT_LINUX_FUNCTIONAL_TEST_BUCKET_SIZE),
                    TestCoverage(21, TestType.isolatedProjects, Os.LINUX, JvmCategory.MIN_VERSION, DEFAULT_LINUX_FUNCTIONAL_TEST_BUCKET_SIZE)
                ),
                docsTests = listOf(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  4. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/shared-configuration.kt

            disableIfNeeded(testType, executer)
        }
    
    
    internal
    fun IntegrationTest.disableIfNeeded(testType: TestType, executer: String) {
        if (testType == TestType.INTEGRATION && executer == "isolatedProjects") {
            isEnabled = false
        }
    }
    
    
    private
    fun IntegrationTest.setUpAgentIfNeeded(testType: TestType, executer: String) {
        if (executer == "embedded") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 23:14:25 UTC 2024
    - 12K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/project/IsolatedProject.java

     * <code>this</code> project, from the perspective of isolated projects.
     *
     * @since 8.8
     */
    @Incubating
    public interface IsolatedProject {
    
        /**
         * <p>Returns the name of this project. The project's name is not necessarily unique within a project hierarchy. You
         * should use the {@link #getPath()} method for a unique identifier for the project.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 18:34:13 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/isolated_projects.adoc

    Rodrigo B. de Oliveira <******@****.***> 1709301198 -0300
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 13:53:18 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultIsolatedProject.java

     * limitations under the License.
     */
    
    package org.gradle.api.internal.project;
    
    import org.gradle.api.project.IsolatedProject;
    import org.gradle.api.file.Directory;
    
    public final class DefaultIsolatedProject implements IsolatedProject {
    
        private final ProjectInternal project;
        private final ProjectInternal rootProject;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 18:34:13 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/api/internal/project/DefaultProjectSpec.groovy

        }
    
        def "can view as an IsolatedProject"() {
            given:
            def rootBuild = Stub(GradleInternal)
            rootBuild.identityPath >> Path.ROOT
            def project = project('root', null, rootBuild)
    
            when:
            def isolatedProject = project.isolated
    
            then:
            isolatedProject.name == 'root'
            isolatedProject.path == ':'
            isolatedProject.buildTreePath == ':'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/UnsupportedTypesCodecs.kt

    import org.gradle.api.attributes.CompatibilityRuleChain
    import org.gradle.api.attributes.DisambiguationRuleChain
    import org.gradle.api.initialization.Settings
    import org.gradle.api.invocation.Gradle
    import org.gradle.api.project.IsolatedProject
    import org.gradle.api.publish.Publication
    import org.gradle.api.services.BuildService
    import org.gradle.api.services.internal.BuildServiceProvider
    import org.gradle.api.tasks.SourceSet
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsAccessFromGroovyDslIntegrationTest.groovy

                }
                allprojects { p ->
                    def isolatedProject = p.isolated
    
                    println("project name = " + isolatedProject.name)
                    println("project path = " + isolatedProject.path)
                    println("project buildTreePath = " + isolatedProject.buildTreePath)
                    println("project projectDir = " + isolatedProject.projectDirectory)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 32.4K bytes
    - Viewed (0)
Back to top