Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,888 for _top (0.05 sec)

  1. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/tasks/ValidatePlugins.java

     * The <a href="https://docs.gradle.org/current/userguide/java_gradle_plugin.html" target="_top">java-gradle-plugin</a> adds
     * a {@code validatePlugins} task, though if you cannot use this plugin then you need to register the task yourself.
     *
     * See the user guide for more information on
     * <a href="https://docs.gradle.org/current/userguide/incremental_build.html" target="_top">incremental build</a> and
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 04 07:42:50 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/task/TaskSuccessResult.java

        boolean isUpToDate();
    
        /**
         * Returns whether the output for this task was pulled from a build cache when using
         * <a href="https://docs.gradle.org/current/userguide/build_cache.html#sec:task_output_caching" target="_top">task output caching</a>.
         *
         * <p>NOTE: This will always be false if the Gradle version does
         * not support task output caching.</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/GradleDependencies.java

         */
        default Dependency gradleApi() {
            return getDependencyFactory().gradleApi();
        }
    
        /**
         * Creates a dependency on the <a href="https://docs.gradle.org/current/userguide/test_kit.html" target="_top">Gradle test-kit</a> API.
         *
         * @return The dependency.
         * @since 7.6
         */
        default Dependency gradleTestKit() {
            return getDependencyFactory().gradleTestKit();
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 17 23:20:40 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/main/resources/header.html

                            <a target="_top" class="site-header__navigation-link" href="https://dpeuniversity.gradle.com/" itemprop="url">DPE University</a>
                        </li>
                        <li class="site-header__navigation-item" itemprop="name">
                            <a target="_top" class="site-header__navigation-link" href="https://gradle.org/training/" itemprop="url">Events</a>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  5. platforms/extensibility/test-kit/src/main/java/org/gradle/testkit/runner/TaskOutcome.java

         * <p>
         * This outcome only occurs when the build under test has been configured for
         * <a href="https://docs.gradle.org/current/userguide/build_cache.html#sec:task_output_caching" target="_top">task output caching</a>.
         * </p>
         * <p>NOTE: If the Gradle version used for the build under test is older than 3.3,
         * no tasks will have this outcome.</p>
         *
         * @since 3.3
         */
        FROM_CACHE,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/caching/configuration/BuildCacheConfiguration.java

    import org.gradle.internal.HasInternalProtocol;
    
    import javax.annotation.Nullable;
    
    /**
     * Configuration for the <a href="https://docs.gradle.org/current/userguide/build_cache.html" target="_top">build cache</a> for an entire Gradle build.
     *
     * @since 3.5
     */
    @HasInternalProtocol
    public interface BuildCacheConfiguration {
    
        /**
         * Registers a custom build cache type.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 27 16:11:30 UTC 2021
    - 3.4K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/DependencyFactory.java

         *
         * @return The dependency.
         * @since 7.6
         */
        Dependency gradleApi();
    
        /**
         * Creates a dependency on the <a href="https://docs.gradle.org/current/userguide/test_kit.html" target="_top">Gradle test-kit</a> API.
         *
         * @return The dependency.
         * @since 7.6
         */
        Dependency gradleTestKit();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 06 21:43:58 UTC 2022
    - 4K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/provider/ValueSource.java

     * among others.
     *
     * <p>
     * Representing external sources as {@link ValueSource}s allows Gradle to transparently manage
     * <a href="https://docs.gradle.org/current/userguide/configuration_cache.html" target="_top">the configuration cache</a>
     * as values obtained from those sources change.
     * For example, a build might run a different set of tasks depending on whether the {@code CI}
     * environment variable is set or not.
     * </p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 13:02:13 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ConfigurationContainer.java

     *
     * Please see the <a href="https://docs.gradle.org/current/userguide/declaring_dependencies.html#sec:what-are-dependency-configurations" target="_top">Managing Dependency Configurations</a> User Manual chapter for more information.
     */
    @HasInternalProtocol
    @ServiceScope(Scope.Project.class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/invocation/Gradle.java

         * However, it is guaranteed to be the same version of Gradle. For more information on the Gradle Daemon, please consult the
         * <a href="https://docs.gradle.org/current/userguide/gradle_daemon.html" target="_top">User Manual</a>.
         *
         * @return The home directory. May return null.
         */
        @Nullable
        File getGradleHomeDir();
    
        /**
         * Returns the parent build of this build, if any.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:53:34 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top