Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for NormalizingGroovyCompiler (0.4 sec)

  1. platforms/jvm/language-groovy/src/main/java/org/gradle/api/internal/tasks/compile/NormalizingGroovyCompiler.java

     */
    public class NormalizingGroovyCompiler implements Compiler<GroovyJavaJointCompileSpec> {
        private static final Logger LOGGER = Logging.getLogger(NormalizingGroovyCompiler.class);
        private final Compiler<GroovyJavaJointCompileSpec> delegate;
    
        public NormalizingGroovyCompiler(Compiler<GroovyJavaJointCompileSpec> delegate) {
            this.delegate = delegate;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. platforms/jvm/language-groovy/src/main/java/org/gradle/api/internal/tasks/compile/GroovyCompilerFactory.java

            return new AnnotationProcessorDiscoveringCompiler<>(new NormalizingGroovyCompiler(groovyCompiler), processorDetector);
        }
    
        public static class DaemonSideCompiler implements Compiler<GroovyJavaJointCompileSpec> {
            private final ProjectLayout projectLayout;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top