Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 392 for cout (0.24 sec)

  1. src/cmd/internal/obj/mips/a.out.go

    // cmd/9c/9.out.h from Vita Nuova.
    //
    //	Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
    //	Portions Copyright © 1995-1997 C H Forsyth (******@****.***)
    //	Portions Copyright © 1997-1999 Vita Nuova Limited
    //	Portions Copyright © 2000-2008 Vita Nuova Holdings Limited (www.vitanuova.com)
    //	Portions Copyright © 2004,2006 Bruce Ellis
    //	Portions Copyright © 2005-2007 C H Forsyth (******@****.***)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 08 12:17:12 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/testlife/testdata/main.out

    Austin Clements <******@****.***> 1683216807 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 272 bytes
    - Viewed (0)
  3. src/cmd/internal/obj/loong64/a.out.go

    Guoqi Chen <******@****.***> 1680291800 +0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/wasm/a.out.go

    Evan Phoenix <******@****.***> 1674430259 -0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 02 05:28:55 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/test_chatty_parallel_success.txt

    # multiple parallel outputs have the appropriate test name lines between them.
    go test -parallel 3 chatty_parallel_test.go -v
    stdout -count=2 '^=== (CONT|NAME)  TestChattyParallel/sub-0\n    chatty_parallel_test.go:32: this is sub-0$'
    stdout -count=2 '^=== (CONT|NAME)  TestChattyParallel/sub-1\n    chatty_parallel_test.go:32: this is sub-1$'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 19:50:36 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/test/inst_test.go

    	if output, err = cmd.CombinedOutput(); err != nil {
    		t.Fatalf("Failed: %v:\nOut: %s\n", err, output)
    	}
    	out, err := os.ReadFile(filepath.Join("testdata", outname))
    	if err != nil {
    		t.Fatalf("Could not find %s\n", outname)
    	}
    	if string(out) != string(output) {
    		t.Fatalf("Wanted output %v, got %v\n", string(out), string(output))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 06 18:07:35 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/test_chatty_parallel_fail.txt

    ! go test -parallel 3 chatty_parallel_test.go -v
    
    stdout -count=1 '^=== CONT  TestChattyParallel/sub-0'
    stdout -count=1 '^=== CONT  TestChattyParallel/sub-1'
    stdout -count=1 '^=== CONT  TestChattyParallel/sub-2'
    
    stdout -count=1 '^=== (CONT|NAME)  TestChattyParallel/sub-0\n    chatty_parallel_test.go:38: error from sub-0$'
    stdout -count=1 '^=== (CONT|NAME)  TestChattyParallel/sub-1\n    chatty_parallel_test.go:38: error from sub-1$'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 19:50:36 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/cover_modes.txt

    ! stderr '[^0-9]0\.0%'
    ! stdout '[^0-9]0\.0%'
    
    grep -count=1 '^mode: set$' $WORK/cover.out
    grep 'errors\.go' $WORK/cover.out
    grep 'binary\.go' $WORK/cover.out
    
    [!race] stop
    
    go test -short -race -cover encoding/binary errors -coverprofile=$WORK/cover.out
    ! stderr '[^0-9]0\.0%'
    ! stdout '[^0-9]0\.0%'
    
    grep -count=1 '^mode: atomic$' $WORK/cover.out
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 678 bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/telemetry/internal/counter/parse.go

    			continue
    		}
    		k, v, ok := strings.Cut(line, ": ")
    		if !ok {
    			return corrupt()
    		}
    		f.Meta[k] = v
    	}
    
    	for i := uint32(0); i < numHash; i++ {
    		headOff := hdrLen + hashOff + i*4
    		head := m.load32(headOff)
    		off := head
    		for off != 0 {
    			ename, next, v, ok := m.entryAt(off)
    			if !ok {
    				return corrupt()
    			}
    			if _, ok := f.Count[string(ename)]; ok {
    				return corrupt()
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 14:38:01 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/test/ssa_test.go

    		args := []string{"test", "-c", "-gcflags=-d=ssa/check/on" + flag, "-o", filepath.Join(tmpdir, "code.test")}
    		args = append(args, srcs...)
    		out, err := testenv.Command(t, gotool, args...).CombinedOutput()
    		if err != nil || len(out) != 0 {
    			t.Fatalf("Build failed: %v\n%s\n", err, out)
    		}
    
    		// Now we have a test binary. Run it with all the tests as subtests of this one.
    		for _, test := range tests {
    			test := test
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:29 UTC 2023
    - 4.9K bytes
    - Viewed (0)
Back to top