大约有 7,000 项符合查询结果(耗时:0.0108秒) [XML]

https://www.tsingfun.com/it/opensource/631.html 

Linux下安装项目管理工具Redmine - 开源 & Github - 清泛网 - 专注C/C++及内核技术

...l/redmine/script/server webrick -e production 停止web服务方法:在当前启动窗口按ctrl+C 访问http://ip:3000/ 初始用户名/密码:admin/admin 这样启动后,启动窗口是不能关闭的,所以要使Redmine作为服务启动,需添加-d参数: # ruby script/serv...
https://www.tsingfun.com/it/os_kernel/911.html 

Windows启动过程 - 操作系统(内核) - 清泛网 - 专注C/C++及内核技术

...献给用户,用户登录成功后,它将家在explorer.exe,并根据当前用户的配置信息显示桌面。 虽然本文没有具体的描述启动过程的每个细节,但是大的方面本文都有说明,以做到疏而不漏。欢迎读者批评指正。 参考文章   ...
https://www.tsingfun.com/it/bigdata_ai/1794.html 

mongodb最大连接数配置修改 - 大数据 & AI - 清泛网 - 专注C/C++及内核技术

...totalCreated" : NumberLong(110279) } current数值+available数值就是当前mongodb最大连接数 默认情况下,最大连接数大概是不到900个,要增加的话需要修改操作系统参数,修改完成后重新登录,重启服务即可生效。 echo "* soft nofile 4096" >...
https://www.tsingfun.com/it/bigdata_ai/2289.html 

Windows下使用Anaconda环境安装tensorflow - 大数据 & AI - 清泛网 - 专注C/C++及内核技术

...使用deactivate即可 pip install tensorflow==1.1.0 conda list 查看当前的环境依赖 conda info -e 查看空间列表 conda search python这个命令会列出python的版本号,不知道版本号的可以去看 检验安装是否成功 python >>> import tensorflow as tf ...
https://www.tsingfun.com/it/bigdata_ai/2294.html 

Python Charts库(Highcharts API的封装) - 大数据 & AI - 清泛网 - 专注C/C++及内核技术

... folder /Users/TiM/PycharmProjects/58 at 127.0.0.1:61664 这个目录是你当前目录 如果报错,则需要 import sys print(sys.path) 找到类似下面的路径 '/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/site-packages' 然后进入目录下的chart目录,拷贝下图...
https://www.tsingfun.com/it/tech/504.html 

JS以_blank方式打开新窗口方法 - 更多技术 - 清泛网 - 专注C/C++及内核技术

...于js代码 window.location.href="https://www.tsingfun.com"; //在同当前窗口中打开窗口 2、超链接<a href="https://www.tsingfun.com" title="清泛网" target="_blank">Welcome</a> 等效于js代码 window.open("https://www.tsingfun.com"); //在另外新建窗口中...
https://www.tsingfun.com/it/tech/711.html 

Postfix日常维护队列管理 - 更多技术 - 清泛网 - 专注C/C++及内核技术

...e -f (全部) postqueue -s 主机名称(个别对象) 要查看Postfix的当前主要配置文件的存放路径: postconf -n 查看邮件系统日志:tail -f /var/log/maillog 系统日志:tail -f /var/log/messages 邮件日志:tail -f /var/log/maillog clamd相关:tail -f /var/lo...
https://www.tsingfun.com/it/tech/1133.html 

CSS counter-increment 属性经典详解 - 更多技术 - 清泛网 - 专注C/C++及内核技术

...er-increment 使计数器增长,counter(section) 显示section计数器当前的值,可以前后拼接字符串,如"Section " counter(section) ". "。 结合上面实例,编号设计意图是:定义节点、子节点两个计数器,h1标签前面显示节点计数,h2标签前面显...
https://www.tsingfun.com/it/tech/1973.html 

Curses library not found. Please install appropriate package - 更多...

...再次编译一下,可能还会报同样的错误,不要着急,删除当前目录下CMakeCache.txt文件并重新编译,再次运行cmake命令就会正常!Curses
https://www.tsingfun.com/it/tech/2285.html 

layer弹窗 绑定回车关闭事件 - 更多技术 - 清泛网 - 专注C/C++及内核技术

... index){ $(document).on('keydown', function(e){ //document为当前元素,限制范围,如果不限制的话会一直有事件 if(e.keyCode == 13){ deleteFile(index); } }) } // ++ }); } laye...