Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for getOriginMetadata (0.25 sec)

  1. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/AssignImmutableWorkspaceStepTest.groovy

            then:
            1 * immutableWorkspaceMetadataStore.loadWorkspaceMetadata(immutableWorkspace) >> Stub(ImmutableWorkspaceMetadata) {
                getOriginMetadata() >> delegateOriginMetadata
                getOutputPropertyHashes() >> ImmutableListMultimap.of("output", outputFileSnapshot.hash)
            }
            0 * _
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 14:32:25 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/BuildCacheStep.java

                                work.getDisplayName(), cacheKey.getHashCode());
                        }
                        cleanLocalState(context.getWorkspace(), work);
                        OriginMetadata originMetadata = cacheHit.getOriginMetadata();
                        Try<Execution> execution = Try.successful(Execution.skipped(FROM_CACHE, work));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 13:41:13 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  3. platforms/core-execution/build-cache/src/main/java/org/gradle/caching/internal/controller/DefaultBuildCacheController.java

                        return unpackResult.getEntries();
                    }
                    @Override
                    public OriginMetadata getOriginMetadata() {
                        return unpackResult.getOriginMetadata();
                    }
                    @Override
                    public ImmutableSortedMap<String, FileSystemSnapshot> getResultingSnapshots() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 08:29:47 UTC 2024
    - 14K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/AssignImmutableWorkspaceStep.java

            OriginMetadata originMetadata = metadata.getOriginMetadata();
            ExecutionOutputState afterExecutionOutputState = new DefaultExecutionOutputState(true, outputSnapshots, originMetadata, true);
            return new WorkspaceResult(
                CachingResult.shortcutResult(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 16:44:11 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/BuildCacheStepTest.groovy

            1 * delegateResult.afterExecutionOutputState >> Optional.of(Mock(AfterExecutionState) {
                1 * getOutputFilesProducedByWork() >> outputFilesProducedByWork
                1 * getOriginMetadata() >> originMetadata
            })
            1 * originMetadata.executionTime >> Duration.ofMillis(123L)
            1 * buildCacheController.store(cacheKey, _, outputFilesProducedByWork, Duration.ofMillis(123L)) >> { storeResult() }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 10:13:50 UTC 2024
    - 10.2K bytes
    - Viewed (0)
Back to top