Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 977 for kill (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/runtime/sigtab_linux_mipsx.go

    	/*  6 */ {_SigNotify + _SigThrow, "SIGABRT: abort"},
    	/*  7 */ {_SigThrow, "SIGEMT"},
    	/*  8 */ {_SigPanic + _SigUnblock, "SIGFPE: floating-point exception"},
    	/*  9 */ {0, "SIGKILL: kill"},
    	/*  10 */ {_SigPanic + _SigUnblock, "SIGBUS: bus error"},
    	/*  11 */ {_SigPanic + _SigUnblock, "SIGSEGV: segmentation violation"},
    	/*  12 */ {_SigThrow, "SIGSYS: bad system call"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 6K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/process/internal/CancellationIntegrationTest.groovy

            client = new DaemonClientFixture(executer.start())
            waitForDaemonLog(START_UP_MESSAGE)
            daemons.daemon.assertBusy()
        }
    
        private void cancelBuild(String task) {
            client.kill()
            waitForDaemonLog("Build operation 'Task :$task' completed")
            assert !client.gradleHandle.standardOutput.contains("BUILD FAIL")
            assert !client.gradleHandle.standardOutput.contains("BUILD SUCCESS")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 04:31:03 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  9. pkg/registry/scheduling/rest/storage_scheduling.go

    					}
    				}
    			}
    			klog.Infof("all system priority classes are created successfully or already exist.")
    			return true, nil
    		})
    		// if we're never able to make it through initialization, kill the API server.
    		if err != nil {
    			return fmt.Errorf("unable to add default system priority classes: %v", err)
    		}
    		return nil
    	}
    }
    
    func (p RESTStorageProvider) GroupName() string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 23 18:36:33 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  10. src/os/exec_unix.go

    	case statusReleased:
    		return nil, syscall.EINVAL
    	}
    
    	// If we can block until Wait4 will succeed immediately, do so.
    	ready, err := p.blockUntilWaitable()
    	if err != nil {
    		return nil, err
    	}
    	if ready {
    		// Mark the process done now, before the call to Wait4,
    		// so that Process.pidSignal will not send a signal.
    		p.pidDeactivate(statusDone)
    		// Acquire a write lock on sigMu to wait for any
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top