Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 190 for hung (0.34 sec)

  1. src/runtime/testdata/testprogcgo/needmdeadlock.go

    func GoNeedM() {
    }
    
    func NeedmDeadlock() {
    	// The failure symptom is that the program hangs because of a
    	// deadlock in needm, so set an alarm.
    	go func() {
    		time.Sleep(5 * time.Second)
    		fmt.Println("Hung for 5 seconds")
    		os.Exit(1)
    	}()
    
    	C.runNeedmSignalThread()
    	fmt.Println("OK")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  2. src/regexp/testdata/testregex.c

    			{
    				alarm(HUNG);
    				cret = regcomp(&preg, re, flags);
    				alarm(0);
    			}
    #if _REG_subcomp
    			if (!cret && (test & TEST_SUB))
    			{
    				fun = "regsubcomp";
    				p = re + preg.re_npat;
    				if (!(test & TEST_CATCH))
    					cret = regsubcomp(&preg, p, NiL, 0, 0);
    				else if (!(cret = setjmp(state.gotcha)))
    				{
    					alarm(HUNG);
    					cret = regsubcomp(&preg, p, NiL, 0, 0);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 51.3K bytes
    - Viewed (0)
  3. src/runtime/semasleep_test.go

    	// heavily loaded that subprocess may not schedule very quickly even if the
    	// bug remains fixed. (This is fine, because if the bug really is unfixed we
    	// can keep the process hung indefinitely, as long as we signal it often
    	// enough.)
    	timeout := 10 * time.Second
    
    	// The subprocess begins sleeping for 1s after it writes to stdout, so measure
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 06 17:48:24 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/test_fuzz_mutate_crash.txt

    stdout 'testdata[/\\]fuzz[/\\]FuzzWithBadExit[/\\]'
    stdout '^\s+fuzzing process hung or terminated unexpectedly: exit status'
    go run check_testdata.go FuzzWithBadExit
    
    ! go test -run=FuzzDeadlock -fuzz=FuzzDeadlock -fuzztime=100x -fuzzminimizetime=0x
    stdout 'testdata[/\\]fuzz[/\\]FuzzDeadlock[/\\]'
    stdout '^\s+fuzzing process hung or terminated unexpectedly: exit status'
    go run check_testdata.go FuzzDeadlock
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  5. cmd/storage-interface.go

    type StorageAPI interface {
    	// Stringified version of disk.
    	String() string
    
    	// Storage operations.
    
    	// Returns true if disk is online and its valid i.e valid format.json.
    	// This has nothing to do with if the drive is hung or not responding.
    	// For that individual storage API calls will fail properly. The purpose
    	// of this function is to know if the "drive" has "format.json" or not
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. src/net/textproto/textproto.go

    	Code int
    	Msg  string
    }
    
    func (e *Error) Error() string {
    	return fmt.Sprintf("%03d %s", e.Code, e.Msg)
    }
    
    // A ProtocolError describes a protocol violation such
    // as an invalid response or a hung-up connection.
    type ProtocolError string
    
    func (p ProtocolError) Error() string {
    	return string(p)
    }
    
    // A Conn represents a textual network protocol connection.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  7. internal/http/dial_linux.go

    		}
    		conn, err := dialer.DialContext(ctx, network, addr)
    		if err != nil {
    			return nil, err
    		}
    		if opts.DriveOPTimeout != nil {
    			// Read deadlines are sufficient for now as per various
    			// scenarios of hung node detection, we may add Write deadlines
    			// if needed later on.
    			return deadlineconn.New(conn).WithReadDeadline(opts.DriveOPTimeout()), nil
    		}
    		return conn, nil
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. docs/vi/docs/index.md

    ---
    
    "_Thành thật, những gì bạn đã xây dựng nhìn siêu chắc chắn và bóng bẩy. Theo nhiều cách, nó là những gì tôi đã muốn Hug trở thành - thật sự truyền cảm hứng để thấy ai đó xây dựng nó._"
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/test_fuzz_minimize_interesting.txt

    ! exec ./fuzz.test$GOEXE -test.fuzzcachedir=$GOCACHE/fuzz -test.fuzz=FuzzMinimizerNonrecoverableCrashInMinimization -test.run=^$ -test.fuzztime=10000x -test.parallel=1
    ! stdout '^ok'
    stdout -count=1 'fuzzing process hung or terminated unexpectedly while minimizing'
    stdout -count=1 'EOF'
    stdout FAIL
    # Check that the input written to testdata will reproduce the error.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:32 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/util/concurrent/GeneratedMonitorTest.java

        long hangDelayMillis =
            (expectedOutcome == Outcome.HANG)
                ? EXPECTED_HANG_DELAY_MILLIS
                : UNEXPECTED_HANG_DELAY_MILLIS;
        boolean hung =
            !awaitUninterruptibly(callCompletedLatch, hangDelayMillis, TimeUnit.MILLISECONDS);
        if (hung) {
          assertEquals(expectedOutcome, Outcome.HANG);
        } else {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 25.8K bytes
    - Viewed (0)
Back to top