Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 41 for pdkill (0.26 sec)

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

    	{129, "EKEYREJECTED", "key was rejected by service"},
    	{130, "EOWNERDEAD", "owner died"},
    	{131, "ENOTRECOVERABLE", "state not recoverable"},
    	{132, "ERFKILL", "operation not possible due to RF-kill"},
    	{133, "EHWPOISON", "memory page has hardware error"},
    }
    
    // Signal table
    var signalList = [...]struct {
    	num  syscall.Signal
    	name string
    	desc string
    }{
    	{1, "SIGHUP", "hangup"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_386.go

    	{129, "EKEYREJECTED", "key was rejected by service"},
    	{130, "EOWNERDEAD", "owner died"},
    	{131, "ENOTRECOVERABLE", "state not recoverable"},
    	{132, "ERFKILL", "operation not possible due to RF-kill"},
    	{133, "EHWPOISON", "memory page has hardware error"},
    }
    
    // Signal table
    var signalList = [...]struct {
    	num  syscall.Signal
    	name string
    	desc string
    }{
    	{1, "SIGHUP", "hangup"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go

    	{129, "EKEYREJECTED", "key was rejected by service"},
    	{130, "EOWNERDEAD", "owner died"},
    	{131, "ENOTRECOVERABLE", "state not recoverable"},
    	{132, "ERFKILL", "operation not possible due to RF-kill"},
    	{133, "EHWPOISON", "memory page has hardware error"},
    }
    
    // Signal table
    var signalList = [...]struct {
    	num  syscall.Signal
    	name string
    	desc string
    }{
    	{1, "SIGHUP", "hangup"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  4. src/syscall/syscall_aix.go

    //sys	Getppid() (ppid int)
    //sys	Getpriority(which int, who int) (n int, err error)
    //sysnb	Getrlimit(which int, lim *Rlimit) (err error)
    //sysnb	Getrusage(who int, rusage *Rusage) (err error)
    //sysnb	Getuid() (uid int)
    //sys	Kill(pid int, signum Signal) (err error)
    //sys	Lchown(path string, uid int, gid int) (err error)
    //sys	Link(path string, link string) (err error)
    //sys	Lstat(path string, stat *Stat_t) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:50:55 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  5. src/syscall/exec_linux_test.go

    		PidFD: &pidfd,
    	}
    	if userns {
    		cmd.SysProcAttr.Cloneflags = syscall.CLONE_NEWUSER
    	}
    	if err := cmd.Start(); err != nil {
    		return err
    	}
    	defer func() {
    		cmd.Process.Kill()
    		cmd.Wait()
    	}()
    	t.Log("got pidfd:", pidfd)
    	// If pidfd is not supported by the kernel, -1 is returned.
    	if pidfd == -1 {
    		t.Skip("pidfd not supported")
    	}
    	defer syscall.Close(pidfd)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  6. src/runtime/sys_darwin.go

    //go:cgo_import_dynamic libc_sigaltstack sigaltstack "/usr/lib/libSystem.B.dylib"
    //go:cgo_import_dynamic libc_getpid getpid "/usr/lib/libSystem.B.dylib"
    //go:cgo_import_dynamic libc_kill kill "/usr/lib/libSystem.B.dylib"
    //go:cgo_import_dynamic libc_setitimer setitimer "/usr/lib/libSystem.B.dylib"
    //go:cgo_import_dynamic libc_sysctl sysctl "/usr/lib/libSystem.B.dylib"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  7. src/syscall/syscall_linux_test.go

    	rlimOrig := origRlimitNofile.Load()
    
    	// Start a child process firstly,
    	// so we can use Prlimit to set it's nofile limit.
    	cmd := exec.Command("sleep", "infinity")
    	cmd.Start()
    	defer func() {
    		cmd.Process.Kill()
    		cmd.Process.Wait()
    	}()
    
    	// Get child process's current nofile limit
    	var lim syscall.Rlimit
    	if err := syscall.Prlimit(cmd.Process.Pid, syscall.RLIMIT_NOFILE, nil, &lim); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23K bytes
    - Viewed (0)
  8. src/syscall/zsyscall_aix_ppc64.go

    //go:cgo_import_dynamic libc_Getrlimit getrlimit "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_Getrusage getrusage "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_Getuid getuid "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_Kill kill "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_Lchown lchown "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_Link link "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_Lstat lstat "libc.a/shr_64.o"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:50:55 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  9. pkg/volume/csi/csi_plugin.go

    			// are permanently enabled the apiserver/controllers can assume that the kubelet is
    			// using CSI for all Migrated volume plugins. Then all the CSINode initialization
    			// code can be dropped from Kubelet.
    			// Kill the Kubelet process and allow it to restart to retry initialization
    			klog.Fatalf("Failed to initialize CSINode after retrying: %v", err)
    		}
    	}()
    	return nil
    }
    
    func (p *csiPlugin) GetPluginName() string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  10. pkg/kubelet/container/runtime.go

    	// TODO(random-liu): Return PodSyncResult in KillPod.
    	// gracePeriodOverride if specified allows the caller to override the pod default grace period.
    	// only hard kill paths are allowed to specify a gracePeriodOverride in the kubelet in order to not corrupt user data.
    	// it is useful when doing SIGKILL for hard eviction scenarios, or max grace period during soft eviction scenarios.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
Back to top