Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 104 of 104 for recvq (0.21 sec)

  1. pilot/pkg/xds/eds_test.go

    						errChan <- fmt.Errorf("should be eds incremental but received cds. %v %v",
    							err, id)
    						return
    					}
    				}
    			}
    
    			rcvPush.Inc()
    			if err != nil {
    				log.Infof("Recv %v failed: %v", id, err)
    				errChan <- fmt.Errorf("failed to receive a response in 15 s %v %v",
    					err, id)
    				return
    			}
    
    			log.Infof("Received all pushes %v", id)
    			rcvClients.Inc()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 20:58:47 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  2. src/internal/poll/fd_windows.go

    		}
    		return 0, err
    	}
    	// We issued a cancellation request. But, it seems, IO operation succeeded
    	// before the cancellation request run. We need to treat the IO operation as
    	// succeeded (the bytes are actually sent/recv from network).
    	return int(o.qty), nil
    }
    
    // FD is a file descriptor. The net and os packages embed this type in
    // a larger type representing a network connection or OS file.
    type FD struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 16:50:42 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  3. src/runtime/trace.go

    // close to free up resources. Once close is called, init
    // must be called before another use.
    type wakeableSleep struct {
    	timer *timer
    
    	// lock protects access to wakeup, but not send/recv on it.
    	lock   mutex
    	wakeup chan struct{}
    }
    
    // newWakeableSleep initializes a new wakeableSleep and returns it.
    func newWakeableSleep() *wakeableSleep {
    	s := new(wakeableSleep)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  4. src/internal/trace/internal/oldtrace/parser.go

    	EvGoBlockSend       event.Type = 22 // goroutine blocks on chan send [timestamp, stack]
    	EvGoBlockRecv       event.Type = 23 // goroutine blocks on chan recv [timestamp, stack]
    	EvGoBlockSelect     event.Type = 24 // goroutine blocks on select [timestamp, stack]
    	EvGoBlockSync       event.Type = 25 // goroutine blocks on Mutex/RWMutex [timestamp, stack]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 46.8K bytes
    - Viewed (0)
Back to top