Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for SetVerbose (0.17 sec)

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

         */
        public void setTitle(@Nullable String title) {
            this.title = title;
        }
    
        /**
         * Returns whether Javadoc generation is accompanied by verbose output.
         *
         * @see #setVerbose(boolean)
         */
        @Internal
        public boolean isVerbose() {
            return options.isVerbose();
        }
    
        /**
    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/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNGTestClassProcessor.java

                setThreadPoolFactoryClass(testNg, spec.getThreadPoolFactoryClass());
            }
    
            testNg.setUseDefaultListeners(spec.getUseDefaultListeners());
            testNg.setVerbose(0);
            testNg.setGroups(CollectionUtils.join(",", spec.getIncludeGroups()));
            testNg.setExcludedGroups(CollectionUtils.join(",", spec.getExcludeGroups()));
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 21:25:59 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  3. platforms/jvm/language-groovy/src/main/java/org/gradle/api/tasks/compile/GroovyCompileOptions.java

         */
        @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;
        }
    
        /**
         * Tells whether to print which source files are to be compiled. Defaults to {@code false}.
         */
        @Console
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  4. platforms/jvm/language-groovy/src/main/java/org/gradle/api/internal/tasks/compile/ApiGroovyCompiler.java

            GroovySystemLoader compilerGroovyLoader = groovySystemLoaderFactory.forClassLoader(compilerClassLoader);
    
            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)
  5. platforms/jvm/language-jvm/src/main/java/org/gradle/api/tasks/compile/CompileOptions.java

         */
        @Console
        public boolean isVerbose() {
            return verbose;
        }
    
        /**
         * Sets whether to produce verbose output. Defaults to {@code false}.
         */
        public void setVerbose(boolean verbose) {
            this.verbose = verbose;
        }
    
        /**
         * Tells whether to log the files to be compiled. Defaults to {@code false}.
         */
        @Console
        public boolean isListFiles() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  6. tools/bug-report/pkg/bugreport/bugreport.go

    	getFromCluster(content.GetClusterInfo, params, clusterDir, &mandatoryWg)
    	getFromCluster(content.GetNodeInfo, params, clusterDir, &mandatoryWg)
    	getFromCluster(content.GetSecrets, params.SetVerbose(config.FullSecrets), clusterDir, &mandatoryWg)
    	getFromCluster(content.GetPodInfo, params.SetIstioNamespace(config.IstioNamespace), clusterDir, &mandatoryWg)
    
    	common.LogAndPrintf("\nFetching CNI logs from cluster.\n\n")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 20:57:29 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolverRequest.java

        Optional<DependencyCoordinate> getRoot();
    
        @Nonnull
        Collection<DependencyCoordinate> getDependencies();
    
        @Nonnull
        Collection<DependencyCoordinate> getManagedDependencies();
    
        boolean getVerbose();
    
        @Nullable
        PathScope getPathScope();
    
        /**
         * Returns a filter for the types of path (class-path, module-path, …) accepted by the tool.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 16.9K bytes
    - Viewed (0)
Back to top