Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 888 for proc (0.05 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/ztypes_darwin_arm64.go

    	P_addr      uintptr
    	P_xstat     uint16
    	P_acflag    uint16
    	P_ru        *Rusage
    }
    
    type Itimerval struct {
    	Interval Timeval
    	Value    Timeval
    }
    
    type KinfoProc struct {
    	Proc  ExternProc
    	Eproc Eproc
    }
    
    type Vmspace struct {
    	Dummy  int32
    	Dummy2 *int8
    	Dummy3 [5]int32
    	Dummy4 [3]*int8
    }
    
    type Pcred struct {
    	Pc_lock  [72]int8
    	Pc_ucred uintptr
    	P_ruid   uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  2. pkg/kubelet/prober/scale_test.go

    // that the ephemeral port is not exhausted.
    
    // The default port range on a normal Linux system has 28321 free ephemeral ports per
    // tuple srcIP,srcPort:dstIP:dstPort:Proto: /proc/sys/net/ipv4/ip_local_port_range 32768 60999
    // 1 pods x 600 containers/pod x 1 probes/container x 1 req/sec = 600 req/sec
    // 600 req/sec x 59 sec = 35400
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 16 16:33:01 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  3. pkg/volume/nfs/nfs.go

    	*nfs
    }
    
    func (c *nfsUnmounter) TearDown() error {
    	return c.TearDownAt(c.GetPath())
    }
    
    func (c *nfsUnmounter) TearDownAt(dir string) error {
    	// Use extensiveMountPointCheck to consult /proc/mounts. We can't use faster
    	// IsLikelyNotMountPoint (lstat()), since there may be root_squash on the
    	// NFS server and kubelet may not be able to do lstat/stat() there.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  4. src/crypto/x509/pem_decrypt.go

    	for i := 0; i < pad; i++ {
    		encrypted = append(encrypted, byte(pad))
    	}
    	enc.CryptBlocks(encrypted, encrypted)
    
    	return &pem.Block{
    		Type: blockType,
    		Headers: map[string]string{
    			"Proc-Type": "4,ENCRYPTED",
    			"DEK-Info":  ciph.name + "," + hex.EncodeToString(iv),
    		},
    		Bytes: encrypted,
    	}, nil
    }
    
    func cipherByName(name string) *rfc1423Algo {
    	for i := range rfc1423Algos {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/report/source.go

    				return path[found+len(want):]
    			}
    		}
    	}
    	// Trim configured trim prefixes.
    	trimPaths := append(filepath.SplitList(filepath.ToSlash(trimPath)), "/proc/self/cwd/./", "/proc/self/cwd/")
    	for _, trimPath := range trimPaths {
    		if !strings.HasSuffix(trimPath, "/") {
    			trimPath += "/"
    		}
    		if strings.HasPrefix(sPath, trimPath) {
    			return path[len(trimPath):]
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  6. src/runtime/traceevent.go

    }
    
    // eventWriter creates a new traceEventWriter. It is the main entrypoint for writing trace events.
    //
    // Before creating the event writer, this method will emit a status for the current goroutine
    // or proc if it exists, and if it hasn't had its status emitted yet. goStatus and procStatus indicate
    // what the status of goroutine or P should be immediately *before* the events that are about to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    // function from module by ordinal.
    func GetProcAddressByOrdinal(module Handle, ordinal uintptr) (proc uintptr, err error) {
    	r0, _, e1 := syscall.Syscall(procGetProcAddress.Addr(), 2, uintptr(module), ordinal, 0)
    	proc = uintptr(r0)
    	if proc == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func Exit(code int) { ExitProcess(uint32(code)) }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zsysctl_openbsd_arm64.go

    	{"kern.ostype", []_C_int{1, 1}},
    	{"kern.osversion", []_C_int{1, 27}},
    	{"kern.pfstatus", []_C_int{1, 86}},
    	{"kern.pool_debug", []_C_int{1, 77}},
    	{"kern.posix1version", []_C_int{1, 17}},
    	{"kern.proc", []_C_int{1, 66}},
    	{"kern.rawpartition", []_C_int{1, 24}},
    	{"kern.saved_ids", []_C_int{1, 20}},
    	{"kern.securelevel", []_C_int{1, 9}},
    	{"kern.seminfo", []_C_int{1, 61}},
    	{"kern.shminfo", []_C_int{1, 62}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  9. src/syscall/zsyscall_windows.go

    func GetProcAddress(module Handle, procname string) (proc uintptr, err error) {
    	var _p0 *byte
    	_p0, err = BytePtrFromString(procname)
    	if err != nil {
    		return
    	}
    	return _GetProcAddress(module, _p0)
    }
    
    func _GetProcAddress(module Handle, procname *byte) (proc uintptr, err error) {
    	r0, _, e1 := Syscall(procGetProcAddress.Addr(), 2, uintptr(module), uintptr(unsafe.Pointer(procname)), 0)
    	proc = uintptr(r0)
    	if proc == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 56.3K bytes
    - Viewed (0)
  10. src/internal/poll/splice_linux.go

    	// the kernel to move in a single call to splice(2).
    	// We use 1MB as Splice writes data through a pipe, and 1MB is the default maximum pipe buffer size,
    	// which is determined by /proc/sys/fs/pipe-max-size.
    	maxSpliceSize = 1 << 20
    )
    
    // Splice transfers at most remain bytes of data from src to dst, using the
    // splice system call to minimize copies of data from and to userspace.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:49:26 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top