Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 725 for Change (0.09 sec)

  1. platforms/documentation/docs/src/snippets/dependencyManagement/artifactTransforms-incremental/groovy/build.gradle

            inputChanges.getFileChanges(input).forEach { change ->          // <2>
                def changedFile = change.file
                if (change.fileType != FileType.FILE) {
                    return
                }
                def outputLocation = new File(outputDir, "${change.normalizedPath}.loc")
                switch (change.changeType) {
                    case ADDED:
                    case MODIFIED:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/multiproject/customLayout/groovy/settings.gradle

    // tag::change-project[]
    rootProject.name = 'main'
    // tag::lookup-project[]
    include('project-a')
    // end::change-project[]
    println rootProject.name
    println project(':project-a').name
    // end::lookup-project[]
    
    // tag::change-project[]
    project(':project-a').projectDir = file('custom/my-project-a')
    project(':project-a').buildFileName = 'project-a.gradle'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 378 bytes
    - Viewed (0)
  3. 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)
  4. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AlphabeticalAcceptedApiChangesTaskIntegrationTest.kt

                    Change("org.gradle.api.AntBuilder", "Class org.gradle.api.AntBuilder"),
                    Change("org.gradle.api.file.SourceDirectorySet", "Method org.gradle.api.file.SourceDirectorySet.getOutputDir()"),
                    Change("org.gradle.api.file.SourceDirectorySet", "Method org.gradle.api.file.SourceDirectorySet.setOutputDir(java.io.File)"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. docs/kms/IAM.md

    - Root credentials can now be changed easily. Before, a two-step process was required to
       change the cluster root credentials since they were used to en/decrypt the IAM data.
       So, both - the old and new credentials - had to be present at the same time during a rotation
       and the old credentials had to be removed once the rotation completed. This process is now gone.
       The root credentials can now be changed easily.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. platforms/documentation/docs/src/samples/build-organization/multi-project-with-convention-plugins/kotlin/buildSrc/src/test/kotlin/com/example/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)
Back to top