Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for Here (0.04 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/projectresult/ResolvedLocalComponentsResultGraphVisitor.java

                // We should be tracking cross-build configuration observations, but we are not.
                // This check is here for historical reasons, as removing it would be a breaking change.
                // We should just leave this here, since this observation mechanism is being replaced anyway.
                if (projectComponentId.getBuild().equals(thisBuild)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheClassLoaderScopeRegistryListener.kt

                val spec = scopeSpecs[scopeId]
                require(spec != null)
                // TODO - a scope can currently potentially have multiple export and local ClassLoaders but we're assuming one here
                //  Rather than fix the assumption here, it would be better to rework the scope implementation so that it produces no more than one export and one local ClassLoader
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/build.gradle.kts

        implementation(libs.errorProneAnnotations)
        implementation(libs.julToSlf4j)
        implementation(libs.commonsLang)
        implementation(libs.commonsIo)
        implementation(libs.guava)
    
        // GSon is not strictly required here but removing it moves the dependency in the distribution from lib to lib/plugins
        // TODO Check if this is an issue
        runtimeOnly(libs.gson)
        runtimeOnly(libs.jclToSlf4j)
        runtimeOnly(libs.log4jToSlf4j)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. testing/public-api-tests/build.gradle.kts

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    plugins {
        // TODO Can we apply less here?
        id("gradlebuild.internal.java")
    
    //    id("gradlebuild.repositories")
    //    id("gradlebuild.integration-tests")
    }
    
    val testRepo = configurations.dependencyScope("testRepo")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:59 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProjectLayoutIntegrationTest.groovy

                    dirName = layout.buildDirectory.file('dirName.txt')
                }
    
                tasks.register('answer', Consumer) {
                    // TODO:configuration should this `dependsOn` be necessary here?
                    dependsOn 'producer'
    
                    Provider<String> computedDirName = computeDirName.flatMap { it.dirName }.map { it.asFile.text }
                    def file = layout.buildDirectory.$provider
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/AbstractInitIntegrationSpec.groovy

        TestFile containerDir
        TestFile targetDir
        TestFile subprojectDir
    
        abstract String subprojectName()
    
        def setup() {
            file("settings.gradle") << """
                // This is here to prevent Gradle searching up to find the build's settings.gradle
            """
            initializeIntoTestDir()
        }
    
        void initializeIntoTestDir() {
            containerDir = testDirectory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 07:17:03 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. .teamcity/src/main/kotlin/configurations/FlakyTestQuarantine.kt

        if (os == Os.LINUX) {
            steps {
                script {
                    // Because we exclude tests in `distributions-integ-tests` below, `@Flaky` won't work in that subproject.
                    // Here we check the existence of `@Flaky` annotation to make sure nobody use that annotation in `distributions-integ-tests` subproject.
                    name = "MAKE_SURE_NO_@FLAKY_IN_DISTRIBUTIONS_INTEG_TESTS"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/release/notes-template.md

    For Java, Groovy, Kotlin, and Android compatibility, see the [full compatibility notes](userguide/compatibility.html).   
    
    ## New features and usability improvements
    
    <!-- Do not add breaking changes or deprecations here! Add them to the upgrade guide instead. -->
    
    <!--
    
    ================== TEMPLATE ==============================
    
    <a name="FILL-IN-KEY-AREA"></a>
    ### FILL-IN-KEY-AREA improvements
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 14:04:10 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/release/notes.md

    For Java, Groovy, Kotlin, and Android compatibility, see the [full compatibility notes](userguide/compatibility.html).   
    
    ## New features and usability improvements
    
    <!-- Do not add breaking changes or deprecations here! Add them to the upgrade guide instead. -->
    
    <!--
    
    ================== TEMPLATE ==============================
    
    <a name="FILL-IN-KEY-AREA"></a>
    ### FILL-IN-KEY-AREA improvements
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 07:16:40 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/compatibility.adoc

    // limitations under the License.
    
    [[compatibility]]
    = Compatibility Matrix
    
    The sections below describe Gradle's compatibility with several integrations.
    Versions not listed here may or may not work.
    
    == Java
    A Java version between 8 and 22 is required to execute Gradle.
    Java 23 and later versions are not yet supported.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 03:35:50 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top