Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for isIncremental (0.45 sec)

  1. 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)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformInputArtifactIntegrationTest.groovy

            false       | PathSensitivity.NAME_ONLY
    
            inputChanges = incremental ? "@Inject abstract InputChanges getInputChanges()" : ""
            normalization = (sensitivity?.name()?.toLowerCase()?.replaceAll("_", " ") ?: "no") + " path sensitivity"
            type = (incremental ? "incremental" : "non-incremental")
        }
    
        def "re-runs incremental transform when input artifact file changes from file to missing"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 27 19:15:32 UTC 2023
    - 51.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    Implies `<<#incremental,@Incremental>>`.
    
    | [[incremental]]`@link:{javadocPath}/org/gradle/work/Incremental.html[Incremental]`
    | `Provider<FileSystemLocation>` or `FileCollection`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  4. pilot/pkg/model/push_context.go

    	// Full determines whether a full push is required or not. If false, an incremental update will be sent.
    	// Incremental pushes:
    	// * Do not recompute the push context
    	// * Do not recompute proxy state (such as ServiceInstances)
    	// * Are not reported in standard metrics such as push time
    	// As a result, configuration updates should never be incremental. Generally, only EDS will set this, but
    	// in the future SDS will as well.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformBuildOperationIntegrationTest.groovy

                transformActionClass == "MakeGreen"
    
                transformerName == "MakeGreen"
                subjectName == "producer.jar (project :included:producer)"
            }
        }
    
        def "incremental project transform execution can be up-to-date or from build cache"() {
            createDirs("producer", "consumer")
            settingsFile << """
                include 'producer', 'consumer'
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 16:27:38 UTC 2024
    - 67.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    Only plugins which use the infrastructure provided by Gradle for performing requests will see their requests verified.
    --
    
    [[sec:verification-update]]
    === Using generation for incremental updates
    
    The verification file generated by Gradle has a strict ordering for all its content.
    It also uses the information from the existing state to limit changes to the strict minimum.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  7. src/regexp/syntax/parse.go

    		re.Op = OpLiteral
    		re.Rune = re.Rune[:1]
    		re.Flags = p.flags | FoldCase
    	} else {
    		// Incremental concatenation.
    		p.maybeConcat(-1, 0)
    	}
    
    	p.stack = append(p.stack, re)
    	p.checkLimits(re)
    	return re
    }
    
    // maybeConcat implements incremental concatenation
    // of literal runes into string nodes. The parser calls this
    // before each push, so only the top fragment of the stack
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    ====
    
    The above example demonstrates the basic syntax and also highlights two major limitations of using the `copy()` method:
    
    1. The `copy()` method is not <<incremental_build.adoc#incremental_build,incremental>>.
    The example's `copyMethod` task will _always_ execute because it has no information about what files make up the task's inputs.
    You have to define the task inputs and outputs manually.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    You should now use the `InputChanges` type instead.
    Please refer to the <<custom_tasks.adoc#sec:implementing_an_incremental_task, userguide section about implementing incremental tasks for more details>>.
    
    === Potential breaking changes
    
    ==== Version catalog only accepts a single TOML import file
    
    Only a single file will be accepted when using a `from` import method.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    * Support for several source languages.
    * Support for building different variants of the same software, for different architectures, operating systems, or for any purpose.
    * Incremental parallel compilation, precompiled headers.
    * Dependency management between native software components.
    * Unit test execution.
    * Generate Visual studio solution and project files.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
Back to top