Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 157 for Cacheable (0.18 sec)

  1. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/BuildEnvironmentReportTask.java

     * as every project automatically has a task of this type by the name {@code "buildEnvironment"}.
     *
     * @since 2.10
     */
    @UntrackedTask(because = "Produces only non-cacheable console output")
    public abstract class BuildEnvironmentReportTask extends DefaultTask {
    
        public static final String TASK_NAME = "buildEnvironment";
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 24 23:13:41 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  2. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/generator/tasks/BuildBuilderGenerator.groovy

    /**
     * Uses the build-builder to generate Gradle projects of different kinds.
     *
     * @see <a href="https://github.com/adammurdoch/build-builder">build builder</a>
     */
    @DisableCachingByDefault(because = "Not made cacheable, yet")
    class BuildBuilderGenerator extends ProjectGeneratorTask {
        /**
         * Installation directory of the build-builder tool.
         */
        @PathSensitive(PathSensitivity.RELATIVE)
        @InputDirectory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 07 13:12:26 UTC 2021
    - 3.6K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/tasks/ExtractSymbols.java

    import org.gradle.work.DisableCachingByDefault;
    
    /**
     * Extracts the debug symbols from a binary and stores them in a separate file.
     *
     * @since 4.5
     */
    @DisableCachingByDefault(because = "Not made cacheable, yet")
    public abstract class ExtractSymbols extends DefaultTask {
        private final RegularFileProperty binaryFile;
        private final RegularFileProperty symbolFile;
        private final Property<NativePlatform> targetPlatform;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/execution/plan/DefaultNodeValidator.java

            WorkValidationContext validationContext = node.getValidationContext();
            Class<?> taskType = GeneratedSubclasses.unpackType(node.getTask());
            // We don't know whether the task is cacheable or not, so we ignore cacheability problems for scheduling
            TypeValidationContext typeValidationContext = validationContext.forType(taskType, false);
            node.getTaskProperties().validateType(typeValidationContext);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 04 07:42:50 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  5. platforms/ide/ide-native/src/main/groovy/org/gradle/ide/visualstudio/tasks/GenerateProjectFileTask.java

    import java.io.File;
    import java.util.concurrent.Callable;
    
    /**
     * Task for generating a Visual Studio project file (e.g. {@code foo.vcxproj}).
     */
    @Incubating
    @DisableCachingByDefault(because = "Not made cacheable, yet")
    public abstract class GenerateProjectFileTask extends XmlGeneratorTask<VisualStudioProjectFile> {
        private DefaultVisualStudioProject visualStudioProject;
        private String gradleExe;
        private String gradleArgs;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  6. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/UpdateAgpVersions.kt

    import org.jsoup.Jsoup
    import org.w3c.dom.Element
    import java.util.Properties
    import javax.xml.parsers.DocumentBuilderFactory
    
    
    /**
     * Fetch the latest AGP versions and write a properties file.
     * Never up-to-date, non-cacheable.
     */
    @UntrackedTask(because = "Not worth tracking")
    abstract class UpdateAgpVersions : DefaultTask() {
    
        @get:Internal
        abstract val comment: Property<String>
    
        @get:Internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 02 09:17:07 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  7. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/generator/tasks/CppMultiProjectGeneratorTask.groovy

    import org.gradle.api.tasks.Internal
    import org.gradle.work.DisableCachingByDefault
    
    // TODO: Remove this and replace it with a BuildBuilderGenerator instead.
    @DisableCachingByDefault(because = "Not made cacheable, yet")
    class CppMultiProjectGeneratorTask extends AbstractProjectGeneratorTask {
        @Internal
        gradlebuild.performance.generator.DependencyGenerator.DependencyInfo depInfo
    
        CppMultiProjectGeneratorTask() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 07 13:12:26 UTC 2021
    - 4.8K bytes
    - Viewed (0)
  8. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/xctest/tasks/XCTest.java

    import java.io.File;
    import java.util.List;
    
    /**
     * Executes XCTest tests. Test are always run in a single execution.
     *
     * @since 4.5
     */
    @DisableCachingByDefault(because = "Not made cacheable, yet")
    public abstract class XCTest extends AbstractTestTask {
        private final DirectoryProperty workingDirectory;
        private final DirectoryProperty testInstallDirectory;
        private final RegularFileProperty runScriptFile;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  9. platforms/core-execution/build-cache-http/src/integTest/groovy/org/gradle/caching/http/internal/HttpBuildCacheServiceIntegrationTest.groovy

            withBuildCache().run "clean"
            withBuildCache().run "assemble"
            when:
            withBuildCache().run "clean"
            then:
            executedAndNotSkipped ":clean"
        }
    
        def "cacheable task with cache disabled doesn't get cached"() {
            buildFile << """
                compileJava.outputs.cacheIf { false }
            """
    
            withBuildCache().run "compileJava"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:20 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/tasks/StripSymbols.java

    import org.gradle.work.DisableCachingByDefault;
    
    /**
     * Strips the debug symbols from a binary
     *
     * @since 4.5
     */
    @DisableCachingByDefault(because = "Not made cacheable, yet")
    public abstract class StripSymbols extends DefaultTask {
        private final RegularFileProperty binaryFile;
        private final RegularFileProperty outputFile;
        private final Property<NativePlatform> targetPlatform;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.7K bytes
    - Viewed (0)
Back to top