使用 NAnt 执行外部程序 NAnt 是一个可以帮助我们做自动建构的工具,透过NAnt不但可以自动建构,也可以做很多其他如复制文件,整理文件或建构多个版本等功能。基本上 NAnt 就是打内的 Ant。 NAnt 的 Script 是XML,内容是由许多的 Ta... ...
分类:
其他好文 时间:
2019-09-06 12:45:16
阅读次数:
104
一、TestNg 介绍: TestNg 优势: 1、比Junit 涵盖的功能更全面的测试框架 2、Junit 更适合隔离性比较强的单元测试 3、TestNg更适合复杂的集成测试 二、注解 BeforeMethod and AfterMethod 每个测试用例之前都会运行 BeforeClass an ...
分类:
编程语言 时间:
2019-09-06 11:16:17
阅读次数:
104
1.查看项目代码中指定程序集是否存在,若不存在,请重新添加 2.程序集存在,但依赖项找不到? 解决方案:下载程序集检测工具:depends (可选择检测某个dll的依赖情况) 图中红色的表示依赖项不存在,可以访问通过的电脑主机中查找这些依赖项,32位:C:\Windows\System32;64位: ...
分类:
Web程序 时间:
2019-08-29 15:37:29
阅读次数:
118
https://cloud.tencent.com/developer/article/1431908 使用Kconfig时,需要注意的地方 1.在Kconfig中定义的配置宏,前缀都没有"CONFIG_",只有编译内核时,自动生成autoconf.h才会出现前缀. 2.如果XX_defconfig ...
分类:
其他好文 时间:
2019-08-17 17:54:40
阅读次数:
108
原始文件networks:default:ipam:config:-gateway:10.255.3.1subnet:10.255.3.0/24driver:defaultservices:authorization:depends_on:-databaseenvironment:ENABLE_AUTHORIZATION:‘false‘JDBC_URL:jdbc:h2:tcp://database
分类:
其他好文 时间:
2019-08-14 09:37:19
阅读次数:
141
Shared memory is typically the fastest form of interprocess communicatioin. It provides a memory area that is shared between processes. One process ca ...
分类:
其他好文 时间:
2019-07-31 12:43:37
阅读次数:
73
``` Redis configuration file example. Note that in order to read the configuration file, Redis must be started with the file path as first argument: r ...
分类:
其他好文 时间:
2019-07-11 09:23:01
阅读次数:
453
https://s3.amazonaws.com/content.udacity-data.com/courses/gt-cse6220/Course+Notes/Lesson1-1+Introduction+(1).pdf two parts: 1, task represented by DAG ...
分类:
其他好文 时间:
2019-05-19 09:53:41
阅读次数:
154
# ## 通用定义## #CROSS_COMPILE = arm-hisiv300-linux-//根据具体编译器修改AS = $(CROSS_COMPILE)asLD = $(CROSS_COMPILE)ld -shared -oCC = $(CROSS_COMPILE)gccCP = $(CC) ...
分类:
其他好文 时间:
2019-05-15 14:11:36
阅读次数:
116
version: '2.0' services: consul-server1: image: consul:latest hostname: "consul-server1" ports: - "8501:8500" volumes: - ./consul/data1:/consul/data c... ...
分类:
其他好文 时间:
2019-05-12 13:47:48
阅读次数:
822