Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for trimIndent (0.16 sec)

  1. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AbstractAcceptedApiChangesMaintenanceTaskIntegrationTest.kt

                            apiChangesFile.set(layout.projectDirectory.file("${ TextUtil.normaliseFileSeparators(acceptedApiChangesFile.absolutePath) }"))
                        }
                    """.trimIndent()
                )
    
            setupPluginRequirements()
        }
    
        /**
         * Create projects and files required for plugins applied to the project (including transitively applied plugins).
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Mon Nov 28 21:09:42 GMT 2022
    - 5.6K bytes
    - Viewed (0)
  2. build-logic/buildquality/src/test/kotlin/gradlebuild/testcleanup/TestFilesCleanupServiceTest.kt

                include(":failed-report-with-leftover")
                include(":flaky-test-with-leftover")
                include(":flaky-test-without-leftover")
                include(":successful-report")
                """.trimIndent()
            )
    
            fun File.writeFlakyTest(fail: Boolean) {
                mkdirsAndWriteText(
                    """
                class FlakyTest {
                    @org.junit.jupiter.api.Test
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Jun 14 12:35:52 GMT 2023
    - 10.6K bytes
    - Viewed (0)
  3. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/CheckContributorsInReleaseNotes.kt

                    You can run `GITHUB_TOKEN=<YourGitHubToken> ./gradlew docs:updateContributorsInReleaseNotes --milestone <milestone>` to update the release notes with correct contributors automatically.
                    """.trimIndent()
                )
            }
        }
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Mon May 16 05:03:11 GMT 2022
    - 1.9K bytes
    - Viewed (0)
  4. build-logic/kotlin-dsl-shared-runtime/src/main/kotlin/org/gradle/kotlin/dsl/internal/sharedruntime/codegen/PluginIdExtensions.kt

                 * @see $implementationClass
                 */
                inline val $pluginDependenciesSpecQualifiedName.`$memberName`: $pluginDependencySpecQualifiedName
                    get() = id("$pluginId")
                """.trimIndent()
            }
    }
    
    
    private
    data class PluginExtension(
        val memberName: String,
        val pluginId: String,
        val implementationClass: String
    )
    
    
    private
    Plain Text
    - Registered: Wed Feb 28 11:36:09 GMT 2024
    - Last Modified: Sun Nov 12 16:16:07 GMT 2023
    - 3.1K bytes
    - Viewed (0)
  5. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AbstractBinaryCompatibilityTest.kt

        protected
        fun File.withFile(path: String, text: String = ""): File =
            resolve(path).apply {
                parentFile.mkdirs()
                writeText(text.trimIndent())
            }
    
        private
        fun File.withUniqueDirectory(prefixPath: String): File =
            Files.createTempDirectory(
                withDirectory(prefixPath.substringBeforeLast("/")).toPath(),
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Mon Sep 25 13:49:37 GMT 2023
    - 16.4K bytes
    - Viewed (0)
  6. .teamcity/src/main/kotlin/common/extensions.kt

            subprojects/internal-build-reports/build/reports/incubation/all-incubating.html => incubation-reports
            build/reports/dependency-verification/** => dependency-verification-reports
        """.trimIndent()
    
        paramsForBuildToolBuild(buildJvm, os, arch)
        params {
            // The promotion job doesn't have a branch, so %teamcity.build.branch% doesn't work.
            param("env.BUILD_BRANCH", "%teamcity.build.branch%")
    Plain Text
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Fri Apr 12 10:49:15 GMT 2024
    - 13K bytes
    - Viewed (0)
  7. .teamcity/src/main/kotlin/configurations/PerformanceTestsPass.kt

                                results/performance/build/test-results-*.zip!performance-tests/report/css/*.css => $performanceResultsDir/
                                $perfResultArtifactRule
                                """.trimIndent()
                            } else {
                                perfResultArtifactRule
                            }
                        }
                    }
                }
            }
        }
    Plain Text
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Thu Apr 04 07:21:42 GMT 2024
    - 5.1K bytes
    - Viewed (0)
  8. .teamcity/src/main/kotlin/configurations/Gradleception.kt

                        echo "##teamcity[setParameter name='env.ORG_GRADLE_PROJECT_versionQualifier' value='gradleception-${'$'}MD5']"
                    """.trimIndent()
                }
                gradleWrapper {
                    name = "BUILD_GRADLE_DISTRIBUTION"
                    tasks = "clean :distributions-full:install"
    Plain Text
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Tue Feb 27 09:57:17 GMT 2024
    - 6K bytes
    - Viewed (0)
Back to top