Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 903 for prof (0.3 sec)

  1. src/regexp/onepass.go

    			prog.Inst[ix].Next = nil
    			prog.Inst[ix] = onePassInst{Inst: instOriginal}
    		}
    	}
    }
    
    // onePassCopy creates a copy of the original Prog, as we'll be modifying it.
    func onePassCopy(prog *syntax.Prog) *onePassProg {
    	p := &onePassProg{
    		Start:  prog.Start,
    		NumCap: prog.NumCap,
    		Inst:   make([]onePassInst, len(prog.Inst)),
    	}
    	for i, inst := range prog.Inst {
    		p.Inst[i] = onePassInst{Inst: inst}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  2. src/internal/trace/traceviewer/http.go

    </p>
    
    <h2>Profiles</h2>
    <p>
      Each link below displays a global profile in zoomable graph form as
      produced by <a href='https://go.dev/blog/pprof'>pprof</a>'s "web" command.
    
      In addition there is a link to download the profile for offline
      analysis with pprof.
    
      All four profiles represent causes of delay that prevent a goroutine
      from running on a logical processor: because it was waiting for the network,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:53 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/asm.go

    				prog.Reg = p.getRegister(prog, op, &a[2])
    				prog.To = a[3]
    				break
    			}
    			if arch.IsARMMULA(op) {
    				// All must be registers.
    				p.getRegister(prog, op, &a[0])
    				r1 := p.getRegister(prog, op, &a[1])
    				r2 := p.getRegister(prog, op, &a[2])
    				p.getRegister(prog, op, &a[3])
    				prog.From = a[0]
    				prog.To = a[3]
    				prog.To.Type = obj.TYPE_REGREG2
    				prog.To.Offset = int64(r2)
    				prog.Reg = r1
    				break
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/kotlinDsl/androidBuild/kotlin/app/proguard-rules.pro

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 751 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/mavenMigration/profiles/kotlin/profile-prod.gradle.kts

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 46 bytes
    - Viewed (0)
  6. src/cmd/pprof/README

    This directory is the copy of Google's pprof shipped as part of the Go distribution.
    The bulk of the code is vendored from github.com/google/pprof and is in
    ../vendor/github.com/google/pprof.
    
    Two important notes:
    
    1. Using github.com/google/pprof directly (for example, after installing
    with "go get") should work with Go programs, but we cannot guarantee that.
    What we test is that the "go tool pprof" shipped with each Go release works
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 10 19:51:01 UTC 2017
    - 905 bytes
    - Viewed (0)
  7. src/net/http/pprof/pprof_test.go

    	}{
    		{"/debug/pprof/<script>scripty<script>", Index, http.StatusNotFound, "text/plain; charset=utf-8", "", []byte("Unknown profile\n")},
    		{"/debug/pprof/heap", Index, http.StatusOK, "application/octet-stream", `attachment; filename="heap"`, nil},
    		{"/debug/pprof/heap?debug=1", Index, http.StatusOK, "text/plain; charset=utf-8", "", nil},
    		{"/debug/pprof/cmdline", Cmdline, http.StatusOK, "text/plain; charset=utf-8", "", nil},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 19:52:28 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  8. src/regexp/backtrack.go

    // the backtracker using prog.
    func maxBitStateLen(prog *syntax.Prog) int {
    	if !shouldBacktrack(prog) {
    		return 0
    	}
    	return maxBacktrackVector / len(prog.Inst)
    }
    
    // shouldBacktrack reports whether the program is too
    // long for the backtracker to run.
    func shouldBacktrack(prog *syntax.Prog) bool {
    	return len(prog.Inst) <= maxBacktrackProg
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 17:25:39 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  9. 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)
  10. src/runtime/pprof/mprof_test.go

    		legacy: fmt.Sprintf(`0: 0 \[%v: %v\] @ 0x[0-9,a-f]+ 0x[0-9,a-f]+ 0x[0-9,a-f]+ 0x[0-9,a-f]+
    #	0x[0-9,a-f]+	runtime/pprof\.allocateTransient2MInline\+0x[0-9,a-f]+	.*runtime/pprof/mprof_test.go:34
    #	0x[0-9,a-f]+	runtime/pprof\.TestMemoryProfiler\+0x[0-9,a-f]+	.*runtime/pprof/mprof_test.go:81
    `, memoryProfilerRun, (2<<20)*memoryProfilerRun),
    	}, {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 16 15:20:22 UTC 2022
    - 5.3K bytes
    - Viewed (0)
Back to top