码迷,mamicode.com
首页 >  
搜索关键字:erro    ( 6389个结果
Your password does not satisfy the current policy requirements
ERROR 1819 (HY000): Your password does not satisfy the current policy requirements ...
分类:其他好文   时间:2020-12-03 12:09:41    阅读次数:6
JAVA异常详解
一、异常实现及分类先看下异常类的结构图上图可以简单展示一下异常类实现结构图,当然上图不是所有的异常,用户自己也可以自定义异常实现。上图已经足够帮我们解释和理解异常实现了:1.所有的异常都是从Throwable继承而来的,是所有异常的共同祖先。2.Throwable有两个子类,Error和Exception。其中Error是错误,对于所有的编译时期的错误以及系统错误都是通过Error抛出的。这些错误
分类:编程语言   时间:2020-12-03 11:56:13    阅读次数:5
Django ValueError: invalid literal for int() with base 10: 'xxx'解决办法
File "D:\workspace\mall\venv\lib\site-packages\django\db\models\fields\__init__.py", line 972, in get_prep_value return int(value)ValueError: invalid ...
分类:其他好文   时间:2020-12-01 12:26:06    阅读次数:9
antd 上传前加提示框
js: // 规则库上传前检查格式 beforeUploadCheck = (file, fileList) => { return new Promise(function(resolve,reject){ Modal.confirm({ content: intl.get('Intl_uploa ...
分类:Web程序   时间:2020-12-01 12:04:11    阅读次数:9
【直观详解】机器学习分类器性能指标详解
【内容简介】系统详解分类器性能指标,什么是准确率-Accuracy、精确率-Precision、召回率-Recall、F1值、ROC曲线、AUC曲线、误差-Error、偏差-Bias、方差-Variance及Bias-VarianceTradeoff在任何领域,评估(Evaluation)都是一项很重要的工作。在MachineLearning领域,定义了许多概念并有很多手段进行评估工作1混淆矩阵-
分类:其他好文   时间:2020-11-30 15:15:08    阅读次数:9
UNCTF2020-WEB:ezphp(array反序列化)
源码: <?php show_source(__FILE__); $username = "admin"; $password = "password"; include("flag.php"); $data = isset($_POST['data'])? $_POST['data']: "" ; ...
分类:Web程序   时间:2020-11-25 13:04:51    阅读次数:25
RGB全彩LED——树莓派基于C语言教程
1 #include <stdio.h> 2 #include <wiringPi.h> 3 #include <softPwm.h> 4 5 const int Red_Pin = 9; 6 const int Green_Pin = 10; 7 const int Blue_Pin = 11; ...
分类:编程语言   时间:2020-11-25 12:45:11    阅读次数:8
docker创建和使用mysql
container和image是两种不同的概念,image即指存在的镜像,container指docker运行起来后image的实例。 当使用docker kill 把某个正在运行的实例kill掉之后,再次运行,会提示: Error response from daemon: Conflict. T ...
分类:数据库   时间:2020-11-21 12:09:25    阅读次数:10
大二上学期周总结
这周主要学习了EL表达式,JSTL标准标签库,以及MYSQL数据的一些基本操作,并完成了javaBean+Servlet+JSP的简单案例: 1.EL表达式:${变量名}他对于pageContext,request,session,application中保存的数据都可以取出, 相当于getAttr ...
分类:其他好文   时间:2020-11-20 11:59:07    阅读次数:7
微信分享
PHP代码: <?php$url = urldecode($_GET['url']);class JSSDK { private $appId; private $appSecret; private $url; public function __construct($appId, $appSec ...
分类:微信   时间:2020-11-19 12:02:58    阅读次数:26
6389条   上一页 1 ... 14 15 16 17 18 ... 639 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!