Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 25 of 25 for fingerprinting (0.24 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintWriter.kt

            if (isInputTrackingDisabled() || isExecutingWork()) {
                // Ignore files that are read as part of the task actions. These should really be task
                // inputs. Otherwise, we risk fingerprinting files such as:
                // - temporary files that will be gone at the end of the build.
                // - files in the output directory, for incremental tasks or tasks that remove stale outputs
                return
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/DefaultTransform.java

                    buildOperationRunner.run(new RunnableBuildOperation() {
                        @Override
                        public void run(BuildOperationContext context) {
                            // TODO wolfs - schedule fingerprinting separately, it can be done without having the project lock
                            fingerprintParameters(
                                inputFingerprinter,
                                fileCollectionFactory,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:19 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  3. 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)
  4. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/impl/FingerprintMapSerializer.java

            FileType fileType = readFileType(decoder);
            HashCode contentHash = readContentHash(fileType, decoder);
    
            byte fingerprintKind = decoder.readByte();
            switch (fingerprintKind) {
                case DEFAULT_NORMALIZATION:
                    String normalizedPath = decoder.readString();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  5. RELEASE.md

    ### Bug Fixes and Other Changes
    
    *   `tf.SavedModel`:
        * Introduced new class `tf.saved_model.experimental.Fingerprint` that contains the fingerprint of the SavedModel. See the [SavedModel Fingerprinting RFC](https://github.com/tensorflow/community/pull/415) for details.
        * Introduced API `tf.saved_model.experimental.read_fingerprint(export_dir)` for reading the fingerprint of a SavedModel.
    * `tf.random`
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top