Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Use the same ParseCommandLineFlags for golden file test that is used in ↵ | Alexander Polcyn | 2017-12-19 |
| | | | | other test binaries | ||
* | Mark one test binary as testonly | Alexander Polcyn | 2017-12-19 |
| | |||
* | Enable golden file test in bazel | Alexander Polcyn | 2017-12-11 |
| | |||
* | Merge github.com:grpc/grpc into lfe3 | Craig Tiller | 2017-11-10 |
|\ | |||
* | | Enable clang-tidy as a sanity check, fix up all known failures | Craig Tiller | 2017-11-10 |
| | | |||
| * | Only allocate what we need in the last slice for proto serialization | yang-g | 2017-11-09 |
|/ | |||
* | Merge github.com:grpc/grpc into 50 | Craig Tiller | 2017-11-06 |
|\ | |||
| * | Need explicit "protobuf" dependence on proto_utils_test | Vijay Pai | 2017-11-03 |
| | | |||
* | | Update clang-format to 5.0 | Craig Tiller | 2017-11-03 |
|/ | |||
* | Separate public and internal C++ interfaces | Vijay Pai | 2017-10-26 |
| | |||
* | Construction of streams shouldn't require triggering async ops | Vijay Pai | 2017-09-14 |
| | |||
* | Moving visibility and package creation to the build system. | Nicolas "Pixel" Noble | 2017-08-30 |
| | |||
* | Revert "Separate internal-only and public parts of C++ API" | Vijay Pai | 2017-07-25 |
| | |||
* | Merge pull request #11310 from nicolasnoble/import | Nicolas Noble | 2017-07-13 |
|\ | | | | | Import mutations. | ||
* \ | Merge pull request #11572 from vjpai/internalize | Vijay Pai | 2017-07-10 |
|\ \ | | | | | | | Separate internal-only and public parts of C++ API | ||
* | | | Fix codegen_test_full | David Garcia Quintas | 2017-07-10 |
| | | | |||
| * | | Internalize structs and methods meant for being exposed through codegen | Vijay Pai | 2017-07-10 |
|/ / | | | | | | | or that interface with core and are only for internal use | ||
| * | Merge branch 'master' of https://github.com/grpc/grpc into import | Nicolas "Pixel" Noble | 2017-06-26 |
| |\ | |/ |/| | |||
* | | fix remaining license notices | Jan Tattermusch | 2017-06-08 |
| | | |||
* | | auto-fix most of licenses | Jan Tattermusch | 2017-06-08 |
| | | |||
| * | Adding dummy layering check option. | Nicolas "Pixel" Noble | 2017-05-19 |
|/ | |||
* | Merge branch 'master' of https://github.com/grpc/grpc into import | Nicolas "Pixel" Noble | 2017-05-11 |
|\ | |||
| * | Add static method to generated code to return fully qualified protobuf ↵ | James Eady | 2017-05-02 |
| | | | | | | | | service name. | ||
| * | Post-review update | Mahak Mukhi | 2017-04-18 |
| | | |||
| * | more sanity | Mahak Mukhi | 2017-04-15 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | trying to fix some sanity nope that didn't work fixing test failiures added debug code more trail and error more trial and error cleaning debug code | ||
| * | 1. Added golden file test. | Mahak Mukhi | 2017-04-14 |
| | | | | | | | | | | 2. Added support for mock. 3. Sanity fix. | ||
* | | Buildifier and wrapping test/cpp/* rules with our build system. | Nicolas "Pixel" Noble | 2017-04-13 |
|/ | |||
* | Merge pull request #8407 from jronak/fixtag | Yang Gao | 2017-03-04 |
|\ | | | | | replaced protobuf tag | ||
* | | Reintroduced golden_file_test | David Garcia Quintas | 2017-02-21 |
| | | |||
* | | Removed useless cpp/codegen/golden_file_test | David Garcia Quintas | 2017-02-17 |
| | | |||
* | | test/cpp/codegen | David Garcia Quintas | 2017-02-17 |
| | | |||
* | | Fix read from uninitialized memory bug in GrpcBufferWriter. | Harvey Tuch | 2017-02-07 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit fixes an issue in which the following sequence of operations leads to use of uninitialized memory: 1. Caller invokes GrpcBufferWriter::Next(), and then makes use of 8191 bytes in the returned buffer (which is 8192 bytes in size). 2. Caller then returns the unused single byte via GrpcBufferWriter::BackUp(). This method invokes g_core_codegen_interface->grpc_slice_split_tail(), which causes backup_slice_ to be a grpc_slice with one byte. 3. At the next invocation of GrpcBufferWriter::Next(), a reference to the single byte grpc_slice is returned to the caller. The problem here is that the returned reference is to the inlined buffer in the grpc_slice, which is resident in slice_, not the location of the buffer inside slice_buffer_ after g_core_codegen_interface->grpc_slice_buffer_add() in GrpcBufferWriter::Next(). As a result, any data the caller writes to the returned void* data is lost. The solution is to avoid inlined backup slices. | ||
| * | replaced protobuf tag in compile_test_golden | Ronak Jain | 2016-12-14 |
| | | |||
* | | Use C++11 final and override | Vijay Pai | 2016-11-01 |
| | | |||
* | | golden file | Vijay Pai | 2016-10-13 |
|/ | |||
* | Merge branch 'master' of github.com:grpc/grpc into codegen_cleanse | David Garcia Quintas | 2016-09-03 |
|\ | |||
| * | a golden file | Vijay Pai | 2016-08-30 |
| | | |||
| * | Fix golden test | Vijay Pai | 2016-08-30 |
| | | |||
| * | Update golden file | Vijay Pai | 2016-08-29 |
| | | |||
| * | Add FCService to golden test | Vijay Pai | 2016-08-04 |
| | | |||
* | | removed codegen/time.h | David Garcia Quintas | 2016-07-27 |
| | | |||
| * | Fix the golden file - why do we even have this lever? | vjpai | 2016-06-23 |
|/ | |||
* | Use the comments before syntax line as file comments. | yang-g | 2016-04-15 |
| | |||
* | Clarify the comments | yang-g | 2016-04-14 |
| | |||
* | Add a test | yang-g | 2016-04-14 |
| | |||
* | Added codegen_test_full | David Garcia Quintas | 2016-04-08 |
| | | | | Which makes sure target that depend on both codegen and grpc build. | ||
* | clang-format | David Garcia Quintas | 2016-03-08 |
| | |||
* | WIP. Added codegen_test | David Garcia Quintas | 2016-03-06 |