码迷,mamicode.com
首页 >  
搜索关键字:local service    ( 47648个结果
Lua进阶(一)——函数闭包、元表
函数闭包 function createCountdownTimer(second) local ms=second * 1000; local function countDown() ms = ms - 1; return ms; end return countDown; end timer1 = createCountdownTimer(1); for...
分类:其他好文   时间:2014-07-22 22:59:53    阅读次数:307
(转载)burpsuit 突破上传文件限制
1.运行Burp site,点击Proxy标签,确认Options选项卡下,Proxy listeners的running运行正常(勾选状态为运行),如果端口打开失败,可能的原因是有程序占用了该端口,点击edit,在local listener port:输入框输入一个未占用的端口,点击update...
分类:其他好文   时间:2014-05-01 22:23:46    阅读次数:665
Ubuntu 下的webservices
搞 了一下午: 给出代码: 1 root@ubuntu:/home/aries/Aries/gsoap# cat add.h //gsoapopt cw //gsoap ns2 schema namespace: urn:add //gsoap ns2 schema form: unqualified //gsoap ns2 service name: add //gsoap ns2 ser...
分类:Web程序   时间:2014-05-01 22:03:30    阅读次数:530
windows无法启动VMware Authorization Service服务
VMware也用了一年了,一直好好的,今天突然出现启动不了VMware里的linux系统了,Authorization Service问题,在windows系统里查看服务,找到VMware Authorization Service,点启动,弹出无法启动VMware Authorization Se...
分类:Windows程序   时间:2014-05-01 19:04:13    阅读次数:2955
[TroubleShooting] The server network address can not be reached or does not exist
The server network address “TCP://myserverAddress:50221″ cannot be reached or does not exist. Check the network address name and that the ports for the local and remote endpoints are operational. (Microsoft SQL Server, Error: 1418)...
分类:Web程序   时间:2014-05-01 18:35:53    阅读次数:665
Lua chapter 1
1. 调用其他的.lua文件   dofile("xx.lua");   2. 避免用 "_VERSION"这类的标识符,Lua将这类标识符用作特殊用途,通常保留"_"作为”哑变量“ 3. Lua的一些保留字:    do in local nil until 等     4. 注释:-- 表示行注释   --[[ ... ]] 表示块注释 一般的块注释这样写: --[[ ...
分类:其他好文   时间:2014-04-30 22:34:38    阅读次数:270
git rebase和merge 区别和应用场景
对于两个分支而言,rebase和merge没有区别,但是rebase更干净,因为log hisitory是线性的,但commit不一定按日期先后排,而是local commit总在后面,merge之后history变得比较复杂,但是commit按日期排序,stackoverflow上有个图示很好: http://stackoverflow.com/questions/16666089/whats...
分类:其他好文   时间:2014-04-30 22:27:40    阅读次数:401
localhost与127.0.0.1的区别
localhost与127.0.0.1的区别是什么 相信有人会说是本地ip,其实这两者是有区别的。  localhost也叫local ,正确的解释是:本地服务器  127.0.0.1在windows等系统的正确解释是:本机地址(本机服务器)  localhot(local)是不经网卡传输!这点很重要,它不受网络防火墙和网卡相关的的限制。  127.0.0.1是通过网卡传输,依赖网卡,并受...
分类:其他好文   时间:2014-04-30 22:25:38    阅读次数:350
hadoop生态系统默认端口集合
1 HDFS服务中,默认端口集合:  1. HDFS 端口 Service Servers Default Ports Used Protocol Description Need End User Access? Configuration Parameters NameNode WebUI Master Nodes (NameNo...
分类:其他好文   时间:2014-04-29 13:24:21    阅读次数:492
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!