码迷,mamicode.com
首页 >  
搜索关键字:unable to set localhost    ( 74051个结果
在window上安装pandas
之前在ubuntu上安装pandas,用的easy_install。这次在window上同样方法装遇到"unable to find vcvarsall.bat",看一些网上帖子好像说这个要装minGW解决,不喜欢装那么东西。就直接下exe装pandas,但也遇到问题,在注册表里找不到python2...
分类:Windows程序   时间:2014-05-09 10:00:17    阅读次数:396
springMVC接受前台传值
今天,用ajax向springMVC的控制器传参数,是一个json对象。({"test":"test","test1":"test1""test2":"test2"})开始的想法是用一个对象来接收这个json对象。但是又不知道具体用什么对象,开始用了一个Object,名字和json对象属性名相同,但...
分类:编程语言   时间:2014-05-09 09:59:22    阅读次数:305
每次查询表中的一条数据,遍历整个表
declare @a intselect @a=20--COUNT(*) from SEC_SecureUser while(@a>0)beginselect top 1 suUserID,SUID from SEC_SecureUser where SUID not in(select top (...
分类:其他好文   时间:2014-05-09 09:58:20    阅读次数:261
php 如何判断一个常量是否已经定义
php 如何判断一个常量是否已经定义http://blog.csdn.net/raojinpg/article/details/6222882如果看过手册的人肯定知道,可以直接忽视不过在实际项目过程中有些情况确实需要这么处理。当对功能再次开发的时候,却要不印象其他的功能,这个时候这个判断就有直接的作...
分类:Web程序   时间:2014-05-09 09:41:26    阅读次数:283
Leetcode:Set Matrix Zeroes
戳我去解题Given amxnmatrix, if an element is 0, set its entire row and column to 0. Do it in place.这题还是很简单的,就是有点坑,遍历矩阵的时候,每遇到0的时候,我们不能立即将所在行和列置0,否则,到最后矩阵所有...
分类:其他好文   时间:2014-05-09 08:51:57    阅读次数:253
【Leetcode】Generate Parentheses
Given n pairs of parentheses, write a function to generate all combinations of well-formed parentheses. For example, given n = 3, a solution set is: "((()))", "(()())", "(())()", "()(())", "()()...
分类:其他好文   时间:2014-05-09 02:29:07    阅读次数:302
《linux 内核完全剖析》 sys.c 代码分析
sys.c 代码分析     setregid /* * This is done BSD-style, with no consideration of the saved gid, except * that if you set the effective gid, it sets the saved gid too. This * makes it possib...
分类:系统相关   时间:2014-05-09 02:13:12    阅读次数:621
迷宫问题用‘图’求解
迷宫问题可以看做是在“图”中求解:已知的两个节点是否连通,以及求某个连通的通路。可以通过图的深度优先遍历求解。 import java.util.HashSet; import java.util.Set; class Pos{ public int i; public int j; public Pos(int i,int j){ this.i=i; this.j=j; }...
分类:其他好文   时间:2014-05-09 01:52:20    阅读次数:312
HDU 4578 线段树区间更新(确定区间操作的优先级)
HDU 4578 线段树区间更新 操作有: 区间所有数add(c) 区间所有数mul(c) 区间所有数set(c) 查询有: 区间所有数的p次方和(p>= 1 && p 关键是区间更新的三种操作的优先级的确定清楚 关键是:down和update中对区间的更新操作是一回事,可以写成函数方便编程 //#pragma warning (disable: 47...
分类:其他好文   时间:2014-05-09 01:08:38    阅读次数:432
TI C66x DSP 系统events及其应用 - 4.2(Exception Combiner)
Exception Combiner允许系统设计者...
分类:其他好文   时间:2014-05-09 00:30:36    阅读次数:488
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!