Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for Change (0.18 sec)

  1. 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)
  2. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AbstractAcceptedApiChangesMaintenanceTaskIntegrationTest.kt

        @BeforeEach
        fun setUp() {
            projectDir.resolve("src").resolve("changes").resolve("accepted-changes").mkdirs()
            firstAcceptedApiChangesFile = projectDir.resolve("src/changes/accepted-changes/accepted-public-api-changes.json")
            secondAcceptedApiChangesFile = projectDir.resolve("src/changes/accepted-changes/second-accepted-public-api-changes.json")
    
            projectDir.resolve("build.gradle.kts")
                .writeText(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 6K bytes
    - Viewed (0)
  3. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/PublicApi.kt

     *
     * A type is part of the Gradle public API if and only if its FQCN matches {@link #includes} and does not match {@link #excludes}.
     */
    // NOTE: If you update this, please also change .idea/scopes/Gradle_public_API.xml
    // and also change `avoiding_gradle_internal_apis` section in `src/docs/userguide/authoring-builds/authoring_maintainable_build_scripts.adoc`
    object PublicApi {
        val includes = listOf(
            "org/gradle/*",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:53 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/dependency-management-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/dm/PublishArtifactLocalArtifactMetadataCodec.kt

     *
     * A better change would be to split an immutable id type out of PublishArtifactLocalArtifactMetadata (or reuse one of the existing
     * implementations). However, the Eclipse tooling model builder assumes that the id and metadata objects are the same and also that
     * the metadata object provides access to the backing PublishArtifact. This makes the better change too large to undertake at this point,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprint.kt

            /**
             * Whether the undeclared inputs accessed while serializing the task graph will be
             * excluded from input tracking. This is a temporary opt-out flag after a change
             * was made in that behavior.
             */
            val ignoreInputsInConfigurationCacheTaskGraphWriting: Boolean,
            /**
             * Whether the instrumentation agent was used when computing the cache.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. build-logic/binary-compatibility/src/main/groovy/gradlebuild.binary-compatibility.gradle

                }
            }
        }
    }
    
    // We support multiple accepted public api changes JSON files, but "accepted-public-api-changes.json"
    // is the "main" one that is also shown in HTML report
    def apiChangesJsonDirectory = layout.projectDirectory.dir("src/changes/accepted-changes")
    def mainApiChangesJsonFile = apiChangesJsonDirectory.file("accepted-public-api-changes.json")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 9K bytes
    - Viewed (0)
  7. .teamcity/src/main/kotlin/model/CIBuildModel.kt

                                Scenario(
                                    "org.gradle.performance.regression.corefeature.FileSystemWatchingPerformanceTest",
                                    "assemble for non-abi change with file system watching and configuration caching"
                                ),
                                it
                            )
                        }
                    )
                )
            ),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintCheckerTest.kt

                    )
                ),
                equalTo("file 'displayNameOf(scriptFile)' has changed")
            )
        }
    
        @Test
        fun `build input file has been removed`() {
            val inputFile = File("input.txt")
            // no need to match a missing file hash, as long it is changed from the original one
            val missingFileHash = TestHashCodes.hashCodeFrom(2)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  9. testing/architecture-test/build.gradle.kts

    }
    
    val acceptedApiChangesDirectory = layout.projectDirectory.dir("src/changes/accepted-changes")
    
    val verifyAcceptedApiChangesOrdering = tasks.register<gradlebuild.binarycompatibility.AlphabeticalAcceptedApiChangesTask>("verifyAcceptedApiChangesOrdering") {
        group = "verification"
        description = "Ensures the accepted api changes file is kept alphabetically ordered to make merging changes to it easier"
        apiChangesDirectory = acceptedApiChangesDirectory
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/AlphabeticalAcceptedApiChangesTask.kt

            val messages = formattedMismatches.map {
                "API changes in file '${it.key.name}' should be in alphabetical order (by type and member), yet these changes were not:\n" +
                    "$formattedMismatches\n"
            }.joinToString(separator = "\n")
    
            return "$messages\nTo automatically alphabetize these changes run: 'gradlew :architecture-test:sortAcceptedApiChanges'"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top