码迷,mamicode.com
首页 >  
搜索关键字:included    ( 465个结果
Python_常用的正则表达式处理函数
函数参数说明: pattern:匹配的正则表达式 string:要匹配的字符串 flag:标志位,用于控制正则表达式的匹配方式(是否匹配大小写、多行匹配等) 作用:match()函数只在字符串的开始位置尝试匹配正则表达式,即从位置0开始匹配。如果匹配成功,则返回一个匹配的对象;如果字符串开始不符合正 ...
分类:编程语言   时间:2017-06-24 11:58:25    阅读次数:229
Invalid command 'WSGIScriptAlias', perhaps misspelled or defined by a module not included in the ser
没有Include wsgi,执行: sudo a2enmod wsgi 可能出现以下的错误 ERROR: Module mod-wsgi does not exist! 安装 libapache2-mod-wsgi sudo apt-get install libapache2-mod-wsgi ...
分类:其他好文   时间:2017-06-18 13:29:19    阅读次数:157
unity(使用了NGUI) 在Build时遇见DontSave but is included in the build
错误提示: An asset is marked with HideFlags.DontSave but is included in the build:Asset: 'Library/unity editor resources'(You are probably referencing int ...
分类:编程语言   时间:2017-06-10 17:09:01    阅读次数:2245
CEF3 获取Cookie例子 CefCookieManager C++
首先从cef_cookie.h 源码中看到CefCookieManager 这个类: 可以通过VisitAllCookies获取所有cookies;VisitUrlCookies获取域名下的所有cookies。 看到VisitUrlCookies的参数是CefCookieVisitor;所以实现一个 ...
分类:编程语言   时间:2017-06-09 00:49:27    阅读次数:3772
C++学习,两个小的语法错误-network-programming
1.bool CServerSocket::initSocket(const char* ip=NULL,const UINT &port);//会出现默认参数为2的错误 解决方案: //C++语法规定:只要有一个默认参数,那么该参数后面的所有参数都必须指定默认值//所以将initSocket的两个 ...
分类:编程语言   时间:2017-06-05 22:21:28    阅读次数:146
PHP分页函数 学习笔记
function smarty_function_assign_debug_info($params, &$smarty) { $assigned_vars = $smarty->_tpl_vars; ksort($assigned_vars); if (@is_array($smarty->_co... ...
分类:Web程序   时间:2017-06-04 21:22:26    阅读次数:163
httpclient新旧版本分割点4.3
从这个版本开始,httpclient的api发生了一次重大调整。主要包括如下:Release 4.3 Final This is the first stable (GA) release of HttpClient 4.3. The most notable enhancements includ ...
分类:Web程序   时间:2017-05-30 21:59:44    阅读次数:219
webpack学习
app/index.js index.html 可以看出其实有个隐形依赖,index.js中需要依赖lodash,然而可以看到该文件并没有声明lodash,他知识假设一个全局变量_存在。 对于管理js工程主要有两个问题: 1、如果没有依赖或者包含了错误的顺序(or is included in th ...
分类:Web程序   时间:2017-05-25 17:14:54    阅读次数:306
USRP内部的寄存器
usrp_regs.hpp #ifndef INCLUDED_USRP2_REGS_HPP #define INCLUDED_USRP2_REGS_HPP //////////////////////////////////////////////////////////////////////// ...
分类:其他好文   时间:2017-05-23 18:12:33    阅读次数:175
OpenCV——颜色运算
#ifndef PS_ALGORITHM_H_INCLUDED #define PS_ALGORITHM_H_INCLUDED #include <iostream> #include <string> #include "cv.h" #include "highgui.h" #include "c ...
分类:其他好文   时间:2017-05-22 13:20:46    阅读次数:144
465条   上一页 1 ... 16 17 18 19 20 ... 47 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!