Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for createTasksFor (0.22 sec)

  1. platforms/software/platform-base/src/main/java/org/gradle/language/base/internal/model/BinarySourceTransformations.java

            this.tasks = tasks;
            this.prioritizedTransforms = prioritize(transforms);
            this.serviceRegistry = serviceRegistry;
        }
    
        public void createTasksFor(BinarySpecInternal binary) {
            Set<LanguageSourceSetInternal> sourceSetsToCompile = getSourcesToCompile(binary);
            for (LanguageTransform<?, ?> languageTransform : prioritizedTransforms) {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  2. platforms/software/platform-base/src/main/java/org/gradle/language/base/plugins/ComponentModelBasePlugin.java

                for (BinarySpecInternal binary : binaries) {
                    if (binary.isLegacyBinary()) {
                        continue;
                    }
    
                    transformations.createTasksFor(binary);
                }
            }
    
            @Model
            public ProjectLayout projectLayout(ProjectIdentifier projectIdentifier, @Path("buildDir") File buildDir) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 14K bytes
    - Viewed (0)
Back to top