Jan Tattermusch
2d92495776
added csharp generator plugin
10 years ago
Tim Emiola
f51e8587fc
Merge pull request #1518 from stanley-cheung/php_ignore_vendor_folder
...
ignore PHP vendor/ folder
10 years ago
Tim Emiola
bae3a61087
Really removes the string monkey-patch
10 years ago
Tim Emiola
57e289c103
Merge pull request #1504 from jtattermusch/csharp_api_fixes
...
Polishing the new C# API
10 years ago
Stanley Cheung
ff73231610
ignore PHP vendor/ folder
10 years ago
Tim Emiola
13363e31a7
make underscore a class method of GenericService
10 years ago
Tim Emiola
eb697aa12a
Merge pull request #1512 from stanley-cheung/bump_php_composer_lock
...
remove php composer.lock file
10 years ago
Craig Tiller
c354c51cf4
If we have closed the transport, dont try reading
10 years ago
murgatroid99
00943fcd32
Updated the getGoogleAuthDelegate function to use credential.getRequestMetadata
10 years ago
Eric Anderson
e82f8266cf
Merge pull request #1502 from ctiller/check-on-headers
...
Validate that headers contain legal bytes
10 years ago
Stanley Cheung
ab62f47be2
remove composer.lock file
10 years ago
Nathan Mittler
2ec12deded
Merge pull request #1510 from ejona86/installDist
...
Add 'installDist' task to grpc-java Docker build
10 years ago
Yang Gao
2b84e22985
Merge remote-tracking branch 'upstream/master' into mock
10 years ago
Stanley Cheung
04cba6041f
bump php composer.lock again because of auth library fix
10 years ago
Nicolas Noble
83606799a4
Merge pull request #1503 from ctiller/dont-signal-me
...
Eliminate need for SIGPIPE handling
10 years ago
Nicolas Noble
0353fadd7c
Merge pull request #1509 from ctiller/perform-callbacks
...
Cleanup unlock() a little
10 years ago
Craig Tiller
c5f3e268a1
Fix potential leak
10 years ago
Eric Anderson
aa518cc3bf
Add 'installDist' task to grpc-java Docker build
...
This will allow us to not run Gradle every time we run an integration
test.
10 years ago
murgatroid99
40a4e862f9
Merge branch 'master' into node_status_error_event
10 years ago
vjpai
0fe994401a
Merge branch 'master' into stream_ctx
10 years ago
Craig Tiller
ba6b9b3d47
Merge github.com:grpc/grpc into all-the-small-things
10 years ago
Craig Tiller
07bc6ceedf
Merge github.com:grpc/grpc into we-should-probably-run-all-the-tests-we-have
10 years ago
Nicolas "Pixel" Noble
e34a45abef
A few win32 fixes.
...
-) Better handling of orphaned sockets by tracking the pending operations in it, instead of the layer above.
-) Ignoring after-shutdown operations.
10 years ago
Jan Tattermusch
03e82e2cdf
Split address passed to AddListeningPort into host and port
10 years ago
Jan Tattermusch
8ab1f7ed3d
added concept of ServerCallContext, that is passed to all server-side handlers
10 years ago
Jan Tattermusch
bdb1b4863b
add a generic constraint for TRequest and TResponse to require a class
10 years ago
Jan Tattermusch
9b9a877eae
change todo comment
10 years ago
Julien Boeuf
9f218ddd9d
Adding support for per call credentials in core.
10 years ago
Craig Tiller
f666adef90
Merge github.com:grpc/grpc into churn-churn-churn-the-api-gently-down-the-stream
10 years ago
Craig Tiller
1562f5cfd9
Merge github.com:grpc/grpc into the-churnening
10 years ago
Craig Tiller
47838544e0
Merge github.com:grpc/grpc into do-the-right-thing-put-it-in-a-bin
10 years ago
Craig Tiller
228896eab5
Merge github.com:grpc/grpc into check-on-headers
10 years ago
Craig Tiller
46e46ed9ca
Merge github.com:grpc/grpc into dont-signal-me
10 years ago
Craig Tiller
1d74de996c
Cleanup unlock() a little
10 years ago
Nicolas Noble
63733efd73
Merge pull request #1499 from jtattermusch/core_cb_fix
...
Fix server side call finalization when connection is closed.
10 years ago
David Garcia Quintas
9b0a94b5c7
Further fixes and eye candy.
...
In particular, fixed the handling of } when nesting gets complex.
Made the reporting of block percentiles consistent with the ! reporting.
10 years ago
David Garcia Quintas
7cff3ee205
Handling of ! tags across threads & performance.
...
Fixed an important bug whereby thread info wasn't being taken into
account for ! marks.
Also dramatically improved performance by getting rid of a silly O(n^2)
loop.
10 years ago
murgatroid99
f742c52d9d
Version bump because of new exposed errors
10 years ago
murgatroid99
65b784e230
Added error events on client streams when the server is streaming
10 years ago
Craig Tiller
2da0296478
Eliminate need for SIGPIPE handling
10 years ago
Tim Emiola
a568ce7245
Merge pull request #1495 from stanley-cheung/fix_php_gce_test
...
update php composer.lock
10 years ago
Craig Tiller
b96d001584
Validate that headers contain legal bytes
10 years ago
Stanley Cheung
ba57cf23ee
Merge pull request #1501 from donnadionne/test-log
...
more division of logs to make it easier to analyze test results.
10 years ago
Donna Dionne
030ca38635
more division of logs to make it easier to analyze test results.
10 years ago
David Garcia Quintas
975efdc915
Avoid repeated sortings in percentile() calls.
...
Have the function expect sorted input.
10 years ago
Craig Tiller
d1abc814a7
Throw away queued messages on error
10 years ago
David Garcia Quintas
776075a80a
Implemented aggregation over important mark times.
...
Namely, 50,90,95 and 99th percentiles are now reported on important marks.
Example output (for a single ! mark between begin-end marks in grpc_tcp_write()):
```
Important marks:
================
99999@src/core/iomgr/tcp_posix.c:545
Relative mark: 50th p. 90th p. 95th p. 99th p.
205 { (src/core/iomgr/tcp_posix.c:541): 0.037 0.057 0.070 0.087
205 } (src/core/iomgr/tcp_posix.c:556): 15.181 27.021 32.509 41.103
```
For a fabricated example (see https://gist.github.com/dgquintas/026d333815589cc37269 ) with the same ! mark
in two different frames, the output is:
```
Important marks:
================
999999@src/core/iomgr/tcp_posix.c:5
Relative mark: 50th p. 90th p. 95th p. 99th p.
205 { (src/core/iomgr/tcp_posix.c:1): 9.500 13.900 14.450 14.890
205 } (src/core/iomgr/tcp_posix.c:6): 3.000 4.600 4.800 4.960
999999@src/core/iomgr/tcp_posix.c:3
Relative mark: 50th p. 90th p. 95th p. 99th p.
205 { (src/core/iomgr/tcp_posix.c:1): 2.500 2.900 2.950 2.990
205 { (src/core/iomgr/tcp_posix.c:2): 1.500 1.900 1.950 1.990
205 } (src/core/iomgr/tcp_posix.c:4): 2.000 2.800 2.900 2.980
205 } (src/core/iomgr/tcp_posix.c:6): 10.000 15.600 16.300 16.860
```
10 years ago
vjpai
40627b4dc4
Merge branch 'master' into stream_ctx
10 years ago
Jan Tattermusch
594856fe64
Fix: Server side call with both streams closed doesnt get properly finalized
10 years ago
Stanley Cheung
ae35546dda
Merge pull request #1497 from donnadionne/test-log
...
Test log
10 years ago