HomeSort by relevance Sort by last modified time
    Searched refs:MaxConcurrentStreams (Results 1 - 3 of 3) sorted by null

  /external/grpc-grpc/src/csharp/Grpc.Core/
ChannelOptions.cs 136 public const string MaxConcurrentStreams = "grpc.max_concurrent_streams";
  /external/syzkaller/vendor/google.golang.org/grpc/
server.go 126 maxConcurrentStreams uint32
252 // MaxConcurrentStreams returns a ServerOption that will apply a limit on the number
254 func MaxConcurrentStreams(n uint32) ServerOption {
256 o.maxConcurrentStreams = n
649 MaxStreams: s.opts.maxConcurrentStreams,
709 MaxConcurrentStreams: s.opts.maxConcurrentStreams,
    [all...]
  /external/syzkaller/vendor/golang.org/x/net/http2/
server.go 91 // MaxConcurrentStreams optionally specifies the number of
95 // If zero, MaxConcurrentStreams defaults to at least 100, per
97 MaxConcurrentStreams uint32
158 func (s *Server) maxConcurrentStreams() uint32 {
159 if v := s.MaxConcurrentStreams; v > 0 {
347 advMaxStreams: s.maxConcurrentStreams(),
    [all...]

Completed in 864 milliseconds