Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. platforms/jvm/language-java/src/main/java/org/gradle/api/tasks/javadoc/Javadoc.java

        }
    
        /**
         * Returns whether Javadoc generation is accompanied by verbose output.
         *
         * @see #setVerbose(boolean)
         */
        @Internal
        public boolean isVerbose() {
            return options.isVerbose();
        }
    
        /**
         * Sets whether Javadoc generation is accompanied by verbose output or not. The verbose output is done via println
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  2. 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)
  3. platforms/jvm/language-java/src/test/groovy/org/gradle/external/javadoc/StandardJavadocDocletOptionsTest.java

        }
    
        @Test
        public void testVerboseOutputLevel() {
            assertEquals(options, options.verbose());
            assertEquals(JavadocOutputLevel.VERBOSE, options.getOutputLevel());
            assertTrue(options.isVerbose());
        }
    
        @Test
        public void testFluentBreakIterator() {
            assertEquals(options, options.breakIterator());
            assertTrue(options.isBreakIterator());
        }
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  4. platforms/jvm/language-groovy/src/main/java/org/gradle/api/tasks/compile/GroovyCompileOptions.java

            this.failOnError = failOnError;
        }
    
        /**
         * Tells whether to turn on verbose output. Defaults to {@code false}.
         */
        @Console
        public boolean isVerbose() {
            return verbose;
        }
    
        /**
         * Sets whether to turn on 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: Mon Dec 11 13:37:56 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  5. platforms/jvm/language-groovy/src/main/java/org/gradle/api/internal/tasks/compile/ApiGroovyCompiler.java

            CompilerConfiguration configuration = new CompilerConfiguration();
            configuration.setVerbose(spec.getGroovyCompileOptions().isVerbose());
            configuration.setSourceEncoding(spec.getGroovyCompileOptions().getEncoding());
            configuration.setTargetBytecode(spec.getTargetCompatibility());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 20.7K bytes
    - Viewed (0)
  6. 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)
  7. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/CoreJavadocOptions.java

        }
    
        @Override
        public MinimalJavadocOptions verbose() {
            setOutputLevel(JavadocOutputLevel.VERBOSE);
            return this;
        }
    
        @Override
        public boolean isVerbose() {
            return outputLevel.getValue() == JavadocOutputLevel.VERBOSE;
        }
    
        @Override
        public MinimalJavadocOptions quiet() {
            setOutputLevel(JavadocOutputLevel.QUIET);
            return this;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 28.2K bytes
    - Viewed (0)
Back to top