Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 126 for Verbose (0.19 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/AntBuilder.java

         * priority (or more critical priority) will be logged at least at lifecycle in Gradle's logger.  If the Ant priority already maps to a
         * higher Gradle log level, it will continue to be logged at that level.  Acceptable values are "VERBOSE", "DEBUG", "INFO", "WARN",
         * and "ERROR".
         *
         * @param logLevel The Ant log level to map to the Gradle lifecycle log level
         */
        public void setLifecycleLogLevel(String logLevel) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 16 22:05:15 UTC 2022
    - 7K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/project/DefaultProjectDependenciesResolver.java

                    && session.getConfigProperties().get(DependencyManagerUtils.CONFIG_PROP_VERBOSE) == null) {
                DefaultRepositorySystemSession verbose = new DefaultRepositorySystemSession(session);
                verbose.setConfigProperty(DependencyManagerUtils.CONFIG_PROP_VERBOSE, Boolean.TRUE);
                session = verbose;
            }
    
            for (RepositorySessionDecorator decorator : decorators) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jun 12 07:49:10 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/integTest/groovy/org/gradle/integtests/fixtures/executer/InProcessGradleExecuterIntegrationTest.groovy

            stripped(outputs.stdOut).contains(result2.error)
            outputs.stdErr.contains("AFTER ERR")
    
            where:
            console << [ConsoleOutput.Plain, ConsoleOutput.Rich, ConsoleOutput.Verbose]
        }
    
        @ToBeFixedForConfigurationCache
        def "can write to System.out and System.err around build invocation with #console console when errors are written to stderr"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/vfs/VfsLogging.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.watch.vfs;
    
    public enum VfsLogging {
        NORMAL, VERBOSE
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:38:01 UTC 2023
    - 704 bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/VerboseConsoleBuildPhaseFunctionalTest.groovy

    import org.gradle.api.logging.configuration.ConsoleOutput
    
    
    class VerboseConsoleBuildPhaseFunctionalTest extends AbstractConsoleBuildPhaseFunctionalTest {
        ConsoleOutput consoleType = ConsoleOutput.Verbose
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 873 bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/VerboseConsoleConfigurationProgressFunctionalTest.groovy

    import org.gradle.api.logging.configuration.ConsoleOutput
    
    
    class VerboseConsoleConfigurationProgressFunctionalTest extends AbstractConsoleConfigurationProgressFunctionalTest {
        ConsoleOutput consoleType = ConsoleOutput.Verbose
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 895 bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/jvm/VerboseConsoleJvmTestLoggingFunctionalTest.groovy

    import org.gradle.api.logging.configuration.ConsoleOutput
    
    class VerboseConsoleJvmTestLoggingFunctionalTest extends AbstractConsoleJvmTestLoggingFunctionalTest {
        ConsoleOutput consoleType = ConsoleOutput.Verbose
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 884 bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/taskgrouping/verbose/AutoConsoleBuildSrcGroupedTaskFunctionalTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.logging.console.taskgrouping.verbose
    
    import org.gradle.api.logging.configuration.ConsoleOutput
    import org.gradle.internal.logging.console.taskgrouping.AbstractConsoleBuildSrcGroupedTaskFunctionalTest
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1010 bytes
    - Viewed (0)
  9. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/corefeature/VerboseTestOutputPerformanceTest.groovy

    )
    class VerboseTestOutputPerformanceTest extends AbstractCrossVersionPerformanceTest {
    
        def "cleanTest test with verbose test output"() {
            given:
            runner.tasksToRun = ['cleanTest', 'test']
            runner.args = ['-q']
    
            when:
            def result = runner.run()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. hack/boilerplate/boilerplate_test.py

        """
    
        def test_boilerplate(self):
            os.chdir("test/")
    
            class Args:
                filenames = []
                rootdir = "."
                boilerplate_dir = "../"
                verbose = True
    
            # capture stdout
            old_stdout = sys.stdout
            sys.stdout = StringIO()
    
            boilerplate.args = Args
            ret = boilerplate.main()
            self.assertEqual(ret, 0)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 24 09:05:26 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top