Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for withDebugLogging (0.32 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDebugLogIntegrationTest.groovy

                    task ok { doLast { println('ok!') } }
                }
            """
    
            when:
            switch (enablement) {
                case CCDebugEnablement.DEBUG_LOG_LEVEL:
                    withDebugLogging()
                    break
                case CCDebugEnablement.SYSTEM_PROPERTY:
                    executer.withArgument "-D$ConfigurationCacheDebugOption.PROPERTY_NAME=true"
                    break
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AbstractIntegrationSpec.groovy

            succeeds(tasks.toArray(new String[tasks.size()]))
        }
    
        protected GradleExecuter args(String... args) {
            executer.withArguments(args)
        }
    
        protected GradleExecuter withDebugLogging() {
            executer.withArgument("-d")
        }
    
        protected ExecutionResult succeeds(String... tasks) {
            resetProblemApiCheck()
    
            result = executer.withTasks(*tasks).run()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 32.9K bytes
    - Viewed (0)
Back to top