Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getFilesToSign (0.11 sec)

  1. platforms/software/signing/src/main/java/org/gradle/plugins/signing/SignOperation.java

            }
        }
    
        /**
         * All of the files that will be signed by this operation.
         */
        public FileCollection getFilesToSign() {
            return newSignatureFileCollection(input -> input.getToSign());
        }
    
        /**
         * All of the signature files that will be generated by this operation.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  2. platforms/software/signing/src/main/java/org/gradle/plugins/signing/Sign.java

            throw new UnsupportedOperationException();
        }
    
        /**
         * All of the files that will be signed by this task.
         */
        @Internal
        public FileCollection getFilesToSign() {
            return getFileCollectionFactory().fixed("Task \'" + getPath() + "\' files to sign",
                Lists.newLinkedList(Iterables.filter(Iterables.transform(getSignatures(), Signature::getToSign), Predicates.notNull())));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 13.2K bytes
    - Viewed (0)
Back to top