org.kohsuke.github.GitHub.listAllPublicRepositories()方法的使用及代码示例

x33g5p2x  于2022-01-20 转载在 其他  
字(1.5k)|赞(0)|评价(0)|浏览(85)

本文整理了Java中org.kohsuke.github.GitHub.listAllPublicRepositories()方法的一些代码示例,展示了GitHub.listAllPublicRepositories()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。GitHub.listAllPublicRepositories()方法的具体详情如下:
包路径:org.kohsuke.github.GitHub
类名称:GitHub
方法名:listAllPublicRepositories

GitHub.listAllPublicRepositories介绍

[英]This provides a dump of every public repository, in the order that they were created.
[中]这将按照创建顺序提供每个公共存储库的转储。

代码示例

代码示例来源:origin: kohsuke/github-api

/**
 * This provides a dump of every public repository, in the order that they were created.
 * @see <a href="https://developer.github.com/v3/repos/#list-all-public-repositories">documentation</a>
 */
public PagedIterable<GHRepository> listAllPublicRepositories() {
  return listAllPublicRepositories(null);
}

代码示例来源:origin: org.kohsuke/github-api

/**
 * This provides a dump of every public repository, in the order that they were created.
 * @see <a href="https://developer.github.com/v3/repos/#list-all-public-repositories">documentation</a>
 */
public PagedIterable<GHRepository> listAllPublicRepositories() {
  return listAllPublicRepositories(null);
}

代码示例来源:origin: org.sonarsource.sonar-plugins.github/github-api

/**
 * This provides a dump of every public repository, in the order that they were created.
 * @see <a href="https://developer.github.com/v3/repos/#list-all-public-repositories">documentation</a>
 */
public PagedIterable<GHRepository> listAllPublicRepositories() {
  return listAllPublicRepositories(null);
}

相关文章