背景:在执行单元测试中,有些方法执行耗时,不想全部执行,想忽略执行,那就需要跳过某方法执行 1.无条件跳过某方法 @unittest.skip("skipping") 2.使用变量的方式,指定忽略测试方法 a=10 @unittest.skipIf(a > 5, "condition is not ...
分类:
其他好文 时间:
2020-03-15 22:09:20
阅读次数:
55
1、python读写csv文件 1 import csv 2 3 #读取csv文件内容方法1 4 csv_file = csv.reader(open('testdata.csv','r')) 5 next(csv_file, None) #skip the headers 6 for user i ...
分类:
编程语言 时间:
2020-03-15 19:00:36
阅读次数:
65
一、 ?解析available\skip\close\read(int[] a)方法以及使用read方法循环打印出所有的?内容。 package com.bjpowernode.java_learning; import java.io.*; public class D96_1_CircleRea ...
分类:
编程语言 时间:
2020-03-13 01:36:09
阅读次数:
61
import numpy as np import pandas as pd df=pd.DataFrame(np.arange(25).reshape(5,5)) new_order=np.random.permutation(5)#不暗中哦顺序排列 print(df.take(new_order ...
分类:
编程语言 时间:
2020-03-09 13:32:03
阅读次数:
68
绕过密码验证登录mysql后,修改密码 1.修改mysql配置文件 vi /etc/my.cnf 在文件中新增一行skip-grant-tables 2.重启mysql服务 service mysql restart 3.无需密码登录mysql mysql -uroot -p 4.修改密码 在MyS ...
分类:
数据库 时间:
2020-03-09 01:03:51
阅读次数:
85
mysql8忘记了root密码,需要修改 步奏: 1. 从/etc/my.cnf 配置文件中加入skip-grant-table后正常登陆,把 localhost和user=root 的 authentication_string设置为空字符串 # systemctl restart mysqld ...
分类:
数据库 时间:
2020-03-08 19:54:24
阅读次数:
85
Word2vec "1.词嵌入基础" "2.PTB数据集" "3.Skip Gram" "4.负采样近似" "5.训练模型" 1.词嵌入基础 使用 one hot 向量表示单词,虽然它们构造起来很容易,但通常并不是一个好选择。一个主要的原因是,one hot 词向量无法准确表达不同词之间的相似度,如 ...
分类:
其他好文 时间:
2020-02-21 20:22:27
阅读次数:
140
mysql8.0版本下命令行mysqld –skip-grant-tables 失效,无法登陆的问题1、管理员权限登陆cmd,不会使用管理员登陆的请搜索cmd,搜索结果右键。 2、命令行输入:net stop mysql;然后提示。服务停止中 --> 服务已停止,如出现其他错误请百度。 这只是一个示 ...
分类:
数据库 时间:
2020-02-20 15:03:39
阅读次数:
91
Memorize: 1.People are always talking about 'Problem of Youth.' 2.If there is one--which I take leave to doubt--then it is the elder peole who creat i ...
分类:
其他好文 时间:
2020-02-19 13:06:48
阅读次数:
93
I’m going to take the top reasons and make a series of posts which act as a postmortem of sorts. Hopefully, they can also serve as tips for anybody wh ...
分类:
其他好文 时间:
2020-02-17 15:57:11
阅读次数:
58