码迷,mamicode.com
首页 >  
搜索关键字:auto deploy esxi host    ( 32470个结果
定时器(了解)
// Test.cpp : 定义控制台应用程序的入口点。//#include "../I_Timer.H"#include void onTimer1(){ std::cout createTimer();#if 1 auto myTimer1 = /*Timer::createTime...
分类:其他好文   时间:2014-05-05 23:28:48    阅读次数:341
Cocos2d-x3.0 文件处理
1、从文件中读取内容 auto sharedFileUtils = FileUtils::getInstance(); std::string ret; sharedFileUtils->purgeCachedEntries(); std::vector searchPaths = sharedFileUtils->getSearchPath...
分类:其他好文   时间:2014-05-04 00:09:23    阅读次数:408
一些php函数
echo mysql_get_client_info()."";//获取mysql客户端信息 echo mysql_get_host_info()."";//获取mysql主机信息 echo mysql_get_server_info()."";//获取m...
分类:Web程序   时间:2014-05-03 23:11:37    阅读次数:557
Cocos2d3.0 制作PList文件
auto root = Dictionary::create(); auto string = String::create("string element value"); root->setObject(string, "string element key"); auto array = Array::create(); ...
分类:其他好文   时间:2014-05-03 16:27:48    阅读次数:380
[Redis]python连接redis
只是看看能不能成功使用python操作redis,redis具体的数据结构和使用会在以后学习。安装连接redis的包pipinstallredis本地已经在6379端口启动了redis服务。In[1]:importredis In[2]:r=redis.StrictRedis(host=‘localhost‘,port=6379,db=0) In[3]:r.set(‘foo‘,‘bar‘) Out[3]:Tru..
分类:编程语言   时间:2014-05-03 14:38:32    阅读次数:405
纠正for循环中关键字continue的执行顺序
下面是一个小程序,可以很好阐述 关键字:continue,break; package org.song.loop; public class TestLoop { /** * @param args */ public static void main(String[] args) { // TODO Auto-generated method stub int tot...
分类:其他好文   时间:2014-05-03 00:03:21    阅读次数:311
python 14章,网络编程
一,socket 模块 套接字包括两类:服务器,客户机, 创建一个套接字后让它等待连接 服务器: import socket s = socket.socket() port = 1234 host = socket.gethostname() print host s.bind((host,port)) s.listen(5) while True: get,addr = s...
分类:编程语言   时间:2014-05-02 21:59:57    阅读次数:444
cocos2d-x3.0 RenderTexture(二)
.h #include "cocos-ext.h" #include "ui/CocosGUI.h" #include "cocostudio/CocoStudio.h" USING_NS_CC; USING_NS_CC_EXT; using namespace ui; .cpp auto background = LayerColor::create(Color4B(200,200...
分类:其他好文   时间:2014-05-02 21:27:20    阅读次数:367
android开发环境搭建遇到的问题
①解决安卓SDK更新dl-ssl.google.com无法连接进入C:\Windows\System32\drivers\etc下,用记事本打开host文件://74.125.237.1 dl-ssl.google.com74.125.23.190 dl-ssl.google.com②eclipse...
分类:移动开发   时间:2014-05-02 12:15:03    阅读次数:343
使用ssh过程中对数据库进行update时报错
org.springframework.dao.InvalidDataAccessApiUsageException: Write operations are not allowed in read-only mode (FlushMode.NEVER) - turn your Session into FlushMode.AUTO or remove 'readOnly' marker from transaction definition...
分类:数据库   时间:2014-05-01 18:16:35    阅读次数:377
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!