Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 42 for valueSnapshotter (0.2 sec)

  1. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/ValueSnapshotter.java

     *
     * @see org.gradle.internal.isolation.IsolatableFactory
     */
    @ServiceScope(Scope.BuildSession.class)
    public interface ValueSnapshotter {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/models/DefaultToolingModelParameterCarrierFactory.kt

    import org.gradle.internal.snapshot.ValueSnapshotter
    import org.gradle.tooling.internal.adapter.ProtocolToModelAdapter
    import org.gradle.tooling.internal.consumer.connection.ToolingParameterProxy
    import org.gradle.tooling.provider.model.internal.ToolingModelParameterCarrier
    
    
    class DefaultToolingModelParameterCarrierFactory(
        private val valueSnapshotter: ValueSnapshotter
    ) : ToolingModelParameterCarrier.Factory {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/impl/DefaultInputFingerprinter.java

            FileCollectionFingerprinterRegistry fingerprinterRegistry,
            ValueSnapshotter valueSnapshotter
        ) {
            this.snapshotter = snapshotter;
            this.fingerprinterRegistry = fingerprinterRegistry;
            this.valueSnapshotter = valueSnapshotter;
        }
    
        @Override
        public Result fingerprintInputProperties(
            ImmutableSortedMap<String, ValueSnapshot> previousValueSnapshots,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/exec/BuildTreeLifecycleBuildActionExecutor.java

        private final BuildLayoutValidator buildLayoutValidator;
        private final ValueSnapshotter valueSnapshotter;
    
        public BuildTreeLifecycleBuildActionExecutor(
            BuildTreeModelControllerServices buildTreeModelControllerServices,
            BuildLayoutValidator buildLayoutValidator,
            ValueSnapshotter valueSnapshotter
        ) {
            this.buildTreeModelControllerServices = buildTreeModelControllerServices;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 21:54:27 UTC 2024
    - 6K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resolve/caching/CrossBuildCachingRuleExecutorTest.groovy

    class CrossBuildCachingRuleExecutorTest extends Specification {
    
        GlobalScopedCacheBuilderFactory cacheBuilderFactory = Mock()
        DefaultInMemoryCacheDecoratorFactory cacheDecoratorFactory = Mock()
        ValueSnapshotter valueSnapshotter = Mock()
        BuildCommencedTimeProvider timeProvider = Stub()
        IndexedCache<ValueSnapshot, CrossBuildCachingRuleExecutor.CachedEntry<Result>> store = Mock()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:51:31 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/ManagedValueSnapshot.java

     * limitations under the License.
     */
    
    package org.gradle.internal.snapshot.impl;
    
    import org.gradle.internal.snapshot.ValueSnapshot;
    import org.gradle.internal.snapshot.ValueSnapshotter;
    
    public class ManagedValueSnapshot extends AbstractManagedValueSnapshot<ValueSnapshot> implements ValueSnapshot {
        private final String className;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. subprojects/core/src/testFixtures/groovy/org/gradle/util/SnapshotTestUtil.groovy

    import org.gradle.internal.isolation.IsolatableFactory
    import org.gradle.internal.snapshot.ValueSnapshotter
    import org.gradle.internal.snapshot.impl.DefaultIsolatableFactory
    import org.gradle.internal.snapshot.impl.DefaultValueSnapshotter
    import org.gradle.internal.state.DefaultManagedFactoryRegistry
    
    class SnapshotTestUtil {
        static ValueSnapshotter valueSnapshotter() {
            return new DefaultValueSnapshotter(
                [],
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 23 19:34:48 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/SetValueSnapshot.java

    import org.gradle.internal.snapshot.ValueSnapshot;
    import org.gradle.internal.snapshot.ValueSnapshotter;
    
    public class SetValueSnapshot extends AbstractSetSnapshot<ValueSnapshot> implements ValueSnapshot {
        public SetValueSnapshot(ImmutableSet<ValueSnapshot> elements) {
            super(elements);
        }
    
        @Override
        public ValueSnapshot snapshot(Object value, ValueSnapshotter snapshotter) {
            ValueSnapshot newSnapshot = snapshotter.snapshot(value);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/execution/ProjectExecutionServices.java

            FileCollectionSnapshotter snapshotter,
            FileCollectionFingerprinterRegistry fingerprinterRegistry,
            ValueSnapshotter valueSnapshotter
        ) {
            return new DefaultInputFingerprinter(snapshotter, fingerprinterRegistry, valueSnapshotter);
        }
    
        @Provides
        TaskExecutionModeResolver createExecutionModeResolver(
            StartParameter startParameter
        ) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:42 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/impl/DefaultInputFingerprinterTest.groovy

            getFingerprinter(_ as FileNormalizationSpec) >> fingerprinter
        }
        def valueSnapshotter = Mock(ValueSnapshotter)
        def inputFingerprinter = new DefaultInputFingerprinter(snapshotter, fingerprinterRegistry, valueSnapshotter)
    
        def input = Mock(Object)
        def inputSnapshot = Mock(ValueSnapshot)
        def fileInput = Mock(FileCollection)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 9K bytes
    - Viewed (0)
Back to top