hudson.model.AbstractProject.buildDependencyGraph()方法的使用及代码示例

x33g5p2x  于2022-01-15 转载在 其他  
字(5.4k)|赞(0)|评价(0)|浏览(83)

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

AbstractProject.buildDependencyGraph介绍

[英]Builds the dependency graph.
[中]构建依赖关系图。

代码示例

代码示例来源:origin: jenkinsci/jenkins

@Override protected void buildDependencyGraph(DependencyGraph graph) {
  super.buildDependencyGraph(graph);
  getPublishersList().buildDependencyGraph(this,graph);
  getBuildersList().buildDependencyGraph(this,graph);
  getBuildWrappersList().buildDependencyGraph(this,graph);
}

代码示例来源:origin: jenkinsci/jenkins

public void build() {
  // Set full privileges while computing to avoid missing any projects the current user cannot see.
  SecurityContext saveCtx = ACL.impersonate(ACL.SYSTEM);
  try {
    this.computationalData = new HashMap<Class<?>, Object>();
    for( AbstractProject p : Jenkins.getInstance().allItems(AbstractProject.class) )
      p.buildDependencyGraph(this);
    forward = finalize(forward);
    backward = finalize(backward);
    topologicalDagSort();
    this.computationalData = null;
    built = true;
  } finally {
    SecurityContextHolder.setContext(saveCtx);
  }
}

代码示例来源:origin: org.jenkins-ci.plugins/matrix-project

@Override protected void buildDependencyGraph(DependencyGraph graph) {
  super.buildDependencyGraph(graph);
  publishers.buildDependencyGraph(this,graph);
  builders.buildDependencyGraph(this,graph);
  buildWrappers.buildDependencyGraph(this,graph);
}

代码示例来源:origin: org.jenkins-ci.main/jenkins-core

public void build() {
  // Set full privileges while computing to avoid missing any projects the current user cannot see.
  SecurityContext saveCtx = ACL.impersonate(ACL.SYSTEM);
  try {
    this.computationalData = new HashMap<Class<?>, Object>();
    for( AbstractProject p : Jenkins.getInstance().allItems(AbstractProject.class) )
      p.buildDependencyGraph(this);
    forward = finalize(forward);
    backward = finalize(backward);
    topologicalDagSort();
    this.computationalData = null;
    built = true;
  } finally {
    SecurityContextHolder.setContext(saveCtx);
  }
}

代码示例来源:origin: org.jenkins-ci.main/jenkins-core

@Override protected void buildDependencyGraph(DependencyGraph graph) {
  super.buildDependencyGraph(graph);
  getPublishersList().buildDependencyGraph(this,graph);
  getBuildersList().buildDependencyGraph(this,graph);
  getBuildWrappersList().buildDependencyGraph(this,graph);
}

代码示例来源:origin: org.eclipse.hudson/hudson-core

/**
 * Builds the dependency graph.
 */
public DependencyGraph() {
  // Set full privileges while computing to avoid missing any projects the current user cannot see.
  // Use setContext (NOT getContext().setAuthentication()) so we don't affect concurrent threads for same HttpSession.
  SecurityContext saveCtx = SecurityContextHolder.getContext();
  try {
    NotSerilizableSecurityContext system = new NotSerilizableSecurityContext();
    system.setAuthentication(ACL.SYSTEM);
    SecurityContextHolder.setContext(system);
    for (AbstractProject p : Hudson.getInstance().getAllItems(AbstractProject.class)) {
      p.buildDependencyGraph(this);
    }
    forward = finalize(forward);
    backward = finalize(backward);
    built = true;
    alreadyComputedProjects.clear();
  } finally {
    if (saveCtx.getAuthentication() == null) {
      SecurityContextHolder.clearContext();
    } else {
      SecurityContextHolder.setContext(saveCtx);
    }
  }
}

代码示例来源:origin: org.jvnet.hudson.main/hudson-core

/**
 * Builds the dependency graph.
 */
public DependencyGraph() {
  // Set full privileges while computing to avoid missing any projects the current user cannot see.
  // Use setContext (NOT getContext().setAuthentication()) so we don't affect concurrent threads for same HttpSession.
  SecurityContext saveCtx = SecurityContextHolder.getContext();
  try {
    NotSerilizableSecurityContext system = new NotSerilizableSecurityContext();
    system.setAuthentication(ACL.SYSTEM);
    SecurityContextHolder.setContext(system);
    for( AbstractProject p : Hudson.getInstance().getAllItems(AbstractProject.class) )
      p.buildDependencyGraph(this);
    forward = finalize(forward);
    backward = finalize(backward);
    built = true;
    alreadyComputedProjects.clear();
  } finally {
    SecurityContextHolder.setContext(saveCtx);
  }
}

代码示例来源:origin: org.eclipse.hudson.main/hudson-core

/**
 * Builds the dependency graph.
 */
public DependencyGraph() {
  // Set full privileges while computing to avoid missing any projects the current user cannot see.
  // Use setContext (NOT getContext().setAuthentication()) so we don't affect concurrent threads for same HttpSession.
  SecurityContext saveCtx = SecurityContextHolder.getContext();
  try {
    NotSerilizableSecurityContext system = new NotSerilizableSecurityContext();
    system.setAuthentication(ACL.SYSTEM);
    SecurityContextHolder.setContext(system);
    for( AbstractProject p : Hudson.getInstance().getAllItems(AbstractProject.class) )
      p.buildDependencyGraph(this);
    forward = finalize(forward);
    backward = finalize(backward);
    built = true;
    alreadyComputedProjects.clear();
  } finally {
    SecurityContextHolder.setContext(saveCtx);
  }
}

代码示例来源:origin: hudson/hudson-2.x

/**
 * Builds the dependency graph.
 */
public DependencyGraph() {
  // Set full privileges while computing to avoid missing any projects the current user cannot see.
  // Use setContext (NOT getContext().setAuthentication()) so we don't affect concurrent threads for same HttpSession.
  SecurityContext saveCtx = SecurityContextHolder.getContext();
  try {
    NotSerilizableSecurityContext system = new NotSerilizableSecurityContext();
    system.setAuthentication(ACL.SYSTEM);
    SecurityContextHolder.setContext(system);
    for( AbstractProject p : Hudson.getInstance().getAllItems(AbstractProject.class) )
      p.buildDependencyGraph(this);
    forward = finalize(forward);
    backward = finalize(backward);
    built = true;
    alreadyComputedProjects.clear();
  } finally {
    SecurityContextHolder.setContext(saveCtx);
  }
}

相关文章

微信公众号

最新文章

更多

AbstractProject类方法