Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 184 for ones (0.1 sec)

  1. src/cmd/go/internal/test/internal/genflags/vetflag.go

    		Usage string
    	}
    	if err := json.Unmarshal(out.Bytes(), &analysisFlags); err != nil {
    		return nil, fmt.Errorf("go vet: can't unmarshal JSON from %s -flags: %v", tool, err)
    	}
    
    	// parse the flags to figure out which ones stand for analyses
    	analyzerSet := make(map[string]bool)
    	rEnable := regexp.MustCompile("^enable .+ analysis$")
    	for _, flag := range analysisFlags {
    		if rEnable.MatchString(flag.Usage) {
    			analyzerSet[flag.Name] = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 17:49:12 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/test/inl_test.go

    			"stackmapdata",
    			"stringStructOf",
    			"subtract1",
    			"subtractb",
    			"tophash",
    			"(*bmap).keys",
    			"(*bmap).overflow",
    			"(*waitq).enqueue",
    			"funcInfo.entry",
    
    			// GC-related ones
    			"cgoInRange",
    			"gclinkptr.ptr",
    			"guintptr.ptr",
    			"heapBitsSlice",
    			"markBits.isMarked",
    			"muintptr.ptr",
    			"puintptr.ptr",
    			"spanOf",
    			"spanOfUnchecked",
    			"typePointers.nextFast",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  3. src/cmd/distpack/test.go

    	{name: "**/go.mod", exclude: true},
    	{name: "**/_go.mod"},
    }
    
    func testSrc(a *Archive) {
    	test("source", a, srcRules)
    
    	// Check that no generated files slip in, even if new ones are added.
    	for _, f := range a.Files {
    		if strings.HasPrefix(path.Base(f.Name), "z") {
    			data, err := os.ReadFile(filepath.Join(goroot, strings.TrimPrefix(f.Name, "go/")))
    			if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 01 22:29:19 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssagen/nowb.go

    	// it's a lot harder to work out the argument after.
    	for _, n := range typecheck.Target.Funcs {
    		c.curfn = n
    		if c.curfn.ABIWrapper() {
    			// We only want "real" calls to these
    			// functions, not the generated ones within
    			// their own ABI wrappers.
    			continue
    		}
    		ir.Visit(n, c.findExtraCalls)
    	}
    	c.curfn = nil
    	return c
    }
    
    func (c *nowritebarrierrecChecker) findExtraCalls(nn ir.Node) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 17:29:46 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. src/cmd/go/internal/vcweb/svn.go

    	if stderr.Len() > 0 {
    		stderrFrag = "\n" + stderr.String()
    	}
    	h.logger.Printf("%v: %s%s", cmd, errFrag, stderrFrag)
    }
    
    // Close stops accepting new svn:// connections and terminates the existing
    // ones, then waits for the 'svnserve' subprocesses to complete.
    func (h *svnHandler) Close() error {
    	h.listenOnce.Do(func() {})
    	if h.s == nil {
    		return nil
    	}
    
    	var err error
    	s := <-h.s
    	s.closing = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:44:48 UTC 2022
    - 5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/decompose.go

    				f.NamedValues[*dataName] = append(f.NamedValues[*dataName], v.Args[1])
    				toDelete = append(toDelete, namedVal{i, j})
    			}
    		case t.IsFloat():
    			// floats are never decomposed, even ones bigger than RegSize
    		case t.Size() > f.Config.RegSize:
    			f.Fatalf("undecomposed named type %s %v", name, t)
    		}
    	}
    
    	deleteNamedVals(f, toDelete)
    	f.Names = append(f.Names, newNames...)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 23 21:22:15 UTC 2022
    - 13.4K bytes
    - Viewed (0)
  7. src/cmd/fix/doc.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    /*
    Fix finds Go programs that use old APIs and rewrites them to use
    newer ones.  After you update to a new Go release, fix helps make
    the necessary changes to your programs.
    
    Usage:
    
    	go tool fix [-r name,...] [path ...]
    
    Without an explicit path, fix reads standard input and writes the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/initorder.go

    		if obj, _ := obj.(dependency); obj != nil {
    			M[obj] = &graphNode{obj: obj}
    		}
    	}
    
    	// compute edges for graph M
    	// (We need to include all nodes, even isolated ones, because they still need
    	// to be scheduled for initialization in correct order relative to other nodes.)
    	for obj, n := range M {
    		// for each dependency obj -> d (= deps[i]), create graph edges n->s and s->n
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 22:06:51 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  9. src/cmd/go/internal/workcmd/use.go

    Use fails if any remaining use directives refer to modules that
    do not exist.
    
    Use updates the go line in go.work to specify a version at least as
    new as all the go lines in the used modules, both preexisting ones
    and newly added ones. With no arguments, this update is the only
    thing that go work use does.
    
    The -r flag searches recursively for modules in the argument
    directories, and the use command operates as if each of the directories
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 7K bytes
    - Viewed (0)
  10. src/cmd/go/internal/work/action.go

    	// Expand Deps to include all built packages, for the linker.
    	// Use breadth-first search to find rebuilt-for-test packages
    	// before the standard ones.
    	// TODO(rsc): Eliminate the standard ones from the action graph,
    	// which will require doing a little bit more rebuilding.
    	workq := []*Action{a1}
    	haveDep := map[string]bool{}
    	if a1.Package != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 32.7K bytes
    - Viewed (0)
Back to top