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


Python SearchConnection.get_shard_list方法代码示例

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


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

示例1: test_get_shard_list

# 需要导入模块: from pyesgf.search.connection import SearchConnection [as 别名]
# 或者: from pyesgf.search.connection.SearchConnection import get_shard_list [as 别名]
def test_get_shard_list():
    conn = SearchConnection(TEST_SERVICE, distrib=True)
    shards = conn.get_shard_list()
    #!NOTE: the exact shard list will change depending on the shard replication configuration
    #    on the test server
    assert 'esgf-index2.ceda.ac.uk' in shards
    # IPSL now replicates all non-local shards.  Just check it has a few shards
    assert len(shards['esgf-index2.ceda.ac.uk']) > 3
开发者ID:coecms,项目名称:esgf-pyclient,代码行数:10,代码来源:test_connection.py

示例2: test_get_shard_list

# 需要导入模块: from pyesgf.search.connection import SearchConnection [as 别名]
# 或者: from pyesgf.search.connection.SearchConnection import get_shard_list [as 别名]
def test_get_shard_list():
    conn = SearchConnection(TEST_SERVICE, distrib=True)
    shards = conn.get_shard_list()
    assert 'localhost:8983/solr/datasets' in shards
    assert 'pcmdi11.llnl.gov:8983/solr/datasets' in shards
开发者ID:kterry,项目名称:esgf-pyclient,代码行数:7,代码来源:test_connection.py


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