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


Python DotDict.loadui方法代码示例

本文整理汇总了Python中pyon.util.containers.DotDict.loadui方法的典型用法代码示例。如果您正苦于以下问题:Python DotDict.loadui方法的具体用法?Python DotDict.loadui怎么用?Python DotDict.loadui使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在pyon.util.containers.DotDict的用法示例。


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

示例1: preload_ui

# 需要导入模块: from pyon.util.containers import DotDict [as 别名]
# 或者: from pyon.util.containers.DotDict import loadui [as 别名]
 def preload_ui(self):
     config = DotDict()
     config.op='loadui'
     config.loadui=True
     config.attachments='res/preload/r2_ioc/attachments'
     config.ui_path = "http://userexperience.oceanobservatories.org/database-exports/Candidates"
     
     self.container.spawn_process('preloader', 'ion.processes.bootstrap.ion_loader', 'IONLoader', config)
开发者ID:ateranishi,项目名称:coi-services,代码行数:10,代码来源:test_dm_extended.py

示例2: preload_tmpsf

# 需要导入模块: from pyon.util.containers import DotDict [as 别名]
# 或者: from pyon.util.containers.DotDict import loadui [as 别名]
 def preload_tmpsf(self):
     config = DotDict()
     config.op = 'load'
     config.loadui=True
     config.ui_path =  "http://userexperience.oceanobservatories.org/database-exports/Candidates"
     config.attachments = "res/preload/r2_ioc/attachments"
     config.scenario = 'BETA,TMPSF'
     #config.categories='ParameterFunctions,ParameterDefs,ParameterDictionary'
     self.container.spawn_process('preloader', 'ion.processes.bootstrap.ion_loader', 'IONLoader', config)
开发者ID:ateranishi,项目名称:coi-services,代码行数:11,代码来源:test_dm_extended.py

示例3: preload_vel3d_cd

# 需要导入模块: from pyon.util.containers import DotDict [as 别名]
# 或者: from pyon.util.containers.DotDict import loadui [as 别名]
 def preload_vel3d_cd(self):
     config = DotDict()
     config.op = 'load'
     config.loadui=True
     config.ui_path =  "http://userexperience.oceanobservatories.org/database-exports/Candidates"
     config.attachments = "res/preload/r2_ioc/attachments"
     config.scenario = 'BETA,VEL3D_C'
     config.path = 'master'
     self.container.spawn_process('preloader', 'ion.processes.bootstrap.ion_loader', 'IONLoader', config)
开发者ID:ednad,项目名称:coi-services,代码行数:11,代码来源:dm_test_case.py

示例4: preload_example2

# 需要导入模块: from pyon.util.containers import DotDict [as 别名]
# 或者: from pyon.util.containers.DotDict import loadui [as 别名]
 def preload_example2(self):
     config = DotDict()
     config.op = 'load'
     config.loadui=True
     config.ui_path =  "http://userexperience.oceanobservatories.org/database-exports/Candidates"
     config.attachments = "res/preload/r2_ioc/attachments"
     config.scenario = 'BETA,EXAMPLE2'
     config.path = 'master'
     #config.categories='ParameterFunctions,ParameterDefs,ParameterDictionary,StreamDefinition,DataProduct'
     self.container.spawn_process('preloader', 'ion.processes.bootstrap.ion_loader', 'IONLoader', config)
开发者ID:ateranishi,项目名称:coi-services,代码行数:12,代码来源:test_dm_extended.py

示例5: preload_ctdgv

# 需要导入模块: from pyon.util.containers import DotDict [as 别名]
# 或者: from pyon.util.containers.DotDict import loadui [as 别名]
 def preload_ctdgv(self):
     config = DotDict()
     config.op = 'load'
     config.loadui=True
     config.ui_path =  "http://userexperience.oceanobservatories.org/database-exports/Candidates"
     config.attachments = "res/preload/r2_ioc/attachments"
     config.scenario = 'BETA,GLIDER,CTDGV,CTDGV01'
     config.path = 'master'
     #config.categories='ParameterFunctions,ParameterDefs,ParameterDictionary,StreamDefinition,DataProduct'
     self.container.spawn_process('preloader', 'ion.processes.bootstrap.ion_loader', 'IONLoader', config)
     self.container.spawn_process('agentctrl', 'ion.agents.agentctrl', 'AgentControl', {'op':'load', 'instrument':'CTDGV'})
开发者ID:ednad,项目名称:coi-services,代码行数:13,代码来源:dm_test_case.py


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