Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for fingerprintIdx (0.33 sec)

  1. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/impl/DefaultPreviousExecutionStateSerializer.java

            int count = decoder.readSmallInt();
            ImmutableSortedMap.Builder<String, FileCollectionFingerprint> builder = ImmutableSortedMap.naturalOrder();
            for (int fingerprintIdx = 0; fingerprintIdx < count; fingerprintIdx++) {
                String property = decoder.readString();
                FileCollectionFingerprint fingerprint = fileCollectionFingerprintSerializer.read(decoder);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 08:25:58 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/state/Managed.java

         * Note that the state may not be immutable, so should be made isolated to reuse in another context. The state can also be fingerprinted to generate a fingerprint of this object.
         *
         * <p>Note that currently the state should reference only JVM and core Gradle types when {@link #isImmutable()} returns true.</p>
         */
        @Nullable
    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-execution/execution/src/main/java/org/gradle/internal/execution/InputFingerprinter.java

            /**
             * Returns all the value snapshots, including previously known ones.
             */
            ImmutableSortedMap<String, ValueSnapshot> getAllValueSnapshots();
    
            /**
             * Returns the files fingerprinted just now.
             */
            ImmutableSortedMap<String, CurrentFileCollectionFingerprint> getFileFingerprints();
    
            /**
             * Returns all the file fingerprints, including the 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)
  4. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/fingerprint/impl/BrokenSymlinkNormalizationStrategyTest.groovy

            then:
            fingerprints.isEmpty()
    
            where:
            strategy << allFingerprintingStrategies
            strategyName = getStrategyName(strategy)
        }
    
        def "non-root broken symlink is fingerprinted as missing for #strategyName"() {
            given:
            def root = file('root')
            root.mkdirs()
            def brokenSymlink = root.file('broken-symlink')
            brokenSymlink.createLink(file('non-existing'))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  5. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/operations/execution/FilePropertyVisitor.java

            /**
             * Returns the hash of the currently visited property.
             */
            byte[] getPropertyHashBytes();
    
            /**
             * A description of how the current property was fingerprinted.
             * <p>
             * Returns one or more of the values of org.gradle.api.internal.tasks.BaseSnapshotInputsBuildOperationResult.FilePropertyAttribute, sorted.
             * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/tasks/BaseFilePropertyVisitState.java

            if (fingerprint == null) {
                // This directory is not part of the fingerprint.
                // Store it to visit later if it contains anything that was fingerprinted
                unvisitedDirectories.add(physicalSnapshot);
            } else {
                visitUnvisitedDirectories();
                preDirectory();
            }
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 07 15:16:07 UTC 2023
    - 6.7K bytes
    - Viewed (0)
Back to top