Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for IsQuiet (0.08 sec)

  1. 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: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 19 10:32:14 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/DaemonGradleExecuter.java

        }
    
        @Override
        protected List<String> getAllArgs() {
            List<String> args = new ArrayList<String>(super.getAllArgs());
            if(!isQuiet() && isAllowExtraLogging()) {
                if (!containsLoggingArgument(args)) {
                    args.add(0, "-i");
                }
            }
    
            // Workaround for https://issues.gradle.org/browse/GRADLE-2625
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. 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 Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/initialization/ConfigurationCacheStartParameter.kt

                .filterKeys { !Workarounds.isIgnoredStartParameterProperty(it) }
    
        val configurationCacheLogLevel: LogLevel
            get() = modelParameters.configurationCacheLogLevel
    
        val isQuiet: Boolean
            get() = startParameter.isConfigurationCacheQuiet
    
        val isIgnoreInputsInTaskGraphSerialization: Boolean
            get() = startParameter.isConfigurationCacheIgnoreInputsInTaskGraphSerialization
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

            this.defaultLocale = defaultLocale;
            return this;
        }
    
        public Locale getDefaultLocale() {
            return defaultLocale;
        }
    
        public boolean isQuiet() {
            return quiet;
        }
    
        @Override
        public GradleExecuter withQuietLogging() {
            quiet = true;
            return this;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top