码迷,mamicode.com
首页 >  
搜索关键字:use    ( 28727个结果
Linux中断体系结构
1.中断处理体系结构 Linux内核将所有中断统一编号,使用一个irq_desc结构数组来描述这些中断。 数组声明在/linux/kernel/irq/handle.c中,其中#define NR_IRQS 128,定义在/linux/include/asm/irq.h中 irq_desc结构的数据 ...
分类:系统相关   时间:2017-10-06 15:03:40    阅读次数:201
eclipse整合tomcat
首先确保jdk已经安装好 步骤1 获得服务器运行环境配置,Window/Preferences/Server/Runtime Environmen l步骤2 添加服务器 步骤3 选择服务器在硬盘的地址,然后所有的都是确定/Next/Finish 步骤4 完成成功 步骤5 设置发布位置 步骤6 修改部 ...
分类:系统相关   时间:2017-10-06 13:27:14    阅读次数:275
Java parallel stream用法
先摘录关于collection并发的一段话: One difficulty in implementing parallelism in applications that use collections is that collections are not thread-safe, which ...
分类:编程语言   时间:2017-10-06 11:34:07    阅读次数:396
POJ2594Treasure Exploration(最小路径覆盖,相交)
Treasure Exploration Have you ever read any book about treasure exploration? Have you ever see any film about treasure exploration? Have you ever expl ...
分类:其他好文   时间:2017-10-06 10:39:13    阅读次数:178
hdu 4468 spy 极其精彩的一道kmp灵活运用题
出的超级好的一道题。至于好在哪里,请思考题目: 题意抽象出来为给定一个字符串r,找出它的一个最短后缀s,使得这个r可以被 s的某前缀+s的某前缀+......+s的某前缀+s本身构造出来。 具体题目描述如下: “Be subtle! Be subtle! And use your spies for ...
分类:其他好文   时间:2017-10-05 23:11:32    阅读次数:238
数据库存在即更新的高并发处理 - 转
这篇文章的主要内容,来自与其他人的讨论。 软件系统的开发或设计时,容易遇到有并发的情况。有时候需要刻意去避免,防止数据错误。比如超市卖商品,可能两个柜台同时卖出一款矿泉水,如果软件系统后台需要跟踪每个商品的库存,此时就需要特别考虑。如果两个柜台,同时采取"读当前库存,减一,得到最新库存,保存"的设计 ...
分类:数据库   时间:2017-10-05 23:11:26    阅读次数:277
SQL Server之增删改操作
添加约束、增删改 1 use StudentDB2 2 go 3 创建学生表 4 create table StudentInfo( 5 --studentId int primary key not null identity(1,1), 设置为主键,并自增长 6 studentId int no ...
分类:数据库   时间:2017-10-05 21:25:57    阅读次数:277
FZU 1919 -- K-way Merging sort(记忆化搜索)
题目链接 Problem Description As we all known, merge sort is an O(nlogn) comparison-based sorting algorithm. The merge sort achieves its good runtime by a ...
分类:其他好文   时间:2017-10-05 21:24:42    阅读次数:230
win7 64位安装python的pip和easy_install
弄了俩小时终于弄出来了,说多了都是泪啊~~~~ 总结一下吧。 步骤1 win7 64位现在只能ez_setup.py进行安装。首先下载ez_setup.py,在命令行cmd下执行python ez_setup.py,即可自动安装setuptools。 步骤2 此时python安装目录Scripts中 ...
分类:编程语言   时间:2017-10-05 21:23:19    阅读次数:194
fnproject AWS Lambda 格式 functions
Creating Lambda Functions Creating Lambda functions is not much different than using regular functions, just use the lambda-node-4 runtime. fn init -- ...
分类:其他好文   时间:2017-10-05 18:29:08    阅读次数:141
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!