Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for valueSnapshotter (0.23 sec)

  1. 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)
  2. 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)
  3. 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)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/GradleSerializedValueSnapshot.java

    import com.google.common.base.Objects;
    import org.gradle.internal.hash.HashCode;
    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.Arrays;
    
    /**
     * An immutable snapshot of the state of some value.
     */
    public class GradleSerializedValueSnapshot implements ValueSnapshot {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:46:00 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/service/scopes/WorkerSharedBuildSessionScopeServices.java

    import org.gradle.internal.snapshot.ValueSnapshotter;
    import org.gradle.internal.snapshot.impl.DefaultValueSnapshotter;
    import org.gradle.internal.snapshot.impl.ValueSnapshotterSerializerRegistry;
    
    import java.util.List;
    
    public class WorkerSharedBuildSessionScopeServices implements ServiceRegistrationProvider {
    
        @Provides
        ValueSnapshotter createValueSnapshotter(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/AbstractScalarValueSnapshot.java

     * limitations under the License.
     */
    
    package org.gradle.internal.snapshot.impl;
    
    import org.gradle.internal.snapshot.ValueSnapshot;
    import org.gradle.internal.snapshot.ValueSnapshotter;
    
    /**
     * A snapshot of an immutable scalar value. Should only be used for immutable JVM provided or core Gradle types.
     *
     * @param <T> the type of the value
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:36 UTC 2024
    - 2K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/LauncherServices.java

                BuildLayoutValidator buildLayoutValidator,
                FileSystem fileSystem,
                BuildLifecycleAwareVirtualFileSystem virtualFileSystem,
                ValueSnapshotter valueSnapshotter
            ) {
                CaseSensitivity caseSensitivity = fileSystem.isCaseSensitive() ? CASE_SENSITIVE : CASE_INSENSITIVE;
                return new SubscribableBuildActionExecutor(
                    listenerManager,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 13:01:53 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/EnumValueSnapshot.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;
    
    public class EnumValueSnapshot implements ValueSnapshot {
        private final String className;
        private final String name;
    
        public EnumValueSnapshot(Enum<?> value) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 14:30:43 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/JavaSerializedValueSnapshot.java

    import org.gradle.internal.hash.Hasher;
    import org.gradle.internal.serialize.ClassLoaderObjectInputStream;
    import org.gradle.internal.snapshot.ValueSnapshot;
    import org.gradle.internal.snapshot.ValueSnapshotter;
    import org.gradle.internal.snapshot.ValueSnapshottingException;
    
    import javax.annotation.Nullable;
    import java.io.ByteArrayInputStream;
    import java.util.Arrays;
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 12:37:11 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DefaultBuildTreeModelControllerServices.kt

        class SharedBuildTreeScopedServices : ServiceRegistrationProvider {
            @Provides
            fun createToolingModelParameterCarrierFactory(valueSnapshotter: ValueSnapshotter): ToolingModelParameterCarrier.Factory {
                return DefaultToolingModelParameterCarrierFactory(valueSnapshotter)
            }
        }
    
        private
        class ConfigurationCacheModelProvider : ServiceRegistrationProvider {
            @Provides
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 13.9K bytes
    - Viewed (0)
Back to top