Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for byeWorld (0.11 sec)

  1. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/taskgrouping/AbstractConsoleGradleBuildGroupedTaskFunctionalTest.groovy

                    tasks = ['important']
                }
    
                task byeWorld {
                    mustRunAfter otherBuild
    
                    doLast {
                        logger.quiet '$BYE_WORLD_MESSAGE'
                    }
                }
    
                task $AGGREGATE_TASK_NAME {
                    dependsOn helloWorld, otherBuild, byeWorld
                }
            """
        }
    
        static String externalBuildScript() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/taskgrouping/AbstractConsoleVerboseBasicFunctionalTest.groovy

                    }
                }
                task byeWorld {
                    doLast {
                        logger.quiet '$byeWorldMessage'
                    }
                }
                
                task silence {}
                
                task all {
                    dependsOn helloWorld, byeWorld, silence
                }
            """
            when:
            succeeds('all')
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/taskgrouping/AbstractConsoleCompositeBuildGroupedTaskFunctionalTest.groovy

                    dependencies {
                        implementation 'org.gradle:projectA:1.0'
                    }
    
                    task byeWorld {
                        doLast {
                            logger.quiet 'Bye world'
                        }
                    }
    
                    compileJava.dependsOn byeWorld
                """
            file("$PROJECT_A_NAME/settings.gradle") << """
                rootProject.name = '$PROJECT_A_NAME'
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/taskgrouping/AbstractConsoleBuildSrcGroupedTaskFunctionalTest.groovy

            buildFile << """
                task byeWorld {
                    doLast {
                        logger.quiet '$BYE_WORLD_MESSAGE'
                    }
                }
            """
    
            when:
            succeeds('byeWorld')
    
            then:
            result.groupedOutput.task(':buildSrc:helloWorld').output.contains(HELLO_WORLD_MESSAGE)
            result.groupedOutput.task(':byeWorld').output.contains(BYE_WORLD_MESSAGE)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/GradleRunnerResultIntegrationTest.groovy

            buildFile << """
                task helloWorld
    
                task byeWorld {
                    onlyIf {
                        false
                    }
                }
            """
    
            when:
            def result = runner('helloWorld', 'byeWorld')
                .build()
    
            then:
            result.tasks.collect { it.path } == [':helloWorld', ':byeWorld']
            result.taskPaths(SUCCESS) == []
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/logging/GroupedOutputFixtureTest.groovy

    \u001B[1m> Task :byeWorld\u001B[m\u001B[0K
    Bye world
    
    
    \u001B[32;1mBUILD SUCCESSFUL\u001B[0;39m in 0s
    1 actionable task: 1 executed
    \u001B[2K"""
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 28.3K bytes
    - Viewed (0)
Back to top