Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 977 for kill (0.2 sec)

  1. 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 (2)
  2. 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)
  3. src/os/signal/signal_cgo_test.go

    			return fmt.Errorf("error writing readiness: %w", err)
    		}
    
    		return nil
    	}
    
    	err := fn()
    	if err != nil {
    		fmt.Fprintf(os.Stderr, "session leader error: %v\n", err)
    		cmd.Process.Kill()
    		// Wait for exit below.
    	}
    
    	werr := cmd.Wait()
    	if werr != nil {
    		fmt.Fprintf(os.Stderr, "error running second subprocess: %v\n", err)
    	}
    
    	if err != nil || werr != nil {
    		os.Exit(1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 10:09:15 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. src/runtime/sys_freebsd_386.s

    TEXT runtime·thr_kill(SB),NOSPLIT,$-4
    	// thr_kill(tid, sig)
    	MOVL	$SYS_thr_kill, AX
    	INT	$0x80
    	RET
    
    TEXT runtime·raiseproc(SB),NOSPLIT,$16
    	// getpid
    	MOVL	$SYS_getpid, AX
    	INT	$0x80
    	// kill(self, sig)
    	MOVL	AX, 4(SP)
    	MOVL	sig+0(FP), AX
    	MOVL	AX, 8(SP)
    	MOVL	$SYS_kill, AX
    	INT	$0x80
    	RET
    
    TEXT runtime·mmap(SB),NOSPLIT,$32
    	LEAL addr+0(FP), SI
    	LEAL	4(SP), DI
    	CLD
    	MOVSL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/AbstractJUnitTestExecutionIntegrationTest.groovy

            assertFailedToExecute(testResult, 'com.example.Foo').assertTestCount(1, 1, 0)
        }
    
        @Issue("https://issues.gradle.org/browse/GRADLE-1948")
        def "test interrupting its own thread does not kill test execution"() {
            given:
            buildFile << """
                apply plugin: 'java'
                ${mavenCentralRepository()}
                dependencies {
                    ${testFrameworkDependencies}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  6. src/runtime/runtime-gdb_test.go

    	}
    	if flag.Lookup("test.parallel").Value.(flag.Getter).Get().(int) < 2 {
    		// It is possible that this test will hang for a long time due to an
    		// apparent GDB bug reported in https://go.dev/issue/37405.
    		// If test parallelism is high enough, that might be ok: the other parallel
    		// tests will finish, and then this test will finish right before it would
    		// time out. However, if test are running sequentially, a hang in this test
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  7. src/cmd/go/script_test.go

    		// When we run commands that execute subprocesses, we want to reserve two
    		// grace periods to clean up. We will send the first termination signal when
    		// the context expires, then wait one grace period for the process to
    		// produce whatever useful output it can (such as a stack trace). After the
    		// first grace period expires, we'll escalate to os.Kill, leaving the second
    		// grace period for the test function to record its output before the test
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  8. src/runtime/sys_dragonfly_amd64.s

    	MOVL	$497, AX	// lwp_kill
    	SYSCALL
    	RET
    
    TEXT runtime·raiseproc(SB),NOSPLIT,$0
    	MOVL	$20, AX		// getpid
    	SYSCALL
    	MOVQ	AX, DI		// arg 1 - pid
    	MOVL	sig+0(FP), SI	// arg 2 - signum
    	MOVL	$37, AX		// kill
    	SYSCALL
    	RET
    
    TEXT runtime·setitimer(SB), NOSPLIT, $-8
    	MOVL	mode+0(FP), DI
    	MOVQ	new+8(FP), SI
    	MOVQ	old+16(FP), DX
    	MOVL	$83, AX
    	SYSCALL
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultProjectStateRegistry.java

        }
    
        @Override
        public Collection<ProjectStateImpl> getAllProjects() {
            synchronized (lock) {
                return projectsByPath.values();
            }
        }
    
        // TODO - can kill this method, as the caller can use ProjectInternal.getOwner() instead
        @Override
        public ProjectState stateFor(Project project) {
            return ((ProjectInternal) project).getOwner();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 21K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/syscall_netbsd.go

    //sysnb	Getrusage(who int, rusage *Rusage) (err error)
    //sysnb	Getsid(pid int) (sid int, err error)
    //sysnb	Gettimeofday(tv *Timeval) (err error)
    //sysnb	Getuid() (uid int)
    //sys	Issetugid() (tainted bool)
    //sys	Kill(pid int, signum syscall.Signal) (err error)
    //sys	Kqueue() (fd int, err error)
    //sys	Lchown(path string, uid int, gid int) (err error)
    //sys	Link(path string, link string) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 12.3K bytes
    - Viewed (0)
Back to top