Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for isQuiet (0.09 sec)

  1. compat/maven-embedder/src/main/java/org/apache/maven/cli/CliRequest.java

        }
    
        public File getMultiModuleProjectDirectory() {
            return multiModuleProjectDirectory;
        }
    
        public boolean isVerbose() {
            return verbose;
        }
    
        public boolean isQuiet() {
            return quiet;
        }
    
        public boolean isShowErrors() {
            return showErrors;
        }
    
        public Properties getUserProperties() {
            return userProperties;
        }
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. internal/logger/logger.go

    func EnableAnonymous() {
    	anonFlag = true
    }
    
    // IsJSON - returns true if jsonFlag is true
    func IsJSON() bool {
    	return jsonFlag
    }
    
    // IsQuiet - returns true if quietFlag is true
    func IsQuiet() bool {
    	return quietFlag
    }
    
    // RegisterError registers the specified rendering function. This latter
    // will be called for a pretty rendering of fatal errors.
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Aug 22 09:43:48 UTC 2024
    - 12.4K bytes
    - Viewed (0)
Back to top