Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getActionClassLoaderHashesBytes (0.32 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/tasks/BaseSnapshotInputsBuildOperationResult.java

            Map<String, Object> model = new TreeMap<>();
    
            List<byte[]> actionClassLoaderHashesBytes = getActionClassLoaderHashesBytes();
            if (actionClassLoaderHashesBytes != null) {
                List<String> actionClassloaderHashes = getActionClassLoaderHashesBytes().stream()
                    .map(hash -> hash == null ? null : HashCode.fromBytes(hash).toString())
                    .collect(Collectors.toList());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 11:36:42 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  2. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/api/internal/tasks/SnapshotTaskInputsBuildOperationType.java

             * Order corresponds to execution order of the actions.
             * Never empty.
             * May contain nulls (non Gradle managed classloader)
             */
            @Nullable
            List<byte[]> getActionClassLoaderHashesBytes();
    
            /**
             * The class names of each of the task's actions.
             * <p>
             * May contain duplicates.
             * Order corresponds to execution order of the actions.
    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