Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,804 for grad_b (0.21 sec)

  1. platforms/ide/ide/build.gradle.kts

            because("ProjectBuilder tests load services from a Gradle distribution.")
        }
        integTestDistributionRuntimeOnly(project(":distributions-jvm"))
        crossVersionTestDistributionRuntimeOnly(project(":distributions-jvm"))
    }
    
    strictCompile {
        ignoreRawTypes()
    }
    
    packageCycles {
        excludePatterns.add("org/gradle/plugins/ide/internal/*")
        excludePatterns.add("org/gradle/plugins/ide/eclipse/internal/*")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. platforms/core-runtime/wrapper-main/build.gradle.kts

        dependsOn(executableJar)
    }
    
    // https://github.com/gradle/gradle/issues/26658
    // Before introducing gr8, wrapper jar is generated as build/libs/gradle-wrapper.jar and used in promotion build
    // After introducing gr8, wrapper jar is generated as build/libs/gradle-wrapper-executable.jar and processed
    //   by gr8, then the processed `gradle-wrapper.jar` need to be copied back to build/libs for promotion build
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. subprojects/core-platform/build.gradle.kts

            because("This is the entry point of the `gradle` command.")
        }
        runtime(project(":daemon-main")) {
            because("This is the entry point of the Gradle daemon.")
        }
        runtime(project(":tooling-api-provider")) {
            because("This is the entry point of the tooling API provider, which is the version-specific client part of the tooling API.")
        }
        runtime(project(":kotlin-dsl")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. platforms/extensibility/plugin-use/build.gradle.kts

            because("Requires test-kit: 'java-gradle-plugin' is used in integration tests which always adds the test-kit dependency.")
        }
    }
    
    testFilesCleanup.reportOnly = true
    
    description = """Provides functionality for resolving and managing plugins during their application to projects."""
    
    // Remove as part of fixing https://github.com/gradle/configuration-cache/issues/585
    tasks.configCacheIntegTest {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. platforms/enterprise/enterprise-plugin-performance/build.gradle.kts

            "projectDependencies" to true,
            "manyPlugins" to true,
            "manyScripts" to true
        )
        daemonMemory = "4096m"
        maxWorkers = 4
        doLast {
            File(destDir, "build.gradle").appendText("""
    // gradle-profiler doesn't support expectFailure
    subprojects {
        afterEvaluate {
            test.ignoreFailures = true
        }
    }
    """)
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 23:14:25 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. platforms/extensibility/plugin-development/build.gradle.kts

    }
    
    integTest.usesJavadocCodeSnippets = true
    
    strictCompile {
        ignoreDeprecations()
    }
    
    // Remove as part of fixing https://github.com/gradle/configuration-cache/issues/585
    tasks.configCacheIntegTest {
        systemProperties["org.gradle.configuration-cache.internal.test-disable-load-after-store"] = "true"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. platforms/ide/base-ide-plugins/build.gradle.kts

        testRuntimeOnly(project(":distributions-core")) {
            because("ProjectBuilder tests load services from a Gradle distribution.")
        }
    }
    
    packageCycles {
        excludePatterns.add("org/gradle/plugins/ide/idea/internal/**")
        excludePatterns.add("org/gradle/plugins/ide/idea/model/internal/**")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. platforms/native/testing-native/build.gradle.kts

            because("ProjectBuilder tests load services from a Gradle distribution.")
        }
        integTestDistributionRuntimeOnly(project(":distributions-native"))
    }
    
    // Remove as part of fixing https://github.com/gradle/configuration-cache/issues/585
    tasks.configCacheIntegTest {
        systemProperties["org.gradle.configuration-cache.internal.test-disable-load-after-store"] = "true"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  9. platforms/native/platform-native/build.gradle.kts

            because("ProjectBuilder tests load services from a Gradle distribution.")
        }
        integTestDistributionRuntimeOnly(project(":distributions-native")) {
            because("Required 'ideNative' to test visual studio project file generation for generated sources")
        }
    }
    
    packageCycles {
        excludePatterns.add("org/gradle/nativeplatform/plugins/**")
        excludePatterns.add("org/gradle/nativeplatform/tasks/**")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. platforms/ide/ide-plugins/build.gradle.kts

            because("ProjectBuilder tests load services from a Gradle distribution.")
        }
    
        testImplementation(libs.xmlunit)
    
    
        integTestImplementation(project(":internal-integ-testing"))
    
        integTestDistributionRuntimeOnly(project(":distributions-jvm")) {
            because("ProjectBuilder tests load services from a Gradle distribution.")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top