Muxi Yan
53f0b8d148
Merge pull request #14781 from muxi/objc-keep-alive
...
Allow gRPC ObjC user to set keepalive options
7 years ago
everysick
bae00e08cc
Add test for verifying to get memory usage in client request
7 years ago
David G. Quintas
07e75a02a0
Merge pull request #14615 from dgquintas/authority_header
...
Secure channels: use the right authority
7 years ago
Muxi Yan
4c0872d44e
Disable test for Cronet (unsupported)
7 years ago
Vijay Pai
c4cc740d61
Remove tool from install
7 years ago
Jan Tattermusch
619cdf090c
start uploading sanity master results to bigquery
7 years ago
Jan Tattermusch
a7773a2000
Merge pull request #14841 from jtattermusch/cleanup_sanity
...
Don't run sanity tests as part of multilang testsuite.
7 years ago
Jan Tattermusch
2286c633c2
cmake "superbuild" example using externalprojects
7 years ago
kpayson64
c39496540c
Merge pull request #14561 from kpayson64/gevent_2
...
Initial Gevent Compatibility
7 years ago
kpayson64
a99dd83e58
Merge pull request #14813 from grpc/vjpai-patch-1
...
Fix an ifdef comment
7 years ago
adelez
d7aa8f7c26
Merge pull request #14834 from menghanl/fix_release_matrix
...
Add go release versions to client_matrix.py
7 years ago
Mark D. Roth
9db86fcc63
Convert retry throttle code to C++ and add tests.
7 years ago
Jan Tattermusch
31bdbbeacf
Merge pull request #14825 from ZhouyihaiDing/pecl_3party_sorting
...
PHP: fix pecl installation error for finding address_sorting.h
7 years ago
Jan Tattermusch
ba5c7a5034
cleanup configuration for linux sanity tests
7 years ago
Jan Tattermusch
818cf05440
Merge pull request #14683 from kkm000/package-grpc-tools-nits
...
Minor changes to control files from Tools package rework
7 years ago
kpayson64
1bfff8eec0
Initial gevent support
...
Because some cpp code ends up leaking into cython, we change
the cython generator to generate cpp code.
7 years ago
kpayson64
0bb2fe946e
Explicitly stop servers in unit tests.
...
Relying on garbage collection to stop servers breaks with gevent.
7 years ago
apolcyn
d9ec9068c7
Merge pull request #14634 from apolcyn/fix_ruby_omnibus_breakge
...
Remove source code and native-to-build-host grpc_c.so from ruby linux binary packages
7 years ago
David Garcia Quintas
b08e6a2e3d
fix generate_tests.bzl
7 years ago
Yash Tibrewal
c2a89cbdab
Merge pull request #14769 from yashykt/sslcerttestfix
...
Use same queue for batch ops and for shutdown in h2_ssl_cert_test
7 years ago
Stanley Cheung
cb004080fa
Merge pull request #14831 from grpc/wenbozhu-patch-1
...
Remove browser-specific features.
7 years ago
Wenbo Zhu
a01137507d
Update PROTOCOL-WEB.md
7 years ago
Menghan Li
8ba39a99cb
Add go release versions to client_matrix.py
7 years ago
David Garcia Quintas
e27ffd82df
fixed BUILD
7 years ago
David Garcia Quintas
158375a440
Merge branch 'master' of github.com:grpc/grpc into authority_header
7 years ago
Muxi Yan
16248a035f
Test nit fixes
7 years ago
David Garcia Quintas
46511cd5d3
malloc to stack
7 years ago
Wenbo Zhu
ab8580d940
Remove browser-specific features.
7 years ago
Vijay Pai
b984a27d90
Merge pull request #14827 from vjpai/alarm_deflake
...
Expand timeouts to deflake alarm test
7 years ago
Eric Gribkoff
7279dcb614
Merge pull request #14830 from ericgribkoff/fix_android_helloworld
...
Fix Android build
7 years ago
Muxi Yan
6fc54b3563
Merge pull request #14810 from muxi/cronet-plugin-registry-followup
...
Add more plugins to be used by grpc_cronet
7 years ago
Eric Gribkoff
2d3d918db5
Fix Android build
7 years ago
David Garcia Quintas
d5d36d7b7b
fix wrong include
7 years ago
David Garcia Quintas
9a2cea0aed
fix include guard
7 years ago
David Garcia Quintas
49f625f232
more comments
7 years ago
Alexander Polcyn
a803c0340a
Remove source code and the grpc_c.so file that was built as a local binary from the ruby
...
binary packages
7 years ago
Vijay Pai
a7df986f08
Expand timeouts to deflake alarm test
7 years ago
ZhouyihaiDing
5ad50eccdc
PHP: fix pecl installation error for fiinding address_sorting.h
7 years ago
Jan Tattermusch
4a5aedba9a
Merge pull request #14816 from ZhouyihaiDing/pecl_extension
...
PHP: add script for running distrib tests on macos
7 years ago
Jan Tattermusch
217e008f25
Merge pull request #14806 from jtattermusch/cleanup_vsprojects
...
Cleanup leftover files under vsprojects
7 years ago
Noah Eisen
88cb996ba3
Merge pull request #14747 from ncteisen/flow-control
...
Fix Flow Control Bug
7 years ago
ncteisen
2920457547
Fix objc macos build
7 years ago
Srini Polavarapu
cdc0e28fe5
Bump protobuf version check from 3.0.0 to 3.5.0
7 years ago
Muxi Yan
a6ffad9725
Polish comments for setKeepaliveWithInterval
7 years ago
ncteisen
6e17041aa7
Fix flow control bug
7 years ago
Noah Eisen
bbb7259fe8
Merge pull request #14820 from ncteisen/sanity
...
Fix Sanity
7 years ago
ncteisen
e71c1b8e39
Fix sanity
7 years ago
David Garcia Quintas
e44efe099d
rest of pr comments
7 years ago
Daniel Neighman
8b7007ad7b
Updates the ruby generator RubyAsType to correctly account for underscores in packages
...
Prior to this change, when the ruby generator tried to reference an entity that was not part of the same package
(or a direct parent package) and the package contains underscores,
the result would simply uppercase the first character.
It should however uppercase each letter that proceeds an underscore and remove underscores.
i.e.
```
package my_package.service;
import "my_package/data.proto";
service MyService {
rpc Test (data.Request) returns data.Response {}
}
```
Was
```ruby
# ...
rpc :Test, My_package::Data::REquest, My_package::Data::Response
# ...
```
Should be:
```ruby
# ...
rpc :Test, MyPackage::Data::REquest, My_package::Data::Response
# ...
```
7 years ago
David Garcia Quintas
861363d618
added call_host_override test
7 years ago