Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 25 of 25 for Change (0.1 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/ResidualProgramCompiler.kt

                    ?.let { "$it.$compiledScriptClassName" }
                    ?: compiledScriptClassName
            }
        )
    
        /**
         * Stage descriptions for build operations.
         *
         * Changes to these constants must be coordinated with the GE team.
         */
        private
        object StableDisplayNameFor {
    
            const val stage1 = "CLASSPATH"
    
            const val stage2 = "BODY"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:45 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  2. build-logic/jvm/src/main/kotlin/gradlebuild.unittest-and-compile.gradle.kts

        else -> 10
    }
    
    fun configureTests() {
        normalization {
            runtimeClasspath {
                // Ignore the build receipt as it is not relevant for tests and changes between each execution
                ignore("org/gradle/build-receipt.properties")
            }
        }
    
        tasks.withType<Test>().configureEach {
    
            configureAndroidUserHome()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 07:43:28 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  3. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/UpgradedPropertiesChangesTest.kt

                        """
                    )
                }
            ) {
                assertHasErrors(
                    "Method com.example.Task.getSourceCompatibility(): Is not binary compatible." to listOf("Method return type has changed", "Method is now abstract"),
                    removed("Method", "Task.setSourceCompatibility(java.lang.String)"),
                )
            }
        }
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/README.md

    ## User Manual
    
    The source for the user manual lives @ `src/docs/userguide`, and is authored in [Asciidoctor](https://asciidoctor.org).
    
    To generate the user manual for the final preview and see all changes, you normally want to run:
    
        ./gradlew stageDocs
    
    That will generate all the docs in the `build/docs` directory.
    
    For development and fast feedback you should use:
    
        ./gradlew stageDocs -PquickDocs
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 21:49:03 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  5. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AbstractBinaryCompatibilityTest.kt

                                AcceptedApiChanges.parse(listOf("{acceptedApiChanges:[]}")),
                                rootProject.files("$sourceRoots"),
                                "2.0",
                                file("test-api-changes.json"),
                                rootProject.layout.projectDirectory,
                                newUpgradedPropertiesFile.get().asFile,
                                oldUpgradedPropertiesFile.get().asFile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 16.4K bytes
    - Viewed (0)
Back to top