码迷,mamicode.com
首页 >  
搜索关键字:ignore    ( 2038个结果
pip配置文件
Linux: 配置文件路径:/etc/pip.conf ~/.pip/pip.conf Windows: 配置文件路径:%appdata%\pip\pip.ini %userprofile%\pip\pip.ini 常用配置: [global] index-url=http://mirrors.al ...
分类:其他好文   时间:2020-06-12 20:30:58    阅读次数:223
018_git只下载单个文件夹
一、 (1)创建一个空的本地仓库 git init (2)添加远程分支 git remote add arun git@github.com:itcomputer12/itcomputer12.github.io.git (3)开启sparse checkout 模式 git config core ...
分类:其他好文   时间:2020-06-11 23:22:35    阅读次数:122
zsh compinit: insecure files, run compaudit for list.
zsh compinit: insecure files, run compaudit for list. Ignore insecure directories and continue [y] or abort compinit [n]? 输入compaudit后输出如下: /usr/local ...
分类:其他好文   时间:2020-06-11 19:28:26    阅读次数:68
Mysql force index和ignore index 使用实例
前几天统计一个sql,是一个人提交了多少工单,顺便做了相关sql优化。数据大概2000多w。 select CustName,count(1) c from WorkOrder where CreateDate>'2016-5-1' and CreateDate<'2017-1-1'group by ...
分类:数据库   时间:2020-06-10 21:33:41    阅读次数:70
Python:分块读取大文件
Python中读取文件的方式有许多种,往往数据量大的情况令人苦恼。之前一篇博客https://www.cnblogs.com/xiaolan-Lin/p/12014686.html我说会发大文件读取的后续。 那么后续来啦! 1 import pandas as pd 2 # 采用块读取功能,读取cs ...
分类:编程语言   时间:2020-06-06 18:28:44    阅读次数:176
oracle hint 知多少
oracle hint 可以用v$sql_hint 来查询,比如有多少个INDEX相关的hint >set pagesize 500>set linesize 300>select NAME,CLASS,VERSION,PROPERTY from v$sql_hint where name like ...
分类:数据库   时间:2020-06-04 01:08:53    阅读次数:74
Vue----创建脚手架项目
自己准备做一个个人的网站,在这里从头开始记录一下。 一、安装node.js 先用node -v命令查看自己是否已经安装过。 没有安装的,直接点击右边的连接去下载安装 >http://nodejs.cn/download/ 注意:安装脚手架需要node版本在4.0以上 二、更换镜像(可做可不做) 如果 ...
分类:其他好文   时间:2020-06-04 01:01:39    阅读次数:63
利用fastcgi_finish_request()函数,提高页面响应速度
本周有个任务,是通过页面触发指定脚本。刚开始的时候是使用popen,使用管道进程跑脚本,刚开始的没考虑到超时问题,后来发现脚本如果跑的时间长会超时,超时后页面和nginx断开了,脚本也停止了。学习到了ignore_user_abort(true),即使页面请求断开,脚本也还会执行,设置set_tim ...
分类:其他好文   时间:2020-06-02 20:31:18    阅读次数:83
.gitignore 基础
前言 gitignore文件有几种方式生成。 1.在创建版本库的时候生成。 2.自己手动添加: windows环境下,不能把文件直接改名为.gitignore,会提示你必须输入文件名。所以我们先新建一个“新建文本文档.txt”文档,记事本打开,选择另存为,保存类型选择“所有文件(.)”,文件名输入“ ...
分类:其他好文   时间:2020-06-02 18:40:53    阅读次数:79
error eslint@5.8.0: The engine "node" is incompatible with this module. Expected version "^6.14.0 || ^8.10.0 || >=9.10.0". Got "9.3.0"
报错: error eslint@5.8.0: The engine "node" is incompatible with this module. Expected version "^6.14.0 || ^8.10.0 || >=9.10.0". Got "9.3.0" error Found ...
分类:其他好文   时间:2020-06-01 21:02:01    阅读次数:132
2038条   上一页 1 ... 10 11 12 13 14 ... 204 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!