aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp/performance
Commit message (Collapse)AuthorAge
* clang tidy and clang formatGravatar ncteisen2018-12-07
|
* change tests to use the new class instead of grpc_test_initGravatar yang-g2018-11-30
|
* Modify remaining usecases in test/cppGravatar Yash Tibrewal2018-11-16
|
* Fix two build breakagesGravatar ncteisen2018-10-04
|
* reviewer feedbackGravatar ncteisen2018-10-04
|
* Create interfaces and initial plumbing for interception APIGravatar Yash Tibrewal2018-09-26
|
* Desneak client unary call, avoid Hyrum's Law (used for 1-thread simplicity)Gravatar Vijay Pai2018-03-20
|
* Change grpc++ references in names to grpcppGravatar Vijay Pai2018-03-08
|
* Run clang fmtGravatar Noah Eisen2018-02-09
|
* Autofix c casts to c++ castsGravatar Noah Eisen2018-02-09
|
* Add BUILD fileGravatar Adele Zhou2018-02-05
|
* calling create in default param is against code styleGravatar Jan Tattermusch2018-01-31
|
* avoid touching stats_ instance field before base constructorGravatar Jan Tattermusch2018-01-31
|
* make grpc_passthru_endpoint_stats refcountedGravatar Jan Tattermusch2018-01-30
|
* Revert "Revert "All instances of exec_ctx being passed around in src/core ↵Gravatar Yash Tibrewal2017-12-06
| | | | removed""
* Revert "All instances of exec_ctx being passed around in src/core removed"Gravatar Yash Tibrewal2017-12-06
|
* Merge master into execctxGravatar Yash Tibrewal2017-12-05
|\
* | Remove _ prefixed variable namesGravatar Yash Tibrewal2017-11-29
| |
* | Merge masterGravatar Yash Tibrewal2017-11-16
|\ \
| | * Merge remote-tracking branch 'upstream/master' into server_connection_timeoutGravatar Mark D. Roth2017-11-15
| | |\ | | |/ | |/|
* | | Move ExecCtx to grpc_core namespace. Make exec_ctx a private static in ↵Gravatar Yash Tibrewal2017-11-14
| | | | | | | | | | | | ExecCtx and some minor changes
* | | Address some PR commentsGravatar Yash Tibrewal2017-11-14
| | |
| * | Enable clang-tidy as a sanity check, fix up all known failuresGravatar Craig Tiller2017-11-10
| | |
* | | Removing more exec_ctx instancesGravatar Yash Tibrewal2017-11-09
| | |
* | | Merge with masterGravatar Yash Tibrewal2017-11-09
|\| |
| | * Add notify_on_receive_settings closure to chttp2 transport.Gravatar Mark D. Roth2017-11-09
| | |
| | * Bool-ify is_client param.Gravatar Mark D. Roth2017-11-09
| |/
| * Remove unnecessary extern CsGravatar Yash Tibrewal2017-10-25
| |
* | Removing instances of exec_ctx being passed around in functions inGravatar Yash Tibrewal2017-10-18
|/ | | | | | | | | | | src/core. exec_ctx is now a thread_local pointer of type ExecCtx instead of grpc_exec_ctx which is initialized whenever ExecCtx is instantiated. ExecCtx also keeps track of the previous exec_ctx so that nesting of exec_ctx is allowed. This means that there is only one exec_ctx being used at any time. Also, grpc_exec_ctx_finish is called in the destructor of the object, and the previous exec_ctx is restored to avoid breaking current functionality. The code still explicitly calls grpc_exec_ctx_finish because removing all such instances causes the code to break.
* auto-fix most of licensesGravatar Jan Tattermusch2017-06-08
|
* Increase error threshold for too many writesGravatar Craig Tiller2017-05-10
|
* Add a test verifying number of writes per RPC is reasonableGravatar Craig Tiller2017-01-30
Mostly this is code copied from bm_fullstack and rephrased as a test. I'm resisting the urge to unify it however, as I expect this code will evolve differently over time.