当前位置: 首页>>代码示例>>Python>>正文


Python utils.random_byte函数代码示例

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


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

示例1: post_data

 def post_data(self):
     return {
         'description': random_label(),
         'ttl': random_byte(),
         'fqdn': 'i' + random_label() + "." + self.domain.name,
         'ip_str': "11.{0}.{1}.{2}".format(random_byte(), random_byte(),
                                           random_byte()),
         'ip_type': '4'
     }
开发者ID:caseybecking,项目名称:inventory,代码行数:9,代码来源:basic.py

示例2: post_data

 def post_data(self):
     return {
         'description': random_label(),
         'ttl': random_byte(),
         'interface_name': 'eth0',
         'fqdn': 'sreg' + random_label() + "." + self.domain.name,
         'ip_str': "4.{0}.{1}.{2}".format(
             random_byte(), random_byte(), random_byte()),
         'ip_type': '4',
         'system': self.system.pk,
         'mac': '00:11:22:33:44:55'
     }
开发者ID:Marlburo,项目名称:inventory,代码行数:12,代码来源:tests.py

示例3: get_post_data

 def get_post_data(self, random_str):
     """Return a valid set of data"""
     return {
         "root_domain": "{0}.{0}.mozilla.com".format(random_label() + random_str),
         "soa_primary": "ns1.mozilla.com",
         "soa_contact": "noc.mozilla.com",
         "nameserver_1": "ns1.mozilla.com",
         "nameserver_2": "ns2.mozilla.com",
         "nameserver_3": "ns3.mozilla.com",
         "ttl_1": random_byte(),
         "ttl_2": random_byte(),
         "ttl_3": random_byte(),
     }
开发者ID:rhelmer,项目名称:inventory,代码行数:13,代码来源:build_tests.py

示例4: post_data

 def post_data(self):
     return {
         'description': 'm' + random_label(),
         'ttl': random_byte(),
         'mac': '11:22:33:44:55:00',
         'system': '/tasty/v3/system/{0}/'.format(self.s.pk),
         'fqdn': 'a' + random_label() + "." + self.domain.name,
         'iname': 'eth2.4',
         'dhcp_enabled': False,
         'dns_enabled': True,
         'ip_str': "11.255.{0}.{1}".format(random_byte(), random_byte()),
         'ip_type': '4'
     }
开发者ID:rtucker-mozilla,项目名称:mozilla_inventory,代码行数:13,代码来源:basic.py

示例5: get_post_data

 def get_post_data(self):
     """Return a valid set of data"""
     return {
         'root_domain': '{0}.{0}.mozilla.com'.format(
         random_label() + random_label()),
         'soa_primary': 'ns1.mozilla.com',
         'soa_contact': 'noc.mozilla.com',
         'nameserver_1': 'ns1.mozilla.com',
         'nameserver_2': 'ns2.mozilla.com',
         'nameserver_3': 'ns3.mozilla.com',
         'ttl_1': random_byte(),
         'ttl_2': random_byte(),
         'ttl_3': random_byte(),
     }
开发者ID:rtucker-mozilla,项目名称:mozilla_inventory,代码行数:14,代码来源:tests.py

示例6: post_data

 def post_data(self):
     return {
         'server': random_label(),
         'description': random_label(),
         'ttl': random_byte(),
         'domain': self.domain.name,
     }
开发者ID:caseybecking,项目名称:inventory,代码行数:7,代码来源:ptr.py


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