Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 903 for prof (0.04 sec)

  1. src/cmd/vendor/golang.org/x/telemetry/internal/upload/reports.go

    func findProgReport(meta map[string]string, report *telemetry.Report) *telemetry.ProgramReport {
    	for _, prog := range report.Programs {
    		if prog.Program == meta["Program"] && prog.Version == meta["Version"] &&
    			prog.GoVersion == meta["GoVersion"] && prog.GOOS == meta["GOOS"] &&
    			prog.GOARCH == meta["GOARCH"] {
    			return prog
    		}
    	}
    	prog := telemetry.ProgramReport{
    		Program:   meta["Program"],
    		Version:   meta["Version"],
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. 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)
  3. guava-gwt/src/com/google/common/collect/Collect.gwt.xml

        for prod and one for tests. However, unlike our other packages, as of this
        writing it has test supersource but no prod supersource.
    
        GWT happens to use the prod .gwt.xml, so it looks for no supersource for
        tests, either. This causes it to fail to find AtomicLongMapTest.
    
        Our workaround is to tell GWT that util.concurrent and all other packages
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 24 14:08:06 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. guava-gwt/src/com/google/common/math/Math.gwt.xml

        for prod and one for tests. However, unlike our other packages, as of this
        writing it has test supersource but no prod supersource.
    
        GWT happens to use the prod .gwt.xml, so it looks for no supersource for
        tests, either. This causes it to fail to find AtomicLongMapTest.
    
        Our workaround is to tell GWT that util.concurrent and all other packages
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jan 06 15:30:58 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  5. guava-gwt/test/com/google/common/testing/Testing.gwt.xml

        for prod and one for tests. However, unlike our other packages, as of this
        writing it has test supersource but no prod supersource.
    
        GWT happens to use the prod .gwt.xml, so it looks for no supersource for
        tests, either. This causes it to fail to find AtomicLongMapTest.
    
        Our workaround is to tell GWT that util.concurrent and all other packages
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jan 06 15:30:58 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/test_write_profiles_on_timeout.txt

    # Tests issue 19394
    
    [short] skip
    
    ! go test -cpuprofile cpu.pprof -memprofile mem.pprof -timeout 1ms
    stdout '^panic: test timed out'
    grep . cpu.pprof
    grep . mem.pprof
    
    -- go.mod --
    module profiling
    
    go 1.16
    -- timeout_test.go --
    package timeouttest_test
    
    import (
    	"testing"
    	"time"
    )
    
    func TestSleep(t *testing.T) {
    	for {
    		time.Sleep(1 * time.Second)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 04 17:47:28 UTC 2021
    - 360 bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/windows/dll_windows.go

    		if p.proc == nil {
    			e := p.l.Load()
    			if e != nil {
    				return e
    			}
    			proc, e := p.l.dll.FindProc(p.Name)
    			if e != nil {
    				return e
    			}
    			// Non-racy version of:
    			// p.proc = proc
    			atomic.StorePointer((*unsafe.Pointer)(unsafe.Pointer(&p.proc)), unsafe.Pointer(proc))
    		}
    	}
    	return nil
    }
    
    // mustFind is like Find but panics if search fails.
    func (p *LazyProc) mustFind() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Dec 05 12:36:42 UTC 2020
    - 12K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/routes/debugsocket.go

    func (s *DebugSocket) InstallProfiling() {
    	s.mux.HandleFunc("/debug/pprof", redirectTo("/debug/pprof/"))
    	s.mux.HandleFunc("/debug/pprof/", pprof.Index)
    	s.mux.HandleFunc("/debug/pprof/cmdline", pprof.Cmdline)
    	s.mux.HandleFunc("/debug/pprof/profile", pprof.Profile)
    	s.mux.HandleFunc("/debug/pprof/symbol", pprof.Symbol)
    	s.mux.HandleFunc("/debug/pprof/trace", pprof.Trace)
    }
    
    // InstallDebugFlag installs debug flag endpoints in the socket.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 08 00:33:16 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  9. test/bom.go

    // Test source file beginning with a byte order mark.
    
    package main
    
    import (
    	"fmt"
    	"strings"
    )
    
    func main() {
    	prog = strings.Replace(prog, "BOM", "\uFEFF", -1)
    	fmt.Print(prog)
    }
    
    var prog = `BOM
    package main
    
    func main() {
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 10 20:03:07 UTC 2012
    - 406 bytes
    - Viewed (0)
  10. src/cmd/pprof/pprof_test.go

    )
    
    // TestMain executes the test binary as the pprof command if
    // GO_PPROFTEST_IS_PPROF is set, and runs the tests otherwise.
    func TestMain(m *testing.M) {
    	if os.Getenv("GO_PPROFTEST_IS_PPROF") != "" {
    		main()
    		os.Exit(0)
    	}
    
    	os.Setenv("GO_PPROFTEST_IS_PPROF", "1") // Set for subprocesses to inherit.
    	os.Exit(m.Run())
    }
    
    // pprofPath returns the path to the "pprof" binary to run.
    func pprofPath(t testing.TB) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 16:07:59 UTC 2023
    - 3.4K bytes
    - Viewed (0)
Back to top