-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update upstream to https://github.com/grpc/grpc.git/commit/a7a650a74e…
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule upstream
updated
22 files
+96 −0 | CMakeLists.txt | |
+76 −0 | build_autogenerated.yaml | |
+2 −0 | src/core/BUILD | |
+18 −0 | src/core/lib/promise/detail/promise_factory.h | |
+10 −0 | src/core/lib/promise/detail/promise_like.h | |
+7,679 −1,700 | src/core/lib/promise/detail/seq_state.h | |
+32 −21 | src/core/lib/promise/map.h | |
+6 −0 | src/core/lib/promise/promise.h | |
+39 −49 | src/core/lib/promise/seq.h | |
+47 −37 | src/core/lib/promise/try_seq.h | |
+51 −47 | src/core/lib/resource_quota/memory_quota.cc | |
+23 −0 | test/core/promise/BUILD | |
+23 −19 | test/core/promise/loop_test.cc | |
+5,736 −0 | test/core/promise/opt_seq_test.cc | |
+5,736 −0 | test/core/promise/opt_try_seq_test.cc | |
+2 −2 | test/core/promise/seq_test.cc | |
+3 −3 | test/core/promise/try_seq_test.cc | |
+18 −262 | tools/codegen/core/gen_seq.py | |
+82 −0 | tools/codegen/core/templates/opt_seq_test.mako | |
+82 −0 | tools/codegen/core/templates/opt_try_seq_test.mako | |
+558 −0 | tools/codegen/core/templates/seq_state.mako | |
+48 −0 | tools/run_tests/generated/tests.json |