Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 43 of 43 for signalM (0.16 sec)

  1. src/database/sql/sql_test.go

    	setHookOpenErr(func() error {
    		// Wait for all connections to enqueue.
    		opening.Wait()
    		return errOffline
    	})
    
    	for i := 0; i < tryOpen; i++ {
    		go func() {
    			opening.Done() // signal one connection is in flight
    			_, err := db.Exec("will never run")
    			errs <- err
    		}()
    	}
    
    	opening.Wait() // wait for all workers to begin running
    
    	const timeout = 5 * time.Second
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/x86/asm6.go

    		if !yt.match(args) {
    			// "xo" is always zero for VEX/EVEX encoded insts.
    			z += int(yt.zoffset) + xo
    		} else {
    			if p.Scond != 0 && !evexZcase(yt.zcase) {
    				// Do not signal error and continue to search
    				// for matching EVEX-encoded form.
    				z += int(yt.zoffset)
    				continue
    			}
    
    			switch o.prefix {
    			case Px1: // first option valid only in 32-bit mode
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  3. src/net/http/transport_test.go

    	reqerrc := make(chan error, 1)
    	go func() {
    		defer wg.Done()
    		ctx := httptrace.WithClientTrace(context.Background(), &httptrace.ClientTrace{
    			PutIdleConn: func(error) {
    				// Signal that the idle conn has been returned to the pool,
    				// and wait for the order to proceed.
    				ch := make(chan struct{})
    				putidlec <- ch
    				close(putidlec) // panic if PutIdleConn runs twice for some reason
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
Back to top