Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for goodbye (0.57 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/crypto/x509/x509_test.go

    				PublicKeyAlgorithm:    ECDSA,
    				PublicKey:             goodKey.Public(),
    			},
    		},
    		{
    			name: "valid, key usage set",
    			issuer: &Certificate{
    				Version:               3,
    				BasicConstraintsValid: true,
    				IsCA:                  true,
    				PublicKeyAlgorithm:    ECDSA,
    				PublicKey:             goodKey.Public(),
    				KeyUsage:              KeyUsageCRLSign,
    			},
    		},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  9. doc/go_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="Instantiations">Instantiations</h3>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
Back to top