Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 51 for createdBy (0.66 sec)

  1. src/cmd/link/internal/ld/main.go

    	"runtime"
    	"runtime/pprof"
    	"strconv"
    	"strings"
    )
    
    var (
    	pkglistfornote []byte
    	windowsgui     bool // writes a "GUI binary" instead of a "console binary"
    	ownTmpDir      bool // set to true if tmp dir created by linker (e.g. no -tmpdir)
    )
    
    func init() {
    	flag.Var(&rpath, "r", "set the ELF dynamic linker search `path` to dir1:dir2:...")
    	flag.Var(&flagExtld, "extld", "use `linker` when linking in external mode")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:59:50 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/infer.go

    		// a tilde as well.
    		return &term{tilde, typ}, false
    	}
    	return nil, false
    }
    
    // killCycles walks through the given type parameters and looks for cycles
    // created by type parameters whose inferred types refer back to that type
    // parameter, either directly or indirectly. If such a cycle is detected,
    // it is killed by setting the corresponding inferred type to nil.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  3. src/cmd/cover/cover.go

    		//	}
    		elseOffset := f.findText(n.Body.End(), "else")
    		if elseOffset < 0 {
    			panic("lost else")
    		}
    		f.edit.Insert(elseOffset+4, "{")
    		f.edit.Insert(f.offset(n.Else.End()), "}")
    
    		// We just created a block, now walk it.
    		// Adjust the position of the new block to start after
    		// the "else". That will cause it to follow the "{"
    		// we inserted above.
    		pos := f.fset.File(n.Body.End()).Pos(elseOffset + 4)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/lib.go

    				Exitf("cannot close %s: %v", dst, err)
    			}
    		}()
    	}
    	wg.Wait()
    	return paths
    }
    
    // writeGDBLinkerScript creates gcc linker script file in temp
    // directory. writeGDBLinkerScript returns created file path.
    // The script is used to work around gcc bug
    // (see https://golang.org/issue/20183 for details).
    func writeGDBLinkerScript() string {
    	name := "fix_debug_gdb_scripts.ld"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  5. src/cmd/go/go_test.go

    	}
    	tg.must(robustio.RemoveAll(path))
    	tg.temps = append(tg.temps, path)
    }
    
    // makeTempdir makes a temporary directory for a run of testgo. If
    // the temporary directory was already created, this does nothing.
    func (tg *testgoData) makeTempdir() {
    	tg.t.Helper()
    	if tg.tempdir == "" {
    		var err error
    		tg.tempdir, err = os.MkdirTemp("", "gotest")
    		tg.must(err)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  6. src/cmd/trace/procgen.go

    	}
    
    	if from == trace.GoWaiting {
    		// Goroutine was unblocked.
    		gs.unblock(ev.Time(), ev.Stack(), ev.Proc(), ctx)
    	}
    	if from == trace.GoNotExist && to == trace.GoRunnable {
    		// Goroutine was created.
    		gs.created(ev.Time(), ev.Proc(), ev.Stack())
    	}
    	if from == trace.GoSyscall && to != trace.GoRunning {
    		// Goroutine exited a blocked syscall.
    		gs.blockedSyscallEnd(ev.Time(), ev.Stack(), ctx)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/subst.go

    			iface.methods, _ = replaceRecvType(methods, t, iface)
    
    			// If check != nil, check.newInterface will have saved the interface for later completion.
    			if subst.check == nil { // golang/go#61561: all newly created interfaces must be completed
    				iface.typeSet()
    			}
    			return iface
    		}
    
    	case *Map:
    		key := subst.typ(t.key)
    		elem := subst.typ(t.elem)
    		if key != t.key || elem != t.elem {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:04:07 UTC 2024
    - 11K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/internal/graph/graph.go

    // AddToEdge increases the weight of an edge between two nodes. If
    // there isn't such an edge one is created.
    func (n *Node) AddToEdge(to *Node, v int64, residual, inline bool) {
    	n.AddToEdgeDiv(to, 0, v, residual, inline)
    }
    
    // AddToEdgeDiv increases the weight of an edge between two nodes. If
    // there isn't such an edge one is created.
    func (n *Node) AddToEdgeDiv(to *Node, dv, v int64, residual, inline bool) {
    	if n.Out[to] != to.In[n] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/liveness/plive.go

    				// everywhere in a function, since a panic can
    				// occur (almost) anywhere. Because it is live
    				// everywhere, it must be zeroed on entry.
    				livedefer.Set(int32(i))
    				// It was already marked as Needzero when created.
    				if !n.Needzero() {
    					base.Fatalf("all pointer-containing defer arg slots should have Needzero set")
    				}
    			}
    		}
    	}
    
    	// We must analyze the entry block first. The runtime assumes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/telemetry/internal/upload/findwork.go

    				// right thing...
    				//
    				// (see https://github.com/golang/go/issues/63142#issuecomment-1734025130)
    				if asof.Before(reportDate) {
    					// Note: since this report was created after telemetry was enabled,
    					// we can only assume that the process that created it checked that
    					// the counter data contained therein was all from after the asof
    					// date.
    					//
    					// TODO(rfindley): store the begin date in reports, so that we can
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:12:15 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top