Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 793 for kill (0.06 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/os/exec/exec.go

    		// c.Process.Wait returned and we've handed the timer off to c.Wait.
    		// It will take care of goroutine shutdown from here.
    		return
    	case <-timer.C:
    	}
    
    	killed := false
    	if killErr := c.Process.Kill(); killErr == nil {
    		// We appear to have killed the process. c.Process.Wait should return a
    		// non-nil error to c.Wait unless the Kill signal races with a successful
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/LocalFileDependencyBackedArtifactSet.java

     * before the dependencies are executed, but file dependencies do not.</p>
     *
     * <p>We should do one of these things to fix the current mess here:</p>
     * <ul>
     *     <li>Kill file dependencies</li>
     *     <li>Enhance file dependencies to know what files they produce</li>
     *     <li>Kill artifactType registry</li>
     * </ul>
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. pkg/kubelet/pod_workers.go

    	if opts.Pod == nil || other.RunningPod == nil {
    		opts.Pod = other.Pod
    	}
    	// running pods will not persist but will be remembered for replay
    	opts.RunningPod = other.RunningPod
    	// if mirrorPod was not provided, remember the last one for replay
    	if other.MirrorPod != nil {
    		opts.MirrorPod = other.MirrorPod
    	}
    	// accumulate kill pod options
    	if other.KillPodOptions != nil {
    		opts.KillPodOptions = &KillPodOptions{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  10. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/ide/AndroidStudioProvisioningPlugin.kt

                        eachFile {
                            // Remove top folder when unzipping, that way we get rid of Android Studio.app folder that can cause issues on Mac
                            // where MacOS would kill the Android Studio process right after start, issue: https://github.com/gradle/gradle-profiler/issues/469
                            relativePath = RelativePath(true, *relativePath.segments.drop(1).toTypedArray())
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 15:43:39 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top