Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 190 for hung (0.06 sec)

  1. src/cmd/cgo/internal/test/setgid_linux.go

    		return false
    	}
    
    }
    
    func testSetgid(t *testing.T) {
    	if !runTestSetgid() {
    		t.Error("setgid hung")
    	}
    
    	// Now try it again after using signal.Notify.
    	signal.Notify(make(chan os.Signal, 1), syscall.SIGINT)
    	if !runTestSetgid() {
    		t.Error("setgid hung after signal.Notify")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 843 bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/test/issue6997_linux.go

    		c <- C.CancelThread()
    	}()
    
    	select {
    	case r = <-c:
    		if r == 0 {
    			t.Error("pthread finished but wasn't canceled??")
    		}
    	case <-time.After(30 * time.Second):
    		t.Error("hung in pthread_cancel/pthread_join")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 879 bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/operand_test.go

    	{"·callReflect(SB)", "pkg.callReflect(SB)"},
    	{"[X0-X0]", "[X0-X0]"},
    	{"[ Z9 - Z12 ]", "[Z9-Z12]"},
    	{"[X0-AX]", "[X0-AX]"},
    	{"[AX-X0]", "[AX-X0]"},
    	{"[):[o-FP", ""}, // Issue 12469 - asm hung parsing the o-FP range on non ARM platforms.
    }
    
    var amd64RuntimeOperandTests = []operandTest{
    	{"$bar<ABI0>(SB)", "$bar<ABI0>(SB)"},
    	{"$foo<ABIInternal>(SB)", "$foo<ABIInternal>(SB)"},
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 18:31:05 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ToolingApiExecution.groovy

                // Older daemon don't have configurable ttl and they hung for 3 hours afterwards.
                // This is a real problem on windows due to eager file locking and continuous CI failures.
                // On linux it's a lesser problem - long-lived daemons hung and steal resources but don't lock files.
                // So, for windows we'll only run tests against target gradle that supports ttl
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/testsanitizers/testdata/tsan11.go

    // Copyright 2017 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    // This program hung when run under the C/C++ ThreadSanitizer. TSAN defers
    // asynchronous signals until the signaled thread calls into libc. The runtime's
    // sysmon goroutine idles itself using direct usleep syscalls, so it could
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/testsanitizers/testdata/tsan12.go

    // Copyright 2017 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    // This program hung when run under the C/C++ ThreadSanitizer. TSAN installs a
    // libc interceptor that writes signal handlers to a global variable within the
    // TSAN runtime instead of making a sigaction system call. A bug in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 929 bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/testsanitizers/testdata/tsan10.go

    // Copyright 2017 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    // This program hung when run under the C/C++ ThreadSanitizer.
    // TSAN defers asynchronous signals until the signaled thread calls into libc.
    // Since the Go runtime makes direct futex syscalls, Go runtime threads could
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 798 bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/work_regression_hang.txt

    # This test makes checks against a regression of a bug in the Go command
    # where the module loader hung forever because all main module dependencies
    # kept workspace pruning instead of adopting the pruning in their go.mod
    # files, and the loader kept adding dependencies on the queue until they
    # were either pruned or unpruned, never breaking a module dependency cycle.
    #
    # This is the module graph in the test:
    #
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 08 17:48:45 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/test_fuzz_mutator_repeat.txt

    # The fuzzing engine reconstructs the crashing input and saves it to testdata.
    ! exists want
    ! go test -fuzz=. -parallel=1 -fuzztime=110x -fuzzminimizetime=10x -v
    stdout '^\s+fuzzing process hung or terminated unexpectedly: exit status'
    stdout 'Failing input written to testdata'
    
    # Run the fuzz target without fuzzing. The fuzz function is called with the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/test_fuzz_non_crash_signal.txt

    # FuzzCrash sends itself a signal that looks like a crash.
    # We should save a crasher.
    ! go test -fuzz=FuzzCrash
    exists testdata/fuzz/FuzzCrash
    stdout '^\s+fuzzing process hung or terminated unexpectedly: exit status'
    
    -- go.mod --
    module test
    
    go 1.17
    -- fuzz_posix_test.go --
    // +build darwin freebsd linux
    
    package fuzz
    
    import (
    	"syscall"
    	"testing"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top