version

R submit to CRAN: which R version to build package?

一世执手 提交于 2019-12-22 18:45:32
问题 I want to submit a package to CRAN. In the CRAN repository policy it states that "Packages for which R CMD check gives an ‘ERROR’ when a new R x.y.0 version is released will be archived" . It also says "Please ensure that R CMD check --as-cran has been run on the tarball to be uploaded before submission" . Running R CMD check --as cran on my tarball gives me the warning: Warning: unknown option ‘--as-cran’ I am running R version 2.14.1 on Ubuntu 12.04.2 LTS. Can I build a source package using

How to determine the revision from which current Mono runtime was built and installed?

烈酒焚心 提交于 2019-12-22 14:53:12
问题 I want to determine the revision (how to call properly it in Git?) from which current Mono runtime was built and installed. $ dmcs --version Mono C# compiler version 2.9.0.0 but it's definitely insufficient. XSP/ASP.NET error page gives more information: Version information: Mono Runtime Version: 2.8.1 (master/cdf1247 Sat Sep 4 01:22:04 MSD 2010); ASP.NET Version: 4.0.30319.1 but it seems to be a dirty hack to me. How to do it properly? 回答1: mono -V will output the version string, including

How to determine the revision from which current Mono runtime was built and installed?

时光毁灭记忆、已成空白 提交于 2019-12-22 14:52:32
问题 I want to determine the revision (how to call properly it in Git?) from which current Mono runtime was built and installed. $ dmcs --version Mono C# compiler version 2.9.0.0 but it's definitely insufficient. XSP/ASP.NET error page gives more information: Version information: Mono Runtime Version: 2.8.1 (master/cdf1247 Sat Sep 4 01:22:04 MSD 2010); ASP.NET Version: 4.0.30319.1 but it seems to be a dirty hack to me. How to do it properly? 回答1: mono -V will output the version string, including

NODE_MODULE_VERSION 46. This version of Node.js requires NODE_MODULE_VERSION 64. Please try re-compiling or re-installing

白昼怎懂夜的黑 提交于 2019-12-22 10:39:53
问题 I am trying to execute a node app which was provided to me and it is supposed to work fine. I have tried running it but I am not able to fix this error: seba@vps92941:~/services/drivetech$ node awto.js /home/seba/services/drivetech/node_modules/bindings/bindings.js:83 throw e ^ Error: The module '/home/seba/services/drivetech/node_modules/zmq/build/Release/zmq.node' was compiled against a different Node.js version using NODE_MODULE_VERSION 46. This version of Node.js requires NODE_MODULE

How to detect whether tomcat and ant are installed on linux machine

这一生的挚爱 提交于 2019-12-22 10:34:22
问题 I am trying to install Tomcat and Ant on my linux machine, but before installing them i just need to check whether they are already installed or not. Regarding tomcat : I googled a lot and searched on my machine in the following directories for tomcat /usr/local/, /opt/, /usr/share/ but i din't find tomcat folder in any of the above path, whether it indicates that tomcat is not installed ? so actually 1. what is the path to `look/find` exactly to know/check whether tomcat is installed or not

How to automatically insert version number into AssemblyName

风格不统一 提交于 2019-12-22 10:32:57
问题 I'm trying to build upon this question: Reading a single value from a file in MSBuild My goal is to have a single place to put the version number that's used in several projects, and I also want a portion of the version number in the DLL file name for one of the projects. Based on the question above, I already got the first part, but I'm having difficulty with the second part and would appreciate some guidance. In my solution, I set up a plain text file called Version.txt containing my full

Where to place version information in a wsdl?

无人久伴 提交于 2019-12-22 08:36:50
问题 I have a web service where the definitions are located in the wsdl-file and the schema in an external xsd-file. In the xsd file, there is the schema tag, which provides an attribute 'version' that I can use to document the current version. Is there something similar in the wsdl format (WSDL 1.1)? If not, what is the best place to store a general version attribute for documentation purposes? Please keep in mind that I do not want to achieve backward compatibility, like it is described in http:

Where to place version information in a wsdl?

∥☆過路亽.° 提交于 2019-12-22 08:36:02
问题 I have a web service where the definitions are located in the wsdl-file and the schema in an external xsd-file. In the xsd file, there is the schema tag, which provides an attribute 'version' that I can use to document the current version. Is there something similar in the wsdl format (WSDL 1.1)? If not, what is the best place to store a general version attribute for documentation purposes? Please keep in mind that I do not want to achieve backward compatibility, like it is described in http:

Android Version Conflict for Google Services

烈酒焚心 提交于 2019-12-22 08:33:49
问题 I've searched for a lot of solutions to this, but none fit my exact case. I am getting this error on Gradle Sync: Error:Execution failed for task ':app:processDebugGoogleServices'. Please fix the version conflict either by updating the version of the google-services plugin (information about the latest version is available at https://bintray.com/android/android-tools/com.google.gms.google-services/) or updating the version of com.google.android.gms to 11.4.2. this is in my build.gradle (app)

java: use two version of the same lib in one webapp

自古美人都是妖i 提交于 2019-12-22 05:23:24
问题 I'm facing the following problem: I have one module in my webapp that needs jaxb 1.x and the other module needs jaxb 2.x. The first module doesn't work with the new version of jaxb, and the opposite. How can I use these two jars in one project? Thanks. 回答1: If you are using the JAXB reference implementation, then you can use your JAXB 1 models with the JAXB 2 runtime by including the jaxb1-impl.jar . http://jaxb.java.net/faq/index.html#running1Apps 回答2: For a regular application, usually very