码迷,mamicode.com
首页 >  
搜索关键字:datafile os header    ( 149959个结果
element-ui 常用属性el-table
:header-cell-style="{textAlign: 'center'}" //表头居中:cell-style="{ textAlign: 'center' }" //内容居中 :show-overflow-tooltip="true" //超出省略号 fit //内容展开 ...
分类:其他好文   时间:2021-06-09 10:34:01    阅读次数:0
5 - CentOS system configuration before k8s installation
Prerequisites: Node OS IP k8s-master CentOS7 192.168.137.161 k8s-node1 CentOS7 192.168.137.162 Now we have 2 working CentOS virtual machine, which can ...
分类:其他好文   时间:2021-06-08 23:40:34    阅读次数:0
多进程的调用(multiprocessing.Process)
import multiprocessing, time, os# def pro(name):# print('hello', name, time.ctime())## if __name__ == '__main__':# l = []# for t in range(4):# t = mul ...
分类:系统相关   时间:2021-06-08 23:20:39    阅读次数:0
给没有列名的dataframe加上列名
test_data = pd.read_csv('news_data.csv', encoding='utf8',header=None) test_data.columns=['id','content'] print(test_data) 主要就是header=None 以及columns ...
分类:其他好文   时间:2021-06-08 22:50:08    阅读次数:0
python解压zip文件
@staticmethoddef unzip_file(failed_file): zip_file = zipfile.ZipFile(failed_file) print(zip_file) if os.path.isdir(failed_file[0:-20]): pass else: os. ...
分类:编程语言   时间:2021-06-07 20:42:48    阅读次数:0
Django_静态文件
# # Django_静态文件夹的配置 # settings文件夹配置内容 # # STATIC_URL = '/static/' #别名,引用名 为了后端的更改不会影响前端的引入,避免造成前端大量修改 # STATICFILES_DIRS = ( # os.path.join(BASE_DIR," ...
分类:其他好文   时间:2021-06-07 20:39:36    阅读次数:0
Docker镜像分层解密--Docker layer
Docker和传统虚拟机相比,有轻量化,灵活,但是安全性隔离性更差的特点。 这个轻量化,灵活,平常我们从整个应用层面上讲,因为Docker把底层的OS给下线了,只保留应用需要的库和组件,所以从隔离机制来讲,安全性也更差。那我们有没有更深入的理解呢,当然是有的。 Docker的所有镜像包(Image) ...
分类:其他好文   时间:2021-06-07 20:18:48    阅读次数:0
Cortex-M3 处理器
Cortex-M3 系列处理器是基于 ARMv7-M 架构的处理器,应用非常广泛,为了能够深入的分析在此平台上跑 RTOS 的各种细节,所以有必要写一篇关于 CM3 处理器的结构相关的文章(CM4 类似),在 OS 调度初始化、系统调用、进程调度等方面的细节均是和具体处理器息息相关,所以先让我们来看 ...
分类:其他好文   时间:2021-06-07 20:06:56    阅读次数:0
QDrag
Header: #include <QDrag>qmake: QT += gui Public Functions QDrag(QObject *dragSource)virtual ~QDrag()Qt::DropAction defaultAction() constQPixmap dragCu ...
分类:其他好文   时间:2021-06-07 20:00:17    阅读次数:0
Ncurses(三)- 使用颜色
Ncurses(三)- 使用颜色 检查颜色可用 在使用颜色之前,你需要知道你的终端是否支持颜色显示,你可以通过以下if检测: if (has_colors() == FALSE) { endwin(); printf("Your terminal does not support color\n") ...
分类:其他好文   时间:2021-06-06 19:23:46    阅读次数:0
149959条   上一页 1 ... 7 8 9 10 11 ... 14996 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!