Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getLoggingPhases (0.13 sec)

  1. platforms/jvm/scala/src/main/java/org/gradle/api/internal/tasks/scala/MinimalScalaCompileOptions.java

            this.listFiles = compileOptions.isListFiles();
            this.loggingLevel = compileOptions.getLoggingLevel();
            this.loggingPhases = compileOptions.getLoggingPhases() == null ? null : ImmutableList.copyOf(compileOptions.getLoggingPhases());
            this.forkOptions = new MinimalScalaCompilerDaemonForkOptions(compileOptions.getForkOptions());
            this.incrementalOptions = compileOptions.getIncrementalOptions();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  2. platforms/jvm/scala/src/main/java/org/gradle/api/internal/tasks/scala/ZincScalaCompilerArgumentsGenerator.java

            addFlag("-verbose", "verbose".equals(options.getDebugLevel()), result);
            addFlag("-Ydebug", "debug".equals(options.getDebugLevel()), result);
            if (options.getLoggingPhases() != null) {
                for (String phase : options.getLoggingPhases()) {
                    addConcatenatedOption("-Ylog:", phase, result);
                }
            }
            if (options.getAdditionalParameters() != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. platforms/jvm/scala/src/main/java/org/gradle/language/scala/tasks/BaseScalaCompileOptions.java

         *               lambdalift, flatten, constructors, mixin, icode, jvm, terminal.
         */
        @Console
        public List<String> getLoggingPhases() {
            return loggingPhases;
        }
    
        public void setLoggingPhases(List<String> loggingPhases) {
            this.loggingPhases = loggingPhases;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  4. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.language.scala.tasks.BaseScalaCompileOptions.getLoggingPhases()> does not have raw return type assignable to org.gradle.api.provider.Property in (BaseScalaCompileOptions.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 160.5K bytes
    - Viewed (0)
Back to top