Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 135 for Verbose (0.83 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/console/VerboseConsoleExecOutputIntegrationTest.groovy

    package org.gradle.api.tasks.console
    
    import org.gradle.api.logging.configuration.ConsoleOutput
    
    class VerboseConsoleExecOutputIntegrationTest extends AbstractExecOutputIntegrationTest {
        ConsoleOutput consoleType = ConsoleOutput.Verbose
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 15 17:09:38 UTC 2018
    - 860 bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. subprojects/core/src/test/groovy/org/gradle/api/internal/project/DefaultAntBuilderTest.groovy

            then:
            1 * loggingAdapter.setLifecycleLogLevel(enumLevel)
    
            where:
            stringLevel | enumLevel
            "DEBUG"     | AntMessagePriority.DEBUG
            "VERBOSE"   | AntMessagePriority.VERBOSE
            "INFO"      | AntMessagePriority.INFO
            "WARN"      | AntMessagePriority.WARN
            "ERROR"     | AntMessagePriority.ERROR
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 11 16:17:40 UTC 2022
    - 7.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/dsl/org.gradle.api.tasks.compile.GroovyCompileOptions.xml

                    </tr>
                </thead>
                <tr>
                    <td>failOnError</td>
                    <td><literal>true</literal></td>
                </tr>
                <tr>
                    <td>verbose</td>
                    <td><literal>false</literal></td>
                </tr>
                <tr>
                    <td>listFiles</td>
                    <td><literal>false</literal></td>
                </tr>
                <tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. hack/test-integration.sh

    echo "$0 has been replaced by 'make test-integration'"
    echo
    echo "The following invocation will run all integration tests: "
    echo '    make test-integration'
    echo
    echo "The following invocation will run a specific test with the verbose flag set: "
    echo '    make test-integration WHAT=./test/integration/pods GOFLAGS="-v" KUBE_TEST_ARGS="-run ^TestPodUpdateActiveDeadlineSeconds$"'
    echo
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 28 00:27:40 UTC 2020
    - 1.2K bytes
    - Viewed (0)
Back to top