Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ChangeTypeInternal (0.25 sec)

  1. subprojects/core/src/test/groovy/org/gradle/internal/fingerprint/impl/AbsolutePathFileCollectionFingerprinterTest.groovy

                switch (change.type) {
                    case ChangeTypeInternal.ADDED:
                        listener.added(change.path)
                        break
                    case ChangeTypeInternal.MODIFIED:
                        listener.changed(change.path)
                        break
                    case ChangeTypeInternal.REMOVED:
                        listener.removed(change.path)
                        break
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 20 16:00:23 UTC 2022
    - 9.9K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/IncrementalInputsIntegrationTest.groovy

            executesIncrementalTask(
                incremental: false,
                (rebuildChangeType.name().toLowerCase(Locale.US)): rebuiltFiles
            )
        }
    
        ChangeTypeInternal getRebuildChangeType() {
            return ChangeTypeInternal.ADDED
        }
    
        void executesIncrementalTask(Map options) {
            boolean incremental = options.incremental != false
            List<String> added = options.added ?: []
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 23 12:52:29 UTC 2022
    - 27.8K bytes
    - Viewed (0)
Back to top