Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 213 for kill (0.22 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/daemon/DaemonLogsAnalyzer.groovy

            return new DaemonLogsAnalyzer(daemonBaseDir, version)
        }
    
        DaemonRegistry getRegistry() {
            return registry
        }
    
        void killAll() {
            allDaemons*.kill()
        }
    
    
        List<DaemonFixture> getDaemons() {
            getAllDaemons().findAll { !daemonStoppedWithSocketExceptionOnWindows(it) || it.logContains("Starting build in new daemon") }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 15:22:16 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. src/runtime/internal/wasitest/tcpecho_test.go

    	}
    
    	var b bytes.Buffer
    	subProcess.Stdout = &b
    	subProcess.Stderr = &b
    
    	if err := subProcess.Start(); err != nil {
    		t.Log(b.String())
    		t.Fatal(err)
    	}
    	defer subProcess.Process.Kill()
    
    	var conn net.Conn
    	for {
    		var err error
    		conn, err = net.Dial("tcp", host)
    		if err == nil {
    			break
    		}
    		time.Sleep(500 * time.Millisecond)
    	}
    	defer conn.Close()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 22:01:11 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. src/os/exec/exec_posix_test.go

    	}
    	buf := make([]byte, len(msg))
    	if _, err := io.ReadFull(stdout, buf); err != nil {
    		t.Fatal(err)
    	}
    	// Now leave the pipes open so that the process will hang until we close stdin.
    
    	if err := cmd.Process.Signal(syscall.SIGSTOP); err != nil {
    		cmd.Process.Kill()
    		t.Fatal(err)
    	}
    
    	ch := make(chan error)
    	go func() {
    		ch <- cmd.Wait()
    	}()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 13 20:21:32 UTC 2022
    - 6.8K bytes
    - Viewed (0)
  4. hack/make-rules/test-integration.sh

      kube::log::usage "You can use 'hack/install-etcd.sh' to install a copy in third_party/."
      return 1
    }
    
    checkEtcdOnPath
    
    # Run cleanup to stop etcd on interrupt or other kill signal.
    trap cleanup EXIT
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:57 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/apis/testapigroup/v1/types.go

    	// Specifies the hostname of the Carp
    	// If not specified, the carp's hostname will be set to a system-defined value.
    	// +optional
    	Hostname string `json:"hostname,omitempty" protobuf:"bytes,16,opt,name=hostname"`
    	// 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
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  6. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/GradleRunnerDaemonIntegrationTest.groovy

                .run()
    
            then:
            def userDaemon = nonTestKitDaemons.daemon
            userDaemon.assertIdle()
            userDaemon.context.pid != testKitDaemon.context.pid
    
            cleanup:
            userDaemon?.kill()
        }
    
        def "executing a build with a -g option does not affect daemon mechanics"() {
            when:
            runner("-g", file("custom-gradle-user-home").absolutePath).build()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r22/ClientShutdownCrossVersionSpec.groovy

            withConnection { connection ->
                connection.model(GradleBuild).setJvmArguments(buildJvmArguments).get()
            }
            toolingApi.daemons.daemon.assertIdle()
            toolingApi.daemons.daemon.kill()
    
            when:
            toolingApi.close()
    
            then:
            noExceptionThrown()
        }
    
        def "shutdown ignores daemons that were not started by client"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 4K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_vendor.txt

    exists vendor/a/foo/LICENSE
    exists vendor/a/foo/PATENTS
    exists vendor/a/foo/COPYING
    exists vendor/a/foo/COPYLEFT
    exists vendor/x/NOTICE!
    exists vendor/mysite/myname/mypkg/LICENSE.txt
    
    ! exists vendor/a/foo/licensed-to-kill
    ! exists vendor/w
    ! exists vendor/w/LICENSE
    ! exists vendor/x/x2
    ! exists vendor/x/x2/LICENSE
    
    # 'go mod vendor' should work with an alternative vendor directory if the -o flag is provided.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 15 16:24:01 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  9. staging/src/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: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  10. pkg/util/procfs/procfs_linux.go

    	if err != nil {
    		if os.IsNotExist(err) {
    			return "", os.ErrNotExist
    		}
    		return "", err
    	}
    	return containerNameFromProcCgroup(string(content))
    }
    
    // PKill finds process(es) using a regular expression and send a specified
    // signal to each process.
    func PKill(name string, sig syscall.Signal) error {
    	if len(name) == 0 {
    		return fmt.Errorf("name should not be empty")
    	}
    	re, err := regexp.Compile(name)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 16 09:22:35 UTC 2023
    - 4.1K bytes
    - Viewed (0)
Back to top