Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for EAT (0.08 sec)

  1. src/cmd/internal/test2json/testdata/ascii.json

    {"Action":"output","Test":"TestAscii","Output":"I can eat glass, and it doesn't hurt me. I can eat glass, and it doesn't hurt me.\n"}
    {"Action":"output","Test":"TestAscii","Output":"I CAN EAT GLASS, AND IT DOESN'T HURT ME. I CAN EAT GLASS, AND IT DOESN'T HURT ME.\n"}
    {"Action":"output","Test":"TestAscii","Output":"--- PASS: TestAscii\n"}
    {"Action":"output","Test":"TestAscii","Output":"    i can eat glass, and it doesn't hurt me. i can eat glass, and it doesn't hurt me.\n"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 17:33:07 UTC 2022
    - 836 bytes
    - Viewed (0)
  2. src/cmd/internal/test2json/testdata/frame.json

    {"Action":"output","Test":"TestAscii","Output":"=== RUN   TestNotReally\n"}
    {"Action":"output","Test":"TestAscii","Output":"--- PASS: TestAscii\n"}
    {"Action":"output","Test":"TestAscii","Output":"    i can eat glass, and it doesn't hurt me. i can eat glass, and it doesn't hurt me.\n"}
    {"Action":"output","Test":"TestAscii","Output":"FAIL\n"}
    {"Action":"pass","Test":"TestAscii"}
    {"Action":"output","Output":"PASS\n"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 17:33:07 UTC 2022
    - 563 bytes
    - Viewed (0)
  3. src/cmd/internal/test2json/testdata/frame.test

    === RUN   TestAscii
    === RUN   TestNotReally
    --- PASS: TestAscii
        i can eat glass, and it doesn't hurt me. i can eat glass, and it doesn't hurt me.
    FAIL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 19:50:36 UTC 2022
    - 163 bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. src/time/zoneinfo_abbrs_windows.go

    	"Sudan Standard Time":             {"CAT", "CAT"},     // Africa/Khartoum
    	"W. Central Africa Standard Time": {"WAT", "WAT"},     // Africa/Lagos
    	"E. Africa Standard Time":         {"EAT", "EAT"},     // Africa/Nairobi
    	"Sao Tome Standard Time":          {"GMT", "GMT"},     // Africa/Sao_Tome
    	"Libya Standard Time":             {"EET", "EET"},     // Africa/Tripoli
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 20:01:59 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_replace.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 REPLACED Go proverb.
    func GoV3() string {
    	return "Concurrency is not parallelism."
    }
    
    // Opt returns a optimization truth.
    func OptV3() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 3.7K bytes
    - Viewed (0)
  9. pkg/kubelet/prober/worker.go

    }
    
    // doProbe probes the container once and records the result.
    // Returns whether the worker should continue.
    func (w *worker) doProbe(ctx context.Context) (keepGoing bool) {
    	defer func() { recover() }() // Actually eat panics (HandleCrash takes care of logging)
    	defer runtime.HandleCrash(func(_ interface{}) { keepGoing = true })
    
    	startTime := time.Now()
    	status, ok := w.probeManager.statusManager.GetPodStatus(w.pod.UID)
    	if !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 27 01:28:06 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  10. maven-embedder/src/main/java/org/apache/maven/cli/CLIManager.java

                    .build());
        }
    
        public CommandLine parse(String[] args) throws ParseException {
            // We need to eat any quotes surrounding arguments...
            String[] cleanArgs = CleanArgument.cleanArgs(args);
    
            CommandLineParser parser = new DefaultParser();
    
            return parser.parse(options, cleanArgs);
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 15.3K bytes
    - Viewed (0)
Back to top