Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for isVerbose (0.11 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)
  3. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.api.tasks.compile.CompileOptions.isListFiles()> does not have raw return type assignable to org.gradle.api.provider.Property in (CompileOptions.java:0)
    Method <org.gradle.api.tasks.compile.CompileOptions.isVerbose()> does not have raw return type assignable to org.gradle.api.provider.Property in (CompileOptions.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)
  4. testing/architecture-test/src/changes/archunit-store/provider-task-properties.txt

    Method <org.gradle.api.tasks.javadoc.Javadoc.isFailOnError()> does not have raw return type assignable to org.gradle.api.provider.Property in (Javadoc.java:0)
    Method <org.gradle.api.tasks.javadoc.Javadoc.isVerbose()> does not have raw return type assignable to org.gradle.api.provider.Property in (Javadoc.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:33:20 UTC 2024
    - 51.8K bytes
    - Viewed (0)
Back to top