Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 270 for greetings (0.52 sec)

  1. platforms/documentation/docs/src/snippets/mavenMigration/profiles/tests/greeting-test.out

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 14 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/mavenMigration/profiles/tests/greeting-default.out

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7 bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildOptionsIntegrationTest.groovy

            def runGreetWith = { String greeting ->
                inDirectory('root')
                switch (systemPropertySource) {
                    case SystemPropertySource.COMMAND_LINE:
                        return configurationCacheRun('greet', "-Dgreeting=$greeting")
                    case SystemPropertySource.GRADLE_PROPERTIES:
                        file('root/gradle.properties').text = "systemProp.greeting=$greeting"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 28K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/providers/connectProperties/kotlin/build.gradle.kts

    // Create the greeting task
    tasks.register<Greeting>("greeting") {
        // Attach the greeting from the project extension
        // Note that the values of the project extension have not been configured yet
        greeting = messages.greeting
    }
    
    messages.apply {
        // Configure the greeting on the extension
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildSrcIntegrationTest.groovy

            buildFile << """
                task greeting(type: CustomTask) {
                    greeting = 'yo configuration cache'
                }
            """
            def configurationCache = newConfigurationCacheFixture()
    
            when:
            configurationCacheRun("greeting")
    
            then:
            result.assertTaskExecuted(":buildSrc:jar")
            result.assertTaskExecuted(":greeting")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/build-organization/gradle-plugin/tests/check.out

    > Task :greeting-plugin:compileJava
    > Task :greeting-plugin:pluginDescriptors
    > Task :greeting-plugin:processResources
    > Task :greeting-plugin:classes
    > Task :greeting-plugin:compileFunctionalTestJava
    > Task :greeting-plugin:processFunctionalTestResources NO-SOURCE
    > Task :greeting-plugin:functionalTestClasses
    > Task :greeting-plugin:pluginUnderTestMetadata
    > Task :greeting-plugin:functionalTest
    > Task :greeting-plugin:compileTestJava
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 530 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/providers/connectProperties/groovy/build.gradle

    // Create the greeting task
    tasks.register("greeting", Greeting) {
        // Attach the greeting from the project extension
        // Note that the values of the project extension have not been configured yet
        greeting = messages.greeting
    }
    
    messages {
        // Configure the greeting on the extension
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/build-organization/composite-builds/plugin-dev/README.adoc

    :greeting-plugin:compileJava
    :greeting-plugin:pluginDescriptors
    :greeting-plugin:processResources
    :greeting-plugin:classes
    :greeting-plugin:jar
    :my-greeting-app:greeting
    Hi Bob!!!
    ----
    
    == Plugin changes can be tested
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  9. src/html/template/content_test.go

    		CSS(`a[href =~ "//example.com"]#foo`),
    		HTML(`Hello, <b>World</b> &amp;tc!`),
    		HTMLAttr(` dir="ltr"`),
    		JS(`c && alert("Hello, World!");`),
    		JSStr(`Hello, World & O'Reilly\u0021`),
    		URL(`greeting=H%69,&addressee=(World)`),
    		Srcset(`greeting=H%69,&addressee=(World) 2x, https://golang.org/favicon.ico 500.5w`),
    		URL(`,foo/,`),
    	}
    
    	// For each content sensitive escaper, see how it does on
    	// each of the typed strings above.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:48:16 UTC 2022
    - 13.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/providers/propertyAndProvider/kotlin/build.gradle.kts

    abstract class Greeting : DefaultTask() { // <1>
        @get:Input
        abstract val greeting: Property<String> // <2>
    
        @Internal
        val message: Provider<String> = greeting.map { it + " from Gradle" } // <3>
    
        @TaskAction
        fun printMessage() {
            logger.quiet(message.get())
        }
    }
    
    tasks.register<Greeting>("greeting") {
        greeting.set("Hi") // <4>
        greeting = "Hi" // <5>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 395 bytes
    - Viewed (0)
Back to top