Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 520 for isIncremental (0.23 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/custom_tasks.adoc

    That parameter tells Gradle that the action only wants to process the changed inputs.
    
    In addition, the task needs to declare at least one incremental file input property by using either link:{javadocPath}/org/gradle/work/Incremental.html[`@Incremental`] or link:{javadocPath}/org/gradle/api/tasks/SkipWhenEmpty.html[`@SkipWhenEmpty`]:
    
    ====
    [.multi-language-sample]
    =====
    [source,kotlin]
    .build.gradle.kts
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Feb 25 15:21:05 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  2. platforms/core-runtime/internal-instrumentation-processor/src/test/groovy/org/gradle/internal/instrumentation/extensions/property/PropertyUpgradeCodeGenTest.groovy

                        ${getDefaultDeprecation("Task", "incremental")}
                        return self.getIncremental().getOrElse(false);
                    }
    
                    public static Task access_set_setIncremental(Task self, boolean arg0) {
                        ${getDefaultDeprecation("Task", "incremental")}
                        self.getIncremental().set(arg0);
                        return self;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  3. build-logic/jvm/src/main/kotlin/gradlebuild.unittest-and-compile.gradle.kts

                    outgoing.artifact(it)
                }
            }
        }
    }
    
    fun configureCompileTask(options: CompileOptions) {
        options.release = 8
        options.encoding = "utf-8"
        options.isIncremental = true
        options.isFork = true
        options.forkOptions.jvmArgs?.add("-XX:+HeapDumpOnOutOfMemoryError")
        options.forkOptions.memoryMaximumSize = "1g"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 07:43:28 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  4. platforms/jvm/language-jvm/src/main/java/org/gradle/api/tasks/compile/CompileOptions.java

        @Internal
        public boolean isIncremental() {
            return incremental;
        }
    
        /**
         * Used to enable or disable incremental compilation after a failure.
         * <p>
         * By default, incremental compilation after a failure is enabled for Java and Groovy.
         * It has no effect for Scala. It has no effect if incremental compilation is not enabled.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/performance.adoc

    ====
    
    For more information about incremental builds, check out the
    <<incremental_build.adoc#incremental_build,incremental build documentation>>.
    
    === Visualize incremental builds with build scan timelines
    
    Look at the build scan timeline view to identify tasks that could benefit from incremental builds.
    This can also help you understand why tasks execute when you expect Gradle to skip them.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapter.java

            if (result instanceof InternalIncrementalTaskResult) {
                InternalIncrementalTaskResult taskResult = (InternalIncrementalTaskResult) result;
                return TaskExecutionDetails.of(taskResult.isIncremental(), taskResult.getExecutionReasons());
            }
            return TaskExecutionDetails.unsupported();
        }
    
        private static @Nullable WorkItemOperationResult toWorkItemResult(InternalOperationResult result) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/java/incrementalAnnotationProcessing/groovy/processor/src/main/resources/META-INF/gradle/incremental.annotation.processors

    # tag::registering-incremental-annotation-processors[]
    org.gradle.EntityProcessor,isolating
    org.gradle.ServiceRegistryProcessor,dynamic
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 191 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/dsl/org.gradle.api.tasks.incremental.IncrementalTaskInputs.xml

    <section>
        <section>
            <title>Properties</title>
            <table>
                <thead>
                    <tr>
                        <td>Name</td>
                    </tr>
                </thead>
                <tr><td>incremental</td></tr>
            </table>
        </section>
        <section>
            <title>Methods</title>
            <table>
                <thead>
                    <tr>
                        <td>Name</td>
                    </tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 566 bytes
    - Viewed (0)
  9. platforms/core-runtime/internal-instrumentation-processor/src/main/resources/META-INF/gradle/incremental.annotation.processors

    Alex Semin <******@****.***> 1696261454 +0200
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 101 bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/GroovyJavaJointIncrementalCompilationIntegrationTest.groovy

            'Change Java files'                         | ['J', 'G']   | ['J.changed', 'G']   | ['Incremental compilation of', "UP-TO-DATE"]                 | ['J.changed', 'G']   | ['UP-TO-DATE', 'UP-TO-DATE']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 11.2K bytes
    - Viewed (0)
Back to top