Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for SetVerbose (0.29 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-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)
  3. 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)
  4. 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)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolver.java

                    .setRepositories(session.toRepositories(remoteRepositories));
    
            RepositorySystemSession systemSession = session.getSession();
            if (request.getVerbose()) {
                systemSession = new DefaultRepositorySystemSession(systemSession)
                        .setConfigProperty(ConflictResolver.CONFIG_PROP_VERBOSE, true)
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 8.5K bytes
    - Viewed (0)
Back to top