欢迎前往CSND查看,我的博客原文 "https://blog.csdn.net/smilehappiness/article/details/105176667" @[TOC] Linux使用总结 1.Linux介绍 "摘自 百度百科" Linux,全称GNU/Linux,是一套免费使用和自由传播 ...
分类:
系统相关 时间:
2020-04-06 17:52:53
阅读次数:
112
python在安装第三方模块时候,需要将python的路径写入注册表,否则会提示 ‘python version 3.8-32 required,which was not found in the registry.’此时需要查看你的注册表 以下为检查及写入方法。 一、第一步先检查python路径 ...
分类:
编程语言 时间:
2020-04-06 11:21:47
阅读次数:
108
一,iostat所属的包: [root@centos8 ~]# whereis iostat iostat: /usr/bin/iostat /usr/share/man/man1/iostat.1.gz [root@centos8 ~]# rpm -qf /usr/bin/iostat sysst ...
分类:
移动开发 时间:
2020-04-03 20:23:39
阅读次数:
382
```public enum AudioValueEnum { Name = 0, Size = 1, Type = 2, DateModified = 3, DateCreated = 4, DateAccessed = 5, Attributes = 6, Offlinesta... ...
@property(nonatomic,readonly) UIView *superview; 获得自己的父控件对象 @property(nonatomic,readonly,copy) NSArray *subviews; 获得自己的所有子控件对象 @property(nonatomic) NS ...
分类:
其他好文 时间:
2020-04-01 00:50:15
阅读次数:
59
from FreeCAD import Base # 点坐标 V1 = Base.Vector(0,10,0) V2 = Base.Vector(30,10,0) V3 = Base.Vector(30,-10,0) V4 = Base.Vector(0,-10,0) VC1 = Base.Vect ...
分类:
其他好文 时间:
2020-03-31 21:12:27
阅读次数:
78
图像分类识别中,可以根据热力图来观察模型根据图片的哪部分决定图片属于一个分类。 以前面的Resnet50模型为例:https://www.cnblogs.com/zhengbiqing/p/11964301.html 输出模型结构为: model.summary() ________________ ...
分类:
Web程序 时间:
2020-03-29 19:37:17
阅读次数:
97
一、准备工作 https://dev.mysql.com/downloads/mysql/ 1.1 上传到指定目录,解压 tar -xvf mysql-8.0.19-linux-glibc2.12-x86_64.tar.xz 1.2 添加用户和组 [root@VM_0_3_centos mysql] ...
分类:
数据库 时间:
2020-03-28 23:42:30
阅读次数:
86
glassfish.update_connector_c_pool Update a connection pool glassfish.update_jdbc_resource Update a JDBC resource glassfish.enum_connector_resource Enu ...
分类:
其他好文 时间:
2020-03-28 21:48:37
阅读次数:
71
与: 有一个不为1就不为1 或: 有一个为1就为1 异或: 相同为0不同为1 非: 0就是1,1就是0 (单目运算) 左移: 高位丢弃,低位补0 ...
分类:
其他好文 时间:
2020-03-28 00:49:15
阅读次数:
62