Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 254 for cout (0.03 sec)

  1. src/compress/bzip2/bzip2.go

    		return StructuralError("tree selector out of range")
    	}
    	currentHuffmanTree := huffmanTrees[treeIndexes[0]]
    	bufIndex := 0 // indexes bz2.buf, the output buffer.
    	// The output of the move-to-front transform is run-length encoded and
    	// we merge the decoding into the Huffman parsing loop. These two
    	// variables accumulate the repeat count. See the Wikipedia page for
    	// details.
    	repeat := 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. src/cmd/go/internal/test/test.go

    		if bytes.HasPrefix(out, noFuzzTestsToFuzz[1:]) || bytes.Contains(out, noFuzzTestsToFuzz) {
    			norun = " [no fuzz tests to fuzz]"
    		}
    		if bytes.HasPrefix(out, tooManyFuzzTestsToFuzz[1:]) || bytes.Contains(out, tooManyFuzzTestsToFuzz) {
    			norun = "[-fuzz matches more than one fuzz test, won't fuzz]"
    		}
    		if len(out) > 0 && !bytes.HasSuffix(out, []byte("\n")) {
    			// Ensure that the output ends with a newline before the "ok"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modfetch/codehost/vcs.go

    	*os.File
    }
    
    func (d *deleteCloser) Close() error {
    	defer os.Remove(d.File.Name())
    	return d.File.Close()
    }
    
    func hgParseStat(rev, out string) (*RevInfo, error) {
    	f := strings.Fields(out)
    	if len(f) < 3 {
    		return nil, vcsErrorf("unexpected response from hg log: %q", out)
    	}
    	hash := f[0]
    	version := rev
    	if strings.HasPrefix(hash, version) {
    		version = hash // extend to full hash
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/walk/switch.go

    			} else {
    				merged = append(merged, c)
    			}
    		}
    		cc = merged
    	}
    
    	s.search(cc, &s.done)
    }
    
    func (s *exprSwitch) search(cc []exprClause, out *ir.Nodes) {
    	if s.tryJumpTable(cc, out) {
    		return
    	}
    	binarySearch(len(cc), out,
    		func(i int) ir.Node {
    			return ir.NewBinaryExpr(base.Pos, ir.OLE, s.exprname, cc[i-1].hi)
    		},
    		func(i int, nif *ir.IfStmt) {
    			c := &cc[i]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  5. src/cmd/fix/main_test.go

    				}()
    			}
    
    			// Apply fix: should get tt.Out.
    			out, fixed, ok := parseFixPrint(t, tt.Fn, tt.Name, tt.In, true)
    			if !ok {
    				return
    			}
    
    			// reformat to get printing right
    			out, _, ok = parseFixPrint(t, fnop, tt.Name, out, false)
    			if !ok {
    				return
    			}
    
    			if tt.Out == "" {
    				tt.Out = tt.In
    			}
    			if out != tt.Out {
    				t.Errorf("incorrect output.\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 05:31:47 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  6. 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)
  7. src/cmd/go/internal/modload/edit.go

    					// any root to decrease (because they're roots), and the dependencies
    					// of non-roots don't matter because they're either always unpruned or
    					// always pruned out.
    					//
    					// At any rate, it shouldn't cost much to reload the module graph one
    					// last time and confirm that it is stable.
    					rootsDirty = true
    				}
    			}
    		}
    		if rootsDirty {
    			if cfg.BuildV {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 21:46:32 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/internal/driver/webui.go

    	})
    }
    
    func dotToSvg(dot []byte) ([]byte, error) {
    	cmd := exec.Command("dot", "-Tsvg")
    	out := &bytes.Buffer{}
    	cmd.Stdin, cmd.Stdout, cmd.Stderr = bytes.NewBuffer(dot), out, os.Stderr
    	if err := cmd.Run(); err != nil {
    		return nil, err
    	}
    
    	// Fix dot bug related to unquoted ampersands.
    	svg := bytes.Replace(out.Bytes(), []byte("&;"), []byte("&amp;;"), -1)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 14K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/elf_test.go

    		scmd := testenv.Command(t, sprog, "-o", targ, binFile)
    		scmd.Dir = dir
    		if sout, serr := scmd.CombinedOutput(); serr != nil {
    			t.Fatalf("failed to strip %v: %v:\n%s", scmd.Args, serr, sout)
    		} else {
    			// Non-empty output indicates failure, as mentioned above.
    			if len(string(sout)) != 0 {
    				t.Errorf("unexpected outut from %s:\n%s\n", sprog, string(sout))
    			}
    		}
    		rcmd := testenv.Command(t, filepath.Join(dir, targ))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 13:44:07 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  10. src/cmd/go/internal/clean/clean.go

    // Eventually, can stop deleting these.
    var cleanDir = map[string]bool{
    	"_test": true,
    	"_obj":  true,
    }
    
    var cleanFile = map[string]bool{
    	"_testmain.go": true,
    	"test.out":     true,
    	"build.out":    true,
    	"a.out":        true,
    }
    
    var cleanExt = map[string]bool{
    	".5":  true,
    	".6":  true,
    	".8":  true,
    	".a":  true,
    	".o":  true,
    	".so": true,
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top