Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 142 for manny (0.17 sec)

  1. src/cmd/doc/main.go

    func parseSymbol(str string) (symbol, method string) {
    	if str == "" {
    		return
    	}
    	elem := strings.Split(str, ".")
    	switch len(elem) {
    	case 1:
    	case 2:
    		method = elem[1]
    	default:
    		log.Printf("too many periods in symbol specification")
    		usage()
    	}
    	symbol = elem[0]
    	return
    }
    
    // isExported reports whether the name is an exported identifier.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/sccp.go

    // lattice of a value is changed, we need to update lattices of use. But we don't
    // need all uses of it, only uses that can become constants would be added into
    // re-visit worklist since no matter how many times they are revisited, uses which
    // can't become constants lattice remains unchanged, i.e. Bottom.
    func (t *worklist) buildDefUses() {
    	for _, block := range t.f.Blocks {
    		for _, val := range block.Values {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:54:50 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  3. src/cmd/gofmt/gofmt.go

    	printerNormalizeNumbers = 1 << 30
    )
    
    // fdSem guards the number of concurrently-open file descriptors.
    //
    // For now, this is arbitrarily set to 200, based on the observation that many
    // platforms default to a kernel limit of 256. Ideally, perhaps we should derive
    // it from rlimit on platforms that support that system call.
    //
    // File descriptors opened from outside of this package are not tracked,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  4. src/cmd/internal/test2json/test2json.go

    // They're variables so that they can be reduced during testing.
    //
    // The input buffer needs to be able to hold any single test
    // directive line we want to recognize, like:
    //
    //	<many spaces> --- PASS: very/nested/s/u/b/t/e/s/t
    //
    // If anyone reports a test directive line > 4k not working, it will
    // be defensible to suggest they restructure their test or test names.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 17:33:07 UTC 2022
    - 14.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/WasmOps.go

    	"F28",
    	"F29",
    	"F30",
    	"F31",
    
    	"SP",
    	"g",
    
    	// pseudo-registers
    	"SB",
    }
    
    func init() {
    	// Make map from reg names to reg integers.
    	if len(regNamesWasm) > 64 {
    		panic("too many registers")
    	}
    	num := map[string]int{}
    	for i, name := range regNamesWasm {
    		num[name] = i
    	}
    	buildReg := func(s string) regMask {
    		m := regMask(0)
    		for _, r := range strings.Split(s, " ") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/compile.go

    	// nilcheckelim generates sequences of plain basic blocks
    	{"nilcheckelim", "late fuse"},
    	// nilcheckelim relies on opt to rewrite user nil checks
    	{"opt", "nilcheckelim"},
    	// tighten will be most effective when as many values have been removed as possible
    	{"generic deadcode", "tighten"},
    	{"generic cse", "tighten"},
    	// checkbce needs the values removed
    	{"generic deadcode", "check bce"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:55:18 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/macho.go

    	if nseg >= len(seg) {
    		Exitf("too many segs")
    	}
    
    	s := &seg[nseg]
    	nseg++
    	s.name = name
    	s.msect = uint32(msect)
    	s.sect = make([]MachoSect, msect)
    	return s
    }
    
    func newMachoSect(seg *MachoSeg, name string, segname string) *MachoSect {
    	if seg.nsect >= seg.msect {
    		Exitf("too many sects in segment %s", seg.name)
    	}
    
    	s := &seg.sect[seg.nsect]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/elf.go

    		elf32shdr(out, shdr[i])
    	}
    	return uint32(ehdr.Shnum) * ELF32SHDRSIZE
    }
    
    func elfsetstring(ctxt *Link, s loader.Sym, str string, off int) {
    	if nelfstr >= len(elfstr) {
    		ctxt.Errorf(s, "too many elf strings")
    		errorexit()
    	}
    
    	elfstr[nelfstr].s = str
    	elfstr[nelfstr].off = off
    	nelfstr++
    }
    
    func elfwritephdrs(out *OutBuf) uint32 {
    	if elf64 {
    		for i := 0; i < int(ehdr.Phnum); i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  9. src/archive/tar/writer.go

    	if _, tw.err = tw.w.Write(zeroBlock[:tw.pad]); tw.err != nil {
    		return tw.err
    	}
    	tw.pad = 0
    	return nil
    }
    
    // WriteHeader writes hdr and prepares to accept the file's contents.
    // The Header.Size determines how many bytes can be written for the next file.
    // If the current file is not fully written, then this returns an error.
    // This implicitly flushes any padding necessary before writing the header.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/mod/sumdb/client.go

    	WriteConfig(file string, old, new []byte) error
    
    	// ReadCache reads and returns the content of the named cache file.
    	// Any returned error will be treated as equivalent to the file not existing.
    	// There can be arbitrarily many cache files, such as:
    	//	serverName/lookup/pkg@version
    	//	serverName/tile/8/1/x123/456
    	ReadCache(file string) ([]byte, error)
    
    	// WriteCache writes the named cache file.
    	WriteCache(file string, data []byte)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 17:50:49 UTC 2024
    - 19.1K bytes
    - Viewed (0)
Back to top