Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 54 for EAT (0.09 sec)

  1. src/cmd/go/testdata/mod/rsc.io_quote_v2_v2.0.1.txt

    func HelloV2() string {
    	return sampler.Hello()
    }
    
    // Glass returns a useful phrase for world travelers.
    func GlassV2() string {
    	// See http://www.oocities.org/nodotus/hbglass.html.
    	return "I can eat glass and it doesn't hurt me."
    }
    
    // Go returns a Go proverb.
    func GoV2() string {
    	return "Don't communicate by sharing memory, share memory by communicating."
    }
    
    // Opt returns an optimization truth.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 2K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/mod/rsc.io_quote_v0.0.0-20180628003336-dd9747d19b04.txt

    func Hello() string {
    	return sampler.Hello()
    }
    
    // Glass returns a useful phrase for world travelers.
    func Glass() string {
    	// See http://www.oocities.org/nodotus/hbglass.html.
    	return "I can eat glass and it doesn't hurt me."
    }
    
    // Go returns a Go proverb.
    func Go() string {
    	return "Don't communicate by sharing memory, share memory by communicating."
    }
    
    // Opt returns an optimization truth.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 2.3K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/mod/rsc.io_quote_v1.5.3-pre1.txt

    func Hello() string {
    	return sampler.Hello()
    }
    
    // Glass returns a useful phrase for world travelers.
    func Glass() string {
    	// See http://www.oocities.org/nodotus/hbglass.html.
    	return "I can eat glass and it doesn't hurt me."
    }
    
    // Go returns a Go proverb.
    func Go() string {
    	return "Don't communicate by sharing memory, share memory by communicating."
    }
    
    // Opt returns an optimization truth.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 2.3K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/mod/rsc.io_sampler_v1.3.1.txt

    // See http://kermitproject.org/utf8.html.
    // http://www.oocities.org/nodotus/hbglass.html
    // https://en.wikipedia.org/wiki/I_Can_Eat_Glass
    
    package sampler
    
    var glass = newText(`
    
    English: en: I can eat glass and it doesn't hurt me.
    French: fr: Je peux manger du verre, ça ne me fait pas mal.
    Spanish: es: Puedo comer vidrio, no me hace daño.
    
    `)
    -- glass_test.go --
    // Copyright 2018 The Go Authors. All rights reserved.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 4.7K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/mod/rsc.io_sampler_v1.3.0.txt

    // See http://kermitproject.org/utf8.html.
    // http://www.oocities.org/nodotus/hbglass.html
    // https://en.wikipedia.org/wiki/I_Can_Eat_Glass
    
    package sampler
    
    var glass = newText(`
    
    English: en: I can eat glass and it doesn't hurt me.
    French: fr: Je peux manger du verre, ça ne me fait pas mal.
    Spanish: es: Puedo comer vidrio, no me hace daño.
    
    `)
    -- glass_test.go --
    // Copyright 2018 The Go Authors. All rights reserved.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 10 00:47:06 UTC 2018
    - 4.7K bytes
    - Viewed (0)
  6. src/os/env_test.go

    	{"start$+middle$^end$", "start$+middle$^end$"},
    	{"mixed$|bag$$$", "mixed$|bagPID$"},
    	{"$", "$"},
    	{"$}", "$}"},
    	{"${", ""},  // invalid syntax; eat up the characters
    	{"${}", ""}, // invalid syntax; eat up the characters
    }
    
    func TestExpand(t *testing.T) {
    	for _, test := range expandTests {
    		result := Expand(test.in, testGetenv)
    		if result != test.out {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 04 15:31:54 UTC 2023
    - 5K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/mod/rsc.io_quote_v3_v3.0.0.txt

    func HelloV3() string {
    	return sampler.Hello()
    }
    
    // Glass returns a useful phrase for world travelers.
    func GlassV3() string {
    	// See http://www.oocities.org/nodotus/hbglass.html.
    	return "I can eat glass and it doesn't hurt me."
    }
    
    // Go returns a Go proverb.
    func GoV3() string {
    	return "Don't communicate by sharing memory, share memory by communicating."
    }
    
    // Opt returns an optimization truth.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 1.1K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/mod/rsc.io_!q!u!o!t!e_v1.5.2.txt

    }
    
    func TestHELLO(t *testing.T) {
    	hello := "HELLO, WORLD"
    	if out := HELLO(); out != hello {
    		t.Errorf("HELLO() = %q, want %q", out, hello)
    	}
    }
    
    func TestGLASS(t *testing.T) {
    	glass := "I CAN EAT GLASS AND IT DOESN'T HURT ME."
    	if out := GLASS(); out != glass {
    		t.Errorf("GLASS() = %q, want %q", out, glass)
    	}
    }
    
    func TestGO(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 20 15:30:21 UTC 2018
    - 1.8K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/mod/rsc.io_!q!u!o!t!e_v1.5.3-!p!r!e.txt

    }
    
    func TestHELLO(t *testing.T) {
    	hello := "HELLO, WORLD"
    	if out := HELLO(); out != hello {
    		t.Errorf("HELLO() = %q, want %q", out, hello)
    	}
    }
    
    func TestGLASS(t *testing.T) {
    	glass := "I CAN EAT GLASS AND IT DOESN'T HURT ME."
    	if out := GLASS(); out != glass {
    		t.Errorf("GLASS() = %q, want %q", out, glass)
    	}
    }
    
    func TestGO(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 20 15:30:21 UTC 2018
    - 1.8K bytes
    - Viewed (0)
  10. src/embed/internal/embedtest/embed_test.go

    	testFiles(t, global, "testdata/glass.txt", "I can eat glass and it doesn't hurt me.\n")
    
    	if err := fstest.TestFS(global, "concurrency.txt", "testdata/hello.txt"); err != nil {
    		t.Fatal(err)
    	}
    
    	testString(t, concurrency, "concurrency", "Concurrency is not parallelism.\n")
    	testString(t, string(glass), "glass", "I can eat glass and it doesn't hurt me.\n")
    }
    
    //go:embed testdata
    var testDirAll embed.FS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 14 20:10:16 UTC 2023
    - 5.4K bytes
    - Viewed (0)
Back to top