Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for syscalls (0.12 sec)

  1. cmd/metrics-v2.go

    		Name:      readTotal,
    		Help:      "Total read SysCalls to the kernel. /proc/[pid]/io syscr",
    		Type:      counterMetric,
    	}
    }
    
    func getMinIOProcessSysCallWMD() MetricDescription {
    	return MetricDescription{
    		Namespace: nodeMetricNamespace,
    		Subsystem: sysCallSubsystem,
    		Name:      writeTotal,
    		Help:      "Total write SysCalls to the kernel. /proc/[pid]/io syscw",
    		Type:      counterMetric,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    func RegCloseKey(key Handle) (regerrno error) {
    	r0, _, _ := syscall.Syscall(procRegCloseKey.Addr(), 1, uintptr(key), 0, 0)
    	if r0 != 0 {
    		regerrno = syscall.Errno(r0)
    	}
    	return
    }
    
    func RegEnumKeyEx(key Handle, index uint32, name *uint16, nameLen *uint32, reserved *uint32, class *uint16, classLen *uint32, lastWriteTime *Filetime) (regerrno error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  3. src/runtime/proc.go

    	pc := getcallerpc()
    	sp := getcallersp()
    	bp := getcallerfp()
    	save(pc, sp, bp)
    	gp.syscallsp = gp.sched.sp
    	gp.syscallpc = gp.sched.pc
    	gp.syscallbp = gp.sched.bp
    	if gp.syscallsp < gp.stack.lo || gp.stack.hi < gp.syscallsp {
    		sp1 := sp
    		sp2 := gp.sched.sp
    		sp3 := gp.syscallsp
    		systemstack(func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet.go

    	klet.evictionManager = evictionManager
    	klet.admitHandlers.AddPodAdmitHandler(evictionAdmitHandler)
    
    	// Safe, allowed sysctls can always be used as unsafe sysctls in the spec.
    	// Hence, we concatenate those two lists.
    	safeAndUnsafeSysctls := append(sysctl.SafeSysctlAllowlist(), allowedUnsafeSysctls...)
    	sysctlsAllowlist, err := sysctl.NewAllowlist(safeAndUnsafeSysctls)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux.go

    const (
    	SIGABRT = syscall.Signal(0x6)
    	SIGALRM = syscall.Signal(0xe)
    	SIGFPE  = syscall.Signal(0x8)
    	SIGHUP  = syscall.Signal(0x1)
    	SIGILL  = syscall.Signal(0x4)
    	SIGINT  = syscall.Signal(0x2)
    	SIGIOT  = syscall.Signal(0x6)
    	SIGKILL = syscall.Signal(0x9)
    	SIGPIPE = syscall.Signal(0xd)
    	SIGQUIT = syscall.Signal(0x3)
    	SIGSEGV = syscall.Signal(0xb)
    	SIGTERM = syscall.Signal(0xf)
    	SIGTRAP = syscall.Signal(0x5)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 185.8K bytes
    - Viewed (0)
  6. src/cmd/trace/testdata/go122.test

    	data="GC sweep termination"
    String id=23
    	data="GC mark termination"
    String id=24
    	data="syscall.read"
    String id=25
    	data="/usr/local/google/home/mknyszek/work/go-1/src/syscall/zsyscall_linux_amd64.go"
    String id=26
    	data="syscall.Read"
    String id=27
    	data="/usr/local/google/home/mknyszek/work/go-1/src/syscall/syscall_unix.go"
    String id=28
    	data="internal/poll.ignoringEINTRIO"
    String id=29
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 17:15:58 UTC 2024
    - 166K bytes
    - Viewed (0)
  7. src/net/http/serve_test.go

    	"net/http/httputil"
    	"net/http/internal"
    	"net/http/internal/testcert"
    	"net/url"
    	"os"
    	"path/filepath"
    	"reflect"
    	"regexp"
    	"runtime"
    	"strconv"
    	"strings"
    	"sync"
    	"sync/atomic"
    	"syscall"
    	"testing"
    	"time"
    )
    
    type dummyAddr string
    type oneConnListener struct {
    	conn net.Conn
    }
    
    func (l *oneConnListener) Accept() (c net.Conn, err error) {
    	c = l.conn
    	if c == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  8. src/internal/trace/testdata/tests/go122-gc-stress.test

    String id=36
    	data="runtime.gcMarkTermination"
    String id=37
    	data="syscall.write"
    String id=38
    	data="/usr/local/google/home/mknyszek/work/go-1/src/syscall/zsyscall_linux_amd64.go"
    String id=39
    	data="syscall.Write"
    String id=40
    	data="/usr/local/google/home/mknyszek/work/go-1/src/syscall/syscall_unix.go"
    String id=41
    	data="internal/poll.ignoringEINTRIO"
    String id=42
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 139.1K bytes
    - Viewed (0)
Back to top