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
apolcyn
bd6bdf9327
Merge pull request #13290 from apolcyn/cares_address_sorting_master_c
...
Add address sorting submodule for use in c-ares wrapper
7 years ago
Eric Gribkoff
4e7e492550
Correctly set gradle project properties
7 years ago
Muxi Yan
6d855c5f3c
Allow gRPC ObjC user to set keepalive options
7 years ago
Eric Gribkoff
18e954d3e1
Correctly set gradle project properties
7 years ago
ZhouyihaiDing
76d4621bd8
PHP: split script for running distrib tests on different system
7 years ago
adelez
bc7e096dd3
Merge pull request #14788 from adelez/foundry_integration
...
Add timeout param to grpc_cc_test, set it to long for fuzzer tests and eternal for api_fuzzer
7 years ago
Zhouyihai Ding
4c05e50f9f
Merge pull request #14807 from ZhouyihaiDing/php_config
...
PHP: fix pecl build error with "-D PB_FIELD_16BIT=1"
7 years ago
ZhouyihaiDing
32a96fef44
PHP: fix pecl build error
7 years ago
Eric Gribkoff
4d52dae3e7
Build protoc and grpc_cpp_plugin for android kokoro job
7 years ago
Nathaniel Manista
cc6608097d
Merge pull request #14652 from ghostwriternr/jobset-logging
...
Make logging after success in jobset more apparent.
7 years ago
Vijay Pai
ad9ec9e017
Fix an ifdef comment
7 years ago
Mehrdad Afshari
a181e8d91d
Merge pull request #14768 from axot/bugfix/pecl_compile_flags
...
Add missing FLAGS for pecl
7 years ago
David Garcia Quintas
8a6453d31b
localhost or 127.0.0.1
7 years ago
Jiangtao Li
c7c779f51a
Merge pull request #14722 from jiangtaoli2016/ssl_load_root_certs
...
load ssl default root certificates only once
7 years ago
everysick
dfc95159a6
Use GRPC_RB_MEMSIZE_UNAVAILABLE in grpc_rb_md_ary_data_type
7 years ago
Jan Tattermusch
3c3439dc97
cleanup leftover files under vsprojects
7 years ago
David Garcia Quintas
27d48dad5e
fixed bad_ping test after merge
7 years ago
David Garcia Quintas
811169d62f
Merge branch 'master' of github.com:grpc/grpc into authority_header
7 years ago
David Garcia Quintas
0287924466
Added host override info to test fixture config
7 years ago
Eric Gribkoff
f54e4a35fa
build protoc and grpc_cpp_plugin for android kokoro job
7 years ago
Zhouyihai Ding
cd07232917
Merge pull request #14798 from ZhouyihaiDing/macOS_pecl
...
PHP: fix maxOS distrib test pecl installation error
7 years ago
Muxi Yan
93e2d92992
Add more plugins to be used by grpc_cronet
7 years ago
Eric Gribkoff
3df0b1ad78
Add Java 1.10.1 to interop matrix
7 years ago
apolcyn
9cb8be661a
Merge pull request #14705 from xambroz/ruby_format_strings
...
Ruby format strings
7 years ago
Adele Zhou
aadbd18596
Also add size
7 years ago
Eric Gribkoff
2fd31eb695
Add Java 1.10.1
7 years ago
David Garcia Quintas
fa460dcf1d
Factor out grpc_add_default_authority_if_not_present
7 years ago
ZhouyihaiDing
6152663b54
PHP: maxOS distrib test pecl-install
7 years ago
David Garcia Quintas
d043fa06bc
PR comments
7 years ago
Mark D. Roth
51332ab0e5
Merge pull request #14733 from markdroth/resolver_wait_for_ready
...
Fall calls with wait_for_ready=false on transient resolver failure.
7 years ago
jiangtaoli2016
144f5559da
cache default SSL root cert store
7 years ago
Yang Gao
b8b976f06c
Merge pull request #14787 from yang-g/tooo_many_pings
...
Properly reset pings_before_data_required
7 years ago
Muxi Yan
9e4d954077
Merge pull request #14780 from muxi/fix-keepalive
...
Keepalive watchdog timer used a wrong timeout value
7 years ago
Adele Zhou
7bc84a2256
Use timeout instead of size
7 years ago
Adele Zhou
8f7bdecf7c
Set default size large for fuzzer tests, and enormous for api_fuzzer
7 years ago
Adele Zhou
ad5be3e310
Add size param to grpc_cc_test and set it to enormous for fuzzer tests.
7 years ago
Feng Li
90af9346de
Merge pull request #14801 from fengli79/master
...
Release the GIL when calling grpc_call_start_batch.
7 years ago
Vijay Pai
e9bd89c8d3
Merge pull request #14792 from vjpai/desneak2
...
Eliminate existence of SneakyCallOpSet, some server cleanup
7 years ago
Jan Tattermusch
0b79eec270
Merge pull request #14794 from jtattermusch/reimplement_haversine
...
Reimplement distance calculation in RouteGuide servers
7 years ago
Feng Li
7b2f5775d8
Release the GIL when calling grpc_call_start_batch.
7 years ago
Mark D. Roth
e63e06d8d7
Fall calls with wait_for_ready=false on transient resolver failure.
7 years ago
Jan Tattermusch
6fbc1fbce4
Merge pull request #14795 from jtattermusch/reimplement_percentile
...
Reimplement percentile function in profile_analyzer.py
7 years ago
Jan Tattermusch
a435ca1d14
Merge pull request #14776 from jtattermusch/fix_metadata_credentials_flake
...
Fix C# connectivity watcher shutdown race
7 years ago
Jan Tattermusch
1938ef286c
Merge pull request #14774 from jtattermusch/portability_fix_alpine
...
Partially fix resolver_component_tests_runner test in gcc_musl portability suite
7 years ago
Jan Tattermusch
a26aecc03b
reimplement distance calculation in routeguide
7 years ago
Eric Gribkoff
16695aa26f
Add gRPC C++ on Android Kokoro build
7 years ago
David Garcia Quintas
4b31e36a19
Fixed tests call host
7 years ago
Vijay Pai
a4da2d2a54
Eliminate existence of SneakyCallOpSet, some server cleanup
7 years ago