码迷,mamicode.com
首页 >  
搜索关键字:couldnt be opened    ( 2268个结果
手动配置yum源文件(CentOS8)
1. 备份 mkdir /etc/yum.repos.d/repo.bak ; mv /etc/yum.repos.d/*.repo /etc/yum.repos.d/repo.bak 2. 配置yum源文件 vim /etc/yum.repos.d/CentOS8.repo 1 [baseOS] ...
分类:其他好文   时间:2020-07-26 15:16:55    阅读次数:216
python_reques接口测试框架,Excel作为案例数据源
一、框架菜单 1.1 common模块 1.2 其他 二、Excel接口测试案例编写 三、读取Excel测试封装(核心封装) excel_utils.py 读取Excel中的数据 import os import xlrd #内置模块、第三方模块pip install 自定义模块 class Exc ...
分类:编程语言   时间:2020-07-26 00:29:33    阅读次数:79
2020.7.15:
# 今日学习内容 ## Vue ### 父组件 data 或 methods 的值 可以通过 自定义属性(:xxxx="xxxx"),通过 子组件的 props 传递给 子组件 数据在哪个组件,更新数据的行为(方法),就应该定义在哪个组件 ### String.trim(); 方法用于删除字符串的头 ...
分类:其他好文   时间:2020-07-15 23:09:02    阅读次数:75
Python 基础8 面向对象及相关
其他相关: 一、isinstance(obj, cls) 检查是否obj是否是类 cls 的对象 1 class Foo(object): 2 3 pass 4 5 obj = Foo() 6 isinstance(obj, Foo) 二、issubclass(sub, super) 检查sub类是 ...
分类:编程语言   时间:2020-07-15 12:48:25    阅读次数:82
C 红球进黑洞
https://ac.nowcoder.com/acm/contest/6046/C 二维线段树+区间异或+区间求和 1 #include <iostream> 2 #include <algorithm> 3 #include <cstring> 4 #include <cstdio> 5 usi ...
分类:其他好文   时间:2020-07-12 12:31:15    阅读次数:68
MySQL一次死锁排查过程分析(双update)
1.环境 MySQL5.7.26,事务隔离级别为RR 2.表结构 + + + + + + + | Field | Type | Null | Key | Default | Extra | + + + + + + + | id | int(11) unsigned | NO | PRI | NULL ...
分类:数据库   时间:2020-07-10 19:12:58    阅读次数:88
【leetcode_easy_array】1122. Relative Sort Array
problem 1122. Relative Sort Array solution1: code 哈希表 solution2: code: 思路 解题思路: 首先解读题意。arr2的元素都是独一无二的,并且都所属于arr1。arr1中可能包含重复元素。目标是将arr1中的元素重新排序,排序规则是1 ...
分类:其他好文   时间:2020-07-09 22:34:40    阅读次数:72
SpringBoot整合LogBack一看就懂
SpringBoot环境为2.2.2.RELEASE。不用导入任何的依赖。yml文件不需要任何的配置。只用在 Classpath下创建一个logback.xml即可。如果需要自定义文件名或者文件位置,可以在yml中 配置 logging.config=classpath:logback.xml 在代 ...
分类:编程语言   时间:2020-07-07 17:16:33    阅读次数:347
树形dp1
选择结点: dp[ i ] [ 0 / 1] 树上背包:f[ v ] [ k ] =f[ u ] [ k ]+ val; f [ u ] [ k ]= max( f[v ][k-1],f[u][k]) 常规:f[ i ] [ j ],以i为根的结点。。。 http://acm.hdu.edu.cn/ ...
分类:其他好文   时间:2020-07-07 00:06:49    阅读次数:82
背包dp(完全)
http://poj.org/problem?id=3181 高精+背包 完全背包求方案数则只需dp[ j ] + = dp[ j - w[ i ] ]即可;任意一种背包方案计算都只需将max变为+; 这道题要注意,求方案数一般有很多,不mod,就自己看看数据是否超内存; dp[ i ]存放前18位 ...
分类:其他好文   时间:2020-07-05 00:49:16    阅读次数:92
2268条   上一页 1 ... 3 4 5 6 7 ... 227 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!