Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for numWrites (0.15 sec)

  1. src/crypto/tls/handshake_client_test.go

    	// before all subsequent writes fail.
    	breakAfter int
    
    	// numWrites is the number of writes that have been done.
    	numWrites int
    }
    
    // brokenConnErr is the error that brokenConn returns once exhausted.
    var brokenConnErr = errors.New("too many writes to brokenConn")
    
    func (b *brokenConn) Write(data []byte) (int, error) {
    	if b.numWrites >= b.breakAfter {
    		return 0, brokenConnErr
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  2. src/runtime/pprof/pprof_test.go

    		close(c)
    	}()
    	<-c
    }
    
    func blockSelectRecvAsync(t *testing.T) {
    	const numTries = 3
    	c := make(chan bool, 1)
    	c2 := make(chan bool, 1)
    	go func() {
    		for i := 0; i < numTries; i++ {
    			awaitBlockedGoroutine(t, "select", "blockSelectRecvAsync", 1)
    			c <- true
    		}
    	}()
    	for i := 0; i < numTries; i++ {
    		select {
    		case <-c:
    		case <-c2:
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
Back to top