大约有 3,600 项符合查询结果(耗时:0.0084秒) [XML]

https://www.tsingfun.com/it/tech/790.html 

正则表达式 不包含指定字符串 - 更多技术 - 清泛网 - 专注C/C++及内核技术

...,常常需要编写很多复杂的正则表达式。例如枚举出日志文件中不包含某个特定字符串的条目,找出不以某个特定字符串打头的条目,等等。使用否定式前瞻 正则表达式中有前瞻(Lookahead)和后顾(Lookbehind)的概念,这两个术...
https://www.tsingfun.com/it/tech/1047.html 

一次「Too many open files」故障 - 更多技术 - 清泛网 - 专注C/C++及内核技术

...Too many open files」错误信息。 那么 ElasticSearch 设置的最大文件数到底是多少呢?可以通过 proc 确认: shell> cat /proc/<PID>/limits 结果是「4096」,我们还可以进一步看看 ElasticSearch 打开的都是什么东西: shell> ls /proc/<PID>/fd 问题...
https://www.tsingfun.com/it/tech/1048.html 

PHP 错误记录和聚合的平台Sentry实战 - 更多技术 - 清泛网 - 专注C/C++及内核技术

...也不更新,那么多半是因为没有权限生成 celerybeat-schedule 文件,缺省是生成在进程的 cwd 目录中。 如何才能发现新生成的数据呢?需要记录扫描到了哪个位置,可以通过 Logcheck 中提供的 logtail 或者 logtail2 来实现这个功能,至于...
https://www.tsingfun.com/it/tech/1132.html 

php发送get、post请求的几种方法 - 更多技术 - 清泛网 - 专注C/C++及内核技术

...data <span style="white-space:pre"> </span>) ); //生成请求的句柄文件 $context = stream_context_create($opts); $html = file_get_contents('http://localhost/e/admin/test.html', false, $context); echo $html; ?> 方法4:用fsockopen函数打开url,以get方式获取完整的数据...
https://www.tsingfun.com/it/tech/1258.html 

TortoiseSVN允许修改日志的方法 - 更多技术 - 清泛网 - 专注C/C++及内核技术

... Windows版: 服务器端svn仓库hooks目录下加入一个批处理文件:pre-revprop-change.bat @ECHO OFF set repos=%1 set rev=%2 set user=%3 set propname=%4 set action=%5 :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: :: Only allow changes to svn:log. Th...
https://www.tsingfun.com/it/tech/1397.html 

iOS UI系列 (三) :Reusable Button - 更多技术 - 清泛网 - 专注C/C++及内核技术

...就不整洁了,而且比较耗时间。 创建一个RoundButton.swift 文件,集成自UIButton import UIKit class RoundButton: UIButton { /* // Only override drawRect: if you perform custom drawing. // An empty implementation adversely affects performance during animatio...
https://www.tsingfun.com/it/tech/1685.html 

解决IIS发布时global_asax的dll 的CS0433冲突问题 - 更多技术 - 清泛网 - ...

...了。 解决方法: 删除 global.asax ; PrecompiledApp.config 文件拷贝到网站根目录下; 问题解决。IIS,CS0433, global_asax, 预编译
https://www.tsingfun.com/it/tech/1703.html 

phpcms v9与ucenter通信失败 完美解决 - 更多技术 - 清泛网 - 专注C/C++及内核技术

...分,如:/space.php?uid=%s 这里的 %s 代表uid) 应用接口文件名称:(选填,默认为uc.php) 标签单条显示模板:(选填,默认留空) 标签模板标记说明:(选填,默认留空) 是否开启同步登录:是(可选,开启同步...
https://www.tsingfun.com/it/tech/1704.html 

phpcms与ucenter整合常见问题与解答 - 更多技术 - 清泛网 - 专注C/C++及内核技术

...:这可能是由于无法连接到 UCenter 的原因。可以尝试修改文件 phpsso_server/api/uc_client/model/base.php 将第 74 行的 代码示例: $this->db->connect(UC_DBHOST, UC_DBUSER, UC_DBPW, '', UC_DBCHARSET, UC_DBCONNECT, UC_DBTABLEPRE); 替换为: 代码示...
https://www.tsingfun.com/it/tech/1710.html 

phpcms 启用手机门户(自动判断手机浏览器) - 更多技术 - 清泛网 - 专注C/...

...个域名到你的服务器地址。 2、修改\caches\configs\route.php 文件,增加手机路由地址,方法如下: return array( 'default'=array('m'='content', 'c'='index', 'a'='init'), 'm.xxx.com'=array('m'='wap', 'c'='index', 'a'='init'), ); 3、到phpcms后台,...