Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for SetVerbose (0.13 sec)

  1. platforms/jvm/language-java/src/test/groovy/org/gradle/api/tasks/javadoc/JavadocTest.groovy

            then:
            1 * tool.execute(_)
        }
    
        def "execution with additional options uses the tool"() {
            task.getJavadocTool().set(tool)
            task.setMaxMemory("max-memory")
            task.setVerbose(true)
    
            when:
            execute(task)
    
            then:
            1 * tool.execute(_)
        }
    
        def "fails if custom executable does not exist"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. 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)
  3. platforms/jvm/language-groovy/src/main/java/org/gradle/api/internal/tasks/compile/MinimalGroovyCompileOptions.java

        }
    
        public void setFailOnError(boolean failOnError) {
            this.failOnError = failOnError;
        }
    
        public boolean isVerbose() {
            return verbose;
        }
    
        public void setVerbose(boolean verbose) {
            this.verbose = verbose;
        }
    
        public boolean isListFiles() {
            return listFiles;
        }
    
        public void setListFiles(boolean listFiles) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/MinimalJavaCompileOptions.java

        }
    
        public void setListFiles(boolean listFiles) {
            this.listFiles = listFiles;
        }
    
        public boolean isVerbose() {
            return verbose;
        }
    
        public void setVerbose(boolean verbose) {
            this.verbose = verbose;
        }
    
        public boolean isWarnings() {
            return warnings;
        }
    
        public void setWarnings(boolean warnings) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  5. 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)
  6. tools/bug-report/pkg/content/content.go

    	Container      string
    	KubeConfig     string
    	KubeContext    string
    }
    
    func (p *Params) SetDryRun(dryRun bool) *Params {
    	out := *p
    	out.DryRun = dryRun
    	return &out
    }
    
    func (p *Params) SetVerbose(verbose bool) *Params {
    	out := *p
    	out.Verbose = verbose
    	return &out
    }
    
    func (p *Params) SetNamespace(namespace string) *Params {
    	out := *p
    	out.Namespace = namespace
    	return &out
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 05 18:47:53 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top