Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for isQuiet (0.24 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)
  6. test/fixedbugs/bug115.go

    // compile
    
    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    func isuint(i uint) { }
    
    func main() {
    	i := ^uint(0);
    	isuint(i);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 18 21:15:42 UTC 2012
    - 255 bytes
    - Viewed (0)
  7. src/text/template/parse/node.go

    			if !n.IsInt && float64(int64(f)) == f {
    				n.IsInt = true
    				n.Int64 = int64(f)
    			}
    			if !n.IsUint && float64(uint64(f)) == f {
    				n.IsUint = true
    				n.Uint64 = uint64(f)
    			}
    		}
    	}
    	if !n.IsInt && !n.IsUint && !n.IsFloat {
    		return nil, fmt.Errorf("illegal number syntax: %q", text)
    	}
    	return n, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNGTestResultProcessorAdapter.java

        private final Clock clock;
        private final Object lock = new Object();
        private final Map<ITestContext, Object> testId = new HashMap<ITestContext, Object>();
        private final Map<ISuite, Object> suiteId = new HashMap<ISuite, Object>();
        private final Map<XmlTest, Object> xmlTestIds = new HashMap<XmlTest, Object>();
        private final Map<ITestClass, TestClassInfo> testClassInfo = new HashMap<ITestClass, TestClassInfo>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  9. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNGTestClassProcessor.java

    import org.gradle.internal.time.Clock;
    import org.gradle.util.internal.CollectionUtils;
    import org.gradle.util.internal.GFileUtils;
    import org.testng.IMethodInstance;
    import org.testng.IMethodInterceptor;
    import org.testng.ISuite;
    import org.testng.ITestContext;
    import org.testng.ITestListener;
    import org.testng.TestNG;
    
    import java.io.File;
    import java.util.ArrayList;
    import java.util.LinkedList;
    import java.util.List;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 21:25:59 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/junit/JUnitTestClassExecutor.java

                // For test suites (including suite-like custom Runners), if the test suite class
                // matches the filter, run the entire suite instead of filtering away its contents.
                if (!runner.getDescription().isSuite() || !matcher.matchesTest(testClassName, null)) {
                    filters.add(new MethodNameFilter(matcher));
                }
            }
    
            if (runner instanceof Filterable) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 7.4K bytes
    - Viewed (0)
Back to top