• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Python typecheck.is_int函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了Python中raritan.rpc.typecheck.is_int函数的典型用法代码示例。如果您正苦于以下问题:Python is_int函数的具体用法?Python is_int怎么用?Python is_int使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。



在下文中一共展示了is_int函数的16个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Python代码示例。

示例1: decode

 def decode(rsp, agent):
     _ret_ = rsp['_ret_']
     results = [x0 for x0 in rsp['results']]
     typecheck.is_int(_ret_, DecodeException)
     for x0 in results:
         typecheck.is_string(x0, DecodeException)
     return (_ret_, results)
开发者ID:gsquire1,项目名称:Python,代码行数:7,代码来源:__init__.py


示例2: encode

 def encode(startIndex, count):
     typecheck.is_int(startIndex, AssertionError)
     typecheck.is_int(count, AssertionError)
     args = {}
     args['startIndex'] = startIndex
     args['count'] = count
     return args
开发者ID:gsquire1,项目名称:Python,代码行数:7,代码来源:__init__.py


示例3: getBridgeSlaveCount

 def getBridgeSlaveCount(self):
     agent = self.agent
     args = {}
     rsp = agent.json_rpc(self.target, 'getBridgeSlaveCount', args)
     _ret_ = rsp['_ret_']
     typecheck.is_int(_ret_, DecodeException)
     return _ret_
开发者ID:QualiSystems,项目名称:Raritan-PDU-Shell,代码行数:7,代码来源:__init__.py


示例4: getIdleTimeoutSettings

 def getIdleTimeoutSettings(self):
     agent = self.agent
     args = {}
     rsp = agent.json_rpc(self.target, 'getIdleTimeoutSettings', args)
     _ret_ = rsp['_ret_']
     typecheck.is_int(_ret_, DecodeException)
     return _ret_
开发者ID:QualiSystems,项目名称:Raritan-PDU-Shell,代码行数:7,代码来源:__init__.py


示例5: encode

 def encode(reqInfo, days):
     typecheck.is_struct(reqInfo, raritan.rpc.cert.ServerSSLCert.ReqInfo, AssertionError)
     typecheck.is_int(days, AssertionError)
     args = {}
     args['reqInfo'] = raritan.rpc.cert.ServerSSLCert.ReqInfo.encode(reqInfo)
     args['days'] = days
     return args
开发者ID:gsquire1,项目名称:automation,代码行数:7,代码来源:__init__.py


示例6: acknowledgeAlertStatus

 def acknowledgeAlertStatus(self):
     agent = self.agent
     args = {}
     rsp = agent.json_rpc(self.target, 'acknowledgeAlertStatus', args)
     _ret_ = rsp['_ret_']
     typecheck.is_int(_ret_, DecodeException)
     return _ret_
开发者ID:QualiSystems,项目名称:Raritan-PDU-Shell,代码行数:7,代码来源:__init__.py


示例7: decode

 def decode(rsp, agent):
     _ret_ = rsp['_ret_']
     image = [raritan.rpc.webcam.StorageManager.StorageImage.decode(x0, agent) for x0 in rsp['image']]
     typecheck.is_int(_ret_, DecodeException)
     for x0 in image:
         typecheck.is_struct(x0, raritan.rpc.webcam.StorageManager.StorageImage, DecodeException)
     return (_ret_, image)
开发者ID:gsquire1,项目名称:automation,代码行数:7,代码来源:__init__.py


示例8: getRawValue

 def getRawValue(self):
     agent = self.agent
     args = {}
     rsp = agent.json_rpc(self.target, 'getRawValue', args)
     _ret_ = rsp['_ret_']
     typecheck.is_int(_ret_, DecodeException)
     return _ret_
开发者ID:QualiSystems,项目名称:Raritan-PDU-Shell,代码行数:7,代码来源:__init__.py


示例9: installPendingKeyPair

 def installPendingKeyPair(self):
     agent = self.agent
     args = {}
     rsp = agent.json_rpc(self.target, 'installPendingKeyPair', args)
     _ret_ = rsp['_ret_']
     typecheck.is_int(_ret_, DecodeException)
     return _ret_
开发者ID:QualiSystems,项目名称:Raritan-PDU-Shell,代码行数:7,代码来源:__init__.py


示例10: encode

 def encode(sessionId, reason):
     typecheck.is_int(sessionId, AssertionError)
     typecheck.is_enum(reason, raritan.rpc.session.SessionManager.CloseReason, AssertionError)
     args = {}
     args['sessionId'] = sessionId
     args['reason'] = raritan.rpc.session.SessionManager.CloseReason.encode(reason)
     return args
开发者ID:gsquire1,项目名称:automation,代码行数:7,代码来源:__init__.py


示例11: getIndex

 def getIndex(self):
     agent = self.agent
     args = {}
     rsp = agent.json_rpc(self.target, 'getIndex', args)
     idx = rsp['idx']
     typecheck.is_int(idx, DecodeException)
     return idx
开发者ID:QualiSystems,项目名称:Raritan-PDU-Shell,代码行数:7,代码来源:__init__.py


示例12: __init__

    def __init__(self, width, height, pixelFormat):
        typecheck.is_int(width, AssertionError)
        typecheck.is_int(height, AssertionError)
        typecheck.is_enum(pixelFormat, raritan.rpc.webcam.PixelFormat, AssertionError)

        self.width = width
        self.height = height
        self.pixelFormat = pixelFormat
开发者ID:gsquire1,项目名称:automation,代码行数:8,代码来源:__init__.py


示例13: __init__

    def __init__(self, creationTime, idFirst, idNext):
        typecheck.is_long(creationTime, AssertionError)
        typecheck.is_int(idFirst, AssertionError)
        typecheck.is_int(idNext, AssertionError)

        self.creationTime = creationTime
        self.idFirst = idFirst
        self.idNext = idNext
开发者ID:QualiSystems,项目名称:Raritan-PDU-Shell,代码行数:8,代码来源:__init__.py


示例14: __init__

        def __init__(self, id, name, info):
            typecheck.is_int(id, AssertionError)
            typecheck.is_string(name, AssertionError)
            typecheck.is_struct(info, raritan.rpc.usermgmt.Role.Info, AssertionError)

            self.id = id
            self.name = name
            self.info = info
开发者ID:gsquire1,项目名称:Python,代码行数:8,代码来源:__init__.py


示例15: __init__

        def __init__(self, id, name, hasDSTInfo):
            typecheck.is_int(id, AssertionError)
            typecheck.is_string(name, AssertionError)
            typecheck.is_bool(hasDSTInfo, AssertionError)

            self.id = id
            self.name = name
            self.hasDSTInfo = hasDSTInfo
开发者ID:gsquire1,项目名称:automation,代码行数:8,代码来源:__init__.py


示例16: decode

 def decode(rsp, agent):
     _ret_ = rsp['_ret_']
     session = raritan.rpc.session.Session.decode(rsp['session'], agent)
     token = rsp['token']
     typecheck.is_int(_ret_, DecodeException)
     typecheck.is_struct(session, raritan.rpc.session.Session, DecodeException)
     typecheck.is_string(token, DecodeException)
     return (_ret_, session, token)
开发者ID:gsquire1,项目名称:automation,代码行数:8,代码来源:__init__.py



注:本文中的raritan.rpc.typecheck.is_int函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Python typecheck.is_interface函数代码示例发布时间:2022-05-26
下一篇:
Python typecheck.is_enum函数代码示例发布时间:2022-05-26
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap