Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,054 for incrementBy (0.21 sec)

  1. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/CompileServices.java

    import org.gradle.api.internal.file.FileOperations;
    import org.gradle.api.internal.tasks.compile.incremental.IncrementalCompilerFactory;
    import org.gradle.api.internal.tasks.compile.incremental.analyzer.CachingClassDependenciesAnalyzer;
    import org.gradle.api.internal.tasks.compile.incremental.analyzer.ClassDependenciesAnalyzer;
    import org.gradle.api.internal.tasks.compile.incremental.analyzer.DefaultClassDependenciesAnalyzer;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/IncrementalInputsIntegrationTest.groovy

        }
    """
        }
    
        def "incremental task is informed that all input files are 'out-of-date' when run for the first time"() {
            expect:
            executesNonIncrementally()
        }
    
        def "incremental task is skipped when run with no changes since last execution"() {
            given:
            previousExecution()
    
            when:
            run "incremental"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 23 12:52:29 UTC 2022
    - 27.8K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/incremental/analyzer/DefaultClassDependenciesAnalyzerTest.groovy

    import org.gradle.api.internal.tasks.compile.incremental.test.AccessedFromPrivateMethod
    import org.gradle.api.internal.tasks.compile.incremental.test.AccessedFromPrivateMethodBody
    import org.gradle.api.internal.tasks.compile.incremental.test.HasInnerClass
    import org.gradle.api.internal.tasks.compile.incremental.test.HasNonPrivateConstants
    import org.gradle.api.internal.tasks.compile.incremental.test.HasPrivateConstants
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/groovy/incrementalCompilation/groovy/buildSrc/src/main/groovy/myproject.groovy-conventions.gradle

    plugins {
        id 'groovy'
    }
    
    dependencies {
        implementation localGroovy()
    }
    
    // tag::enable-groovy-incremental[]
    tasks.withType(GroovyCompile).configureEach {
        options.incremental = true
        options.incrementalAfterFailure = true
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 274 bytes
    - Viewed (0)
  5. test/typeparam/shape1.go

    // Similarly, there should be one instantiation of f for both *incrementer and *decrementer.
    func f[T I](x T) int {
    	return x.foo()
    }
    
    type squarer int
    
    func (x squarer) foo() int {
    	return int(x*x)
    }
    
    type doubler int
    
    func (x doubler) foo() int {
    	return int(2*x)
    }
    
    type incrementer int16
    
    func (x *incrementer) foo() int {
    	return int(*x+1)
    }
    
    type decrementer int32
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 855 bytes
    - Viewed (0)
  6. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/ChangesByGradleFileWatchingIntegrationTest.groovy

            when:
            file("build/output2/overlapping.txt").text = "overlapping"
            waitForChangesToBePickedUp()
            withWatchFs().run ":incremental", "-DoutputDir=output2"
            then:
            executedAndNotSkipped(":incremental")
            file("build/output1").assertDoesNotExist()
    
            when:
            waitForChangesToBePickedUp()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/FailingIncrementalTasksIntegrationTest.groovy

            fails "incrementalTask", "-PexpectIncremental=true", "-PmodifyOutputs=$modifyOutputs", "-Pfail"
    
            expect:
            succeeds "incrementalTask", "-PexpectIncremental=$incremental"
    
            where:
            modifyOutputs | incremental | description
            "add"         | false       | "with additional outputs is fully rebuilt"
            "change"      | false       | "with changed outputs is fully rebuilt"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 01 14:32:13 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  8. test/loopbce.go

    		x += a[i] // ERROR "(\([0-9]+\) )?Proved IsInBounds$"
    	}
    	return x
    }
    
    func f4(a [10]int) int {
    	x := 0
    	for i := 0; i < len(a); i += 2 { // ERROR "Induction variable: limits \[0,8\], increment 2$"
    		x += a[i] // ERROR "(\([0-9]+\) )?Proved IsInBounds$"
    	}
    	return x
    }
    
    func f5(a [10]int) int {
    	x := 0
    	for i := -10; i < len(a); i += 2 { // ERROR "Induction variable: limits \[-10,8\], increment 2$"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/jvm/scala_plugin.adoc

    ====
    
    [[sec:scala_incremental_compilation]]
    == Incremental compilation
    
    By compiling only classes whose source code has changed since the previous compilation, and classes affected by these changes, incremental compilation can significantly reduce Scala compilation time. It is particularly effective when frequently compiling small code increments, as is often done at development time.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 17K bytes
    - Viewed (0)
  10. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/pmd/PmdPluginIncrementalAnalysisIntegrationTest.groovy

            """.stripIndent()
        }
    
        def "incremental analysis cache file is not generated with incremental analysis disabled"() {
            buildFile << 'pmd { incrementalAnalysis = false }'
            goodCode()
    
            expect:
            succeeds("check", "-i")
            !file("build/tmp/pmdMain/incremental.cache").exists()
        }
    
        def "incremental analysis can be enabled"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:47:00 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top