Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 35 for systemTime (0.36 sec)

  1. src/runtime/pprof/pprof_test.go

    				}
    
    				totalTime := userTime + systemTime
    				t.Logf("compare %s user + %s system = %s vs %s", userTime, systemTime, totalTime, value)
    				if err := compare(totalTime, value, maxDiff); err != nil {
    					t.Logf("compare got %v want nil", err)
    					ok = false
    				}
    
    				return ok
    			}
    
    			testCPUProfile(t, acceptProfile, func(dur time.Duration) {
    				userTime, systemTime = diffCPUTime(t, func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.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/golang.org/x/tools/internal/stdlib/manifest.go

    		{"Sysinfo_t.X_f", Field, 0},
    		{"Systemtime", Type, 0},
    		{"Systemtime.Day", Field, 0},
    		{"Systemtime.DayOfWeek", Field, 0},
    		{"Systemtime.Hour", Field, 0},
    		{"Systemtime.Milliseconds", Field, 0},
    		{"Systemtime.Minute", Field, 0},
    		{"Systemtime.Month", Field, 0},
    		{"Systemtime.Second", Field, 0},
    		{"Systemtime.Year", Field, 0},
    		{"TCGETS", Const, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  4. api/go1.txt

    pkg syscall (windows-386), type Systemtime struct
    pkg syscall (windows-386), type Systemtime struct, Day uint16
    pkg syscall (windows-386), type Systemtime struct, DayOfWeek uint16
    pkg syscall (windows-386), type Systemtime struct, Hour uint16
    pkg syscall (windows-386), type Systemtime struct, Milliseconds uint16
    pkg syscall (windows-386), type Systemtime struct, Minute uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
  5. 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)
  6. src/main/java/org/codelibs/core/message/MessageFormatter.java

        }
    
        /**
         * リソースバンドルを返します。
         *
         * @param systemName
         *            システム名
         * @return リソースバンドル
         */
        protected static ResourceBundle getResourceBundle(final String systemName) {
            if (!initialized) {
                initialize();
            }
            return ResourceBundleUtil.getBundle(systemName + MESSAGES, LocaleUtil.getDefault());
        }
    
        /**
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  7. src/internal/profile/profile.go

    			if fn := l.Line[li].Function; fn != nil {
    				lnStr = fmt.Sprintf("%s %s:%d s=%d",
    					fn.Name,
    					fn.Filename,
    					l.Line[li].Line,
    					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 = "             "
    		}
    	}
    
    	ss = append(ss, "Mappings")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 17:57:40 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  8. 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)
  9. src/internal/profile/merge.go

    	}
    	k := src.key()
    	if f, ok := pm.functions[k]; ok {
    		pm.functionsByID[src.ID] = f
    		return f
    	}
    	f := &Function{
    		ID:         uint64(len(pm.p.Function) + 1),
    		Name:       src.Name,
    		SystemName: src.SystemName,
    		Filename:   src.Filename,
    		StartLine:  src.StartLine,
    	}
    	pm.functions[k] = f
    	pm.functionsByID[src.ID] = f
    	pm.p.Function = append(pm.p.Function, f)
    	return f
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 17 19:35:56 UTC 2020
    - 11.3K bytes
    - Viewed (0)
  10. src/internal/syscall/windows/security_windows.go

    	PrivilegeCount uint32
    	Privileges     [1]LUID_AND_ATTRIBUTES
    }
    
    //sys	OpenThreadToken(h syscall.Handle, access uint32, openasself bool, token *syscall.Token) (err error) = advapi32.OpenThreadToken
    //sys	LookupPrivilegeValue(systemname *uint16, name *uint16, luid *LUID) (err error) = advapi32.LookupPrivilegeValueW
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 04 07:21:38 UTC 2023
    - 4K bytes
    - Viewed (0)
Back to top