Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 407 for xHello (0.11 sec)

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

                ${server.callFromBuild('settings')}
                include "a", "b", "c", "d"
            """
            buildFile << """
                ${server.callFromBuild('root-build-script')}
                task hello {
                    dependsOn {
                        // call during task graph calculation
                        ${server.callFromBuild('task-graph')}
                        null
                    }
                    doFirst {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 07:25:15 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileIntegrationTest.groovy

                }
            '''
            file('src/test/java/TextTest.java') << '''
                import org.junit.Test;
                import static org.junit.Assert.*;
    
                public class TextTest {
                    @Test
                    public void testGreeting() {
                        assertEquals("Hello, Cedric", Text.sayHello("cedric"));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:39 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  3. docs/en/docs/advanced/settings.md

        // Then you could use it with other programs, like
        $ echo "Hello $MY_NAME"
    
        Hello Wade Wilson
        ```
    
        </div>
    
    === "Windows PowerShell"
    
        <div class="termy">
    
        ```console
        // Create an env var MY_NAME
        $ $Env:MY_NAME = "Wade Wilson"
    
        // Use it with other programs, like
        $ echo "Hello $Env:MY_NAME"
    
        Hello Wade Wilson
        ```
    
        </div>
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  4. src/net/mail/message_test.go

    		},
    		{
    			&Address{Name: "=??Q?x?=", Address: "hello@world.com"},
    			`"=??Q?x?=" <hello@world.com>`,
    		},
    		{
    			&Address{Name: "=?hello", Address: "hello@world.com"},
    			`"=?hello" <hello@world.com>`,
    		},
    		{
    			&Address{Name: "world?=", Address: "hello@world.com"},
    			`"world?=" <hello@world.com>`,
    		},
    		{
    			// should q-encode even for invalid utf-8.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  5. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/WatchedDirectoriesFileSystemWatchingIntegrationTest.groovy

            taskSourceFile.text = taskWithGreeting("Hello from original task!")
    
            buildFile << """
                task hello(type: PrinterTask)
            """
    
            when:
            withWatchFs().run "hello", "--info"
            then:
            outputContains "Hello from original task!"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/GradleKotlinDslIntegrationTest.kt

                assertThat(
                    build("-q", "hello").output,
                    containsString("Hello!")
                )
    
                server.stop()
    
                assertThat(
                    build("--offline", "-q", "hello").output,
                    containsString("Hello!")
                )
            }
        }
    
        @Test
        @LeaksFileHandles
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 18:26:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  7. src/net/smtp/smtp_test.go

    		}
    		defer c.Close()
    		c.localName = "customhost"
    		err = nil
    
    		switch i {
    		case 0:
    			err = c.Hello("hostinjection>\n\rDATA\r\nInjected message body\r\n.\r\nQUIT\r\n")
    			if err == nil {
    				t.Errorf("Expected Hello to be rejected due to a message injection attempt")
    			}
    			err = c.Hello("customhost")
    		case 1:
    			err = c.StartTLS(nil)
    			if err.Error() == "502 Not implemented" {
    				err = nil
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  8. src/io/multi_test.go

    	slice := []Writer{&buf}
    	w := MultiWriter(slice...)
    	slice[0] = nil
    	n, err := w.Write([]byte("hello world"))
    	if err != nil || n != 11 {
    		t.Errorf("Write(`hello world`) = %d, %v, want 11, nil", n, err)
    	}
    	if buf.String() != "hello world" {
    		t.Errorf("buf.String() = %q, want %q", buf.String(), "hello world")
    	}
    }
    
    // readerFunc is a Reader implemented by the underlying func.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:49:32 UTC 2022
    - 10K bytes
    - Viewed (0)
  9. doc/go_mem.html

    <p>
    For example, in this program:
    </p>
    
    <pre>
    var a string
    
    func f() {
    	print(a)
    }
    
    func hello() {
    	a = "hello, world"
    	go f()
    }
    </pre>
    
    <p>
    calling <code>hello</code> will print <code>"hello, world"</code>
    at some point in the future (perhaps after <code>hello</code> has returned).
    </p>
    
    <h3 id="goexit">Goroutine destruction</h3>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 15:54:42 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  10. src/encoding/xml/xml_test.go

    		ok   bool
    	}{
    		{encodeXMLNS1, `<Test xmlns="http://example.com/ns"><Body>hello world</Body></Test>`, true},
    		{encodeXMLNS2, `<Test><body xmlns="http://example.com/ns">hello world</body></Test>`, true},
    		{encodeXMLNS3, `<Test xmlns="http://example.com/ns"><Body>hello world</Body></Test>`, true},
    		{encodeXMLNS4, `<Test xmlns="http://example.com/ns"><Body>hello world</Body></Test>`, false},
    	}
    
    	for i, tc := range testCases {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 36.9K bytes
    - Viewed (0)
Back to top