码迷,mamicode.com
首页 >  
搜索关键字:user group    ( 50345个结果
git常用命令
查看所有配置,用户信息和文件位置 git config --list --show-origin 用户信息配置 git config --global user.name "user_name" git config --global user.email "user_email@qq.com" 本 ...
分类:其他好文   时间:2021-04-13 12:23:36    阅读次数:0
ICPC Southeast USA 2020 Regional Contest problem problem E: Dominating Duos(单调栈维护区间最大值)
题目描述 A group of people are standing in a line. Each person has a distinct height. You would like to count the number of unordered pairs of people in t ...
分类:其他好文   时间:2021-04-13 12:06:43    阅读次数:0
mongodb 聚合查询
mongo shell 操作 aggregate 使用mongo db 的 aggregate 进行聚合操作,改操作传入的参数是一个数组 aggregate 操作的参数 match 相当于 mysql 的 where,传入的是筛选条件 示例: {$match : { 'os': 'win' } } ...
分类:数据库   时间:2021-04-13 12:04:07    阅读次数:0
多线程学习---守护线程与用户线程
java中,线程分为两类,分别时守护线程(daemon线程)和user线程(用户线程)。在JVM启动的时候,会调用main函数,main函数所在的线程就是一个用户线程,其实在JVM内部同时还调用了其他好多守护线程,例如垃圾回收线程等。 守护线程和用户线程的区别:当最后一个非守护线程执行完毕之后,不管 ...
分类:编程语言   时间:2021-04-13 11:41:00    阅读次数:0
maven手动导入jar包
手动导入jar包需要有pom.xml文件。 mvn install:install-file -Dfile=G:\PXY\JFAPP\project28\ris-api-2.1.3\dcm4che\dcm4che-core\5.18.0\dcm4che-core-5.18.0.jar -Dgroup ...
分类:编程语言   时间:2021-04-12 12:48:47    阅读次数:0
Weblogic JNDI注入 RCE (CVE-2021-2109) 复现
#影响范围 Weblogic Server 10.3.6.0.0、12.1.3.0.0、12.2.1.3.0、12.2.1.4.0、14.1.1.0.0 #环境搭建 docker pull ismaleiva90/weblogic12 docker run -d -p 49163:7001 -p 4 ...
分类:Web程序   时间:2021-04-12 12:44:20    阅读次数:0
MySQL 忘记密码
1. vi /etc/my.cnf 2. update mysql.user set authentication_string=password('123456') where user='root' and host='localhost'; 3. FLUSH PRIVILEGES; ...
分类:数据库   时间:2021-04-12 12:44:01    阅读次数:0
zabbix 安装报错解析
一、Q:Error connecting to database: Access denied for user ‘zabbix’ @ ‘localhost’ to database ‘zabbix’(PASSWORD:YES) 浏览器输入http://ServerIP/zabbix 查看日志 ta ...
分类:其他好文   时间:2021-04-12 12:43:00    阅读次数:0
大众点评爬虫
import requests from lxml import etree import csv headers={ 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) ...
分类:其他好文   时间:2021-04-12 12:41:35    阅读次数:0
多人聊天室。双人聊天室后面再加
calls=array( 'id' => null, 'nid' => null, 'name' => '', 'cur_time' => '', 'context' => '', 'switch' => '', ); //用户 $this->user=array( 'nid'=>null, 'na ...
分类:其他好文   时间:2021-04-12 12:28:30    阅读次数:0
50345条   上一页 1 ... 38 39 40 41 42 ... 5035 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!