Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 266 for Kappen (0.4 sec)

  1. src/cmd/go/internal/work/action.go

    			if a.Package != nil {
    				// TODO(rsc): Make this a unique key for a.Package somehow.
    				a.json.Package = a.Package.ImportPath
    			}
    			for _, a1 := range a.Deps {
    				a.json.Deps = append(a.json.Deps, inWorkq[a1])
    			}
    		}
    		list = append(list, a.json)
    	}
    
    	js, err := json.MarshalIndent(list, "", "\t")
    	if err != nil {
    		fmt.Fprintf(os.Stderr, "go: writing debug action graph: %v\n", err)
    		return ""
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/buildlist.go

    				if !queued[dep] {
    					queue = append(queue, dep)
    					queued[dep] = true
    				}
    			}
    			if pkg.test != nil && !queued[pkg.test] {
    				queue = append(queue, pkg.test)
    				queued[pkg.test] = true
    			}
    
    			if !pathIsRoot[m.Path] {
    				if s := mg.Selected(m.Path); gover.ModCompare(m.Path, s, m.Version) < 0 {
    					roots = append(roots, m)
    					pathIsRoot[m.Path] = true
    				}
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/build/relnote/relnote.go

    				doc.Blocks = append(doc.Blocks, h)
    			}
    			prevPkg = pkg
    			// Put a blank line between the current and new blocks, so that the end
    			// of a file acts as a blank line.
    			lastLine := lastBlock(doc).Pos().EndLine
    			delta := lastLine + 2 - newdoc.Blocks[0].Pos().StartLine
    			for _, b := range newdoc.Blocks {
    				addLines(b, delta)
    			}
    		}
    		// Append non-empty blocks to the result document.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/rangefunc/rewrite.go

    	var stack []syntax.Node
    	var forStack []*syntax.ForStmt
    	forStack = append(forStack, nil)
    	syntax.Inspect(r.body, func(n syntax.Node) bool {
    		if n != nil {
    			stack = append(stack, n)
    			if nfor, ok := forRangeFunc(n); ok {
    				forStack = append(forStack, nfor)
    			}
    			if n, ok := n.(*syntax.LabeledStmt); ok {
    				l := n.Label.Value
    				labels = append(labels, l)
    				f := forStack[len(forStack)-1]
    				r.labelLoop[l] = f
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  5. src/cmd/go/internal/envcmd/env.go

    	}
    	ar, arChanged := cfg.EnvOrAndChanged("AR", "ar")
    	env = append(env, cfg.EnvVar{Name: "AR", Value: ar, Changed: arChanged})
    	env = append(env, cfg.EnvVar{Name: "CC", Value: cc, Changed: ccChanged})
    	env = append(env, cfg.EnvVar{Name: "CXX", Value: cxx, Changed: cxxChanged})
    
    	if cfg.BuildContext.CgoEnabled {
    		env = append(env, cfg.EnvVar{Name: "CGO_ENABLED", Value: "1", Changed: cfg.CGOChanged})
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/driver/driver.go

    }
    
    // An ObjTool inspects shared libraries and executable files.
    type ObjTool interface {
    	// Open opens the named object file. If the object is a shared
    	// library, start/limit/offset are the addresses where it is mapped
    	// into memory in the address space being inspected. If the object
    	// is a linux kernel, relocationSymbol is the name of the symbol
    	// corresponding to the start address.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  7. src/archive/tar/writer.go

    				spb = append(strconv.AppendInt(spb, s.Offset, 10), '\n')
    				spb = append(strconv.AppendInt(spb, s.Length, 10), '\n')
    			}
    			pad := blockPadding(int64(len(spb)))
    			spb = append(spb, zeroBlock[:pad]...)
    			hdr.Size += int64(len(spb)) // Accounts for encoded sparse map
    
    			// Add and modify appropriate PAX records.
    			dir, file := path.Split(realName)
    			hdr.Name = path.Join(dir, "GNUSparseFile.0", file)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  8. src/cmd/cgo/gcc.go

    			"-fno-builtin",
    		)
    	}
    
    	c = append(c, p.GccOptions...)
    	c = append(c, p.gccMachine()...)
    	if goos == "aix" {
    		c = append(c, "-maix64")
    		c = append(c, "-mcmodel=large")
    	}
    	// disable LTO so we get an object whose symbols we can read
    	c = append(c, "-fno-lto")
    	c = append(c, "-") //read input from standard input
    	return c
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/import.go

    			}
    			if dir, ok, err := dirInModule(path, m.Path, root, isLocal); err != nil {
    				return module.Version{}, "", "", nil, err
    			} else if ok {
    				mods = append(mods, m)
    				roots = append(roots, root)
    				dirs = append(dirs, dir)
    			} else {
    				altMods = append(altMods, m)
    			}
    		}
    
    		if len(mods) > 1 {
    			// We produce the list of directories from longest to shortest candidate
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  10. src/cmd/trace/tasks.go

    			if summary.Start != nil {
    				rawEvents = append(rawEvents, summary.Start)
    			}
    			if summary.End != nil {
    				rawEvents = append(rawEvents, summary.End)
    			}
    			rawEvents = append(rawEvents, summary.Logs...)
    			for _, r := range summary.Regions {
    				if r.Start != nil {
    					rawEvents = append(rawEvents, r.Start)
    				}
    				if r.End != nil {
    					rawEvents = append(rawEvents, r.End)
    				}
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.8K bytes
    - Viewed (0)
Back to top