Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getAllCopyActions (0.14 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/file/copy/CopySpecResolver.java

        FileTree getSource();
    
        /**
         * Returns the source files of this copy spec and all of its children.
         */
        FileTree getAllSource();
    
        Collection<? extends Action<? super FileCopyDetails>> getAllCopyActions();
    
        List<String> getAllIncludes();
    
        List<String> getAllExcludes();
    
        List<Spec<FileTreeElement>> getAllIncludeSpecs();
    
        List<Spec<FileTreeElement>> getAllExcludeSpecs();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 13:43:13 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/file/copy/DefaultCopySpec.java

            @Override
            public Collection<? extends Action<? super FileCopyDetails>> getAllCopyActions() {
                if (parentResolver == null) {
                    return copyActions;
                }
                List<Action<? super FileCopyDetails>> allActions = new ArrayList<>();
                allActions.addAll(parentResolver.getAllCopyActions());
                allActions.addAll(copyActions);
                return allActions;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:25:10 UTC 2024
    - 33.6K bytes
    - Viewed (0)
Back to top