Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for Klinger (0.26 sec)

  1. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/dom/operations/overlay/DocumentOverlay.kt

                        // above because it had a matching overlay merge key. In any case, even if there was a matching underlay
                        // property, we are no longer interested in it because the overlay property wins.
                        result.add(overlayItem)
                        recordValueOriginRecursively(overlayItem.value, FromOverlay(overlayItem))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  2. JavadocStyleGuide.md

    | 6  | `@deprecated` | Adds a comment indicating that this API should no longer be used               | Make sure to have an alternative API linked                                                                                                                                                                        |
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 15:43:07 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintChecker.kt

                    }
                    if (host.instrumentationAgentUsed != instrumentationAgentUsed) {
                        val statusChangeString = when (instrumentationAgentUsed) {
                            true -> "is no longer available"
                            false -> "is now applied"
                        }
                        return "the instrumentation Java agent $statusChangeString"
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/dependency-management-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/dm/LocalFileDependencyBackedArtifactSetCodec.kt

    // Stores less state than the original, since we perform selection for each possible extension at serialization time
    // This data is encoded in the variantSelector, meaning we no longer need to store the request attributes
    private
    class DeserializedLocalFileDependencyArtifactSet(
        dependencyMetadata: LocalFileDependencyMetadata,
        componentFilter: Spec<ComponentIdentifier>,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/AccessorsClassPath.kt

    const val projectSchemaResourcePath =
        "gradle/project-schema.json"
    
    
    internal
    const val projectSchemaResourceDiscontinuedWarning =
        "Support for $projectSchemaResourcePath was removed in Gradle 5.0. The file is no longer used and it can be safely deleted."
    
    
    fun Project.warnAboutDiscontinuedJsonProjectSchema() {
        if (file(projectSchemaResourcePath).isFile) {
            logger.warn(projectSchemaResourceDiscontinuedWarning)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 22K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/KotlinBuildScriptIntegrationTest.kt

        @Test
        fun `can use Kotlin 1 dot 3 language features`() {
    
            withBuildScript(
                """
    
                task("test") {
                    doLast {
    
                        // Coroutines are no longer experimental
                        val coroutine = sequence {
                            // Unsigned integer types
                            yield(42UL)
                        }
    
                        // Capturing when
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 11:39:00 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ConfigurationDeprecatedExtensions.kt

    import org.gradle.api.file.FileTree
    import org.gradle.api.specs.Spec
    import org.gradle.api.tasks.TaskDependency
    
    import java.io.File
    
    
    // TODO: Remove these methods entirely when we no longer support plugins that were built using these methods.
    
    
    /**
     * See [Configuration.getBuildDependencies].
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:18:46 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildOptionsIntegrationTest.groovy

            configurationCache.assertStateLoaded()
    
            when: "file is changed"
            file("ci").text = "false"
            configurationCacheRun "run"
    
            then: "cache is NO longer valid"
            output.count(usage.endsWith("presence") ? "ON CI" : "NOT CI") == 1
            outputContains "file 'ci' has changed"
            configurationCache.assertStateStored()
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 28K bytes
    - Viewed (0)
  9. gradle/verification-metadata.xml

       dependency but is not covered by the current resolveAllDependencies. Edit the task definition to
       add the required task dependency.
    
       Gradle *cannot* automatically determine that an entry in this file is outdated and no longer
       required. As such, try to remove older entries when you upgrade dependencies.
    
       Do not remove this header. If this header is removed it means the pull request hasn't
       been reviewed properly.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 22:30:36 UTC 2024
    - 90.1K bytes
    - Viewed (0)
  10. architecture/standards/0003-avoid-introducing-Groovy-types-to-public-api.md

    Doing this provides the following specific benefits:
    - **Reduce the API surface** - We no longer need to maintain two methods.
    - **Consistency** - All languages have consistent access to the same APIs and ergonomics in the DSL.
    - **Reduce the size of the Gradle distribution** - We no longer need to carry multiple standard libraries for different languages.
    
    ## Decision
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 10 20:38:06 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top