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

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

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

GitHub.isAnonymous介绍

[英]Is this an anonymous connection
[中]这是匿名连接吗

代码示例

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

/*package*/ void requireCredential() {
  if (isAnonymous())
    throw new IllegalStateException("This operation requires a credential but none is given to the GitHub constructor");
}

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

/*package*/ void requireCredential() {
  if (isAnonymous())
    throw new IllegalStateException("This operation requires a credential but none is given to the GitHub constructor");
}

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

/*package*/ void requireCredential() {
  if (isAnonymous())
    throw new IllegalStateException("This operation requires a credential but none is given to the GitHub constructor");
}

代码示例来源:origin: org.jenkins-ci.plugins/github-branch-source

throw new AbortException(message);
if (!github.isAnonymous()) {
  assert credentials != null;
  listener.getLogger().println(GitHubConsoleNote.create(

代码示例来源:origin: org.jenkins-ci.plugins/github-branch-source

collaboratorNames = Collections.singleton(repoOwner);
} else {
  if (!github.isAnonymous()) {
    listener.getLogger()
        .format("Connecting to %s using %s%n",

代码示例来源:origin: org.jenkins-ci.plugins/github-branch-source

try {
  if (!github.isAnonymous()) {
    GHMyself myself = null;
    try {

代码示例来源:origin: org.jenkins-ci.plugins/github-branch-source

WitnessImpl witness = new WitnessImpl(listener);
if (!github.isAnonymous()) {
  listener.getLogger()
      .format("Connecting to %s using %s%n", apiUri == null ? GitHubSCMSource.GITHUB_URL : apiUri,

代码示例来源:origin: org.jenkins-ci.plugins/github-branch-source

WitnessImpl witness = new WitnessImpl(listener);
if (!github.isAnonymous()) {
  GHMyself myself;
  try {

相关文章