Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 43 of 43 for NamedDomainObjectProvider (0.34 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/AccessorFragments.kt

                )
            )
        )
    }
    
    
    private
    fun fragmentsForContainerElement(accessor: Accessor.ForContainerElement): Fragments =
        fragmentsForContainerElementOf(
            GradleTypeName.namedDomainObjectProvider,
            GradleTypeName.namedWithTypeMethodDescriptor,
            accessor.spec,
            existingContainerElementAccessor(accessor.spec)
        )
    
    
    private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:46 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    // Eagerly realized Test task, defeat configuration avoidance if done out of a lazy context
    val test: Test = tasks.test.get()
    ----
    
    For all other containers than `tasks`, accessors for elements are of type `NamedDomainObjectProvider<T>` and provide the same behavior.
    
    [[sec:kotlin_using_standard_api]]
    === Understanding what to do when type-safe model accessors are not available
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

     * The `ScalaDocOptions.styleSheet` property has been removed — the Scaladoc Ant task in Scala 2.11.8 and later no longer supports this property.
    Kotlin DSL::
     * Artifact configuration accessors now have the type `NamedDomainObjectProvider<Configuration>` instead of `Configuration`
     * `PluginAware.apply<T>(to)` was renamed `PluginAware.applyTo<T>(target)`.
    
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
Back to top