dependencies

How do I determine the dependencies of a .NET application?

给你一囗甜甜゛ 提交于 2019-12-16 22:32:09
问题 How do I determine the dependencies of a .NET application? Does Dependency Walker work with managed apps? I've downloaded the latest and tried profiling the app, but it just exits without much of an explanation. If it doesn't work with .NET, then is there some other tool that would help me debug a run-time DLL loading issue? 回答1: Dependency walker works on normal win32 binaries. All .NET dll's and exe's have a small stub header part which makes them look like normal binaries, but all it

RHEL 6 - how to install 'GLIBC_2.14' or 'GLIBC_2.15'?

╄→гoц情女王★ 提交于 2019-12-14 04:16:19
问题 I need these 2 packages installed on RHEL 6 linux system. They are required by several other programs. When I do: sudo yum install glibc-devel this is output: Loaded plugins: product-id, security Setting up Install Process Package glibc-devel-2.12-1.166.el6_7.1.x86_64 already installed and latest version Nothing to do Is there some EPEL with GLIBC_2.15 for RHEL? If not - what is a workaround here? 回答1: This often occurs when you build software in RHEL 7 and try to run on RHEL 6. To update

Add package dependencies with Mono-d or Visual-d

落花浮王杯 提交于 2019-12-14 03:59:57
问题 With dub I can do this in the dub.json file: { "name": "myproject", "description": "A little web service of mine.", "authors": ["Peter Parker"], "homepage": "http://myproject.com", "license": "GPL-2.0", "dependencies": { "vibe-d": ">=0.7.11" } } What is the equivalent thing in Mono-D or Visual-D? 回答1: I've never used VisualD, but in Mono-D you can just create a project from a dub package descriptor - just create your package.json and select it in the open project dialogue. Adding stuff to the

Error: Task requires a name at Gulp.Orchestrator.add

别说谁变了你拦得住时间么 提交于 2019-12-14 03:48:53
问题 I am building a Node Web App and testing it locally on Windows 10. At some point since my last successful run, this node module orchestrator seems to have been installed, presumably as some dependency. Now I am getting this error. What is causing this and how do I fix it? C:\Users\George\Source\Repos\MakeSensePortal>gulp [23:02:53] Requiring external module babel-register C:\Users\George\Source\Repos\MakeSensePortal\node_modules\orchestrator\index.js:37 throw new Error('Task requires a name')

Possible to state explicit versions of package dependencies?

无人久伴 提交于 2019-12-14 03:43:39
问题 I tend to be rather explicit than implicit about the code I write. So after having managed to create my own packages, the next thing that immediately comes to my mind is how best to ensure robustness and reliability of my code. Part of that has to do with the packages my package depends on. Actual Question In that respect: is it possible to explicitly state which version of a package dependency is required/desired? I'm looking for ways that don't require stating the actual path to, say, the

Unable to resolve dependencies in IntelliJ IDEA 2018.1

血红的双手。 提交于 2019-12-14 03:29:08
问题 I have a Java project with Maven dependency management. I copied it to another workstation and imported to IntelliJ IDEA . Dependencies from pom.xml file are not resolved. Maven Integration plugin is enabled, but Maven's Reimport function has no effect. settings.xml file in .m2 folder: <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 https://maven.apache.org/xsd/settings-1

Hadoop WordCount.java Dependency Issues

给你一囗甜甜゛ 提交于 2019-12-14 03:16:02
问题 I am trying to compile WordCount.java file into jar inside of /Desktop/Hadoop/playground/src. Here's the command I am using. javac -classpath hadoop-1.2.1-core.jar -d playground/classes playground/src/WordCount.java The compiler seem to be getting invoked, however I am getting tons of errors like this error: package org.apache.hadoop.conf does not exist import org.apache.hadoop.conf.Configuration How do I go about fixing this? May be there is an answer to this issue already. However I could

Create UserControl DependencyProperty of which value can be chosen in dropdown list (as combo box)

℡╲_俬逩灬. 提交于 2019-12-14 03:15:10
问题 I'm a starter at WPF, now i would like to make a WPF userControl library which include a Rating bar userControl. All the steps of creating the rating Bar has been done, however i would like to add a property RatingValue: public static readonly DependencyProperty RatingValueProperty = DependencyProperty.Register("RatingValue", typeof(int), typeof(RatingControl), new FrameworkPropertyMetadata(0, FrameworkPropertyMetadataOptions.BindsTwoWayByDefault, new PropertyChangedCallback

How do I declare gradle Antlr task output specs to avoid unnecessary rebuilds

筅森魡賤 提交于 2019-12-14 02:38:01
问题 I have a typical Antlr 4.5 project with two grammar files: MyLexer.g4 and MyParser.g4. From them, Antlr generates 6 output files: MyLexer.java, MyLexer.tokens, MyParser.java, MyParser.tokens, MyParserBaseListener.java and MyParserListener.java. The gradle tasks are all working correctly so that the output files are all generated, compiled and tested as expected. The problem is that gradle sees the 6 target files as always being out of date, so every run or debug session has to regenerate them

Impose an order for the prerequisites of a target

佐手、 提交于 2019-12-14 02:24:07
问题 I have a makefile snippet: all: $(objects) fresh: clean all clean: ;rm $(objects) Here, I want to ensure that when I do make fresh - clean should precede all . But how can I make sure this, given that when I do make all , clean should not be made? I can imagine that one way could be like this fresh: clean make all Is it the right (or the only) way to solve this issue? 回答1: If you use GNU make: all: @echo $@ @sleep 1 @echo end $@ clean: @echo $@ @sleep 1 @echo end $@ fresh:: clean fresh:: all