Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 37 for unlocked (0.56 sec)

  1. src/cmd/compile/internal/ssagen/pgen.go

    		largeStackFramesMu.Lock()
    		largeStackFrames = append(largeStackFrames, largeStack{locals: f.Frontend().(*ssafn).stksize, args: f.OwnAux.ArgWidth(), pos: fn.Pos()})
    		largeStackFramesMu.Unlock()
    		return
    	}
    	pp := objw.NewProgs(fn, worker)
    	defer pp.Free()
    	genssa(f, pp)
    	// Check frame size again.
    	// The check above included only the space needed for local variables.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. src/cmd/go/internal/clean/clean.go

    The -testcache flag causes clean to expire all test results in the
    go build cache.
    
    The -modcache flag causes clean to remove the entire module
    download cache, including unpacked source code of versioned
    dependencies.
    
    The -fuzzcache flag causes clean to remove files stored in the Go build
    cache for fuzz testing. The fuzzing engine caches files that expand
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/named.go

    		return n
    	}
    
    	// TODO(rfindley): if n.check is non-nil we can avoid locking here, since
    	// type-checking is not concurrent. Evaluate if this is worth doing.
    	n.mu.Lock()
    	defer n.mu.Unlock()
    
    	if n.state() >= resolved {
    		return n
    	}
    
    	if n.inst != nil {
    		assert(n.underlying == nil) // n is an unresolved instance
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/init.go

    }
    
    func (mms *MainModuleSet) Index(m module.Version) *modFileIndex {
    	mms.indexMu.Lock()
    	defer mms.indexMu.Unlock()
    	return mms.indices[m]
    }
    
    func (mms *MainModuleSet) SetIndex(m module.Version, index *modFileIndex) {
    	mms.indexMu.Lock()
    	defer mms.indexMu.Unlock()
    	mms.indices[m] = index
    }
    
    func (mms *MainModuleSet) ModFile(m module.Version) *modfile.File {
    	return mms.modFiles[m]
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  5. src/cmd/go/internal/test/test.go

    	    calling runtime.SetBlockProfileRate with n.
    	    See 'go doc runtime.SetBlockProfileRate'.
    	    The profiler aims to sample, on average, one blocking event every
    	    n nanoseconds the program spends blocked. By default,
    	    if -test.blockprofile is set without this flag, all blocking events
    	    are recorded, equivalent to -test.blockprofilerate=1.
    
    	-coverprofile cover.out
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/resolver.go

    // unpackRecv unpacks a receiver type and returns its components: ptr indicates whether
    // rtyp is a pointer receiver, rname is the receiver type name, and tparams are its
    // type parameters, if any. The type parameters are only unpacked if unpackParams is
    // set. If rname is nil, the receiver is unusable (i.e., the source has a bug which we
    // cannot easily work around).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 14:10:44 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/buildlist.go

    			summary, err := goModSummary(m)
    
    			mu.Lock()
    			if err == nil {
    				mg.g.Require(m, summary.require)
    			} else {
    				hasError = true
    			}
    			mu.Unlock()
    
    			return summary, err
    		})
    	}
    
    	var enqueue func(m module.Version, pruning modPruning)
    	enqueue = func(m module.Version, pruning modPruning) {
    		if m.Version == "none" {
    			return
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  8. src/cmd/go/alldocs.go

    //
    // The -testcache flag causes clean to expire all test results in the
    // go build cache.
    //
    // The -modcache flag causes clean to remove the entire module
    // download cache, including unpacked source code of versioned
    // dependencies.
    //
    // The -fuzzcache flag causes clean to remove files stored in the Go build
    // cache for fuzz testing. The fuzzing engine caches files that expand
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modfetch/codehost/git.go

    		// This is a remote path.
    		var err error
    		r.dir, r.mu.Path, err = WorkDir(ctx, gitWorkDirType, r.remote)
    		if err != nil {
    			return nil, err
    		}
    
    		unlock, err := r.mu.Lock()
    		if err != nil {
    			return nil, err
    		}
    		defer unlock()
    
    		if _, err := os.Stat(filepath.Join(r.dir, "objects")); err != nil {
    			if _, err := Run(ctx, r.dir, "git", "init", "--bare"); err != nil {
    				os.RemoveAll(r.dir)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 22:10:38 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  10. src/cmd/go/internal/par/work.go

    func (w *Work[T]) Add(item T) {
    	w.mu.Lock()
    	w.init()
    	if !w.added[item] {
    		w.added[item] = true
    		w.todo = append(w.todo, item)
    		if w.waiting > 0 {
    			w.wait.Signal()
    		}
    	}
    	w.mu.Unlock()
    }
    
    // Do runs f in parallel on items from the work set,
    // with at most n invocations of f running at a time.
    // It returns when everything added to the work set has been processed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 15:54:54 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top