Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,329 for rebuild (0.12 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/changedetection/TaskExecutionMode.java

     * limitations under the License.
     */
    
    package org.gradle.api.internal.changedetection;
    
    import java.util.Optional;
    
    public interface TaskExecutionMode {
        /**
         * Return rebuild reason if any.
         */
        Optional<String> getRebuildReason();
    
        /**
         * Returns whether the execution history should be stored.
         */
        boolean isTaskHistoryMaintained();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 03 11:19:27 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaAnnotationProcessingCompileAvoidanceIntegrationTest.groovy

                }
            '''
            file('b/src/main/resources/B.properties') << '''
                bprop=bvalue
            '''
        }
    
        def "does not rebuild project when upstream project has not changed, only rebuilt"() {
            given:
            succeeds(":a:assemble")
    
            when:
            // cleaning b and rebuilding will cause b.jar to be different
            succeeds(":b:clean")
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/GradleBuildContinuousIntegrationTest.groovy

        def setup() {
            file("gradle-build/inputs/input.txt").text = "first"
            file("gradle-build/settings.gradle") << """
                rootProject.name = "gradle-build"
            """
            file("gradle-build/build.gradle") << """
                task someTask {
                    def inputFile = file("inputs/input.txt")
                    def outputFile = file("build/output.txt")
                    inputs.file inputFile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/swift/SwiftDepsHandler.java

     * determine which files should be considered for compilation initially.  The compiler then looks at the
     * individual object's .swiftdeps file to build a dependency graph between changed and unchanged files.
     *
     * The incremental compiler will rebuild everything when:
     * - A source file is removed
     * - A different version of swiftc is used
     * - Different compiler arguments are used
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  5. src/runtime/debuglog_test.go

    // TODO(austin): All of these tests are skipped if the debuglog build
    // tag isn't provided. That means we basically never test debuglog.
    // There are two potential ways around this:
    //
    // 1. Make these tests re-build the runtime test with the debuglog
    // build tag and re-invoke themselves.
    //
    // 2. Always build the whole debuglog infrastructure and depend on
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 18 16:59:26 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  6. src/cmd/dist/README

    in Go, making bootstrapping a little more involved than in the past.
    The approach is to build the current release of Go with an earlier one.
    
    The process to install Go 1.x, for x ≥ 22, is:
    
    1. Build cmd/dist with Go 1.20.6.
    2. Using dist, build Go 1.x compiler toolchain with Go 1.20.6.
    3. Using dist, rebuild Go 1.x compiler toolchain with itself.
    4. Using dist, build Go 1.x cmd/go (as go_bootstrap) with Go 1.x compiler toolchain.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 25 17:20:22 UTC 2023
    - 1K bytes
    - Viewed (0)
  7. platforms/jvm/plugins-groovy/src/integTest/groovy/org/gradle/integtests/IncrementalGroovyProjectBuildIntegrationTest.groovy

    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    
    class IncrementalGroovyProjectBuildIntegrationTest extends AbstractIntegrationSpec {
    
        def "does not rebuild Groovydoc if source has not changed"() {
            def indexFile = file("build/docs/groovydoc/index.html");
            file("src/main/groovy/BuildClass.java") << 'public class BuildClass { }'
            buildFile << '''
                apply plugin: 'groovy'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 20:01:36 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. testing/integ-test/src/integTest/groovy/org/gradle/integtests/CacheProjectIntegrationTest.groovy

            // Use own home dir so we don't blast the shared one when we run with -C rebuild
            executer.requireOwnGradleUserHomeDir()
    
            String version = GradleVersion.current().version
            projectDir = file("project")
            projectDir.mkdirs()
            userHomeDir = executer.gradleUserHomeDir
            buildFile = projectDir.file('build.gradle')
            visitedBaseDirs = []
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/properties/InputBehavior.java

    /**
     * Describes the behavior of an input property.
     */
    public enum InputBehavior {
        /**
         * Non-incremental inputs.
         *
         * <ul>
         *     <li>Any change to the property value always triggers a full rebuild of the work</li>
         *     <li>Changes for the property cannot be queried via {@link org.gradle.work.InputChanges}</li>
         * </ul>
         */
        NON_INCREMENTAL(false, false),
    
        /**
         * Incremental inputs.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/integtests/IncrementalJavaProjectBuildIntegrationTest.groovy

            executer.withTasks('classes').run()
            file('build/resources/main').assertHasDescendants('org/gradle/resource2.txt')
        }
    
        @Test
        public void doesNotRebuildJarIfSourceHasNotChanged() {
            // Use own home dir so we don't blast the shared one when we run with -C rebuild
            executer.requireOwnGradleUserHomeDir()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 20:01:36 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top