码迷,mamicode.com
首页 >  
搜索关键字:xxxx    ( 3417个结果
Elasticsearch之-文档操作
一 新增文档 #新增一个id为1的书籍(POST和PUT都可以) POST lqz/_doc/1/_create #POST lqz/_doc/1 #POST lqz/_doc 会自动创建id,必须用Post { "title":"红楼梦", "price":12, "publish_addr":{ ...
分类:其他好文   时间:2021-06-16 17:39:04    阅读次数:0
IIS短文件名泄露漏洞检测
IIS短文件名泄露漏洞检测 http://www.xxxx.com/*~1****/a.aspx http://www.xxxx.com/l1j1e*~1****/a.aspx If the first one return an HTTP 404 and the second one return ...
分类:其他好文   时间:2021-06-07 20:37:21    阅读次数:0
Python_redis
import redisr = redis.Redis(host = "118.xx.x.xx",password="xxxxxx*",port=xxxx,db=4)r = redis.Redis(host = "118.xx.x.xx",password="xxxxxx*",port=xxxx,d ...
分类:编程语言   时间:2021-06-06 19:33:19    阅读次数:0
Python_发送邮件
import yamailusername = "xxxxxx@qq.com"password = "xxxxxx"host = "smtp.qq.com"# host = "smtp.163.com" #163# host = "smtp.126.com" #qq# smtp.send(to="a ...
分类:编程语言   时间:2021-06-06 19:32:03    阅读次数:0
Linux shell中检查tomcat进程健康状态
创建第一个启动shell脚本,如tomcat_restart.sh,内容 #/bin/sh tomcatmsg=$(ps -ef|grep tomcat|awk '{print $1$8}'|grep '/xxxx/xxx/xxxx/jdk/bin/java/'|wc -l) if [ $tomca ...
分类:系统相关   时间:2021-06-03 18:29:06    阅读次数:0
redis >SET存储结构
无序的数据集合:应用场景如微博相互关注,你关注的人也关注了xxxx(交集,并集等操作)1.intset 2hashtable intset 编码: 当存储的数据都为整型时其存储结构位intset 当存储的数据只要有一个不为整型时,其编码为hashtable ...
分类:其他好文   时间:2021-06-02 20:41:30    阅读次数:0
Arcgisapi for js 4.x使用query/goto/PopupTemplate
let layerUrl = "http://xxx.xxx.xx.xx/server/rest/services/xxxx/xxxx/MapServer/194";//服务地址 let queryTask = new this.esriModules.QueryTask(layerUrl);//创 ...
分类:Windows程序   时间:2021-06-02 20:02:22    阅读次数:0
每日算法-Shell-有效电话号码
给定一个包含电话号码列表(一行一个电话号码)的文本文件 file.txt,写一个单行 bash 脚本输出所有有效的电话号码。 你可以假设一个有效的电话号码必须满足以下两种格式: (xxx) xxx-xxxx 或 xxx-xxx-xxxx。(x 表示一个数字) 你也可以假设每行前后没有多余的空格字符。 ...
分类:编程语言   时间:2021-06-02 10:54:40    阅读次数:0
idea启动java Maven项目,出现" java: 程序包xxxx不存在"
解决办法如下:将idea的构建和运行托管到maven下面 ...
分类:编程语言   时间:2021-05-24 17:09:26    阅读次数:0
async和await
async和await是解决异步编程问题的。 promise的then方法链式调用不够优雅 async 修饰的函数同步返回一个promise 使用await必须包裹一个async修饰的函数 async返回的promise的状态由await修饰的promise的状态决定 如果await修饰的promi ...
分类:其他好文   时间:2021-05-24 14:54:53    阅读次数:0
3417条   上一页 1 2 3 4 ... 342 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!