码迷,mamicode.com
首页 >  
搜索关键字:could not find driver    ( 34312个结果
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
【QT】Ubuntu安装QT Creator
在Ubuntu平台安装QT时,遇到Could not load the Qt platform plugin "xcb" ...
分类:系统相关   时间:2021-04-26 13:57:35    阅读次数:0
grep & find
grep -n "9cfcb8a4b1f70683" *.log 查找时不区分大小写: grep –i "被查找的字符串" 文件名 查找匹配的行数 grep -c "被查找的字符串" 文件名 从文件内容查找不匹配指定字符串的行: grep –v "被查找的字符串" 文件名 从根目录开始查找所有扩展名 ...
分类:其他好文   时间:2021-04-26 13:34:41    阅读次数:0
双击操作\右击操作\鼠标悬停
from selenium import webdriver from selenium.webdriver.common.action_chains import ActionChains from time import sleep driver=webdriver.Firefox() driv ...
分类:其他好文   时间:2021-04-26 13:30:27    阅读次数:0
Centos7 yum命令异常报错Could not retrieve mirrorlist http://mirrorlist.centos.org
Loaded plugins: fastestmirror, langpacks Could not retrieve mirrorlist http://mirrorlist.centos.org/?release=7&arch=x86_64&repo=os&infra=stock error w ...
分类:Web程序   时间:2021-04-24 13:53:03    阅读次数:0
爬虫 第三弹
1.selenium 基本操作 from selenium import webdriver from time import sleep #实例化一款浏览器对象 bro = webdriver.Chrome(executable_path='chromedriver.exe') #executab ...
分类:其他好文   时间:2021-04-23 12:20:22    阅读次数:0
Android开发
开发工具:Android Studio TestView(线性布局) 1、基本属性: layout_width:组件宽度(单位dp) layout_height:组件高度 id:组件id text:文本内容 textColor:字体颜色 textStyle:字体风格,normal(无效果)、bold ...
分类:移动开发   时间:2021-04-22 16:12:15    阅读次数:0
MFC控件 Edit,控制只能输入数字和小数点
照抄这个的 MFC实现Edit输入限制(只允许输入数字,小数点) Edit 控件的属性Number,只能控制只输入数字,不能控制输入小数的情况,实现这个就继承CEdit来写新的类 .h 代码 1 #pragma once 2 3 // CEditEx 4 5 class CEditEx : publ ...
分类:编程语言   时间:2021-04-22 16:05:43    阅读次数:0
外观模式-designer-facade-ts
外观模式 环境搭建 npm init -y npm i vite -D 外观模式简介: 是一种通过为多个复杂的子系统提供一个一致的接口,而使这些子系统更加容易被访问的模式。该模式对外有一个统一接口,外部应用程序不用关心内部子系统的具体细节,这样会大大降低应用程序的复杂度,提高了程序的可维护性。 优点 ...
分类:其他好文   时间:2021-04-22 15:35:04    阅读次数:0
并查集Union-find的优化问题
并查集可以有两个优化方案, 1,平衡性优化:对每个结点标记一个重量值,在进行union操作时,将重量小的添加到重量大的节点上。 2,路径压缩:在进行find操作时,顺便对路径进行压缩 private int find(int x) { while (parent[x] != x) { // 进行路径 ...
分类:其他好文   时间:2021-04-22 15:12:28    阅读次数:0
34312条   上一页 1 ... 13 14 15 16 17 ... 3432 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!