码迷,mamicode.com
首页 >  
搜索关键字:start event    ( 37051个结果
docker安装
# 安装依赖包 yum install -y yum-utils # 添加Docker软件包源 yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo # 安装Docker CE yu ...
分类:其他好文   时间:2021-04-28 12:12:26    阅读次数:0
winfrom嵌入word
使用微软的DSOFRAMER控件实现方法:先下载DsoFramer_KB311765_x86.exe ,自己百度一下有很多。安装,默认安装目录C:\DsoFramer可以先注册下: 开始菜单 运行 输入 regsvr32.exe C:\DsoFramer\dsoframer.ocx using Sy ...
分类:Windows程序   时间:2021-04-28 11:55:27    阅读次数:0
页面上多个audio只播放一个
// ts版-vue private justPalyOne() { const audios = document.querySelectorAll("audio"); // 暂停函数 const pauseAll = (exclude: any): any => { audios.forEach ...
分类:其他好文   时间:2021-04-27 15:20:20    阅读次数:0
Mysql练习
1.求每个部门最高薪水的人员名称 解决思路:1 先求每个部门最高的薪水 SELECT e.deptno,MAX(e.sal) as maxsal from emp e GROUP BY e.deptno; 2. 将第一步得出来的结果,当成临时表 SELECT e.deptno,ename,t.max ...
分类:数据库   时间:2021-04-27 14:59:14    阅读次数:0
mysql 主从复制遇到的坑
1 Could not execute Write_rows event on table cs3.test01; Duplicate entry ‘7‘ for key ‘test01.PRIMARY‘ 1.1 主库操作 SHOW BINARY LOGS; PURGE BINARY LOGS TO ...
分类:数据库   时间:2021-04-27 14:28:23    阅读次数:0
CentOS7配置
# CentOS7 rm -f /etc/yum.repos.d/*.repo curl -L "http://mirrors.163.com/.help/CentOS7-Base-163.repo" -o /etc/yum.repos.d/CentOS7-Base-163.repo curl -L ...
分类:其他好文   时间:2021-04-27 14:17:29    阅读次数:0
搭建React+TypeScript项目
create-react-app构建TypeScript项目 create-react-app my-app --template typescript 然后进入项目并启动 cd my-app/ npm run start 项目启动成功,浏览器默认打开http://localhost:3000/ 持 ...
分类:其他好文   时间:2021-04-27 14:13:35    阅读次数:0
crontab调度示例
一些crontab调度示例 10 6 * * * root reboot 10 7 * * * python /root/confluence_backup.py */5 * * * * flock -xn /tmp/stargate.lock -c '/usr/local/qcloud/starg ...
分类:其他好文   时间:2021-04-27 14:12:22    阅读次数:0
vue自定义指令防抖
import Vue from "vue"; // vue自定义指令防抖 Vue.directive("antiShake", { bind: function(el, binding, vnode) { let { delay, fn } = binding.value; //参数:时间,执行函数 ...
分类:其他好文   时间:2021-04-26 13:57:03    阅读次数:0
muduo 库解析之十一:Thread
线程 创建线程 #include <pthread.h> int pthread_create(pthread_t *restrict thread,const pthread_attr_t *restrict attr,void *(*start_routine)(void*), void *re ...
分类:其他好文   时间:2021-04-26 13:53:31    阅读次数:0
37051条   上一页 1 ... 22 23 24 25 26 ... 3706 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!