Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getClassLoaderHashBytes (0.53 sec)

  1. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/operations/dependencies/transforms/SnapshotTransformInputsBuildOperationType.java

             * The hash of the classloader that loaded the transform action implementation.
             * <p>
             * Null if the classloader is not managed by Gradle.
             */
            @Nullable
            byte[] getClassLoaderHashBytes();
    
            /**
             * The class name of the transform's action.
             */
            @Nullable
            String getImplementationClassName();
    
            /**
             * The input value property hashes.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/tasks/BaseSnapshotInputsBuildOperationResult.java

                    .collect(toLinkedHashMap(valueSnapshot -> Hashing.hashHashable(valueSnapshot).toByteArray())))
                .orElse(null);
        }
    
        @Nullable
        public byte[] getClassLoaderHashBytes() {
            return getBeforeExecutionState()
                .map(ExecutionInputState::getImplementation)
                .map(BaseSnapshotInputsBuildOperationResult::getClassLoaderHashBytesOrNull)
                .orElse(null);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 11:36:42 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  3. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/api/internal/tasks/SnapshotTaskInputsBuildOperationType.java

            /**
             * The hash of the classloader that loaded the task implementation.
             * <p>
             * Null if the classloader is not managed by Gradle.
             */
            @Nullable
            byte[] getClassLoaderHashBytes();
    
    
            /**
             * The hashes of the classloader that loaded each of the task's actions.
             * <p>
             * May contain duplicates.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 17:46:30 UTC 2023
    - 7.5K bytes
    - Viewed (0)
Back to top