Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for OriginMetadata (0.79 sec)

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

            )
    
            def originMetadata = Stub(OriginMetadata)
    
            def delegateOutputFiles = ImmutableSortedMap.copyOf(
                "outputDirectory": delegateOutputFileSnapshot
            )
            def delegateOutputState = Stub(ExecutionOutputState) {
                getOriginMetadata() >> originMetadata
                getOutputFilesProducedByWork() >> delegateOutputFiles
            }
    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/test/groovy/org/gradle/internal/execution/steps/BuildCacheStepTest.groovy

        private void outputStored(Closure storeResult) {
            def originMetadata = Mock(OriginMetadata)
            def outputFilesProducedByWork = snapshotsOf("test": [])
    
            1 * delegateResult.afterExecutionOutputState >> Optional.of(Mock(AfterExecutionState) {
                1 * getOutputFilesProducedByWork() >> outputFilesProducedByWork
                1 * getOriginMetadata() >> originMetadata
            })
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 10:13:50 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/BuildCacheStep.java

                        OriginMetadata originMetadata = cacheHit.getOriginMetadata();
                        Try<Execution> execution = Try.successful(Execution.skipped(FROM_CACHE, work));
                        ExecutionOutputState afterExecutionOutputState = new DefaultExecutionOutputState(true, cacheHit.getResultingSnapshots(), originMetadata, true);
                        // Record snapshots of loaded result
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 13:41:13 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  4. platforms/core-execution/build-cache-packaging/src/main/java/org/gradle/caching/internal/packaging/impl/TarBuildCacheEntryPacker.java

            ImmutableMap<String, CacheableTree> treesByName = treesBuilder.build();
    
            TarArchiveEntry tarEntry;
            OriginMetadata originMetadata = null;
            Map<String, FileSystemLocationSnapshot> snapshots = new HashMap<>();
    
            tarEntry = tarInput.getNextEntry();
            AtomicLong entries = new AtomicLong();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 07:31:19 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  5. 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(
                    Duration.ZERO,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 16:44:11 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  6. platforms/core-execution/build-cache/src/main/java/org/gradle/caching/internal/controller/DefaultBuildCacheController.java

    import org.gradle.caching.internal.controller.service.OpFiringRemoteBuildCacheServiceHandle;
    import org.gradle.caching.internal.controller.service.RemoteBuildCacheServiceHandle;
    import org.gradle.caching.internal.origin.OriginMetadata;
    import org.gradle.caching.internal.origin.OriginMetadataFactory;
    import org.gradle.caching.internal.origin.OriginWriter;
    import org.gradle.caching.internal.packaging.BuildCacheEntryPacker;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 08:29:47 UTC 2024
    - 14K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/integTest/groovy/org/gradle/internal/execution/IncrementalExecutionIntegrationTest.groovy

            def afterExecution = Iterables.getOnlyElement(executionHistoryStore.executionHistory.values())
            afterExecution.originMetadata.buildInvocationId == buildId.toString()
            afterExecution.outputFilesProducedByWork == result.afterExecutionOutputState.get().outputFilesProducedByWork
        }
    
        def "work unit is up-to-date if nothing changes"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 23.7K bytes
    - Viewed (0)
Back to top