Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 72 for pdkill (0.32 sec)

  1. src/syscall/zerrors_openbsd_riscv64.go

    	VEOF                              = 0x0
    	VEOL                              = 0x1
    	VEOL2                             = 0x2
    	VERASE                            = 0x3
    	VINTR                             = 0x8
    	VKILL                             = 0x5
    	VLNEXT                            = 0xe
    	VMIN                              = 0x10
    	VQUIT                             = 0x9
    	VREPRINT                          = 0x6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 02:55:38 UTC 2023
    - 67.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zerrors_solaris_amd64.go

    	VEOL                          = 0x5
    	VEOL2                         = 0x6
    	VERASE                        = 0x2
    	VERASE2                       = 0x11
    	VINTR                         = 0x0
    	VKILL                         = 0x3
    	VLNEXT                        = 0xf
    	VMIN                          = 0x4
    	VQUIT                         = 0x1
    	VREPRINT                      = 0xc
    	VSTART                        = 0x8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 59K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_linux.go

    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Tgkill(tgid int, tid int, sig syscall.Signal) (err error) {
    	_, _, e1 := RawSyscall(SYS_TGKILL, uintptr(tgid), uintptr(tid), uintptr(sig))
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zerrors_dragonfly_amd64.go

    	VEOL                              = 0x1
    	VEOL2                             = 0x2
    	VERASE                            = 0x3
    	VERASE2                           = 0x7
    	VINTR                             = 0x8
    	VKILL                             = 0x5
    	VLNEXT                            = 0xe
    	VMIN                              = 0x10
    	VM_BCACHE_SIZE_MAX                = 0x0
    	VM_SWZONE_SIZE_MAX                = 0x4000000000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 70.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zerrors_openbsd_riscv64.go

    	VEOF                              = 0x0
    	VEOL                              = 0x1
    	VEOL2                             = 0x2
    	VERASE                            = 0x3
    	VINTR                             = 0x8
    	VKILL                             = 0x5
    	VLNEXT                            = 0xe
    	VMIN                              = 0x10
    	VM_ANONMIN                        = 0x7
    	VM_LOADAVG                        = 0x2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 78.5K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zerrors_netbsd_386.go

    	VEOF                              = 0x0
    	VEOL                              = 0x1
    	VEOL2                             = 0x2
    	VERASE                            = 0x3
    	VINTR                             = 0x8
    	VKILL                             = 0x5
    	VLNEXT                            = 0xe
    	VMIN                              = 0x10
    	VQUIT                             = 0x9
    	VREPRINT                          = 0x6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 72.8K bytes
    - Viewed (0)
  7. cluster/gce/windows/k8s-node-setup.psm1

      # the restart count to 0 each time, so we re-use our restart/10000 action on
      # each failure. Note it currently restarts even when explicitly stopped, you
      # have to delete the service entry to *really* kill it (e.g. `sc.exe delete
      # kubelet`). See issue #72900.
      if (Get-Process | Where-Object Name -eq "kubelet") {
        Log-Output -Fatal `
            "A kubelet process is already running, don't know what to do"
      }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  8. src/syscall/zerrors_linux_386.go

    	127: "key has expired",
    	128: "key has been revoked",
    	129: "key was rejected by service",
    	130: "owner died",
    	131: "state not recoverable",
    	132: "operation not possible due to RF-kill",
    }
    
    // Signal table
    var signals = [...]string{
    	1:  "hangup",
    	2:  "interrupt",
    	3:  "quit",
    	4:  "illegal instruction",
    	5:  "trace/breakpoint trap",
    	6:  "aborted",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 57.4K bytes
    - Viewed (0)
  9. src/syscall/zsyscall_darwin_arm64.go

    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func kill(pid int, signum int, posix int) (err error) {
    	_, _, e1 := syscall(abi.FuncPCABI0(libc_kill_trampoline), uintptr(pid), uintptr(signum), uintptr(posix))
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func libc_kill_trampoline()
    
    //go:cgo_import_dynamic libc_kill kill "/usr/lib/libSystem.B.dylib"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 27 21:34:30 UTC 2023
    - 51.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zerrors_netbsd_amd64.go

    	VEOF                              = 0x0
    	VEOL                              = 0x1
    	VEOL2                             = 0x2
    	VERASE                            = 0x3
    	VINTR                             = 0x8
    	VKILL                             = 0x5
    	VLNEXT                            = 0xe
    	VMIN                              = 0x10
    	VQUIT                             = 0x9
    	VREPRINT                          = 0x6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 72.3K bytes
    - Viewed (0)
Back to top