Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getOutputPropertyNames (0.19 sec)

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

             * The names of the output properties.
             * <p>
             * No duplicate values.
             * Ordered lexicographically.
             * Never empty.
             */
            @Nullable
            List<String> getOutputPropertyNames();
        }
    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

                    .map(ImplementationSnapshot::getClassIdentifier)
                    .collect(Collectors.toList())
                )
                .orElse(null);
        }
    
        @Nullable
        public List<String> getOutputPropertyNames() {
            return getBeforeExecutionState()
                .map(BeforeExecutionState::getOutputFileLocationSnapshots)
                .map(ImmutableSortedMap::keySet)
    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

             * <p>
             * No duplicate values.
             * Ordered lexicographically.
             * Never empty.
             */
            @Nullable
            List<String> getOutputPropertyNames();
    
        }
    
        private SnapshotTaskInputsBuildOperationType() {
        }
    
    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