Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 65 for snapshotted (0.18 sec)

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

                assert !delegateContext.beforeExecutionState.present
            }
            0 * _
        }
    
        def "implementations are snapshotted"() {
            def additionalImplementations = [
                ImplementationSnapshot.of("FirstAction", TestHashCodes.hashCodeFrom(2345)),
                ImplementationSnapshot.of("SecondAction", TestHashCodes.hashCodeFrom(3456))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:34 UTC 2023
    - 7K bytes
    - Viewed (0)
  2. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/vfs/VirtualFileSystem.java

         */
        Stream<FileSystemLocationSnapshot> findRootSnapshotsUnder(String absolutePath);
    
        /**
         * Snapshots and stores the result in the VFS.
         *
         * If the snapshotted location is invalidated while snapshotting,
         * then the snapshot is not stored in the VFS to avoid inconsistent state.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  3. pkg/registry/core/service/allocator/interfaces.go

    	// Destroy shuts down all internal structures.
    	// Destroy needs to be implemented in thread-safe way and be prepared for being
    	// called more than once.
    	Destroy()
    }
    
    // Snapshottable is an Interface that can be snapshotted and restored. Snapshottable
    // should be threadsafe.
    type Snapshottable interface {
    	Interface
    	Snapshot() (string, []byte)
    	Restore(string, []byte) error
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 22 10:35:43 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/CaptureNonIncrementalStateBeforeExecutionStepTest.groovy

        def setup() {
            _ * work.inputFingerprinter >> inputFingerprinter
        }
    
        def "output file properties are snapshotted as empty"() {
            when:
            step.execute(work, context)
    
            then:
            interaction { snapshotState() }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/InputFingerprinter.java

            Consumer<InputVisitor> inputs
        ) throws InputFingerprintingException, InputFileFingerprintingException;
    
        interface Result {
            /**
             * Returns the values snapshotted just now.
             */
            ImmutableSortedMap<String, ValueSnapshot> getValueSnapshots();
    
            /**
             * Returns all the value snapshots, including previously known ones.
             */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/reflect/GradleStandardJavaFileManager.java

                // module. However, we really want to explicitly set an empty sourcepath
                // so that we don't implicitly pull in unrequested sourcefiles which
                // haven't been snapshotted because we will consider the task up-to-date
                // if the implicit files change.
                //
                // This implementation of hasLocation() pretends that the JavaFileManager
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  7. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/operations/dependencies/transforms/SnapshotTransformInputsBuildOperationType.java

        public interface Details {
        }
    
        /**
         * The hashes of the inputs.
         * <p>
         * If the inputs were not snapshotted, all fields are null.
         */
        public interface Result {
    
            /**
             * The overall hash value for the inputs.
             * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  8. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/CaptureIncrementalStateBeforeExecutionStepTest.groovy

        def setup() {
            _ * work.inputFingerprinter >> inputFingerprinter
        }
    
        def "output file properties are snapshotted"() {
            def outputSnapshots = ImmutableSortedMap.<String, FileSystemSnapshot>of("outputDir", Mock(FileSystemSnapshot))
    
            when:
            step.execute(work, context)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  9. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/api/internal/tasks/SnapshotTaskInputsBuildOperationType.java

        public interface Details {
        }
    
        /**
         * The hashes of the inputs.
         * <p>
         * If the inputs were not snapshotted, all fields are null.
         * This may occur if the task had no outputs.
         */
        public interface Result {
    
            /**
             * The overall hash value for the inputs.
             * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 17:46:30 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/caching/CrossBuildCachingRuleExecutor.java

            InMemoryCacheDecoratorFactory cacheDecoratorFactory,
            ValueSnapshotter snapshotter,
            BuildCommencedTimeProvider timeProvider,
            EntryValidator<RESULT> validator,
            Transformer<?, KEY> keyToSnapshottable,
            Serializer<RESULT> resultSerializer
        ) {
            this.snapshotter = snapshotter;
            this.validator = validator;
            this.keyToSnapshottable = keyToSnapshottable;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:51:31 UTC 2024
    - 16.1K bytes
    - Viewed (0)
Back to top