OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:jsonKey
(Results
1 - 5
of
5
) sorted by null
/external/grpc-grpc-java/interop-testing/src/main/java/io/grpc/testing/integration/
TestServiceClient.java
274
String
jsonKey
= Files.asCharSource(new File(serviceAccountKeyFile), UTF_8).read();
276
tester.serviceAccountCreds(
jsonKey
, credentialsStream, oauthScope);
287
String
jsonKey
= Files.asCharSource(new File(serviceAccountKeyFile), UTF_8).read();
289
tester.oauth2AuthToken(
jsonKey
, credentialsStream, oauthScope);
294
String
jsonKey
= Files.asCharSource(new File(serviceAccountKeyFile), UTF_8).read();
296
tester.perRpcCreds(
jsonKey
, credentialsStream, oauthScope);
AbstractInteropTest.java
[
all
...]
/external/grpc-grpc/src/php/tests/interop/
interop_client.php
130
$
jsonKey
= json_decode(
135
hardAssert($result->getUsername() === $
jsonKey
['client_email'],
170
$
jsonKey
= json_decode(
175
hardAssert($result->getUsername() === $
jsonKey
['client_email'],
187
$
jsonKey
= json_decode(
192
hardAssert($result->getUsername() === $
jsonKey
['client_email'],
219
$
jsonKey
= json_decode(
226
hardAssert($result->getUsername() === $
jsonKey
['client_email'],
/external/syzkaller/vendor/golang.org/x/oauth2/google/
jwt.go
26
func JWTAccessTokenSourceFromJSON(
jsonKey
[]byte, audience string) (oauth2.TokenSource, error) {
27
cfg, err := JWTConfigFromJSON(
jsonKey
)
google.go
44
// file as
jsonKey
.
45
func ConfigFromJSON(
jsonKey
[]byte, scope ...string) (*oauth2.Config, error) {
57
if err := json.Unmarshal(
jsonKey
, &j); err != nil {
88
func JWTConfigFromJSON(
jsonKey
[]byte, scope ...string) (*jwt.Config, error) {
90
if err := json.Unmarshal(
jsonKey
, &f); err != nil {
Completed in 395 milliseconds