Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for hasFile (0.09 sec)

  1. testing/internal-integ-testing/build.gradle.kts

    }
    
    sourceSets.main {
        groovy.srcDir(generateLanguageAnnotations.flatMap { it.destDir })
        output.dir(prepareVersionsInfo.map { it.destFile.get().asFile.parentFile })
        output.dir(copyTestedVersionsInfo)
    }
    
    @CacheableTask
    abstract class PrepareVersionsInfo : DefaultTask() {
    
        @get:OutputFile
        abstract val destFile: RegularFileProperty
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. subprojects/public-api/build.gradle.kts

                    name = moduleIdentity.baseName.map { "${project.group}:$it"}
                }
            }
        }
        repositories {
            maven {
                name = "test"
                url = testRepoLocation.get().asFile.toURI()
            }
        }
    }
    
    val testRepoElements = configurations.consumable("testRepoElements") {
        outgoing.artifact(testRepoLocation) {
            builtBy( "publishMavenPublicationToTestRepository")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 13:15:08 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. build-logic-commons/module-identity/src/main/kotlin/gradlebuild/identity/extension/ReleasedVersionsDetails.kt

        init {
            lowestTestedVersion = GradleVersion.version("3.0")
            lowestInterestingVersion = GradleVersion.version("0.8")
    
            val releasedVersions = releasedVersionsFile.asFile.reader().use {
                Gson().fromJson(it, ReleasedVersions::class.java)
            }
    
            val latestFinalRelease = releasedVersions.finalReleases.first()
            val latestRelease =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/build.gradle.kts

    dependencies {
        configurationCacheReportPath(libs.configurationCacheReport)
    }
    
    tasks.processResources {
        from(zipTree(configurationCacheReportPath.elements.map { it.first().asFile })) {
            into("org/gradle/internal/cc/impl/problems")
            exclude("META-INF/**")
        }
    }
    
    // The integration tests in this project do not need to run in 'config cache' mode.
    tasks.configCacheIntegTest {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. platforms/core-execution/persistent-cache/src/integTest/groovy/org/gradle/cache/internal/DefaultFileLockManagerContentionIntegrationTest.groovy

                    @TaskAction
                    void lockIt() {
                        def lock
                        try {
                            lock = fileLockManager.lock(projectLayout.projectDirectory.file("locks/testlock").asFile, DefaultLockOptions.mode(FileLockManager.LockMode.Exclusive), "task file lock")
                        } finally {
                            lock?.close()
                        }
                    }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  6. settings.gradle.kts

        abstract val outputFile: RegularFileProperty
    
        @get:Input
        abstract val elements: ListProperty<ArchitectureElement>
    
        @TaskAction
        fun generate() {
            val markdownFile = outputFile.asFile.get()
            val head = if (markdownFile.exists()) {
                val content = markdownFile.readText().lines()
                val markerPos = content.indexOfFirst { it.contains(markerComment) }
                if (markerPos < 0) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 16.4K bytes
    - Viewed (0)
Back to top