Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 490 for kill (0.08 sec)

  1. src/internal/fuzz/worker.go

    	}()
    
    	sig := os.Interrupt
    	if runtime.GOOS == "windows" {
    		// Per https://golang.org/pkg/os/#Signal, “Interrupt is not implemented on
    		// Windows; using it with os.Process.Signal will return an error.”
    		// Fall back to Kill instead.
    		sig = os.Kill
    	}
    
    	t := time.NewTimer(workerTimeoutDuration)
    	for {
    		select {
    		case <-w.termC:
    			// Worker terminated.
    			t.Stop()
    			<-closeC
    			w.cmd = nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/syscall_darwin.go

    /*
     * Wrapped
     */
    
    //sys	fcntl(fd int, cmd int, arg int) (val int, err error)
    
    //sys	kill(pid int, signum int, posix int) (err error)
    
    func Kill(pid int, signum syscall.Signal) (err error) { return kill(pid, int(signum), 1) }
    
    //sys	ioctl(fd int, req uint, arg uintptr) (err error)
    //sys	ioctlPtr(fd int, req uint, arg unsafe.Pointer) (err error) = SYS_IOCTL
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 20.7K bytes
    - Viewed (0)
  3. pkg/kubelet/types/pod_update_test.go

    			expected: "create",
    		},
    		{
    			sp:       SyncPodUpdate,
    			expected: "update",
    		},
    		{
    			sp:       SyncPodSync,
    			expected: "sync",
    		},
    		{
    			sp:       SyncPodKill,
    			expected: "kill",
    		},
    		{
    			sp:       50,
    			expected: "unknown",
    		},
    	}
    	for _, test := range tests {
    		t.Run(test.expected, func(t *testing.T) {
    			syncPodString := test.sp.String()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 21 08:20:50 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  4. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/CommandExtractor.java

                        process.destroy();
                        teminated = true;
                    } catch (final Exception e) {
                        if (logger.isInfoEnabled()) {
                            logger.info("Could not kill the subprocess.", e);
                        }
                    }
                }
            }
    
            /**
             * @param finished
             *            The finished to set.
             */
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/AbstractCrossTaskIncrementalCompilationIntegrationTest.groovy

            impl.snapshot { run("impl:${language.compileTaskName}") }
    
            when:
            file("impl/build.gradle").text = """
                configurations.implementation.dependencies.clear()  //kill project dependency
                dependencies {
                    implementation 'junit:junit:4.11'
                    implementation localGroovy()
                }  //leave only junit
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:55:46 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  6. pkg/kubelet/eviction/eviction_manager.go

    )
    
    // managerImpl implements Manager
    type managerImpl struct {
    	//  used to track time
    	clock clock.WithTicker
    	// config is how the manager is configured
    	config Config
    	// the function to invoke to kill a pod
    	killPodFunc KillPodFunc
    	// the interface that knows how to do image gc
    	imageGC ImageGC
    	// the interface that knows how to do container gc
    	containerGC ContainerGC
    	// protects access to internal state
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 27 18:55:56 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/testcarchive/carchive_test.go

    	// program several times in the hopes that it will eventually
    	// fail.
    	const tries = 20
    	for i := 0; i < tries; i++ {
    		err := runSignalForwardingTest(t, "2")
    		if err == nil {
    			continue
    		}
    
    		// If the signal is delivered to a C thread, as expected,
    		// the Go signal handler will disable itself and re-raise
    		// the signal, causing the program to die with SIGSEGV.
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:43:51 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  8. docs/site-replication/run-multi-site-ldap.sh

    	cat /tmp/minio2_1.log
    	cat /tmp/minio2_2.log
    	echo "minio3 ============"
    	cat /tmp/minio3_1.log
    	cat /tmp/minio3_2.log
    
    	exit 1
    }
    
    cleanup() {
    	echo "Cleaning up instances of MinIO"
    	pkill minio
    	pkill -9 minio
    	rm -rf /tmp/minio-ldap-idp{1,2,3}
    }
    
    cleanup
    
    unset MINIO_KMS_KES_CERT_FILE
    unset MINIO_KMS_KES_KEY_FILE
    unset MINIO_KMS_KES_ENDPOINT
    unset MINIO_KMS_KES_KEY_NAME
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  9. platforms/extensibility/test-kit/src/testFixtures/groovy/org/gradle/testkit/runner/BaseGradleRunnerIntegrationTest.groovy

            def changesUserHome = arguments.contains("-g")
            if (changesUserHome && !debug) {
                // A separate daemon be started operating on the changed user home - lets isolate it so that we kill it in the end
                requireIsolatedTestKitDir = true
            }
            boolean closeServices = (debug && requireIsolatedTestKitDir) || changesUserHome
            List<String> allArgs = arguments as List
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 18:29:03 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  10. docs/site-replication/run-multi-site-minio-idp.sh

    	cat /tmp/minio2_1.log
    	cat /tmp/minio2_2.log
    	echo "minio3 ============"
    	cat /tmp/minio3_1.log
    	cat /tmp/minio3_2.log
    
    	exit 1
    }
    
    cleanup() {
    	echo "Cleaning up instances of MinIO"
    	pkill minio
    	pkill -9 minio
    	rm -rf /tmp/minio-internal-idp{1,2,3}
    }
    
    cleanup
    
    unset MINIO_KMS_KES_CERT_FILE
    unset MINIO_KMS_KES_KEY_FILE
    unset MINIO_KMS_KES_ENDPOINT
    unset MINIO_KMS_KES_KEY_NAME
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 12K bytes
    - Viewed (0)
Back to top