Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for isVerbose (0.35 sec)

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

            File destinationDir = spec.getDestinationDir();
            if (destinationDir != null) {
                args.add("-d");
                args.add(destinationDir.getPath());
            }
            if (compileOptions.isVerbose()) {
                args.add("-verbose");
            }
            if (compileOptions.isDeprecation()) {
                args.add("-deprecation");
            }
            if (!compileOptions.isWarnings()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:08 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  2. platforms/jvm/language-jvm/src/main/java/org/gradle/api/tasks/compile/CompileOptions.java

            this.failOnError = failOnError;
        }
    
        /**
         * Tells whether to produce verbose output. Defaults to {@code false}.
         */
        @Console
        public boolean isVerbose() {
            return verbose;
        }
    
        /**
         * Sets whether to produce verbose output. Defaults to {@code false}.
         */
        public void setVerbose(boolean verbose) {
            this.verbose = verbose;
    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