Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 138 for approx (0.5 sec)

  1. src/runtime/pprof/pprof.go

    //
    //	go tool pprof cpu.prof
    //
    // There are many commands available from the pprof command line.
    // Commonly used commands include "top", which prints a summary of the
    // top program hot-spots, and "web", which opens an interactive graph
    // of hot-spots and their call graphs. Use "help" for information on
    // all pprof commands.
    //
    // For more information about pprof, see
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  2. pilot/cmd/pilot-agent/status/server.go

    	if s.enableProfiling {
    		// Add the handler for pprof.
    		mux.HandleFunc("/debug/pprof/", s.handlePprofIndex)
    		mux.HandleFunc("/debug/pprof/cmdline", s.handlePprofCmdline)
    		mux.HandleFunc("/debug/pprof/profile", s.handlePprofProfile)
    		mux.HandleFunc("/debug/pprof/symbol", s.handlePprofSymbol)
    		mux.HandleFunc("/debug/pprof/trace", s.handlePprofTrace)
    	}
    	mux.HandleFunc("/debug/ndsz", s.handleNdsz)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 31.1K bytes
    - Viewed (1)
  3. src/cmd/compile/internal/test/testdata/pgo/inline/inline_hot.pprof.node_map

    Michael Pratt <******@****.***> 1709576979 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:20:01 UTC 2024
    - 267 bytes
    - Viewed (0)
  4. src/cmd/compile/internal/test/testdata/pgo/devirtualize/devirt.pprof.node_map

    Michael Pratt <******@****.***> 1709576979 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:20:01 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/modules.txt

    # github.com/google/pprof v0.0.0-20240528025155-186aa0362fba
    ## explicit; go 1.19
    github.com/google/pprof/driver
    github.com/google/pprof/internal/binutils
    github.com/google/pprof/internal/driver
    github.com/google/pprof/internal/elfexec
    github.com/google/pprof/internal/graph
    github.com/google/pprof/internal/measurement
    github.com/google/pprof/internal/plugin
    github.com/google/pprof/internal/report
    github.com/google/pprof/internal/symbolizer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/crypto/chacha20/chacha_ppc64le.s

    // # ====================================================================
    // # Written by Andy Polyakov <appro@openssl.org> for the OpenSSL
    // # project. The module is, however, dual licensed under OpenSSL and
    // # CRYPTOGAMS licenses depending on where you obtain it. For further
    // # details see http://www.openssl.org/~appro/cryptogams/.
    // # ====================================================================
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 9K bytes
    - Viewed (0)
  7. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/policy.go

    			// a role making the csrapprover controller approve a node client CSR
    			ObjectMeta: metav1.ObjectMeta{Name: "system:certificates.k8s.io:certificatesigningrequests:nodeclient"},
    			Rules: []rbacv1.PolicyRule{
    				rbacv1helpers.NewRule("create").Groups(certificatesGroup).Resources("certificatesigningrequests/nodeclient").RuleOrDie(),
    			},
    		},
    		{
    			// a role making the csrapprover controller approve a node client CSR requested by the node itself
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 19:25:10 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  8. pkg/ctrlz/ctrlz.go

    	}
    
    	if o.EnablePprof && o.Address == "localhost" {
    		router.HandleFunc("/debug/pprof/cmdline", pprof.Cmdline)
    		router.HandleFunc("/debug/pprof/profile", pprof.Profile)
    		router.HandleFunc("/debug/pprof/symbol", pprof.Symbol)
    		router.HandleFunc("/debug/pprof/trace", pprof.Trace)
    		router.PathPrefix("/debug/pprof/").HandlerFunc(pprof.Index)
    	}
    	registerHome(router, mainLayout)
    
    	addr := o.Address
    	if addr == "*" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 21:22:53 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  9. src/internal/trace/testdata/testprog/cpu-profile.go

    //go:build ignore
    
    package main
    
    import (
    	"bytes"
    	"context"
    	"fmt"
    	"internal/profile"
    	"log"
    	"os"
    	"runtime"
    	"runtime/pprof"
    	"runtime/trace"
    	"strings"
    	"time"
    )
    
    func main() {
    	cpuBuf := new(bytes.Buffer)
    	if err := pprof.StartCPUProfile(cpuBuf); err != nil {
    		log.Fatalf("failed to start CPU profile: %v", err)
    	}
    
    	if err := trace.Start(os.Stdout); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/build_pgo.txt

    stdout 'build\s+-pgo=prof'
    
    -- prof --
    -- triv.go --
    package main
    func main() {}
    -- overwrite.go --
    package main
    
    import (
    	"os"
    	"runtime/pprof"
    	"time"
    )
    
    func main() {
    	f, err := os.Create("prof")
    	if err != nil {
    		panic(err)
    	}
    	err = pprof.StartCPUProfile(f)
    	if err != nil {
    		panic(err)
    	}
    	// Spin to ensure we get some samples. If we get no samples, the result
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top