Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 68 for greetings (0.24 sec)

  1. platforms/documentation/docs/src/snippets/plugins/greeting/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)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/BuildLogicChangeFixture.groovy

                        }
                    """
                    break
                case Language.KOTLIN:
                    writeSourceFile "kotlin", "${className}.kt", """
                        open class ${className} : ${DefaultTask.name}() {
                            @${TaskAction.name} fun greet() { println("${greeting}") }
                        }
                    """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  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. analysis/analysis-api/testData/components/compilerFacility/firPluginPrototypeMultiModule/annotationForFunctionOutOfCodeGenTarget2.txt

    public final class MainKt {
        // source: 'main.kt'
        public final static method Greeting(): java.lang.String
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Mar 26 07:06:11 UTC 2024
    - 115 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. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/gretty-example/src/main/webapp/index.jsp

    <jsp:useBean id="greeter" class="org.gradle.sample.Greeter"/>
    <html>
        <body>
            <p>${greeter.greeting}</p>
        </body>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 135 bytes
    - Viewed (0)
Back to top