Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 55 for ready (0.11 sec)

  1. src/cmd/compile/internal/types2/api.go

    	// return the same package.
    	ImportFrom(path, dir string, mode ImportMode) (*Package, error)
    }
    
    // A Config specifies the configuration for type checking.
    // The zero value for Config is a ready-to-use default configuration.
    type Config struct {
    	// Context is the context used for resolving global identifiers. If nil, the
    	// type checker will initialize this field with a newly created context.
    	Context *Context
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:48:53 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/action.go

    	objdirSeq int // counter for NewObjdir
    	pkgSeq    int
    
    	backgroundSh *Shell // Shell that per-Action Shells are derived from
    
    	exec      sync.Mutex
    	readySema chan bool
    	ready     actionQueue
    
    	id           sync.Mutex
    	toolIDCache  map[string]string // tool name -> tool ID
    	buildIDCache map[string]string // file name -> build ID
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/walk/assign.go

    		// Assignments can only alias with direct uses of this variable.
    		assigned.Add(name)
    	}
    
    	early.Append(late.Take()...)
    	return early
    }
    
    // readsMemory reports whether the evaluation n directly reads from
    // memory that might be written to indirectly.
    func readsMemory(n ir.Node) bool {
    	switch n.Op() {
    	case ir.ONAME:
    		n := n.(*ir.Name)
    		if n.Class == ir.PFUNC {
    			return false
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:09:06 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modfetch/codehost/git_test.go

    		if rmErr := os.RemoveAll(dir); err == nil {
    			err = rmErr
    		}
    	}()
    
    	localGitRepo = filepath.Join(dir, "gitrepo2")
    
    	// Redirect the module cache to a fresh directory to avoid crosstalk, and make
    	// it read/write so that the test can still clean it up easily when done.
    	cfg.GOMODCACHE = filepath.Join(dir, "modcache")
    	cfg.ModCacheRW = true
    
    	m.Run()
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 19:46:23 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssagen/abi.go

    // symbol names.
    func (s *SymABIs) canonicalize(linksym string) string {
    	if strings.HasPrefix(linksym, `"".`) {
    		panic("non-canonical symbol name: " + linksym)
    	}
    	return linksym
    }
    
    // ReadSymABIs reads a symabis file that specifies definitions and
    // references of text symbols by ABI.
    //
    // The symabis format is a set of lines, where each line is a sequence
    // of whitespace-separated fields. The first field is a verb and is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  6. src/cmd/go/internal/mvs/mvs.go

    // gives access to the comparison operation.
    //
    // It must be safe to call methods on a Reqs from multiple goroutines simultaneously.
    // Because a Reqs may read the underlying graph from the network on demand,
    // the MVS algorithms parallelize the traversal to overlap network delays.
    type Reqs interface {
    	// Required returns the module versions explicitly required by m itself.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 21:58:12 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/schedule.go

    				// Schedule flag register generation as late as possible.
    				// This makes sure that we only have one live flags
    				// value at a time.
    				// Note that this case is after the case above, so values
    				// which both read and generate flags are given ScoreReadFlags.
    				score[v.ID] = ScoreFlags
    			default:
    				score[v.ID] = ScoreDefault
    				// If we're reading flags, schedule earlier to keep flag lifetime short.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 15:53:17 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/memcombine.go

    		return r[i].offset < r[j].offset
    	})
    
    	// Check that we have contiguous offsets.
    	for i := int64(0); i < n; i++ {
    		if r[i].offset != r[0].offset+i*size {
    			return false
    		}
    	}
    
    	// Check for reads in little-endian or big-endian order.
    	shift0 := r[0].shift
    	isLittleEndian := true
    	for i := int64(0); i < n; i++ {
    		if r[i].shift != shift0+i*size*8 {
    			isLittleEndian = false
    			break
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 19:45:41 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/shell.go

    	cmdline := str.StringList(cmdargs...)
    
    	for _, arg := range cmdline {
    		// GNU binutils commands, including gcc and gccgo, interpret an argument
    		// @foo anywhere in the command line (even following --) as meaning
    		// "read and insert arguments from the file named foo."
    		// Don't say anything that might be misinterpreted that way.
    		if strings.HasPrefix(arg, "@") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  10. src/cmd/covdata/tool_test.go

    		"-o", outf}
    	lines := runToolOp(t, s, "textfmt", dargs)
    
    	// No output expected.
    	if len(lines) != 0 {
    		dumplines(lines)
    		t.Errorf("unexpected output from go tool covdata textfmt")
    	}
    
    	// Open and read the first few bits of the file.
    	payload, err := os.ReadFile(outf)
    	if err != nil {
    		t.Errorf("opening %s: %v\n", outf, err)
    	}
    	lines = strings.Split(string(payload), "\n")
    	want0 := "mode: set"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 24.5K bytes
    - Viewed (0)
Back to top