Home
last modified time | relevance | path

Searched refs:create_child (Results 1 – 2 of 2) sorted by relevance

/external/grpc-grpc/src/core/lib/security/credentials/jwt/
Djson_token.cc152 static grpc_json* create_child(grpc_json* brother, grpc_json* parent, in create_child() function
170 child = create_child(nullptr, json, "alg", algorithm, GRPC_JSON_STRING); in encoded_jwt_header()
171 child = create_child(child, json, "typ", GRPC_JWT_TYPE, GRPC_JSON_STRING); in encoded_jwt_header()
172 create_child(child, json, "kid", key_id, GRPC_JSON_STRING); in encoded_jwt_header()
199 child = create_child(nullptr, json, "iss", json_key->client_email, in encoded_jwt_claim()
202 child = create_child(child, json, "scope", scope, GRPC_JSON_STRING); in encoded_jwt_claim()
205 child = create_child(child, json, "sub", json_key->client_email, in encoded_jwt_claim()
209 child = create_child(child, json, "aud", audience, GRPC_JSON_STRING); in encoded_jwt_claim()
210 child = create_child(child, json, "iat", now_str, GRPC_JSON_NUMBER); in encoded_jwt_claim()
211 create_child(child, json, "exp", expiration_str, GRPC_JSON_NUMBER); in encoded_jwt_claim()
/external/tensorflow/tensorflow/python/module/
Dmodule_test.py589 def __init__(self, create_child=True, container_type=list): argument
593 if create_child:
594 self.c = SimpleModule(create_child=False)