Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,539 for applies (0.13 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/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/ResourceFilter.java

        /**
         * 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)
  3. 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)
  4. src/cmd/go/testdata/script/gcflags_patterns.txt

    stderr 'invalid value'
    
    # -ldflags for implicit test package applies to test binary
    go test -a -c -n -gcflags=-N -ldflags=-X=x.y=z z1
    stderr 'compile.* -N .*z_test.go'
    stderr 'link.* -X=x.y=z'
    
    # -ldflags for explicit test package applies to test binary
    go test -a -c -n -gcflags=z1=-N -ldflags=z1=-X=x.y=z z1
    stderr 'compile.* -N .*z_test.go'
    stderr 'link.* -X=x.y=z'
    
    # -ldflags applies to link of command
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 21 14:58:44 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  5. .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)
  6. 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)
  7. 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)
  8. 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)
  9. subprojects/core-api/src/main/java/org/gradle/api/artifacts/result/ResolutionResult.java

        /**
         * Applies given action for each dependency.
         * An instance of {@link DependencyResult} is passed as parameter to the action.
         *
         * @param action - action that is applied for each dependency
         */
        void allDependencies(Action<? super DependencyResult> action);
    
        /**
         * Applies given closure for each dependency.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 24 19:03:56 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  10. 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)
Back to top