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

Method Equals

cpp/src/arrow/filesystem/gcsfs.cc:40–48  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

38namespace fs {
39
40bool GcsCredentials::Equals(const GcsCredentials& other) const {
41 if (holder_->credentials == other.holder_->credentials) {
42 return true;
43 }
44 return anonymous_ == other.anonymous_ && access_token_ == other.access_token_ &&
45 expiration_ == other.expiration_ &&
46 json_credentials_ == other.json_credentials_ &&
47 target_service_account_ == other.target_service_account_;
48}
49
50namespace {
51

Callers

nothing calls this directly

Calls 3

type_nameFunction · 0.70
type_nameMethod · 0.45
optionsMethod · 0.45

Tested by

no test coverage detected