Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 903 for prof (0.13 sec)

  1. 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)
  2. src/cmd/pprof/doc.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Pprof interprets and displays profiles of Go programs.
    //
    // Basic usage:
    //
    //	go tool pprof binary profile
    //
    // For detailed usage information:
    //
    //	go tool pprof -h
    //
    // For an example, see https://blog.golang.org/profiling-go-programs.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 19 15:49:05 UTC 2022
    - 419 bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.26.md

    cts-prod/southamerica-east1/images/kube-proxy-amd64), [arm](https://console.cloud.google.com/artifacts/docker/k8s-artifacts-prod/southamerica-east1/images/kube-proxy-arm), [arm64](https://console.cloud.google.com/artifacts/docker/k8s-artifacts-prod/southamerica-east1/images/kube-proxy-arm64), [ppc64le](https://console.cloud.google.com/artifacts/docker/k8s-artifacts-prod/southamerica-east1/images/kube-proxy-ppc64le), [s390x](https://console.cloud.google.com/artifacts/docker/k8s-artifacts-prod/sou...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 16:24:51 UTC 2024
    - 425.7K bytes
    - Viewed (0)
  4. utils/utils_windows_test.go

    			want: `C:/Users/name/go/pkg/mod/gorm.io/`,
    		},
    		{
    			file: `C:/go/work/proj/gorm/utils/utils.go`,
    			want: `C:/go/work/proj/gorm/`,
    		},
    		{
    			file: `C:/go/work/proj/gorm_alias/utils/utils.go`,
    			want: `C:/go/work/proj/gorm_alias/`,
    		},
    		{
    			file: `C:/go/work/proj/my.gorm.io/gorm@v1.2.3/utils/utils.go`,
    			want: `C:/go/work/proj/my.gorm.io/gorm@v1.2.3/`,
    		},
    	}
    	for _, c := range cases {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Nov 21 02:48:13 UTC 2022
    - 715 bytes
    - Viewed (0)
  5. guava-gwt/src/com/google/common/annotations/Annotations.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.3K bytes
    - Viewed (0)
  6. src/os/pidfd_linux_test.go

    	}
    	p.Wait()
    
    	// Use pid of a non-existing process.
    	proc, err := os.FindProcess(p.Pid)
    	// FindProcess should never return errors on Unix.
    	if err != nil {
    		t.Fatalf("FindProcess: got error %v, want <nil>", err)
    	}
    	// FindProcess should never return nil Process.
    	if proc == nil {
    		t.Fatal("FindProcess: got nil, want non-nil")
    	}
    	if proc.Status() != os.StatusDone {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 18:08:44 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. test/crlf.go

    // Test source files and strings containing \r and \r\n.
    
    package main
    
    import (
    	"fmt"
    	"strings"
    )
    
    func main() {
    	prog = strings.Replace(prog, "BQ", "`", -1)
    	prog = strings.Replace(prog, "CR", "\r", -1)
    	fmt.Print(prog)
    }
    
    var prog = `
    package main
    CR
    
    import "fmt"
    
    var CR s = "hello\n" + CR
    	" world"CR
    
    var t = BQhelloCR
     worldBQ
    
    var u = BQhCReCRlCRlCRoCR
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 20 15:45:43 UTC 2012
    - 782 bytes
    - Viewed (0)
  8. src/syscall/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: Mon Feb 26 21:03:59 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  9. src/cmd/trace/main.go

    	"io"
    	"log"
    	"net"
    	"net/http"
    	_ "net/http/pprof" // Required to use pprof
    	"os"
    	"sync/atomic"
    	"time"
    )
    
    const usageMessage = "" +
    	`Usage of 'go tool trace':
    Given a trace file produced by 'go test':
    	go test -trace=trace.out pkg
    
    Open a web browser displaying trace:
    	go tool trace [flags] [pkg.test] trace.out
    
    Generate a pprof-like profile from the trace:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  10. 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)
Back to top