Top "Code-analysis" questions

Code Analysis is the process of analyzing the code of the application to discover, review, validate or verify certain properties of the application.

What does '# noqa' mean in Python comments?

While searching through a Python project, I found a few lines commented with # noqa. import sys sys.path.append(r'C:\…

python comments terminology code-analysis pep8
Visual Studio Code Analysis vs StyleCop + FxCop

I used previously StyleCop + FxCop on my Visual Studio's projects. But now I am testing Visual Studio Code Analysis tool, …

c# visual-studio-2008 code-analysis fxcop stylecop
CA2202, how to solve this case

Can anybody tell me how to remove all CA2202 warnings from the following code? public static byte[] Encrypt(string data, …

c# .net code-analysis fxcop
What is Dynamic Code Analysis?

What is Dynamic Code Analysis? How is it different from Static Code Analysis (ie, what can it catch that can't …

code-analysis dynamic-analysis
How to determine maximum stack usage?

What methods are available for determining the optimum stack size for embedded/memory constrained system? If it's too big then …

memory embedded stack code-analysis
How to enable Code Analysis in Visual Studio 2010 Professional?

I can see that we can enable code analysis in Visual Studio Team Systems. But i am using Visual Studio 2010 …

visual-studio code-analysis fxcop
Tool to visualize code flow in Java?

I'm inspired by the C/C++ question for a code flow visualization tool. Is there such a thing for Java …

java code-analysis
Tools to detect duplicated code (Java)

I am in a project where previous programmers have been copy-pasting codes all over the place. These codes are actually …

java refactoring code-analysis
Where has the Code Analysis window gone?

In Visual Studio 2013, I used the Code Analysis window to provide reports to both the Development and Management teams. In …

code-analysis visual-studio-2015 roslyn
C# Call Graph Generation Tool

I just got a heaping pile of (mostly undocumented) C# code and I'd like to visualize it's structure before I …

c# .net code-analysis call-graph