一、 1、AREA 指令 The AREA directive instructs the assembler to assemble a new code or data section. Sections are independent, named, indivisible chunks of ...
分类:
其他好文 时间:
2017-10-29 23:15:19
阅读次数:
256
1.前言 本次安装方式采用yum repo,请前往官网下载对应的版本,由于我的虚拟机安装的是centos7,所以选择Red Hat Enterprise Linux 7 / Oracle Linux 7 (Architecture Independent), RPM Package,详细的安装步骤请 ...
分类:
数据库 时间:
2017-10-26 13:29:00
阅读次数:
338
先说遇到的问题,由于环境网络问题少数case没能在MSTest.exe的批量run指令中跑过,所以需要脱离TCM.exe单独signoff,但是有的case scenario多者20个,单独手动signoff很浪费时间。所以知道case result的情况下通过TCM命令去半自动signoff. 具 ...
分类:
其他好文 时间:
2017-10-20 15:59:54
阅读次数:
138
MII (Media Independent Interface(介质无关接口);或称为媒体独立接口,它是IEEE-802.3定义的以太网行业标准。它包括一个数据接口,以及一个MAC和PHY之间的管理接口。数据接口包括分别用于发送器和接收器的两条独立信道。每条信道都有自己的数据、时钟和控制信号。MI ...
分类:
其他好文 时间:
2017-10-13 13:59:08
阅读次数:
151
根据翻阅的资料,暂时得出以下结论: 首先,ASLR的是操作系统的功能选项,作用于executable(ELF)装入内存运行时,因而只能随机化stack、heap、libraries的基址;而PIE(Position Independent Executables)是编译器(gcc,..)功能选项,作 ...
分类:
系统相关 时间:
2017-10-10 19:16:17
阅读次数:
281
Maximal GCD 题意:给出n,k,求k个严格递增的数,使得k个数之和等于n,并且要求k个数的gcd最大 思路:k*(k+1)/2 * gcd <= n,gcd是n的因子,先找出n的所有因子,然后找到最大的一个满足条件的 AC代码: ...
分类:
其他好文 时间:
2017-10-10 01:20:34
阅读次数:
146
link Given a 2D binary matrix filled with 0's and 1's, find the largest rectangle containing only 1's and return its area. For example, given the foll ...
分类:
其他好文 时间:
2017-10-09 23:56:44
阅读次数:
120
Given a 2D binary matrix filled with 0's and 1's, find the largest square containing only 1's and return its area. For example, given the following ma ...
分类:
其他好文 时间:
2017-10-01 21:09:40
阅读次数:
107
一.RAID定义 一.RAID定义 一.RAID定义 RAID(Redundant Array of Independent Disk 独立冗余磁盘阵列)技术是加州大学伯克利分校1987年提出,最初是为了组合小的廉价磁盘来代替大的昂贵磁盘,同时希望磁盘失效时不会使对数据的访问受损 失而开发出一定水平 ...
分类:
其他好文 时间:
2017-10-01 17:32:15
阅读次数:
216
Maximal Area Quadrilateral CodeForces - 340B 三点坐标求三角形面积(可以带正负,表示向量/点的不同相对位置): http://www.cnblogs.com/xiexinxinlove/p/3708147.html https://jingyan.baid ...
分类:
其他好文 时间:
2017-09-30 13:12:39
阅读次数:
137