Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 52 for snapshotFor (0.14 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/ArrayValueSnapshot.java

        public ArrayValueSnapshot(ImmutableList<ValueSnapshot> elements) {
            super(elements);
        }
    
        @Override
        public ValueSnapshot snapshot(Object value, ValueSnapshotter snapshotter) {
            ValueSnapshot other = snapshotter.snapshot(value);
            if (isEqualArrayValueSnapshot(other)) {
                return this;
            }
            return other;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/FileValueSnapshot.java

            return null;
        }
    
        @Override
        public ValueSnapshot snapshot(Object value, ValueSnapshotter snapshotter) {
            if (value instanceof File) {
                File file = (File) value;
                if (file.getPath().equals(getValue())) {
                    return this;
                }
            }
            return snapshotter.snapshot(value);
        }
    
        @Override
        public void appendToHasher(Hasher hasher) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/EnumValueSnapshot.java

        }
    
        public String getName() {
            return name;
        }
    
        @Override
        public ValueSnapshot snapshot(@Nullable Object value, ValueSnapshotter snapshotter) {
            if (isEqualEnum(value)) {
                return this;
            }
            return snapshotter.snapshot(value);
        }
    
        private boolean isEqualEnum(@Nullable Object value) {
            if (value instanceof Enum<?>) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 14:30:43 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/impl/ImplementationSnapshot.java

        }
    
        @Nullable
        public abstract HashCode getClassLoaderHash();
    
        @Override
        public ValueSnapshot snapshot(@Nullable Object value, ValueSnapshotter snapshotter) {
            ValueSnapshot other = snapshotter.snapshot(value);
            if (this.isSameSnapshot(other)) {
                return this;
            }
            return other;
        }
    
        protected abstract boolean isSameSnapshot(@Nullable Object o);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:53:34 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/caching/ComponentMetadataRuleExecutor.java

                InMemoryCacheDecoratorFactory cacheDecoratorFactory,
                ValueSnapshotter snapshotter,
                BuildCommencedTimeProvider timeProvider,
                Serializer<ModuleComponentResolveMetadata> componentMetadataContextSerializer) {
            super(CACHE_ID, cacheBuilderFactory, cacheDecoratorFactory, snapshotter, timeProvider, createValidator(timeProvider), getKeyToSnapshotableTransformer(), componentMetadataContextSerializer);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4K bytes
    - Viewed (0)
  6. .idea/dictionaries/hungnv.xml

    <component name="ProjectDictionaryState">
      <dictionary name="hungnv">
        <words>
          <w>externalizers</w>
          <w>granularities</w>
          <w>multifile</w>
          <w>relocatability</w>
          <w>shrinker</w>
          <w>snapshotter</w>
          <w>snapshotter's</w>
        </words>
      </dictionary>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Aug 16 13:40:19 UTC 2023
    - 303 bytes
    - Viewed (0)
  7. cluster/addons/volumesnapshots/crd/snapshot.storage.k8s.io_volumesnapshotcontents.yaml

    metadata:
      labels:
        addonmanager.kubernetes.io/mode: Reconcile
      annotations:
        controller-gen.kubebuilder.io/version: v0.8.0
        api-approved.kubernetes.io: "https://github.com/kubernetes-csi/external-snapshotter/pull/665"
      creationTimestamp: null
      name: volumesnapshotcontents.snapshot.storage.k8s.io
    spec:
      group: snapshot.storage.k8s.io
      names:
        kind: VolumeSnapshotContent
        listKind: VolumeSnapshotContentList
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 26 07:24:12 UTC 2022
    - 25.6K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/execution/ProjectExecutionServices.java

        }
    
        @Provides
        InputFingerprinter createInputFingerprinter(
            FileCollectionSnapshotter snapshotter,
            FileCollectionFingerprinterRegistry fingerprinterRegistry,
            ValueSnapshotter valueSnapshotter
        ) {
            return new DefaultInputFingerprinter(snapshotter, fingerprinterRegistry, valueSnapshotter);
        }
    
        @Provides
        TaskExecutionModeResolver createExecutionModeResolver(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:42 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/CachedCodePathComponentMetadataProcessorTest.groovy

                getCurrentTime() >> { 0L }
            }
    
            def snapshotter = Mock(ValueSnapshotter) {
                snapshot(_) >> {
                    new StringValueSnapshot(it.toString())
                }
            }
            def executorWithCache = new ComponentMetadataRuleExecutor(cacheRepository, cacheDecoratorFactory, snapshotter, timeProvider, Mock(Serializer))
    
            new DefaultComponentMetadataProcessor(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:21:11 UTC 2024
    - 8K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/StoreExecutionStateStepTest.groovy

            getInputProperties() >> ImmutableSortedMap.of()
            getInputFileProperties() >> ImmutableSortedMap.of()
        }
    
        def outputFile = file("output.txt").text = "output"
        def outputFilesProducedByWork = snapshotsOf(output: outputFile)
    
        def step = new StoreExecutionStateStep<IncrementalCachingContext, AfterExecutionResult>(delegate)
        def delegateResult = Mock(AfterExecutionResult)
    
    
        def setup() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 08:29:47 UTC 2024
    - 6.8K bytes
    - Viewed (0)
Back to top