Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 107 for pdkill (0.26 sec)

  1. src/net/http/request_test.go

    		Body:   io.NopCloser(strings.NewReader(postData)),
    	}
    
    	initialFormItems := map[string]string{
    		"language": "Go",
    		"name":     "gopher",
    		"skill":    "go-ing",
    		"field2":   "initial-value2",
    	}
    
    	req.Form = make(url.Values)
    	for k, v := range initialFormItems {
    		req.Form.Add(k, v)
    	}
    
    	err := req.ParseMultipartForm(10000)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 18:42:34 UTC 2024
    - 44K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/CrossBuildScriptCachingIntegrationSpec.groovy

            when:
            succeeds 'success'
    
            then:
            getCompileBuildFileOperationsCount() == 6
    
            when:
            def before = scriptDetails()
            daemons.daemon.kill()
            succeeds 'success'
    
            then:
            def scripts = scriptDetails()
            scriptsAreReused(before, scripts)
            getCompileBuildFileOperationsCount() == 0
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 17:32:21 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/gradle_daemon.adoc

    To stop running Daemon processes, use the following command:
    
    ----
    $ gradle --stop
    ----
    
    This terminates all Daemon processes started with the same version of Gradle used to execute the command.
    
    You can also kill Daemons manually with your operating system.
    To find the PIDs for all Daemons regardless of Gradle version, see <<gradle_daemon.adoc#find_all_daemons,Find Daemons>>.
    
    [[sec:daemon_jvm_criteria]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:43:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/kuberuntime_container.go

    			if err := m.killContainer(ctx, pod, kubeContainerID, container.Name, "FailedPostStartHook", reasonFailedPostStartHook, nil, nil); err != nil {
    				klog.ErrorS(err, "Failed to kill container", "pod", klog.KObj(pod),
    					"podUID", pod.UID, "containerName", container.Name, "containerID", kubeContainerID.String())
    			}
    			return msg, ErrPostStartHook
    		}
    	}
    
    	return "", nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  5. src/net/net_windows_test.go

    		}
    		if s == "sleeping\n" {
    			break
    		}
    	}
    	defer cmd.Wait() // ignore error - we know it is getting killed
    
    	const alittle = 100 * time.Millisecond
    	time.Sleep(alittle)
    	cmd.Process.Kill() // the only way to trigger the errors
    	time.Sleep(alittle)
    
    	// Send second connection data (with delay in a separate goroutine).
    	result := make(chan error)
    	go func() {
    		time.Sleep(alittle)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. src/syscall/zerrors_solaris_amd64.go

    	VEOF                          = 0x4
    	VEOL                          = 0x5
    	VEOL2                         = 0x6
    	VERASE                        = 0x2
    	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: Wed May 29 13:52:34 UTC 2024
    - 50.8K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top