Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for PluginAware (0.14 sec)

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

     * compatible type of `this`.
     *
     * @param T the plugin type.
     * @see [PluginAware.apply]
     */
    inline fun <reified T : Plugin<Settings>> Settings.apply() =
        (this as PluginAware).apply<T>()
    
    
    /**
     * Locates a property on [Settings].
     */
    operator fun Settings.provideDelegate(any: Any?, property: KProperty<*>): PropertyDelegate =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 09:50:04 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ProjectExtensions.kt

     *
     * The given class should implement the [Plugin] interface, and be parameterized for a
     * compatible type of `this`.
     *
     * @param T the plugin type.
     * @see [PluginAware.apply]
     */
    inline fun <reified T : Plugin<Project>> Project.apply() =
        (this as PluginAware).apply<T>()
    
    
    /**
     * Executes the given configuration block against the [project extension]
     * [org.gradle.api.plugins.ExtensionAware] of the specified type.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 09:50:04 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/initialization/Settings.java

    import org.gradle.api.initialization.resolve.DependencyResolutionManagement;
    import org.gradle.api.invocation.Gradle;
    import org.gradle.api.plugins.ExtensionAware;
    import org.gradle.api.plugins.PluginAware;
    import org.gradle.api.provider.Provider;
    import org.gradle.api.provider.ProviderFactory;
    import org.gradle.api.toolchain.management.ToolchainManagement;
    import org.gradle.caching.configuration.BuildCacheConfiguration;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 08:36:37 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/Project.java

    import org.gradle.api.logging.LoggingManager;
    import org.gradle.api.model.ObjectFactory;
    import org.gradle.api.plugins.ExtensionAware;
    import org.gradle.api.plugins.ExtensionContainer;
    import org.gradle.api.plugins.PluginAware;
    import org.gradle.api.project.IsolatedProject;
    import org.gradle.api.provider.Provider;
    import org.gradle.api.provider.ProviderFactory;
    import org.gradle.api.resources.ResourceHandler;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  5. testing/architecture-test/src/changes/archunit-store/public-api-methods-return-allowed-types.txt

    Method <org.gradle.api.plugins.PluginAware.apply(groovy.lang.Closure)> has arguments/return type groovy.lang.Closure that is not Gradle public API or primitive or built-in JDK classes or Kotlin classes in (PluginAware.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:21:31 UTC 2024
    - 91.3K bytes
    - Viewed (0)
Back to top