Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,795 for Applies (0.15 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/MutableModelNode.java

        /**
         * Applies the rules defined in the given rule source to this node.
         */
        void applyToSelf(ExtractedRuleSource<?> rules);
    
        /**
         * Applies an action that defines further rules in the given role to the child of this node that is addressed by the subject of the action.
         */
        void defineRulesForLink(ModelActionRole role, ModelAction action);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/execution/PartialEvaluatorTest.kt

    import org.junit.Assert.fail
    import org.junit.Test
    
    
    class PartialEvaluatorTest {
    
        @Test
        fun `Project target - top-level - empty`() {
    
            assertThat(
                "reduces to static program that applies default plugin requests and base plugins",
                partialEvaluationOf(
                    Program.Empty,
                    ProgramKind.TopLevel,
                    ProgramTarget.Project
                ),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 38.9K bytes
    - Viewed (0)
  3. .github/dependabot.yml

    #    directory: "/"
    #    schedule:
    #      interval: "weekly"
    #    groups:
    #      dependencies:
    #        applies-to: version-updates
    #        patterns:
    #          - "*"
    #  - package-ecosystem: "maven"
    #    directory: "/android"
    #    schedule:
    #      interval: "weekly"
    #    groups:
    #      dependencies:
    #        applies-to: version-updates
    #        patterns:
    #          - "*"
      - package-ecosystem: "github-actions"
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 04 17:08:24 UTC 2024
    - 761 bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl-plugins/src/main/kotlin/org/gradle/kotlin/dsl/plugins/dsl/KotlinDslPlugin.kt

    import org.gradle.kotlin.dsl.support.expectedKotlinDslPluginsVersion
    import org.gradle.plugin.devel.plugins.JavaGradlePluginPlugin
    
    
    /**
     * The `kotlin-dsl` plugin.
     *
     * - Applies the `java-gradle-plugin` plugin
     * - Applies the `kotlin-dsl.base` plugin
     * - Applies the `kotlin-dsl.precompiled-script-plugins` plugin
     *
     * @see JavaGradlePluginPlugin
     * @see KotlinDslBasePlugin
     * @see PrecompiledScriptPlugins
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 03 11:09:52 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/ResourceFilter.java

     * </pre>
     *
     * @since 3.5
     */
    public interface ResourceFilter {
        /**
         * Indicates whether this ResourceFilter applies to files, folders, or both.  Default is FILES_AND_FOLDERS
         */
        ResourceFilterAppliesTo getAppliesTo();
    
        /**
         * Indicates whether this ResourceFilter applies to files, folders, or both.  Default is FILES_AND_FOLDERS
         *
         * @throws org.gradle.api.InvalidUserDataException if appliesTo is null.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/model/ModelMap.java

        /**
         * Applies the given rules to all items of the collection of the given type.
         *
         * @param type the type that the item must be/implement to have the rules applied
         * @param rules rules to apply
         */
        <S> void withType(Class<S> type, Class<? extends RuleSource> rules);
    
        /**
         * Applies the given action to each item in the collection, as each item is required.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/PluginAwareExtensions.kt

        apply {
            if (plugin != null) this.plugin(plugin)
            if (from != null) this.from(from)
            if (to != null) this.to(to)
        }
    }
    
    
    /**
     * Applies the plugin of the given type [T]. Does nothing if the plugin has already been applied.
     *
     * The given class should implement the [Plugin] interface.
     *
     * @param T the plugin type.
     * @see [PluginAware.apply]
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  8. platforms/jvm/jacoco/src/main/java/org/gradle/testing/jacoco/tasks/rules/JacocoLimit.java

         */
        @Input
        String getCounter();
    
        /**
         * Sets the counter that applies to the limit.
         *
         * @param counter Counter
         */
        void setCounter(String counter);
    
        /**
         * The value that applies to the limit as defined by
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/conventions/conventions.kt

    
    /**
     * A convention that applies a property assignment operation (e.g. foo = "bar").
     */
    class AssignmentRecordConvention(private val assignmentRecord: AssignmentRecord) :
        Convention<AssignmentRecordConventionReceiver> {
        override fun apply(receiver: AssignmentRecordConventionReceiver) {
            receiver.receive(assignmentRecord)
        }
    }
    
    
    /**
     * A convention that applies a data addition operation (e.g. addFoo("bar")).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:47 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r33/BuildActionCompatibilityMappingCrossVersionSpec.groovy

    import org.gradle.integtests.tooling.fixture.WithOldConfigurationsSupport
    
    class BuildActionCompatibilityMappingCrossVersionSpec extends ToolingApiSpecification implements WithOldConfigurationsSupport {
    
        def "Applies idea module name compatibility mapping"() {
            given:
            settingsFile << """
                include 'a'
                include 'b'
            """
            buildFile << """
                allprojects {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top