Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 77 for ready (0.18 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/go/internal/modindex/build.go

    	// "linux_386_race" instead of the usual "linux_386".
    	InstallSuffix string
    
    	// By default, Import uses the operating system's file system calls
    	// to read directories and files. To read from other sources,
    	// callers can set the following functions. They all have default
    	// behaviors that use the local file system, so clients need only set
    	// the functions whose behaviors they wish to change.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 17:39:23 UTC 2023
    - 26.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/scope.go

    	"strings"
    	"sync"
    )
    
    // A Scope maintains a set of objects and links to its containing
    // (parent) and contained (children) scopes. Objects may be inserted
    // and looked up by name. The zero value for Scope is a ready-to-use
    // empty scope.
    type Scope struct {
    	parent   *Scope
    	children []*Scope
    	number   int               // parent.children[number-1] is this scope; 0 if there is no parent
    	elems    map[string]Object // lazily allocated
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/cmd/cgo/internal/testcarchive/carchive_test.go

    	}
    	if string(magbuf[:]) != magic {
    		t.Errorf("%s: incorrect archive magic string %q", arname, magbuf)
    	}
    
    	off := int64(len(magic))
    	for {
    		if off&1 != 0 {
    			var b [1]byte
    			if _, err := f.Read(b[:]); err != nil {
    				if err == io.EOF {
    					break
    				}
    				t.Errorf("%s: error skipping alignment byte at %d: %v", arname, off, err)
    			}
    			off++
    		}
    
    		var hdrbuf [hdrlen]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:43:51 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  10. 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)
Back to top