Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 247 for kill (0.03 sec)

  1. cluster/gce/gci/health-monitor.sh

      done
      while true; do
        if ! timeout 60 "${healthcheck_command[@]}" > /dev/null; then
          echo "Container runtime ${container_runtime_name} failed!"
          systemctl kill --kill-who=main "${container_runtime_name}"
          # Wait for a while, as we don't want to kill it again before it is really up.
          sleep 120
        else
          sleep "${SLEEP_SECONDS}"
        fi
      done
    }
    
    function kubelet_monitoring {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 20 09:19:08 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/ProcessFixture.groovy

        final Long pid;
    
        ProcessFixture(Long pid) {
            this.pid = pid
        }
    
        /**
         * Forcefully kills this daemon.
         */
        void kill(boolean killTree) {
            println "Killing process with pid: $pid"
            if (pid == null) {
                throw new RuntimeException("Unable to force kill the process because provided pid is null!")
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  3. src/internal/testenv/testenv_notunix.go

    //go:build windows || plan9 || (js && wasm) || wasip1
    
    package testenv
    
    import (
    	"errors"
    	"io/fs"
    	"os"
    )
    
    // Sigquit is the signal to send to kill a hanging subprocess.
    // On Unix we send SIGQUIT, but on non-Unix we only have os.Kill.
    var Sigquit = os.Kill
    
    func syscallIsNotSupported(err error) bool {
    	return errors.Is(err, fs.ErrPermission) || errors.Is(err, errors.ErrUnsupported)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 02 05:22:00 UTC 2023
    - 550 bytes
    - Viewed (0)
  4. src/os/exec_plan9.go

    // on all systems are Interrupt (send the process an interrupt) and
    // Kill (force the process to exit). Interrupt is not implemented on
    // Windows; using it with [os.Process.Signal] will return an error.
    var (
    	Interrupt Signal = syscall.Note("interrupt")
    	Kill      Signal = syscall.Note("kill")
    )
    
    func startProcess(name string, argv []string, attr *ProcAttr) (p *Process, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. src/os/pidfd_linux_test.go

    	}
    
    	// Check that all Process' public methods work as expected with
    	// "done" Process.
    	if err := proc.Kill(); err != os.ErrProcessDone {
    		t.Errorf("Kill: got %v, want %v", err, os.ErrProcessDone)
    	}
    	if err := proc.Signal(os.Kill); err != os.ErrProcessDone {
    		t.Errorf("Signal: got %v, want %v", err, os.ErrProcessDone)
    	}
    	if _, err := proc.Wait(); !errors.Is(err, syscall.ECHILD) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 18:08:44 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  6. docs/distributed/decom-encrypted.sh

    ./mc admin decom start myminio/ http://localhost:9000/tmp/xl/{1...10}/disk{0...1}
    
    until $(./mc admin decom status myminio/ | grep -q Complete); do
    	echo "waiting for decom to finish..."
    	sleep 1
    done
    
    kill $pid_1
    kill $pid_2
    
    sleep 5
    
    (minio server --address ":9001" http://localhost:9001/tmp/xl/{11...30}/disk{0...3} 2>&1 >/tmp/removed.log) &
    pid=$!
    
    export MC_HOST_myminio="http://minioadmin:minioadmin@localhost:9001/"
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/test_fuzz_non_crash_signal.txt

    	f.Fuzz(func(*testing.T, bool) {
    		pid := syscall.Getpid()
    		if err := syscall.Kill(pid, syscall.SIGTERM); err != nil {
    			panic(err)
    		}
    		// signal may not be received immediately. Wait for it.
    		select{}
    	})
    }
    
    func FuzzKill(f *testing.F) {
    	f.Fuzz(func(*testing.T, bool) {
    		pid := syscall.Getpid()
    		if err := syscall.Kill(pid, syscall.SIGKILL); err != nil {
    			panic(err)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. docs/distributed/decom-compressed-sse-s3.sh

    ./mc admin decom start myminio/ http://localhost:9000/tmp/xl/{1...10}/disk{0...1}
    
    until $(./mc admin decom status myminio/ | grep -q Complete); do
    	echo "waiting for decom to finish..."
    	sleep 1
    done
    
    kill $pid_1
    kill $pid_2
    
    sleep 5
    
    (minio server --address ":9001" http://localhost:9001/tmp/xl/{11...30}/disk{0...3} 2>&1 >/tmp/removed.log) &
    pid=$!
    
    export MC_HOST_myminio="http://minioadmin:minioadmin@localhost:9001/"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonInitialCommunicationFailureIntegrationSpec.groovy

            when:
            // Ensure that the daemon has finished updating the registry. Killing it halfway through the registry update will leave the registry corrupted,
            // and the client will just throw the registry away and replace it with an empty one
            daemon.assertIdle()
            daemon.kill()
    
            and:
            //starting some service on the daemon port
            poll(60) {
                server.tryStart(daemon.port)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 07:46:29 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  10. src/cmd/go/stop_other_test.go

    func quitSignal() os.Signal {
    	if runtime.GOOS == "windows" {
    		// Per https://golang.org/pkg/os/#Signal, “Interrupt is not implemented on
    		// Windows; using it with os.Process.Signal will return an error.”
    		// Fall back to Kill instead.
    		return os.Kill
    	}
    	return os.Interrupt
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 29 16:24:51 UTC 2022
    - 628 bytes
    - Viewed (0)
Back to top