Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 151 for Change (0.18 sec)

  1. platforms/documentation/docs/src/samples/build-organization/multi-project-with-convention-plugins/kotlin/library-b/README.md

    ## API
    public API description for library b
    
    ## Changelog
    - change 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 80 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/tasks/incrementalTask/kotlin/build.gradle.kts

            )
    
            // tag::process-changed-inputs[]
            inputChanges.getFileChanges(inputDir).forEach { change ->
                if (change.fileType == FileType.DIRECTORY) return@forEach
    
                println("${change.changeType}: ${change.normalizedPath}")
                val targetFile = outputDir.file(change.normalizedPath).get().asFile
                if (change.changeType == ChangeType.REMOVED) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/dependencyManagement/artifactTransforms-incremental/kotlin/build.gradle.kts

            inputChanges.getFileChanges(input).forEach { change ->          // <2>
                val changedFile = change.file
                if (change.fileType != FileType.FILE) {
                    return@forEach
                }
                val outputLocation = outputDir.resolve("${change.normalizedPath}.loc")
                when (change.changeType) {
                    ChangeType.ADDED, ChangeType.MODIFIED -> {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. testing/performance/docs/performance-bisect.md

    All files from ~/.gradle-bisect-override will be copied to the working directory. Make changes to files under that directory since the script will reset any changes.
    This means that all the files we modified before should be copied into this directory.
    
    usage:
    
    ```bash
    mkdir ~/.gradle-bisect-override
    # copy test class to override directory and make changes in that directory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/incubating/build-organization/publishing-convention-plugins/kotlin/convention-plugins/src/test/kotlin/com/myorg/LibraryPluginTest.kt

        }
    
        @Test
        fun `fails when README does not have API section`() {
            testProjectDir.newFile("README.md").writeText("""
                ## Changelog
                - change 1
                - change 2
            """.trimIndent())
    
            val result = runTaskWithFailure ("check")
    
            assertEquals(TaskOutcome.FAILED, result.task(":readmeCheck")?.outcome)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/build-organization/publishing-convention-plugins/kotlin/convention-plugins/src/test/kotlin/com/myorg/LibraryPluginTest.kt

        }
    
        @Test
        fun `fails when README does not have API section`() {
            testProjectDir.newFile("README.md").writeText("""
                ## Changelog
                - change 1
                - change 2
            """.trimIndent())
    
            val result = runTaskWithFailure ("check")
    
            assertEquals(TaskOutcome.FAILED, result.task(":readmeCheck")?.outcome)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/compile/BuildScriptCompileAvoidanceIntegrationTest.kt

            configureProject().assertBuildScriptCompilationAvoided().assertOutputContains("bar")
        }
    
        @Test
        fun `avoids buildscript recompilation on non ABI change in buildSrc`() {
            val className = givenJavaClassInBuildSrcContains(
                """
                public void foo() {
                    System.out.println("foo");
                }
                """
            )
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Sep 24 17:45:42 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/compile/BuildSrcScriptCompileAvoidanceIntegrationTest.kt

    import org.junit.Test
    
    
    class BuildSrcScriptCompileAvoidanceIntegrationTest : AbstractCompileAvoidanceIntegrationTest() {
    
        @Test
        fun `avoids buildscript recompilation on public function change in buildSrc script`() {
            val packageName = givenKotlinScriptInBuildSrcContains(
                "Foo",
                """
                fun foo() {
                    println("foo")
                }
                """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/build-organization/multi-project-with-convention-plugins/kotlin/library-a/README.md

    ## API
    public API description for library a
    
    ## Changelog
    - change 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 80 bytes
    - Viewed (0)
  10. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/KotlinModifiersChangeTest.kt

                    "Method com.example.Source.plus(int,java.util.List): Breaking Kotlin modifier change.",
                    "Method com.example.SourceKt.invoke(java.lang.String,int): Breaking Kotlin modifier change.",
                    "Method com.example.SourceKt.invoke(long,int): Breaking Kotlin modifier change.",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 2.6K bytes
    - Viewed (0)
Back to top