本文整理汇总了TypeScript中src/util/fixLong.FixLong函数的典型用法代码示例。如果您正苦于以下问题:TypeScript FixLong函数的具体用法?TypeScript FixLong怎么用?TypeScript FixLong使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了FixLong函数的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的TypeScript代码示例。
示例1: addStatementStats
export function addStatementStats(a: StatementStatistics, b: StatementStatistics) {
const countA = FixLong(a.count).toInt();
const countB = FixLong(b.count).toInt();
return {
count: a.count.add(b.count),
first_attempt_count: a.first_attempt_count.add(b.first_attempt_count),
max_retries: a.max_retries.greaterThan(b.max_retries) ? a.max_retries : b.max_retries,
num_rows: addNumericStats(a.num_rows, b.num_rows, countA, countB),
parse_lat: addNumericStats(a.parse_lat, b.parse_lat, countA, countB),
plan_lat: addNumericStats(a.plan_lat, b.plan_lat, countA, countB),
run_lat: addNumericStats(a.run_lat, b.run_lat, countA, countB),
service_lat: addNumericStats(a.service_lat, b.service_lat, countA, countB),
overhead_lat: addNumericStats(a.overhead_lat, b.overhead_lat, countA, countB),
};
}
开发者ID:a6802739,项目名称:cockroach,代码行数:15,代码来源:appStats.ts
示例2: IsLeader
export function IsLeader(info: protos.cockroach.server.serverpb.RangeInfo$Properties) {
const localRep = GetLocalReplica(info);
if (_.isNil(localRep)) {
return false;
}
return Long.fromInt(localRep.replica_id).eq(FixLong(info.raft_state.lead));
}
开发者ID:boreys,项目名称:cockroach,代码行数:7,代码来源:rangeInfo.ts
示例3: getRangeLog
export function getRangeLog(
req: RangeLogRequestMessage,
timeout?: moment.Duration,
): Promise<RangeLogResponseMessage> {
const rangeID = FixLong(req.range_id);
const rangeIDQuery = (rangeID.eq(0)) ? "" : `/${rangeID.toString()}`;
const limit = (!_.isNil(req.limit)) ? `?limit=${req.limit}` : "";
return timeoutFetch(
serverpb.RangeLogResponse,
`${API_PREFIX}/rangelog${rangeIDQuery}${limit}`,
null,
timeout,
);
}
开发者ID:jordanlewis,项目名称:cockroach,代码行数:14,代码来源:api.ts
示例4: IsLeaseEpoch
export function IsLeaseEpoch(lease: protos.cockroach.roachpb.ILease) {
return !FixLong(lease.epoch).eq(0);
}
开发者ID:asubiotto,项目名称:cockroach,代码行数:3,代码来源:lease.ts
示例5: stdDevLong
export function stdDevLong(stat: NumericStat, count: number | Long) {
return stdDev(stat, FixLong(count).toInt());
}
开发者ID:a6802739,项目名称:cockroach,代码行数:3,代码来源:appStats.ts
注:本文中的src/util/fixLong.FixLong函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论