Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 903 for prof (0.33 sec)

  1. src/cmd/internal/obj/plist.go

    // Prog generated.
    func (ctxt *Link) EmitEntryLiveness(s *LSym, p *Prog, newprog ProgAlloc) *Prog {
    	pcdata := ctxt.EmitEntryStackMap(s, p, newprog)
    	pcdata = ctxt.EmitEntryUnsafePoint(s, pcdata, newprog)
    	return pcdata
    }
    
    // Similar to EmitEntryLiveness, but just emit stack map.
    func (ctxt *Link) EmitEntryStackMap(s *LSym, p *Prog, newprog ProgAlloc) *Prog {
    	pcdata := Appendp(p, newprog)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  2. hack/serve-prom-scrapes.sh

    Mike Spreitzer <******@****.***> 1643956386 -0500
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 04 06:33:06 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  3. releasenotes/notes/prom-cert-permission.yaml

    Pengyuan Bian <******@****.***> 1616894114 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Mar 28 01:15:14 UTC 2021
    - 190 bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/routes/profiling.go

    import (
    	"net/http"
    	"net/http/pprof"
    
    	"k8s.io/apiserver/pkg/server/mux"
    )
    
    // Profiling adds handlers for pprof under /debug/pprof.
    type Profiling struct{}
    
    // Install adds the Profiling webservice to the given mux.
    func (d Profiling) Install(c *mux.PathRecorderMux) {
    	c.UnlistedHandleFunc("/debug/pprof", redirectTo("/debug/pprof/"))
    	c.UnlistedHandlePrefix("/debug/pprof/", http.HandlerFunc(pprof.Index))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 06 11:35:01 UTC 2018
    - 1.4K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/gcflags_patterns.txt

    stderr 'link.* -X=x.y=z'
    
    # -ldflags applies to link of command
    go build -a -n -ldflags=-X=math.pi=3 my/cmd/prog
    stderr 'link.* -X=math.pi=3'
    
    # -ldflags applies to link of command even with strange directory name
    go build -a -n -ldflags=-X=math.pi=3 my/cmd/prog/
    stderr 'link.* -X=math.pi=3'
    
    # -ldflags applies to current directory
    cd my/cmd/prog
    go build -a -n -ldflags=-X=math.pi=3
    stderr 'link.* -X=math.pi=3'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 21 14:58:44 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/util.go

    		sc += ".U"
    	}
    	return sc
    }
    
    func (p *Prog) String() string {
    	if p == nil {
    		return "<nil Prog>"
    	}
    	if p.Ctxt == nil {
    		return "<Prog without ctxt>"
    	}
    	return fmt.Sprintf("%.5d (%v)\t%s", p.Pc, p.Line(), p.InstructionString())
    }
    
    func (p *Prog) InnermostString(w io.Writer) {
    	if p == nil {
    		io.WriteString(w, "<nil Prog>")
    		return
    	}
    	if p.Ctxt == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  7. src/runtime/pprof/protomem_test.go

    	}
    
    	const expectedSample = "testing.tRunner;runtime/pprof.TestGenericsInlineLocations;runtime/pprof.nonRecursiveGenericAllocFunction[go.shape.struct {},go.shape.struct { runtime/pprof.buf [128]uint8 }];runtime/pprof.nonRecursiveGenericAllocFunction[go.shape.struct { runtime/pprof.buf [128]uint8 },go.shape.struct {}];runtime/pprof.storeAlloc [1 16 1 16]"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:45 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/internal/symbolz/symbolz.go

    // pprof_remote_servers.html from the gperftools distribution
    func hasGperftoolsSuffix(path string) bool {
    	suffixes := []string{
    		"/pprof/heap",
    		"/pprof/growth",
    		"/pprof/profile",
    		"/pprof/pmuprofile",
    		"/pprof/contention",
    	}
    	for _, s := range suffixes {
    		if strings.HasSuffix(path, s) {
    			return true
    		}
    	}
    	return false
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 15:18:01 UTC 2019
    - 5.4K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.27.md

    [registry.k8s.io/kube-apiserver:v...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  10. src/cmd/trace/procgen.go

    }
    
    func (g *procGenerator) ProcTransition(ctx *traceContext, ev *trace.Event) {
    	st := ev.StateTransition()
    	proc := st.Resource.Proc()
    
    	g.maxProc = max(g.maxProc, proc)
    	viewerEv := traceviewer.InstantEvent{
    		Resource: uint64(proc),
    		Stack:    ctx.Stack(viewerFrames(ev.Stack())),
    	}
    
    	from, to := st.Proc()
    	if from == to {
    		// Filter out no-op events.
    		return
    	}
    	if to.Executing() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top