apache httpd-2.4.46.tar.gz部署环境 Linux6.5 依赖包: apr-1.6.3.tar.gz apr-util-1.5.2.tar.gz 先部署apr 1、tar -xf apr-1.6.3.tar.gz cd apr-1.6.3 ./configure --prefi ...
分类:
Web程序 时间:
2021-05-24 01:51:31
阅读次数:
0
目录: 1、 TaskContext上下文结构体定义 2、任务栈相关函数 3、任务进入退出函数 4、小结 继续分析鸿蒙轻内核源码,我们本文开始要分析下任务及任务调度模块。首先,我们介绍下任务栈的基础概念。任务栈是高地址向低地址生长的递减栈,栈指针指向即将入栈的元素位置。初始化后未使用过的栈空间初始化 ...
分类:
其他好文 时间:
2021-05-24 01:42:24
阅读次数:
0
当程序中有复合赋值运算符时,不同类型的数据会进行强制转换,比如下面例子:byte b += 2,是把int类型数据强制转换成byte,然后在进行赋值操作的! public class AssignOperator { public static void main(String[] args) { ...
分类:
编程语言 时间:
2021-05-24 00:59:35
阅读次数:
0
? 前面已经提到,pytest和unittest是兼容的,但是它也有不兼容的地方,比如ddt数据驱动,测试夹具fixtures(即setup、teardown)这些功能在pytest中都不能使用了,因为pytest已经不再继承unittest了。 ? 不使用ddt数据驱动那pytest是如何实现参数 ...
分类:
其他好文 时间:
2021-05-24 00:35:30
阅读次数:
0
问题描述 vue-admin项目中使用了/deep/后启动项目报错: ERROR Failed to compile with 1 errors 20:27:22 error in ./src/nzk/components/themeEditor/layout/components/tree-sel ...
分类:
其他好文 时间:
2021-05-24 00:16:28
阅读次数:
0
from sklearn.metrics import classification_report y_true=[0,1,2,2,2]#真值 y_pred=[0,0,2,2,1]#预测结果 print(classification_report(y_true,y_pred)) ...
分类:
其他好文 时间:
2021-05-23 23:39:17
阅读次数:
0
use MustGoHome; --公司注册 if exists(select * from Sysobjects where name='usp_CompanyRegister') drop procedure usp_CompanyRegister; go create procedure us ...
分类:
数据库 时间:
2021-05-23 23:17:14
阅读次数:
0
新加一个功能,写法上最好是从下往上写 1.dao层添加一个接口 package dao; import org.apache.ibatis.annotations.Param; import pojo.Books; import java.util.List; public interface Bo ...
分类:
其他好文 时间:
2021-05-23 23:05:04
阅读次数:
0
一、下载 tomcat下载链接:https://tomcat.apache.org/ 1、进入tomcat官网后,选择需要下载的版本。我使用的是tomcat9,所以在这我选择tomcat9 2、选择zip(pgp,sha2,sha512)进行下载,下载zip的好处就是不用安装 ,直接下载解压就可以使 ...
分类:
其他好文 时间:
2021-05-20 17:49:52
阅读次数:
0
DolphinScheduler之最美好的遇见 主人翁介绍 hello,大家好,我是郭强,目前是Apache DolphinScheduler的Commiter。擅长大数据olap、大数据调度、RPC开发等。目前专注于大数据领域核心技术研发。 我也是一名开源爱好者,我要讲的是我从起始给 Dolphi ...
分类:
其他好文 时间:
2021-05-04 16:34:22
阅读次数:
0