Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for checkoutDir (0.12 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/vcs/internal/SourceDependencies.groovy

    import org.gradle.test.fixtures.file.TestFile
    
    import static org.gradle.internal.hash.Hashing.hashString
    
    @SelfType(AbstractIntegrationSpec)
    trait SourceDependencies {
        TestFile checkoutDir(String repoName, String versionId, String repoId, TestFile baseDir=testDirectory) {
            def prefix = repoName.take(9)
            def hashedCommit = hashString("${repoId}-${versionId}").toCompactString()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/common/performance-test-extensions.kt

                name = "SETUP_VIRTUAL_DISK_FOR_PERF_TEST"
                executionMode = BuildStep.ExecutionMode.ALWAYS
                scriptContent = """
                    subst p: /d
                    subst p: "%teamcity.build.checkoutDir%"
                """.trimIndent()
                skipConditionally()
            }
        }
    }
    
    fun BuildType.cleanUpGitUntrackedFilesAndDirectories() {
        steps {
            script {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/common/Os.kt

    }
    
    enum class Os(
        val agentRequirement: String,
        val androidHome: String,
        val jprofilerHome: String,
        val perfTestWorkingDir: String = "%teamcity.build.checkoutDir%",
        val perfTestJavaVendor: JvmVendor = JvmVendor.openjdk,
        val buildJavaVersion: JvmVersion = JvmVersion.java11,
        val perfTestJavaVersion: JvmVersion = JvmVersion.java17,
        val defaultArch: Arch = Arch.AMD64
    ) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. platforms/software/version-control/src/main/java/org/gradle/vcs/internal/resolver/VcsVersionSelectionCache.java

            String cacheKey = versionCacheKey(repository, version);
            return checkoutDirs.get(cacheKey);
        }
    
        public void putWorkingDirForRevision(VersionControlRepositoryConnection repository, VersionRef version, File dir) {
            String cacheKey = versionCacheKey(repository, version);
            checkoutDirs.put(cacheKey, dir);
        }
    
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.2K bytes
    - Viewed (0)
Back to top