Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 574 for pdkill (0.1 sec)

  1. src/cmd/cgo/internal/testsanitizers/testdata/tsan10.go

    )
    
    /*
    #cgo CFLAGS: -g -fsanitize=thread
    #cgo LDFLAGS: -g -fsanitize=thread
    */
    import "C"
    
    func main() {
    	c := make(chan os.Signal, 1)
    	signal.Notify(c, syscall.SIGUSR1)
    	defer signal.Stop(c)
    	syscall.Kill(syscall.Getpid(), syscall.SIGUSR1)
    	<-c
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 798 bytes
    - Viewed (0)
  2. src/runtime/testdata/testprognet/signal.go

    package main
    
    import (
    	"os/signal"
    	"syscall"
    )
    
    func init() {
    	register("SignalIgnoreSIGTRAP", SignalIgnoreSIGTRAP)
    }
    
    func SignalIgnoreSIGTRAP() {
    	signal.Ignore(syscall.SIGTRAP)
    	syscall.Kill(syscall.Getpid(), syscall.SIGTRAP)
    	println("OK")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 646 bytes
    - Viewed (0)
  3. ci/official/requirements_updater/requirements.in

    numpy ~= 1.23.5 ; python_version <= "3.11"
    numpy ~= 1.26.0 ; python_version >= "3.12"
    wheel ~= 0.41.2
    h5py >= 3.10.0
    lit ~= 17.0.2
    opt_einsum == 3.3.0
    astunparse == 1.6.3
    dill == 0.3.7
    astor == 0.7.1
    typing_extensions == 4.8.0
    gast == 0.4.0
    termcolor == 2.3.0
    wrapt == 1.16.0
    tblib == 2.0.0
    ml_dtypes >= 0.4.0, < 0.5.0
    
    # Install tensorboard, and keras
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 19:00:33 UTC 2024
    - 834 bytes
    - Viewed (0)
  4. buildscripts/rewrite-old-new.sh

    		minio/healing-rewrite-bucket/ \
    		--disable-multipart --quiet
    
    	"${WORK_DIR}/mc" cp \
    		buildscripts/verify-build.sh \
    		minio/healing-rewrite-bucket/ \
    		--disable-multipart --quiet
    
    	kill ${pid}
    	sleep 3
    
    	"${MINIO[@]}" --address ":$start_port" "${WORK_DIR}/xl{1...16}" >"${WORK_DIR}/server1.log" 2>&1 &
    	pid=$!
    	disown $pid
    
    	"${WORK_DIR}/mc" ready minio/
    
    	if ! ps -p ${pid} 1>&2 >/dev/null; then
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. src/runtime/signal_solaris.go

    	/* 6 */ {_SigNotify + _SigThrow, "SIGABRT: used by abort, replace SIGIOT in the future"},
    	/* 7 */ {_SigThrow, "SIGEMT: EMT instruction"},
    	/* 8 */ {_SigPanic + _SigUnblock, "SIGFPE: floating point exception"},
    	/* 9 */ {0, "SIGKILL: kill (cannot be caught or ignored)"},
    	/* 10 */ {_SigPanic + _SigUnblock, "SIGBUS: bus error"},
    	/* 11 */ {_SigPanic + _SigUnblock, "SIGSEGV: segmentation violation"},
    	/* 12 */ {_SigThrow, "SIGSYS: bad argument to system call"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 20:27:15 UTC 2019
    - 4.5K bytes
    - Viewed (0)
  6. src/runtime/testdata/testprogcgo/segv.go

    import "syscall"
    
    func init() {
    	register("SegvInCgo", SegvInCgo)
    }
    
    func SegvInCgo() {
    	c := make(chan bool)
    	go func() {
    		close(c)
    		for {
    			C.nop()
    		}
    	}()
    
    	<-c
    
    	syscall.Kill(syscall.Getpid(), syscall.SIGSEGV)
    
    	// Wait for the OS to deliver the signal.
    	C.pause()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 05 15:24:08 UTC 2023
    - 525 bytes
    - Viewed (0)
  7. pkg/kubelet/container/sync_result.go

    )
    
    var (
    	// ErrRunContainer returned when runtime failed to start any of pod's container.
    	ErrRunContainer = errors.New("RunContainerError")
    	// ErrKillContainer returned when runtime failed to kill any of pod's containers.
    	ErrKillContainer = errors.New("KillContainerError")
    	// ErrCreatePodSandbox returned when runtime failed to create a sandbox for pod.
    	ErrCreatePodSandbox = errors.New("CreatePodSandboxError")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 19 15:48:08 UTC 2020
    - 4.6K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/telemetry/start_windows.go

    )
    
    func init() {
    	daemonize = daemonizeWindows
    }
    
    func daemonizeWindows(cmd *exec.Cmd) {
    	// Set DETACHED_PROCESS creation flag so that closing
    	// the console window the parent process was run in
    	// does not kill the child.
    	// See documentation of creation flags in the Microsoft documentation:
    	// https://learn.microsoft.com/en-us/windows/win32/procthread/process-creation-flags
    	cmd.SysProcAttr = &syscall.SysProcAttr{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 732 bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/cmd/bisect/go120.go

    		// On timeout, send interrupt,
    		// in hopes of shutting down process tree.
    		// Ignore errors sending signal; it's all best effort
    		// and not even implemented on Windows.
    		// TODO(rsc): Maybe use a new process group and kill the whole group?
    		cmd.Process.Signal(os.Interrupt)
    		return nil
    	}
    	cmd.WaitDelay = 2 * time.Second
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:10 UTC 2023
    - 628 bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/hooks.go

    	var err error
    	func() {
    		// don't let the hook *accidentally* panic and kill the server
    		defer utilruntime.HandleCrash()
    		err = entry.hook(context)
    	}()
    	// if the hook intentionally wants to kill server, let it.
    	if err != nil {
    		klog.Fatalf("PostStartHook %q failed: %v", name, err)
    	}
    	close(entry.done)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top