Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,040 for userTime (0.63 sec)

  1. src/syscall/syscall_windows.go

    //sys	getStartupInfo(startupInfo *StartupInfo) = GetStartupInfoW
    //sys	GetCurrentProcess() (pseudoHandle Handle, err error)
    //sys	GetProcessTimes(handle Handle, creationTime *Filetime, exitTime *Filetime, kernelTime *Filetime, userTime *Filetime) (err error)
    //sys	DuplicateHandle(hSourceProcessHandle Handle, hSourceHandle Handle, hTargetProcessHandle Handle, lpTargetHandle *Handle, dwDesiredAccess uint32, bInheritHandle bool, dwOptions uint32) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    //sys	GetExitCodeProcess(handle Handle, exitcode *uint32) (err error)
    //sys	getStartupInfo(startupInfo *StartupInfo) = GetStartupInfoW
    //sys	GetProcessTimes(handle Handle, creationTime *Filetime, exitTime *Filetime, kernelTime *Filetime, userTime *Filetime) (err error)
    //sys	DuplicateHandle(hSourceProcessHandle Handle, hSourceHandle Handle, hTargetProcessHandle Handle, lpTargetHandle *Handle, dwDesiredAccess uint32, bInheritHandle bool, dwOptions uint32) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  3. src/runtime/metrics_test.go

    		t.Errorf("manually computed total does not match ScavengeTotalTime: %d cpu-ns vs. %d cpu-ns", scavTotal, stats.ScavengeTotalTime)
    	}
    	total := gcTotal + scavTotal + stats.IdleTime + stats.UserTime
    	if total != stats.TotalTime {
    		t.Errorf("manually computed overall total does not match TotalTime: %d cpu-ns vs. %d cpu-ns", total, stats.TotalTime)
    	}
    	if total == 0 {
    		t.Error("total time is zero")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 45K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	WorkingSetPrivateSize        int64
    	HardFaultCount               uint32
    	NumberOfThreadsHighWatermark uint32
    	CycleTime                    uint64
    	CreateTime                   int64
    	UserTime                     int64
    	KernelTime                   int64
    	ImageName                    NTUnicodeString
    	BasePriority                 int32
    	UniqueProcessID              uintptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    }
    
    func GetProcessTimes(handle Handle, creationTime *Filetime, exitTime *Filetime, kernelTime *Filetime, userTime *Filetime) (err error) {
    	r1, _, e1 := syscall.Syscall6(procGetProcessTimes.Addr(), 5, uintptr(handle), uintptr(unsafe.Pointer(creationTime)), uintptr(unsafe.Pointer(exitTime)), uintptr(unsafe.Pointer(kernelTime)), uintptr(unsafe.Pointer(userTime)), 0)
    	if r1 == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  6. docs/sts/rw-ldap-username.json

    Harshavardhana <******@****.***> 1622223187 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 28 17:33:07 UTC 2021
    - 201 bytes
    - Viewed (0)
  7. src/os/user/lookup.go

    var cache struct {
    	sync.Once
    	u   *User
    	err error
    }
    
    // Lookup looks up a user by username. If the user cannot be found, the
    // returned error is of type [UnknownUserError].
    func Lookup(username string) (*User, error) {
    	if u, err := Current(); err == nil && u.Username == username {
    		return u, err
    	}
    	return lookupUser(username)
    }
    
    // LookupId looks up a user by userid. If the user cannot be found, the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. src/os/user/lookup_unix.go

    	}
    	defer f.Close()
    	return findGroupId(id, f)
    }
    
    func lookupUser(username string) (*User, error) {
    	f, err := os.Open(userFile)
    	if err != nil {
    		return nil, err
    	}
    	defer f.Close()
    	return findUsername(username, f)
    }
    
    func lookupUserId(uid string) (*User, error) {
    	f, err := os.Open(userFile)
    	if err != nil {
    		return nil, err
    	}
    	defer f.Close()
    	return findUserId(uid, f)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 07 23:34:21 UTC 2023
    - 6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/credentials-handling/pass-credentials-to-external-tool-via-stdin/README.adoc

    Command-line arguments can be passed to the Exec task using the `args` property.
    
    To demonstrate the concept, we will fake the authentication using a bash script that prompts the user for username and password:
    ====
    include::sample[dir="groovy",files="login.sh[]"]
    ====
    It has a hardcoded username/password pair that will result in successful login.
    The script can be executed without Gradle - it will mimic a tool that requires an interactive login.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"(*ProcessState).Success", Method, 0},
    		{"(*ProcessState).Sys", Method, 0},
    		{"(*ProcessState).SysUsage", Method, 0},
    		{"(*ProcessState).SystemTime", Method, 0},
    		{"(*ProcessState).UserTime", Method, 0},
    		{"(*SyscallError).Error", Method, 0},
    		{"(*SyscallError).Timeout", Method, 10},
    		{"(*SyscallError).Unwrap", Method, 13},
    		{"(FileMode).IsDir", Method, 0},
    		{"(FileMode).IsRegular", Method, 1},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top