Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for setCompilerArgs (0.13 sec)

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

            return hasExtension(input, ".java");
        }
    
        private void resolveNonStringsInCompilerArgs(JavaCompileSpec spec) {
            // in particular, this is about GStrings
            spec.getCompileOptions().setCompilerArgs(CollectionUtils.toStringList(spec.getCompileOptions().getCompilerArgs()));
        }
    
        private void logSourceFiles(JavaCompileSpec spec) {
            if (!spec.getCompileOptions().isListFiles()) {
                return;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 4K bytes
    - Viewed (0)
  2. platforms/jvm/scala/src/main/java/org/gradle/api/internal/tasks/scala/NormalizingScalaCompiler.java

            }
        }
    
        private void resolveNonStringsInCompilerArgs(ScalaJavaJointCompileSpec spec) {
            // in particular, this is about GStrings
            spec.getCompileOptions().setCompilerArgs(CollectionUtils.toStringList(spec.getCompileOptions().getCompilerArgs()));
        }
    
        private void logSourceFiles(ScalaJavaJointCompileSpec spec) {
            if (!spec.getScalaCompileOptions().isListFiles()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  3. platforms/jvm/language-groovy/src/main/java/org/gradle/api/internal/tasks/compile/NormalizingGroovyCompiler.java

        }
    
        private void resolveNonStringsInCompilerArgs(GroovyJavaJointCompileSpec spec) {
            // in particular, this is about GStrings
            spec.getCompileOptions().setCompilerArgs(CollectionUtils.toStringList(spec.getCompileOptions().getCompilerArgs()));
        }
    
        private void logSourceFiles(GroovyJavaJointCompileSpec spec) {
            if (!spec.getGroovyCompileOptions().isListFiles()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/MinimalJavaCompileOptions.java

        public void setSourcepath(List<File> sourcepath) {
            this.sourcepath = sourcepath;
        }
    
        public List<String> getCompilerArgs() {
            return compilerArgs;
        }
    
        public void setCompilerArgs(List<String> compilerArgs) {
            this.compilerArgs = compilerArgs;
        }
    
        @Nullable
        public String getEncoding() {
            return encoding;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  5. platforms/jvm/language-jvm/src/main/java/org/gradle/api/tasks/compile/CompileOptions.java

            return compilerArgumentProviders;
        }
    
        /**
         * Sets any additional arguments to be passed to the compiler.
         * Defaults to the empty list.
         */
        public void setCompilerArgs(List<String> compilerArgs) {
            this.compilerArgs = compilerArgs;
        }
    
        /**
         * Convenience method to set {@link ForkOptions} with named parameter syntax.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 19.2K bytes
    - Viewed (0)
Back to top