aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core/security/print_google_default_creds_token.c
Commit message (Collapse)AuthorAge
...
* FixesGravatar Craig Tiller2015-09-21
|
* Merge github.com:grpc/grpc into y12kdm3Gravatar Craig Tiller2015-08-18
|\
| * clang-format all sourceGravatar Craig Tiller2015-08-18
| |
* | Update toolsGravatar Craig Tiller2015-08-06
|/
* Allow specific pollers to be wokenGravatar Craig Tiller2015-07-29
| | | | | | | | | | | | | | | | | | | Currently, if two threads call grpc_completion_queue_pluck on the same completion queue for different tags, there is a 50% chance that we deliver the completion wakeup to the wrong poller - forcing the correct poller to wait until its polling times out before it can return an event up to the application. This change tweaks our polling interfaces so that we can indeed wake a specific poller. Nothing has been performance tuned yet. It's definitely sub-optimal in a number of places. Wakeup file-descriptors should be recycled. We should have a path that avoids calling poll() followed by epoll(). We can probably live without it right at the second though. This code will fail on Windows at least (I'll do that port when I'm in the office and have a Windows machine).
* Introduce a clock type field onto gpr_timespec.Gravatar Craig Tiller2015-07-13
| | | | | Use it to validate that arithmetic on time types makes even some vague kind of sense.
* Merge branch 'master' of github.com:grpc/grpc into jwt_verifierGravatar Julien Boeuf2015-07-08
|\
* | Adding JWT verifier.Gravatar Julien Boeuf2015-06-30
| | | | | | | | | | | | | | Still missing: - Caching of the already checked JWTs (although it could be done at an upper layer). - Caching of the jwks_uri to avoid 2 roundtrips for each verification.
| * Fixing this one as well.Gravatar Julien Boeuf2015-06-29
|/
* Ensure tests are built during run_tests runsGravatar Craig Tiller2015-06-19
| | | | | The issue remains that we don't test our tools, but at least we test that they compile.
* Fixing tools compilation.Gravatar Nicolas "Pixel" Noble2015-06-02
|
* Introduce slowdown factor for unit test deadlinesGravatar Craig Tiller2015-02-25
| | | | Dramatically lowers (eliminates maybe?) false negatives from ?SAN runs.
* Addressing iniitial feedback.Gravatar Julien Boeuf2015-02-23
- Renaming default credentials -> google default credentials. - Various other things in cpp: - Adding Cpp wrapping for JWT Tokens. - Renaming ComposeCredentials -> CompositeCredentials.