码迷,mamicode.com
首页 >  
搜索关键字:not find    ( 24186个结果
git 常用命令
git config --list List all the settings git can find at /etc/gitconfig, ~/.gitconfig, ~/.config/git/config or .git/config. git config --system --list ...
分类:其他好文   时间:2020-06-30 16:03:38    阅读次数:57
selenium自动化关于虚拟DOM 元素点击
例子:国际化语言切换xp = '//*[@id="app"]/div/div[1]/div/div/div[1]/div[2]/div/div/div[2]/span' #先点击下拉按钮语言框 element2 = self.driver.find_element_by_xpath(xp) #定位语 ...
分类:其他好文   时间:2020-06-30 14:33:49    阅读次数:57
WordVBA提取红色字体选项
Sub 提取红色正确答案选项() Selection.HomeKey wdStory Selection.Find.ClearFormatting Selection.Find.Font.Color = wdColorRed Selection.Find.Replacement.ClearForma ...
分类:编程语言   时间:2020-06-30 12:48:07    阅读次数:132
Zabbix-admin密码忘记
1.通过配置文件确认zabbix关联的数据库信息 #find / -name zabbix_server.conf 查看管理数据库,密码,IP 2.登录数据库修改 #mysql -uzabbix -pzabbix >select user(); 查看当前用户 >show databases; >us ...
分类:其他好文   时间:2020-06-30 12:36:12    阅读次数:43
Multiset (权值线段树模版)
题目链接:https://codeforces.com/contest/1354 想法: 很明显的权值线段树(值域线段树)板子题。 #include <algorithm> #include <string> #include <cstring> #include <vector> #include ...
分类:其他好文   时间:2020-06-30 00:43:08    阅读次数:58
Linux shell 判断字符串为空等常用命令
https://www.cnblogs.com/cute/archive/2011/08/26/2154137.html 1、判断字符串为空 if [ -z "$str" ]; then echo "empty string" fi 2、判断文件是否存在 if [ -f /home/builder/ ...
分类:系统相关   时间:2020-06-29 13:44:40    阅读次数:107
Linux - 其他命令
其他命令 目标 查找文件 find 软链接 ln 打包和压缩 tar 软件安装 apt-get 01. 查找文件 find 命令功能非常强大,通常用来在 特定的目录下 搜索 符合条件的文件 序号命令作用 01 find [路径] -name "*.py" 查找指定路径下扩展名是 .py 的文件,包括 ...
分类:系统相关   时间:2020-06-29 13:15:26    阅读次数:79
selenium判断元素是否为空
# 该方法用来确认元素是否存在,如果存在返回flag=true,否则返回false def isElementExist(self,element): flag=True try: driver.find_element_by_css_selector(element) return flag ex ...
分类:其他好文   时间:2020-06-29 11:57:42    阅读次数:141
Unable to authenticate, need: BASIC realm="Sonatype Nexus Repository Manager"
在登录自有npm库的时候发现输入正确的账号密码,依然会报错 Unable to authenticate, need: BASIC realm="Sonatype Nexus Repository Manager" 在尝试网上提供方法后没有得到解决, 然后尝试输入一个错误的密码,发现得到的结果相同, ...
分类:其他好文   时间:2020-06-29 11:43:57    阅读次数:549
typescript+vue 常见报错
报错1. main.ts报错( Cannot find module './App.vue'.) 原因: typescript不能识别.vue文件 解决办法: 引入vue的typescript declare库在tsconfig.json中加入 其中,types是自己延伸的一些declare 下面的 ...
分类:其他好文   时间:2020-06-29 09:54:22    阅读次数:74
24186条   上一页 1 ... 54 55 56 57 58 ... 2419 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!