Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for withOwnGradleUserHomeDir (0.21 sec)

  1. platforms/core-configuration/kotlin-dsl/src/testFixtures/kotlin/org/gradle/kotlin/dsl/fixtures/AbstractKotlinIntegrationTest.kt

        protected
        fun gradleExecuterFor(arguments: Array<out String>, rootDir: File = projectRoot) =
            inDirectory(rootDir).withArguments(*arguments)
    
        protected
        inline fun withOwnGradleUserHomeDir(reason: String, block: () -> Unit) {
            executer.requireOwnGradleUserHomeDir(reason)
            try {
                block()
            } finally {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 15 16:44:39 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  2. testing/soak/src/integTest/kotlin/org/gradle/kotlin/dsl/caching/ScriptCachingIntegrationTest.kt

            expectCacheEntriesWritten(0, true)
        }
    
        private
        fun expectCacheEntriesWritten(expectedEntryCount: Int, scriptCachingDisabled: Boolean) {
            withOwnGradleUserHomeDir("verifying local build cache content") {
                withSettings(randomScriptContent())
                withBuildScriptIn(".", randomScriptContent())
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:33:23 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/GradleKotlinDslIntegrationTest.kt

                build("-q", "build").output,
                containsString("it works!")
            )
        }
    
        @Test
        @LeaksFileHandles
        fun `can apply Groovy script from url`() {
            withOwnGradleUserHomeDir("we need an empty external resource cache") {
                val server = HttpServer()
                server.start()
    
                val scriptFile = withFile(
                    "script.gradle",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 18:26:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
Back to top