新建一个gitlab,用于提交代码,然后git bash。 A20331@A200331R MINGW64 /d/workspace/gitlab (master)$ git clone git@10.240.1.140:tools-dev-team/ecusimulatorrecorder.git ...
分类:
其他好文 时间:
2021-01-22 11:59:10
阅读次数:
0
用户空间和内核空间 ? 学习Linux时,经常可以看到两个词:User space(用户空间)可 Kernel space(内容空间) 简单的锁,Kernel space是Linux内核的运行空间,User space 是用户程序的运行空间。为了安全,它们是隔离的。即使用户的程序崩溃了,内核也不受影 ...
分类:
其他好文 时间:
2021-01-22 11:51:06
阅读次数:
0
vue 绑定style :style="{'padding-left':index==0?'22px':''} 1 <label v-for="(item,keyName,index) in ENUM.transportType" :style="{'padding-left':index==0?' ...
分类:
其他好文 时间:
2021-01-22 11:43:38
阅读次数:
0
Given an increasing sequence S of N integers, the median is the number at the middle position. For example, the median of S1 = { 11, 12, 13, 14 } is 1 ...
分类:
其他好文 时间:
2021-01-21 10:52:05
阅读次数:
0
下载mysql8.0rpm安装包 wget https://dev.mysql.com/get/mysql80-community-release-el7-1.noarch.rpm 安装yum repo文件 rpm -ivh mysql80-community-release-el7-11.noar ...
分类:
数据库 时间:
2021-01-21 10:51:08
阅读次数:
0
1. 导出: SQL> exp \'sys/oracle@erp as sysdba \' owner=SCOTT file=/u01/app/oracle/backup/exp_scott.dmp log=/u01/app/oracle/backup/exp_scott.log; 导出SCOTT用 ...
分类:
其他好文 时间:
2021-01-21 10:50:05
阅读次数:
0
工欲善其事必先利其器。 有了这些快捷键加持,你写代码不仅很6而且还很好看。 这些快捷键都是平时使用频率非常高的,今天整理出来分享给大家了。 左缩进:Cmd + [ 右缩进:Cmd + ] 代码格式化/自动排版:Ctrl + i 局部折叠(折叠一个函数):Command+Option+Left/Rig ...
分类:
其他好文 时间:
2021-01-21 10:46:17
阅读次数:
0
现在有一块12T的磁盘,需要分成三个区作为OpenStack的存储目录,分别为: /dev/sda1(6T):作为Nova实例存放目录/var/lib/nova/instances /dev/sda2(4T):存放Cinder数据卷存放分区 /dev/sda3(2T):作为Swift对象存储使用分区 ...
分类:
系统相关 时间:
2021-01-21 10:44:15
阅读次数:
0
#include <iostream> #include <vector> #include <algorithm> using namespace std; //原理:动态规划法 //到达每个阶梯都有一个理论上的最小体力minCost,按照minCost[i] = min(minCost[i-2] ...
分类:
其他好文 时间:
2021-01-19 12:19:43
阅读次数:
0
很多时候我们需要手动为Linux 服务器配置地址或者是浮动地址,下面介绍ip、ifconfig 两个命令分别如何添加和删除IP地址。 ip命令添加和删除浮动ip ip add add 192.168.10.202/26 dev enp4s0f0 //添加ip或vip ip add del 192.1 ...
分类:
系统相关 时间:
2021-01-19 12:14:53
阅读次数:
0