Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for goodbye (0.28 sec)

  1. platforms/software/version-control/src/test/groovy/org/gradle/vcs/git/internal/GitVersionControlSystemSpec.groovy

            repo.createLightWeightTag('1.0.1')
            repo.createAnnotatedTag('v1.0.1', 'Release 1.0.1')
            def anotherSource = repo.workTree.file('dir/another.txt')
            anotherSource << 'Goodbye world!'
            c2 = repo.commit('Second Commit')
            repoHead = GitVersionRef.from(repo.head)
            repoSpec = new DefaultGitVersionControlSpec()
            repoSpec.url = repo.url
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 13:11:16 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/internal/ws/RealWebSocketTest.kt

        server.webSocket!!.finishReader()
        server.webSocket!!.close(1000, "Goodbye!")
        assertThat(client.processNextFrame()).isFalse()
        client.listener.assertClosing(1000, "Goodbye!")
        client.webSocket!!.finishReader()
        server.listener.assertClosed(1000, "Hello!")
        client.listener.assertClosed(1000, "Goodbye!")
      }
    
      @Test
      fun clientCloseThenMethodsReturnFalse() {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 01:59:58 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  3. src/net/smtp/smtp_test.go

    		t.Fatalf("RCPT failed: %s", err)
    	}
    	msg := `From: ******@****.***
    To: ******@****.***
    Subject: Hooray for Go
    
    Line 1
    .Leading dot line .
    Goodbye.`
    	w, err := c.Data()
    	if err != nil {
    		t.Fatalf("DATA failed: %s", err)
    	}
    	if _, err := w.Write([]byte(msg)); err != nil {
    		t.Fatalf("Data write failed: %s", err)
    	}
    	if err := w.Close(); 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)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/console/AbstractExecOutputIntegrationTest.groovy

    abstract class AbstractExecOutputIntegrationTest extends AbstractConsoleGroupedTaskFunctionalTest {
        private static final String EXPECTED_OUTPUT = "Hello, World!"
        private static final String EXPECTED_ERROR = "Goodbye, World!"
    
        @UnsupportedWithConfigurationCache(because = "Task.getProject() during execution")
        def "Project.javaexec output is grouped with its task output"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/plugins.adoc

    include::sample[dir="snippets/plugins/multiproject/groovy", files="settings.gradle[tags=include-subprojects];build.gradle[tags=plugins-on-subprojects];hello-a/build.gradle[];hello-b/build.gradle[];goodbye-c/build.gradle[]"]
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 04:11:37 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftApplicationIntegrationTest.groovy

            installation("app/build/install/main/debug").exec().out == app.expectedOutput
    
            when:
            file("greeter/src/main/swift/greeter.swift").replace("Hello,", "Goodbye,")
            then:
            succeeds ":app:assemble"
            result.assertTasksExecuted(":greeter:compileDebugSwift", ":greeter:linkDebug", ":app:compileDebugSwift", ":app:linkDebug", ":app:installDebug", ":app:assemble")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 12:43:37 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/route/route_test.go

    		})
    
    		// Redefine the service registry for this test
    		serviceRegistry := map[host.Name]*model.Service{
    			"*.example.org":             exampleWildcardService,
    			"goodbye.hello.example.org": exampleNestedWildcardService,
    		}
    
    		wildcardIndex := map[host.Name]types.NamespacedName{
    			"*.example.org":       virtualServiceWithWildcardHost.NamespacedName(),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 88.1K bytes
    - Viewed (0)
  8. src/text/template/exec_test.go

    }
    
    func TestBlock(t *testing.T) {
    	const (
    		input   = `a({{block "inner" .}}bar({{.}})baz{{end}})b`
    		want    = `a(bar(hello)baz)b`
    		overlay = `{{define "inner"}}foo({{.}})bar{{end}}`
    		want2   = `a(foo(goodbye)bar)b`
    	)
    	tmpl, err := New("outer").Parse(input)
    	if err != nil {
    		t.Fatal(err)
    	}
    	tmpl2, err := Must(tmpl.Clone()).Parse(overlay)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  9. src/testing/testing.go

    //	func ExampleHello() {
    //	    fmt.Println("hello")
    //	    // Output: hello
    //	}
    //
    //	func ExampleSalutations() {
    //	    fmt.Println("hello, and")
    //	    fmt.Println("goodbye")
    //	    // Output:
    //	    // hello, and
    //	    // goodbye
    //	}
    //
    // The comment prefix "Unordered output:" is like "Output:", but matches any
    // line order:
    //
    //	func ExamplePerm() {
    //	    for _, value := range Perm(5) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  10. doc/go1.17_spec.html

    for a <code>...T</code> parameter. In this case no new slice is created.
    </p>
    
    <p>
    Given the slice <code>s</code> and call
    </p>
    
    <pre>
    s := []string{"James", "Jasmine"}
    Greeting("goodbye:", s...)
    </pre>
    
    <p>
    within <code>Greeting</code>, <code>who</code> will have the same value as <code>s</code>
    with the same underlying array.
    </p>
    
    
    <h3 id="Operators">Operators</h3>
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
Back to top