Craig Tiller
fe56d3ae72
Expand corpus
9 years ago
Craig Tiller
88a4043dea
Expand corpus
9 years ago
Craig Tiller
ff82239acd
Fix flags
9 years ago
Craig Tiller
ae94594a64
Support tracing fuzzers
9 years ago
Craig Tiller
0b8bf0863f
Longer
9 years ago
Craig Tiller
9715822e6f
Expand corpus
9 years ago
Craig Tiller
b04af22b78
Expand corpus
9 years ago
Craig Tiller
9366684d9f
Expand corpus, add test
9 years ago
Craig Tiller
b33d5cdeb8
Expand corpus
9 years ago
Craig Tiller
75e50e4fbf
Expand corpus
9 years ago
Craig Tiller
0418d38803
less-logs
9 years ago
Craig Tiller
2123974071
Merge fixes
9 years ago
Craig Tiller
2a712736fe
Fixes
9 years ago
Craig Tiller
995bc78441
Merge github.com:grpc/grpc into fuzzy-bits
9 years ago
David G. Quintas
634e67617b
Merge pull request #5921 from sreecha/stress_client_spec
...
Specification for stress test clients
9 years ago
Jan Tattermusch
8ce3b1ad89
Merge pull request #5383 from miselin/add_request_parsing
...
Add HTTP request parsing
9 years ago
Jan Tattermusch
5ce5d825df
Merge pull request #5897 from ctiller/fix_time
...
Fix timeout decoding logic for times that become infinite
9 years ago
Jan Tattermusch
314575f55f
Merge pull request #5657 from leifurhauks/py3_generated_code
...
python 2/3 compatible abstract servicers/stubs
9 years ago
Jan Tattermusch
68f5a3bd82
Merge pull request #5368 from leifurhauks/py3_test_compat
...
Python: py3 compatibility for test runner & loader
9 years ago
Sree Kuchibhotla
8447b88f8c
Address code review comments
9 years ago
Jan Tattermusch
9a1fa344e7
Merge pull request #5892 from yang-g/copy_generic_byte_buffer
...
Make a copy of ByteBuffer when writing
9 years ago
Jan Tattermusch
68d6a773b8
Merge pull request #5927 from ctiller/tracer-tsan
...
Reorder asserts to avoid TSAN failure
9 years ago
Jan Tattermusch
f1050f6f4a
Merge pull request #5755 from ahedberg/unix_sockets_optional
...
Make unix sockets optional
9 years ago
Craig Tiller
9498bb1bb1
Reorder asserts to avoid TSAN failure
9 years ago
Jan Tattermusch
e3af44e2e9
Merge pull request #5914 from thought-machine/fix_slow_string_read
...
Make grpc-python ByteBuffer.bytes() linear
9 years ago
Matthew Iselin
1824f0519f
Add HTTP request parsing.
...
This extends the existing http parser to support requests as well as responses.
httpcli continues to exist and work as it has previously, though in the new
directory src/core/http (to reflect the fact the directory now contains code
relevant to parsing requests, which httpcli would not generally involve itself
in).
9 years ago
Sree Kuchibhotla
be09541112
Specification for stress test clients
9 years ago
Jan Tattermusch
39fd22193b
Merge pull request #5899 from dgquintas/uchannels_kthxbai
...
removed uchannels
9 years ago
Jan Tattermusch
2b0d66caa0
Merge pull request #5823 from VcamX/patch-2
...
Fix typo in GSoC ideas page
9 years ago
Jan Tattermusch
fe279af7e6
Merge pull request #5733 from ctiller/dns_backoff
...
Exponential backoff for DNS retries
9 years ago
Jan Tattermusch
3271dbc311
Merge pull request #5896 from vjpai/i_know_freelists
...
Lock the FD when initializing it out of the freelist
9 years ago
ahedberg
6753ae0cd7
fix include guard for unix_sockets_posix
9 years ago
ahedberg
3811dc78a8
more style fixes
9 years ago
ahedberg
879ce77cb6
include sockaddr.h in unix_sockets_posix.h for platform compatibility
9 years ago
makdharma
a814c7dd9c
Merge pull request #5893 from nicolasnoble/objc-finish-handler
...
For GRPCOperation's, ensure finish _handler can only be called once
9 years ago
Jan Tattermusch
e04d83656b
Merge pull request #5910 from ctiller/temporary_reprieve
...
Mark mlog_test as flaky
9 years ago
ahedberg
8afb88de66
fix copyright dates and style issues
9 years ago
alex
ce37938255
Make grpc-python ByteBuffer.bytes() linear cost.
...
Currently ByteBuffer.bytes() reads from the underlying grpc byte_buffer
a slice at a time, and appends each to a Python string (bytes). In
Python strings are immutable, so appending creates a new string by
copying the previous data. This means the current implementation is
quadratic.
The effect is very noticeable when messages have repeated (or large)
string fields. We traced execution between two services and observed
that when the payload size approached 600kb, the receiving service took
~10s at full CPU to read a response that had taken fractions of a second
the send over the network.
This commit changes ByteBuffer.bytes() to use an intermediate bytearray,
instead of strings, for the in-progress bytes. Once all slices are
read, the buffer is converted to a string.
9 years ago
ahedberg
799fd4bda6
fix compilation errors
9 years ago
ahedberg
fcbcbff290
prefix external linkage functions with grpc
9 years ago
Yang Gao
8615b7b9d4
Merge pull request #4679 from nicolasnoble/codegen-paths
...
Letting the user override the code generation a bit.
9 years ago
Craig Tiller
a5abbd2c03
Mark mlog_test as flaky
9 years ago
Jan Tattermusch
04961a0922
Merge pull request #5863 from dgquintas/includes_namespaces
...
Ensure that no #includes are inside of a namespace.
9 years ago
Jan Tattermusch
c5a4cef66b
Merge pull request #5865 from ctiller/clang_complete
...
Support clang_complete based editor plugins
9 years ago
Jan Tattermusch
bf7df7dcf8
Merge pull request #5870 from dgquintas/fix_static
...
Add identity to static metadata accept-encodings bitmasks
9 years ago
Jan Tattermusch
84ffe2bab6
Merge pull request #5898 from vjpai/log_wall
...
Remove a spammy log
9 years ago
Jan Tattermusch
6586599dc8
Merge pull request #5744 from murgatroid99/ruby_gc_mark_credentials_callback
...
Properly mark proc used in call credentials for garbage collection
9 years ago
Jan Tattermusch
bbb1d1053a
Merge pull request #5659 from leifurhauks/py3_examples
...
python3-compatible syntax for python examples
9 years ago
Jan Tattermusch
c6b1a71fc2
Merge pull request #5490 from murgatroid99/ruby_call_credentials_log_error
...
Add error output for failed ruby credentials plugin
9 years ago
Jan Tattermusch
795a50fc71
Merge pull request #5417 from ctiller/fix_something
...
Add extra error detail for pipe creation failure
9 years ago