Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 95 for isIncremental (0.38 sec)

  1. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/android/AndroidPerformanceTestFixture.groovy

        AndroidTestProject getAndroidTestProject() {
            // We assume here already, since the test may try to cast the returned test project to `IncrementalAndroidTestProject`,
            // which fails when the test project is non-incremental.
            runner.assumeShouldRun()
            AndroidTestProject.projectFor(runner.testProject)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/comparison/DiffUtils.java

     */
    public final class DiffUtils {
        // A list of unique strings appeared in compared texts.
        // The index of each string is its incremental Id.
        private final List<String> stringList = new ArrayList<>();
        // A map to record each unique string and its incremental id.
        private final Map<String, Integer> stringToId = new HashMap<>();
        private int[] original;
        private int[] revised;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/DefaultTransformInvocationFactory.java

            } else {
                effectiveEngine = producerProject.getServices().get(ExecutionEngine.class);
                if (!transform.requiresInputChanges()) {
                    // Non-incremental project artifact transforms also run in an immutable workspace
                    identityCache = immutableWorkspaceServices.getIdentityCache();
                    execution = new NormalizedIdentityImmutableTransformExecution(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:14:33 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/recomp/DefaultSourceFileClassNameConverter.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.internal.tasks.compile.incremental.recomp;
    
    import java.util.Collection;
    import java.util.Collections;
    import java.util.HashMap;
    import java.util.HashSet;
    import java.util.Map;
    import java.util.Set;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. gradle.properties

    org.gradle.parallel=true
    org.gradle.caching=true
    org.gradle.configuration-cache=true
    systemProp.gradle.publish.skip.namespace.check=true
    # Kotlin DSL settings
    org.gradle.kotlin.dsl.allWarningsAsErrors=true
    # Kotlin settings
    kotlin.incremental.useClasspathSnapshot=true
    kotlin.stdlib.default.dependency=false
    kotlin.js.ir.output.granularity=whole-program
    # Temporarily force IDEs to produce build scans
    systemProp.org.gradle.internal.ide.scan=true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 16:35:19 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/buildcache/TaskOutputCachingJavaPerformanceTest.groovy

                comment = "We only test the multi-project here since for the monolithic project we would have no cache hits. This would mean we actually would test incremental compilation."
            )
        ])
        def "clean assemble for abi change with local cache"() {
            given:
            setupTestProject(runner)
            def testProject = JavaTestProject.projectFor(runner.testProject)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 13:08:21 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  7. platforms/ide/ide-native/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = "Plugins for integration with native projects in XCode and Visual Studio IDEs"
    
    sourceSets {
        main {
            // Incremental Groovy joint-compilation doesn't work with the Error Prone annotation processor
            errorprone.enabled = false
        }
    }
    
    dependencies {
        api(libs.groovy)
        api(libs.guava)
        api(libs.inject)
        api(libs.jsr305)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/IncrementalCompileProcessor.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.language.nativeplatform.internal.incremental;
    
    import org.gradle.cache.ObjectHolder;
    import org.gradle.internal.operations.BuildOperationContext;
    import org.gradle.internal.operations.BuildOperationRunner;
    import org.gradle.internal.operations.CallableBuildOperation;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:31:28 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/ExecutionStateChanges.java

        /**
         * Returns all change messages for inputs and outputs.
         */
        ImmutableList<String> getChangeDescriptions();
    
        InputChangesInternal createInputChanges();
    
        static ExecutionStateChanges incremental(
            ImmutableList<String> changeDescriptions,
            InputFileChanges inputFileChanges,
            IncrementalInputProperties incrementalInputProperties
        ) {
            return new ExecutionStateChanges() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:34 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. platforms/jvm/code-quality/build.gradle.kts

     */
    
    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = "Plugins and integration with code quality (Checkstyle, PMD, CodeNarc)"
    
    sourceSets {
        main {
            // Incremental Groovy joint-compilation doesn't work with the Error Prone annotation processor
            errorprone.enabled = false
        }
    }
    
    dependencies {
        api(projects.stdlibJavaExtensions)
        api(project(":base-services"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top