Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for systemTime (0.18 sec)

  1. src/os/exec.go

    func (p *ProcessState) UserTime() time.Duration {
    	return p.userTime()
    }
    
    // SystemTime returns the system CPU time of the exited process and its children.
    func (p *ProcessState) SystemTime() time.Duration {
    	return p.systemTime()
    }
    
    // Exited reports whether the program has exited.
    // On Unix systems this reports true if the program exited due to calling exit,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/shell.go

    		aj := a.json
    		aj.Cmd = append(aj.Cmd, joinUnambiguously(cmdline))
    		aj.CmdReal += time.Since(start)
    		if ps := cmd.ProcessState; ps != nil {
    			aj.CmdUser += ps.UserTime()
    			aj.CmdSys += ps.SystemTime()
    		}
    	}
    
    	// err can be something like 'exit status 1'.
    	// Add information about what program was running.
    	// Note that if buf.Bytes() is non-empty, the caller usually
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/symbolizer/symbolizer.go

    	if fn.Name != "" && fn.SystemName != fn.Name {
    		return // Already demangled.
    	}
    	// Copy the options because they may be updated by the call.
    	o := make([]demangle.Option, len(options))
    	copy(o, options)
    	if demangled := demangle.Filter(fn.SystemName, o...); demangled != fn.SystemName {
    		fn.Name = demangled
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. maven-compat/src/main/java/org/apache/maven/artifact/resolver/DefaultArtifactResolver.java

            }
    
            if (Artifact.SCOPE_SYSTEM.equals(artifact.getScope())) {
                File systemFile = artifact.getFile();
    
                if (systemFile == null) {
                    throw new ArtifactNotFoundException("System artifact: " + artifact + " has no file attached", artifact);
                }
    
                if (!systemFile.exists()) {
                    throw new ArtifactNotFoundException(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/profile/profile.go

    			lnStr = fmt.Sprintf("%s %s:%d:%d s=%d",
    				fn.Name,
    				fn.Filename,
    				l.Line[li].Line,
    				l.Line[li].Column,
    				fn.StartLine)
    			if fn.Name != fn.SystemName {
    				lnStr = lnStr + "(" + fn.SystemName + ")"
    			}
    		}
    		ss = append(ss, locStr+lnStr)
    		// Do not print location details past the first line
    		locStr = "             "
    	}
    	return strings.Join(ss, "\n")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/report/source.go

    		sp.interest[fn.Function.SystemName] = true
    		if _, ok := addrs[addr]; !ok {
    			addrs[addr] = addrInfo{loc, sp.objectFile(loc.Mapping)}
    		}
    	}
    
    	// See if sp.sym matches line.
    	matches := func(line profile.Line) bool {
    		if line.Function == nil {
    			return false
    		}
    		return sp.sym.MatchString(line.Function.Name) ||
    			sp.sym.MatchString(line.Function.SystemName) ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/internal/graph/graph.go

    		Columnno: int(line.Column),
    		Name:     line.Function.Name,
    	}
    	if fname := line.Function.Filename; fname != "" {
    		ni.File = filepath.Clean(fname)
    	}
    	if o.OrigFnNames {
    		ni.OrigName = line.Function.SystemName
    	}
    	if o.ObjNames || (ni.Name == "" && ni.OrigName == "") {
    		ni.Objfile = objfile
    		ni.StartLine = int(line.Function.StartLine)
    	}
    	return ni
    }
    
    type tags struct {
    	t    []*Tag
    	flat bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/internal/report/report.go

    	if f := fm[fName]; f != nil {
    		return f, false
    	}
    
    	f := &profile.Function{
    		ID:         uint64(len(fm) + 1),
    		Name:       ni.Name,
    		SystemName: ni.OrigName,
    		Filename:   ni.File,
    		StartLine:  int64(ni.StartLine),
    	}
    	fm[fName] = f
    	return f, true
    }
    
    // printAssembly prints an annotated assembly listing.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
Back to top