Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 54 for EAT (0.04 sec)

  1. src/os/env.go

    			return s[1:2], 3
    		}
    		// Scan to closing brace
    		for i := 1; i < len(s); i++ {
    			if s[i] == '}' {
    				if i == 1 {
    					return "", 2 // Bad syntax; eat "${}"
    				}
    				return s[1:i], i + 1
    			}
    		}
    		return "", 1 // Bad syntax; eat "${"
    	case isShellSpecialVar(s[0]):
    		return s[0:1], 1
    	}
    	// Scan alphanumerics.
    	var i int
    	for i = 0; i < len(s) && isAlphaNum(s[i]); i++ {
    	}
    	return s[:i], i
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/mod/rsc.io_quote_v1.5.1.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
    - 2K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/mod/rsc.io_quote_v2.0.0.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: Fri Jul 20 15:30:21 UTC 2018
    - 2K bytes
    - Viewed (0)
  4. src/embed/internal/embedtest/embedx_test.go

    	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")
    	testString(t, concurrency2, "concurrency2", "Concurrency is not parallelism.\n")
    	testString(t, string(glass2), "glass2", "I can eat glass and it doesn't hurt me.\n")
    
    	big, err := os.ReadFile("testdata/ascii.txt")
    	if err != nil {
    		t.Fatal(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 15 20:37:17 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/mod/rsc.io_quote_v1.5.2.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.2K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/mod/rsc.io_quote_v0.0.0-20180214005133-e7a685a342c0.txt

    func Hello() string {
    	return "Hello, world."
    }
    
    // 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."
    }
    -- quote_test.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 1.6K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/mod/rsc.io_quote_v1.5.0.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
    - 1.9K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/mod/rsc.io_quote_v1.4.0.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
    - 1.9K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/mod/rsc.io_quote_v0.0.0-20180214005840-23179ee8a569.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
    - 2K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/mod/rsc.io_quote_v0.0.0-20180709153244-fd906ed3b100.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)
Back to top