码迷,mamicode.com
首页 >  
搜索关键字:hard disk    ( 4451个结果
python文件处理
一、文件操作 介绍 计算机系统分为:计算机硬件,操作系统,应用程序三部分。 我们用python或其他语言编写的应用程序若想要把数据永久保存下来,必须要保存于硬盘中,这就涉及到应用程序要操作硬件,众所周知,应用程序是无法直接操作硬件的,这就用到了操作系统。操作系统把复杂的硬件操作封装成简单的接口给用户 ...
分类:编程语言   时间:2020-05-31 10:45:58    阅读次数:64
【redis】无磁盘化传输
都知道在使用Redis主从复制的时候,数据传输是通过master节点启动一个进程生成RDB文件然后把这个文件通过网络传输给slave节点。 实际上主从复制传输RDB有两种方式: # 1) Disk-backed: The Redis master creates a new process that ...
分类:其他好文   时间:2020-05-30 20:02:14    阅读次数:85
Code+7 总结&题解
好不容易又遇见了一次Code+,好容易又没有拿到衣服。 实在是太菜了啊…… 彩蛋题 整个机房集思广益,一起AK…… 具体是什么就不赘述了,如果想知道的话去看gmh77的博客。 T1 很显然直接dfs,优先往字典序小的点走。 我做的是hard难度,所以当时没有做这题。于是没有代码。 T2 想到了一个相 ...
分类:其他好文   时间:2020-05-29 22:59:34    阅读次数:92
安装并初始化mariadb v10数据库
本文意在指导使用YUM来安装最新版mariadbStep1:新建repo文件touch/etc/yum.repos.d/MariaDB.repo官方源[mariadb]name=MariaDB-10.3.9baseurl=http://yum.mariadb.org/10.3.9/centos7-amd64#alternative:baseurl=http://archive.mariadb.or
分类:数据库   时间:2020-05-28 13:05:55    阅读次数:69
git版本回滚
参考 1、显示从最近到最远的提交日志 git log 或git log --pretty=oneline 2、根据 id 回退到指定的版本 git reset --hard commit-id 3、推送本地到远程仓库 git push origin HEAD --hard ps 1、 远程maste ...
分类:其他好文   时间:2020-05-27 12:23:58    阅读次数:62
5.25每日一题题解
E2 String Coloring (hard version) + 题目链接: "https://codeforces.com/problemset/problem/1296/E2" 涉及知识点: + 上升子序列/思维 solution: 首先,假如当前这个数和前面的数不同的话,那么我们可以将这 ...
分类:其他好文   时间:2020-05-25 13:58:44    阅读次数:59
jenkins回滚
大致整理了一下 1,2 是类似的 3,4是类似的 1. 以git的commitid为基准,git切到没有问题的commitid上再重新构建. 2. 给每一次构建打tag(构建后 git publisher),回滚的时候直接git reset hard tagname. 3. 构建之前备份,出问题直接 ...
分类:其他好文   时间:2020-05-25 12:11:47    阅读次数:54
关于文件结构体的使用
使用这个结构体和方法时,需要引入:<sys/types.h><sys/stat.h>struct stat这个结构体是用来描述一个linux系统文件系统中的文件属性的结构。可以有两种方法来获取一个文件的属性:1、通过路径:int stat(const char *path, struct stat ...
分类:其他好文   时间:2020-05-24 13:23:03    阅读次数:78
How to install john deere service advisor 4.2.005 on win 10 64bit
How to install john deere service advisor 4.2.005 with the February 2016 data base disks on a machine with win 10 64bit. 1/you must have enough disk s ...
分类:Windows程序   时间:2020-05-22 21:38:21    阅读次数:73
How to install john deere service advisor 4.2.005 on win 10 64bit
How to install john deere service advisor 4.2.005 with the February 2016 data base disks on a machine with win 10 64bit. 1/you must have enough disk s ...
分类:Windows程序   时间:2020-05-22 21:19:24    阅读次数:66
4451条   上一页 1 ... 17 18 19 20 21 ... 446 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!