Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for valueSnapshotter (0.29 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-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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/ImmutableManagedValueSnapshot.java

     * limitations under the License.
     */
    
    package org.gradle.internal.snapshot.impl;
    
    import org.gradle.internal.hash.Hasher;
    import org.gradle.internal.snapshot.ValueSnapshot;
    import org.gradle.internal.snapshot.ValueSnapshotter;
    
    import javax.annotation.Nullable;
    import java.util.Objects;
    
    public class ImmutableManagedValueSnapshot implements ValueSnapshot {
        private final String className;
    
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  10. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/isolation/IsolatableFactory.java

     * <li>Calculate a hash of the state. If you only need to calculate hashes of object graphs, then consider using {@link org.gradle.internal.snapshot.ValueSnapshotter} instead,
     * as that does the same thing but more efficiently.</li>
     * </ul>
     *
     * @see org.gradle.internal.snapshot.ValueSnapshotter
     */
    @ServiceScope(Scope.UserHome.class)
    public interface IsolatableFactory {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top