Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for getLoggingLevel (0.22 sec)

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

            this.additionalParameters = ImmutableList.copyOf(compileOptions.getAdditionalParameters());
            this.listFiles = compileOptions.isListFiles();
            this.loggingLevel = compileOptions.getLoggingLevel();
            this.loggingPhases = compileOptions.getLoggingPhases() == null ? null : ImmutableList.copyOf(compileOptions.getLoggingPhases());
    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/language/scala/tasks/BaseScalaCompileOptions.java

            this.listFiles = listFiles;
        }
    
        /**
         * Specifies the amount of logging.
         * Legal values:  none, verbose, debug
         */
        @Console
        public String getLoggingLevel() {
            return loggingLevel;
        }
    
        public void setLoggingLevel(String loggingLevel) {
            this.loggingLevel = loggingLevel;
        }
    
        /**
         * Phases of the compiler to log.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequest.java

    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 31K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/execution/MavenExecutionRequest.java

        TransferListener getTransferListener();
    
        // Logging
        MavenExecutionRequest setLoggingLevel(int loggingLevel);
    
        int getLoggingLevel();
    
        // Update snapshots
        MavenExecutionRequest setUpdateSnapshots(boolean updateSnapshots);
    
        boolean isUpdateSnapshots();
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Dec 20 13:03:57 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  5. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

                        new ExtensionConfigurationModule(extension, extensionSource));
            }
    
            customizeContainer(container);
    
            container.getLoggerManager().setThresholds(cliRequest.request.getLoggingLevel());
    
            eventSpyDispatcher = container.lookup(EventSpyDispatcher.class);
    
            DefaultEventSpyContext eventSpyContext = new DefaultEventSpyContext();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  6. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.language.scala.tasks.BaseScalaCompileOptions.getLoggingLevel()> 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