Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 270 for greetings (0.17 sec)

  1. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/AbstractCompositeBuildTaskExecutionIntegrationTest.groovy

                import ${Plugin.name};
    
                public class PluginImpl implements Plugin<Project> {
                    public void apply(Project project) {
                        project.getTasks().register("greeting", task -> {
                            task.doLast(s -> System.out.println("Hello world"));
                        });
                    }
                }
            """
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 09 00:29:35 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/plugins/greeting/kotlin/settings.gradle.kts

    rootProject.name = "greeting"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 04:16:05 UTC 2024
    - 45 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/plugins/mappingExtensions/groovy/settings.gradle

    rootProject.name = 'greeting'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 04:16:05 UTC 2024
    - 45 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/plugins/mappingExtensions/kotlin/settings.gradle.kts

    rootProject.name = "greeting"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 04:16:05 UTC 2024
    - 45 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/plugins/greeting/tests/sanityCheck.sample.conf

    executable: gradle
    args: "hello -q"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 04:16:05 UTC 2024
    - 71 bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/CppHelloWorldApp.groovy

                #include "common.h"
    
                #ifdef FRENCH
                const char* greeting() {
                    return "${HELLO_WORLD_FRENCH}";
                }
                #endif
    
                void DLL_FUNC Greeter::sayHello() {
                    #ifdef FRENCH
                    std::cout << greeting() << std::endl;
                    #else
                    std::cout << "${HELLO_WORLD}" << std::endl;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/plugins/greetingPlugin/tests/sanityCheck.sample.conf

    executable: gradle
    args: "hello -q"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 04:16:05 UTC 2024
    - 71 bytes
    - Viewed (0)
  8. platforms/software/build-init/src/main/resources/org/gradle/buildinit/tasks/templates/swiftlibrary/Hello.swift.template

    ${fileComment.multilineComment}
    class Hello {
        public func greeting() -> String {
            return "Hello, World!"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 19:39:09 UTC 2023
    - 124 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/tutorial_using_tasks.adoc

    tasks.register("hello") {
        group = "Custom"
        description = "A lovely greeting task."
        doLast {
            println("Hello world!")
        }
    }
    ----
    
    Once the task is assigned to a group, it will be listed by `./gradlew tasks`:
    
    [source]
    ----
    $ ./gradlew tasks
    
    > Task :tasks
    
    Custom tasks
    ------------------
    hello - A lovely greeting task.
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 00:09:06 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/build-organization/gradle-plugin/kotlin/settings.gradle.kts

    rootProject.name = "gradle-plugin-in-java"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 71 bytes
    - Viewed (0)
Back to top