MCPcopy Create free account
hub / github.com/apache/arrow / IsValid

Method IsValid

python/pyarrow/src/arrow/python/flight.cc:50–57  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

48}
49
50Status PyServerAuthHandler::IsValid(const std::string& token,
51 std::string* peer_identity) {
52 return SafeCallIntoPython([=] {
53 const Status status = vtable_.is_valid(handler_.obj(), token, peer_identity);
54 RETURN_NOT_OK(CheckPyError());
55 return status;
56 });
57}
58
59PyClientAuthHandler::PyClientAuthHandler(PyObject* handler,
60 const PyClientAuthHandlerVtable& vtable)

Callers 3

TestNoneAndNaNFunction · 0.45
WriteIndicesUniformMethod · 0.45
WriteIndicesVaryingMethod · 0.45

Calls 3

SafeCallIntoPythonFunction · 0.85
CheckPyErrorFunction · 0.85
is_validMethod · 0.45

Tested by 1

TestNoneAndNaNFunction · 0.36