Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 270 for greetings (0.12 sec)

  1. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/CHelloWorldApp.groovy

                #ifdef FRENCH
                char* greeting() {
                    return "${HELLO_WORLD_FRENCH}";
                }
                #endif
                #ifdef CUSTOM
                char* greeting() {
                    return CUSTOM;
                }
                #endif
                void DLL_FUNC sayHello() {
                    #if defined(FRENCH) || defined(CUSTOM)
                    printf("%s\\n", greeting());
                    #else
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  2. src/html/template/example_test.go

    	// %22Fran+%26+Freddie%27s+Diner%2232%3Ctasty%40example.com%3E
    
    }
    
    func ExampleTemplate_Delims() {
    	const text = "<<.Greeting>> {{.Name}}"
    
    	data := struct {
    		Greeting string
    		Name     string
    	}{
    		Greeting: "Hello",
    		Name:     "Joe",
    	}
    
    	t := template.Must(template.New("tpl").Delims("<<", ">>").Parse(text))
    
    	err := t.Execute(os.Stdout, data)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 3.9K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/bootstrap/DaemonStartupCommunication.java

            //ibm vm 1.6 + windows XP gotchas:
            //we need to print something else to the stream after we print the daemon greeting.
            //without it, the parent hangs without receiving the message above (flushing does not help).
            LOGGER.debug("Completed writing the daemon greeting. Closing streams...");
            //btw. the ibm vm+winXP also has some issues detecting closed streams by the child but we handle this problem differently.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildTaskExcludeIntegrationTest.groovy

                plugins {
                    id("test.plugin")
                    id("java-library")
                }
            """
    
            expect:
            succeeds("greeting", ":build-logic:classes")
            2.times {
                succeeds("greeting", "-x", ":build-logic:classes")
                result.assertTaskNotExecuted(":build-logic:classes")
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 04 12:16:04 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/plugins/customPlugin/kotlin/java-gradle-plugin/test/java/org/gradle/GreetingPluginTest.java

    public class GreetingPluginTest {
        @Test
        public void greeterPluginAddsGreetingTaskToProject() {
            Project project = ProjectBuilder.builder().build();
            project.getPluginManager().apply("org.example.greeting");
    
            assertTrue(project.getTasks().getByName("hello") instanceof GreetingTask);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 488 bytes
    - Viewed (0)
  6. platforms/software/build-init/src/main/resources/org/gradle/buildinit/tasks/templates/plugin/groovy/spock/PluginTest.groovy.template

            given:
            def project = ProjectBuilder.builder().build()
    
            when:
            project.plugins.apply("${pluginId.value}")
    
            then:
            project.tasks.findByName("greeting") != null
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 19:39:09 UTC 2023
    - 537 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/plugins/greetingPlugin/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)
  8. platforms/documentation/docs/src/snippets/kotlinDsl/creating-tasks-project/groovy/build.gradle

    task greeting {
        doLast { println 'Hello, World!' }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 57 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/kotlinDsl/creating-tasks-project/kotlin/build.gradle.kts

    task("greeting") {
        doLast { println("Hello, World!") }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 61 bytes
    - Viewed (0)
  10. platforms/software/build-init/src/main/resources/org/gradle/buildinit/tasks/templates/plugin/kotlin/kotlintest/PluginTest.kt.template

            val project = ProjectBuilder.builder().build()
            project.plugins.apply("${pluginId.value}")
    
            // Verify the result
            assertNotNull(project.tasks.findByName("greeting"))
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 19:39:09 UTC 2023
    - 562 bytes
    - Viewed (0)
Back to top