Questions tagged [dependency-graph]

50 questions
1
vote
0 answers

Can I automatically build and output assembly dependency graph?

Say I make 3 assemblies A, B and C, with B referencing C and A referencing B. Building A I'll find A.dll and B.dll in my bin\debug, but no C.dll. Both references have "copy local=true". I don't understand why it behaves this way, as surely you…
The Dag
  • 1,811
  • 16
  • 22
1
vote
1 answer

View External Dependecy graph in NDepend

NDepend has a nice feature that draws an internal dependency graph. That is which methods within a dll call each other. We would like a diagram like this that showed how methods were called across all dll's in a project. Is this possible?
Shiraz Bhaiji
  • 64,065
  • 34
  • 143
  • 252
0
votes
0 answers

Minimum permission required for obtaining dependency graphs in private repository in github enterprise

I have very little experience in github. How to give someone permission to view the dependency graph for a repository. I'm not sure if this is possible if the person is not a member or collaborator of the repository. If it's not possible, what is…
0
votes
2 answers

GitHub "Used By" / Dependents Not Populating

My project pyngrok has hundreds of starts, is listed as a PyPI "Critical Project", and thus is used by many other projects, including significant ones. But the "Used By" section has never populated or show up on my project's GitHub page. Similarly,…
alexdlaird
  • 1,174
  • 12
  • 34
0
votes
0 answers

How to create a dependency graph of components in Ember?

I'm trying to navigate through a large Ember project and would like to create a visual graph of the component tree. Is there a way to parse a .hbs file and create a dependency graph of the components and sub-components in it? Is there a way to do…
Tushar Koul
  • 2,830
  • 3
  • 31
  • 62
0
votes
0 answers

Call Graph Creation using Javascript

I want to create a function call graph for a specific repository that resides on GitHub using Javascript. I want to do a change impact analysis on this repo but for that, I need to know the caller/callee function pairs. I searched for libraries and…
0
votes
1 answer

How to get a list of component file paths from an Angular ngModule file?

I'm trying to look for automation solutions for refactoring an Angular app as it is really tedious to manually refactor. As we try to lighten our app's shared module by treeshaking components/directives into their own module, there is a need to go…
Jonathan002
  • 9,639
  • 8
  • 37
  • 58
0
votes
0 answers

C# Apply includes recursively to Query (IncludeWhile)

I'm trying to build dependency graph by grabbing dependencies from EntityFramework. I would like my query to be as efficient as possible, so I would prefer not to pull all of the data. I have a structure which self references multiple times like…
johnny 5
  • 19,893
  • 50
  • 121
  • 195
0
votes
1 answer

Error creating Graphviz graph using Doxygen

I am trying to generate a dependency graph for my .c and .h files written by c programming using Doxygen and .dot file inside Graphviz I have Graphviz 2.44.1 and Doxygen version 1.8.18 This error occurs and I have no idea what is wrong, I checked…
0
votes
1 answer

How to create a DAG from a list in python

I am using networkx to manually input the (u, v, weights) to a graph. But when the input gets bigger this manual insertion of nodes and edges will become a really tiresome task and prone to errors. I'm trying but haven't figured out that how to…
0
votes
1 answer

How can I create dependencies among multiple async methods in Python 3?

I have a class which contains multiple asyinc methods and I want to create dependencies among them. Dependency Graph In this picture both heartbeat and neighborhood_check depend on radio and sub depend on neighborhood_check, that means after…
0
votes
1 answer

Dependency Graph in Spring Tool suite4 using Maven

I am working on resolving duplicate dependency issue. While solving I come to know that using dependency graph it will be easy. But I am not getting how to print a dependency Graph in STS4. I have tried this command which I found in Maven…
0
votes
0 answers

how to check github vulnerability without having admin access?

There is one open source github AngularJs project. As we know github automatically detects vulnerability in dependencies listed in packages.json or any other dependency file. It has some vulnerabilities with some of its packages which are as…
Anubha Gupta
  • 189
  • 2
  • 17
0
votes
0 answers

Building dependency graph of variables in scala

I have a sequence of variables of type x. Type x is defined as (a: Int, b: Set[Int]) Some variables have overlapping values for b. For example, variables p = (1, Set(1, 2, 3)) q = (5, Set (3, 4, 5)) r = (10, Set(9, 10)) The notion of dependency…
D.L.
  • 169
  • 3
  • 17
0
votes
2 answers

OpenMP, dependency graph

I took some of my old OpenMP exercises to practice a little bit, but I have difficulties to find the solution for on in particular. The goal is to write the most simple OpenMP code that correspond to the dependency graph. The graphs are visible…