Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for getHashBytes (0.16 sec)

  1. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/operations/execution/FilePropertyVisitor.java

         */
        void preDirectory(VisitState state);
    
        /**
         * Called when visiting a non-directory file.
         * <p>
         * {@link VisitState#getName()}, {@link VisitState#getPath()} and {@link VisitState#getHashBytes()} may be called during.
         */
        void file(VisitState state);
    
        /**
         * Called when exiting a directory.
         */
        void postDirectory();
    
        /**
         * Called when exiting a root.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/tasks/BaseFilePropertyVisitState.java

        }
    
        @Override
        public String getName() {
            return name;
        }
    
        @Override
        public String getPath() {
            return path;
        }
    
        @Override
        public byte[] getHashBytes() {
            return hash.toByteArray();
        }
    
        @Override
        public void enterDirectory(DirectorySnapshot physicalSnapshot) {
            this.path = physicalSnapshot.getAbsolutePath();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 07 15:16:07 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  3. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/api/internal/tasks/SnapshotTaskInputsBuildOperationType.java

            /**
             * The overall hash value for the inputs.
             * <p>
             * Null if the overall key was not calculated because the inputs were invalid.
             */
            @Nullable
            byte[] getHashBytes();
    
            /**
             * The hash of the classloader that loaded the task implementation.
             * <p>
             * Null if the classloader is not managed by Gradle.
             */
            @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 17:46:30 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/tasks/BaseSnapshotInputsBuildOperationResult.java

                .filter(outputPropertyNames -> !outputPropertyNames.isEmpty())
                .map(ImmutableSet::asList)
                .orElse(null);
        }
    
        @Nullable
        public byte[] getHashBytes() {
            return getKey()
                .map(BuildCacheKey::toByteArray)
                .orElse(null);
        }
    
        @Override
        public Object getCustomOperationTraceSerializableModel() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 11:36:42 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  5. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/operations/dependencies/transforms/SnapshotTransformInputsBuildOperationType.java

            /**
             * The overall hash value for the inputs.
             * <p>
             * Null if the overall key was not calculated because the inputs were invalid.
             */
            @Nullable
            byte[] getHashBytes();
    
            /**
             * The hash of the classloader that loaded the transform action implementation.
             * <p>
             * Null if the classloader is not managed by Gradle.
             */
            @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 3.2K bytes
    - Viewed (0)
Back to top