Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,502 for because3 (0.24 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionFeaturesIntegrationTest.groovy

            verificationFile.isFile()
    
            // TODO - get a false cache miss here because the content of the metadata file changes during the previous build
            when:
            configurationCacheRun("resolve1")
    
            then:
            configurationCache.assertStateStored()
            outputContains("Calculating task graph as configuration cache cannot be reused because file 'gradle/verification-metadata.xml' has changed.".replace('/', File.separator))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 33K bytes
    - Viewed (0)
  2. platforms/software/antlr/build.gradle.kts

        implementation(project(":plugins-java-library"))
    
        implementation(libs.guava)
        implementation(libs.jsr305)
        implementation(libs.slf4jApi)
    
        compileOnly("antlr:antlr:2.7.7") {
            because("this dependency is downloaded by the antlr plugin")
        }
    
        runtimeOnly(project(":language-jvm"))
        runtimeOnly(project(":workers"))
    
        testImplementation(project(":base-services-groovy"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. subprojects/build-events/build.gradle.kts

        integTestImplementation(project(":logging")) {
            because("This isn't declared as part of integtesting's API, but should be as logging's classes are in fact visible on the API")
        }
        integTestImplementation(project(":build-option"))
        integTestImplementation(project(":enterprise-operations"))
    
        integTestDistributionRuntimeOnly(project(":distributions-basics"))  {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  4. platforms/software/publish/build.gradle.kts

        implementation(project(":base-services-groovy")) {
            because("Required for Specs")
        }
        implementation(project(":functional"))
    
        implementation(libs.commonsLang)
        implementation(libs.gson)
        implementation(libs.guava)
    
        testImplementation(testFixtures(project(":core")))
    
        testRuntimeOnly(project(":distributions-core")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/internal/tasks/TaskCacheabilityReasonIntegrationTest.groovy

                @DisableCachingByDefault(because = 'do-not-cache-by-default reason')
                class NotCacheableByDefaultWithReason extends UnspecifiedCacheabilityTask {}
    
                @UntrackedTask(because = 'untracked-task reason')
                class UntrackedTrackWithReason extends UnspecifiedCacheabilityTask {}
    
                @UntrackedTask(because = 'untracked-task-with-cacheable reason')
                @CacheableTask
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:59:01 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  6. cmd/os-reliable.go

    			// Retry only for the first retryable error.
    			if osIsNotExist(err) && i == 0 {
    				i++
    				// Determine if os.NotExist error is because of
    				// baseDir's parent being present, retry it once such
    				// that the MkdirAll is retried once for the parent
    				// of dirPath.
    				// Because it is worth a retry to skip a different
    				// baseDir which is slightly higher up the depth.
    				nbaseDir := path.Dir(baseDir)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 22 17:49:30 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  7. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.code-quality.gradle.kts

    val codenarcVersion = if (isAtLeastGroovy4) "3.1.0-groovy-4.0" else "3.1.0"
    
    dependencies {
        rules("gradlebuild:code-quality-rules") {
            because("Provides rules defined in XML files")
        }
        codenarc("gradlebuild:code-quality-rules") {
            because("Provides the IntegrationTestFixturesRule implementation")
        }
        codenarc("org.codenarc:CodeNarc:$codenarcVersion")
        codenarc(embeddedKotlin("stdlib"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:36 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  8. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/Deleter.java

         *
         * Can delete directories with contents.
         * Does not Follow symlinks.
         *
         * @return {@code true} if anything was removed, {@code false} if no change was
         *         attempted (because {@code target} didn't exist).
         *
         * @throws IOException when {@code target} cannot be deleted (with detailed error
         *         message).
         */
        boolean deleteRecursively(File target) throws IOException;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  9. platforms/software/signing/build.gradle.kts

            because("Required to access org.gradle.internal.SystemProperties")
        }
    
        testImplementation(project(":maven"))
        testImplementation(project(":ivy"))
        testImplementation(testFixtures(project(":core")))
    
        testRuntimeOnly(testFixtures(project(":security")))
        testRuntimeOnly(project(":distributions-publishing")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. platforms/software/resources-s3/build.gradle.kts

        api(project(":resources"))
        api(project(":resources-http"))
    
        api(libs.awsS3Core)
        api(libs.awsS3S3)
        api(libs.awsS3Kms) {
            because("Loaded by the AWS libraries with reflection when present")
        }
        api(libs.awsS3Sts) {
            because("Loaded by the AWS libraries with reflection when present: https://github.com/gradle/gradle/issues/15332")
        }
        api(libs.guava)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:36 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top