Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 977 for kill (0.1 sec)

  1. testing/soak/src/integTest/groovy/org/gradle/workers/internal/WorkerPruningSoakTest.groovy

    /**
     * Verifies that we can spawn large amounts of workers without running out of memory, because the old ones will be killed
     * if necessary.
     *
     * <p>
     *     This mostly is a test for Windows, as other OSes have effectively-unlimited virtual memory, and won't need to kill
     *     processes.
     * </p>
     */
    class WorkerPruningSoakTest extends AbstractIntegrationSpec {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/test/issue18146.go

    		if err := syscall.Exec(os.Args[0], argv, os.Environ()); err != nil {
    			t.Fatal(err)
    		}
    	}
    
    	var cmds []*exec.Cmd
    	defer func() {
    		for _, cmd := range cmds {
    			cmd.Process.Kill()
    		}
    	}()
    
    	args := append(append([]string(nil), os.Args[1:]...), "-test.run=^Test18146$")
    	for n := attempts; n > 0; n-- {
    		cmd := exec.Command(os.Args[0], args...)
    		cmd.Env = append(os.Environ(), "test18146=exec")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:32 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. src/syscall/exec_windows_test.go

    	parent.Env = append(os.Environ(), "GO_WANT_HELPER_PROCESS=parent")
    	err := parent.Start()
    	if err != nil {
    		t.Fatal(err)
    	}
    	defer func() {
    		parent.Process.Kill()
    		parent.Wait()
    	}()
    
    	// run child process
    
    	const _PROCESS_CREATE_PROCESS = 0x0080
    	const _PROCESS_DUP_HANDLE = 0x0040
    	childDumpPath := filepath.Join(t.TempDir(), "ppid.txt")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:29 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  4. src/syscall/syscall_darwin.go

    //
    //go:linkname utimensat
    
    //sys	utimensat(dirfd int, path string, times *[2]Timespec, flags int) (err error)
    
    /*
     * Wrapped
     */
    
    //sys	kill(pid int, signum int, posix int) (err error)
    
    func Kill(pid int, signum Signal) (err error) { return kill(pid, int(signum), 1) }
    
    /*
     * Exposed directly
     */
    //sys	Access(path string, mode uint32) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 11K bytes
    - Viewed (0)
  5. tools/istio-iptables/pkg/dependencies/implementation_linux.go

    		}
    		return nil
    	}
    
    	executed := false
    	// Once we call unshare(CLONE_NEWNS), we cannot undo it explicitly. Instead, we need to unshare on a specific thread,
    	// then kill that thread when we are done (or rather, let Go runtime kill the thread).
    	// Unfortunately, making a new thread breaks us out of the network namespace we entered previously, so we need to restore that as well
    	go func() {
    		chErr <- func() error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 20:49:10 UTC 2024
    - 12K bytes
    - Viewed (0)
  6. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/WorkerDaemonClient.java

        }
    
        JvmMemoryStatus getJvmMemoryStatus() {
            return workerProcess.getJvmMemoryStatus();
        }
    
        @Override
        public void stop() {
            workerClient.stop();
        }
    
        public void kill() {
            workerClient.stopNow();
        }
    
        DaemonForkOptions getForkOptions() {
            return forkOptions;
        }
    
        public int getUses() {
            return uses;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 19:54:37 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/apis/example/v1/generated.proto

      // Specifies the hostname of the Pod
      // If not specified, the pod's hostname will be set to a system-defined value.
      // +optional
      optional string hostname = 16;
    
      // If specified, the fully qualified Pod hostname will be "<hostname>.<subdomain>.<pod namespace>.svc.<cluster domain>".
      // If not specified, the pod will not have a domainname at all.
      // +optional
      optional string subdomain = 17;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  8. common-protos/k8s.io/apimachinery/pkg/apis/testapigroup/v1/generated.proto

      // Specifies the hostname of the Carp
      // If not specified, the carp's hostname will be set to a system-defined value.
      // +optional
      optional string hostname = 16;
    
      // If specified, the fully qualified Carp hostname will be "<hostname>.<subdomain>.<carp namespace>.svc.<cluster domain>".
      // If not specified, the carp will not have a domainname at all.
      // +optional
      optional string subdomain = 17;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  9. hack/run-prometheus-on-etcd-scrapes.sh

    else
        IPADDR=$(ifconfig | grep -w inet | grep -Fv 127.0.0. | head -1 |
    	     awk '{ print $2 }' | awk -F/ '{ print $1 }')
    fi
    
    echo
    echo "Historic metrics will be at http://\${any_local_address}:9091/\${any_path}"
    echo "Prometheus will listen on port 9090 and scrape historic metrics from http://${IPADDR}:9091/metrics"
    sleep 1
    echo
    
    cat > "$CONFIG" <<EOF
    global:
      scrape_interval: 30s
    
    scrape_configs:
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 08 20:28:05 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/vendormod.txt

    generated by: go run savedir.go vendormod
    
    -- a/foo/AUTHORS.txt --
    -- a/foo/CONTRIBUTORS --
    -- a/foo/LICENSE --
    -- a/foo/PATENTS --
    -- a/foo/COPYING --
    -- a/foo/COPYLEFT --
    -- a/foo/licensed-to-kill --
    -- w/LICENSE --
    -- x/NOTICE! --
    -- x/x2/LICENSE --
    -- mypkg/LICENSE.txt --
    -- a/foo/bar/b/main.go --
    package b
    -- a/foo/bar/b/main_test.go --
    package b
    
    import (
    	"os"
    	"testing"
    )
    
    func TestDir(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 2.3K bytes
    - Viewed (0)
Back to top