Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 431 for nerede (0.1 sec)

  1. src/cmd/go/internal/modload/import.go

    				if sumErr := (*sumMissingError)(nil); errors.As(err, &sumErr) {
    					// We are missing a sum needed to fetch a module in the build list.
    					// We can't verify that the package is unique, and we may not find
    					// the package at all. Keep checking other modules to decide which
    					// error to report. Multiple sums may be missing if we need to look in
    					// multiple nested modules to resolve the import; we'll report them all.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  2. src/cmd/go/internal/workcmd/edit.go

    The -fmt flag reformats the go.work file without making other changes.
    This reformatting is also implied by any other modifications that use or
    rewrite the go.mod file. The only time this flag is needed is if no other
    flags are specified, as in 'go work edit -fmt'.
    
    The -godebug=key=value flag adds a godebug key=value line,
    replacing any existing godebug lines with the given key.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 11K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssagen/pgen.go

    		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.
    	// After genssa, the space needed includes local variables and the callee arg region.
    	// We must do this check prior to calling pp.Flush.
    	// If there are any oversized stack frames,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/tighten.go

    			case OpPhi, OpArg, OpArgIntReg, OpArgFloatReg, OpSelect0, OpSelect1, OpSelectN:
    				// Phis need to stay in their block.
    				// Arg must stay in the entry block.
    				// Tuple selectors must stay with the tuple generator.
    				// SelectN is typically, ultimately, a register.
    				continue
    			}
    			// Count arguments which will need a register.
    			narg := 0
    			for _, a := range v.Args {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 16 01:01:38 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/typexpr.go

    		typ = obj.Type() // type must have been assigned by Checker.objDecl
    	}
    	assert(typ != nil)
    
    	// The object may have been dot-imported.
    	// If so, mark the respective package as used.
    	// (This code is only needed for dot-imports. Without them,
    	// we only have to mark variables, see *Var case below).
    	if pkgName := check.dotImportMap[dotImportKey{scope, obj.Name()}]; pkgName != nil {
    		pkgName.used = true
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/resolver.go

    					continue
    				}
    
    				// add package to list of explicit imports
    				// (this functionality is provided as a convenience
    				// for clients; it is not needed for type-checking)
    				if !pkgImports[imp] {
    					pkgImports[imp] = true
    					pkg.imports = append(pkg.imports, imp)
    				}
    
    				pkgName := NewPkgName(s.Pos(), pkg, name, imp)
    				if s.LocalPkgName != nil {
    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/compile/internal/walk/switch.go

    	// The code below is structured to implicitly handle this case
    	// (e.g., sort.Slice doesn't need to invoke the less function
    	// when there's only a single slice element).
    
    	if s.exprname.Type().IsString() && len(cc) >= 2 {
    		// Sort strings by length and then by value. It is
    		// much cheaper to compare lengths than values, and
    		// all we need here is consistency. We respect this
    		// sorting below.
    		sort.Slice(cc, func(i, j int) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/rangefunc/rewrite.go

    		// The loop inside the one we are break/continue-ing
    		// needs to make that happen when we break out of it.
    		if x.Tok == syntax.Continue {
    			r.forStack[exitFrom].checkContinue = true
    		} else {
    			exitFrom = i // exitFrom--
    			r.forStack[exitFrom].checkBreak = true
    		}
    
    		// The loops along the way just need to break.
    		for j := exitFrom + 1; j < len(r.forStack); j++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  9. src/cmd/internal/objabi/stack.go

    func stackGuardMultiplier(race bool) int {
    	// This arithmetic must match that in runtime/internal/sys/consts.go:StackGuardMultiplier.
    	n := 1
    	// On AIX, a larger stack is needed for syscalls.
    	if buildcfg.GOOS == "aix" {
    		n += 1
    	}
    	// The race build also needs more stack.
    	if race {
    		n += 1
    	}
    	return n
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:28:56 UTC 2023
    - 904 bytes
    - Viewed (0)
  10. src/cmd/compile/internal/test/testdata/pgo/devirtualize/devirt.go

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // WARNING: Please avoid updating this file. If this file needs to be updated,
    // then a new devirt.pprof file should be generated:
    //
    //	$ cd $GOROOT/src/cmd/compile/internal/test/testdata/pgo/devirtualize/
    //	$ go mod init example.com/pgo/devirtualize
    //	$ go test -bench=. -cpuprofile ./devirt.pprof
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 13 18:17:57 UTC 2023
    - 6.2K bytes
    - Viewed (0)
Back to top