MCPcopy Create free account
hub / github.com/cel-expr/cel-cpp / Check

Method Check

conformance/service.cc:437–446  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

435 }
436
437 void Check(const conformance::v1alpha1::CheckRequest& request,
438 conformance::v1alpha1::CheckResponse& response) override {
439 google::protobuf::Arena arena;
440 auto status = CheckImpl(&arena, request, response);
441 if (!status.ok()) {
442 auto* issue = response.add_issues();
443 issue->set_code(ToGrpcCode(status.code()));
444 issue->set_message(status.message());
445 }
446 }
447
448 absl::Status Eval(const conformance::v1alpha1::EvalRequest& request,
449 conformance::v1alpha1::EvalResponse& response) override {

Callers 2

TESTFunction · 0.45
ABSL_FLAGFunction · 0.45

Calls 5

CheckImplFunction · 0.85
ToGrpcCodeFunction · 0.85
codeMethod · 0.80
messageMethod · 0.80
okMethod · 0.45

Tested by 1

TESTFunction · 0.36