docker-centos7运行systemctl status jenkins, 出现/etc/rc.d/init.d/jenkins: line 59: /etc/init.d/functions: No such file or directory错误, yum安装即可 yum install ...
分类:
其他好文 时间:
2021-06-02 15:14:11
阅读次数:
0
一.Mark down学习 1.标题名 ctrl+1 一级标题 ctrl+2 二级标题 …………………… …………………… 一直能到 六级标题 2.字体 加粗ctrl+B 加斜ctrl+l 删除线 Alt +shift+5 引用 > 加 空格 分割线 三个减号 截图 可以 从本地找 也可以在网页上 ...
分类:
其他好文 时间:
2021-06-02 15:08:22
阅读次数:
0
export命令对外接口是有名称的且import命令从模块导入的变量名与被导入模块对外接口的名称相同,而export default命令对外输出的变量名可以是任意的,并且这时import命令后面,不使用大括号。(解构)export default命令用于指定模块的默认输出。显然,一个模块只能有一个默 ...
分类:
其他好文 时间:
2021-06-02 15:05:44
阅读次数:
0
jQuery 获取jQuery 公式:$(selector).action() jQuery(选择器).事件() <!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>Title</title><!-- 导入在线cdn ...
分类:
Web程序 时间:
2021-06-02 14:55:16
阅读次数:
0
How Long Does It Take Given the relations of all the activities of a project, you are supposed to find the earliest completion time of the project. In ...
分类:
其他好文 时间:
2021-06-02 14:53:07
阅读次数:
0
下载,解压rabbitmq-c源码 wget -c https://github.com/alanxz/rabbitmq-c/archive/v0.9.0.tar.gz tar -zxvf v0.9.0.tar.gz 配置,编译,安装 cd rabbitmq-c-0.9.0/ mkdir build ...
分类:
Web程序 时间:
2021-06-02 14:50:02
阅读次数:
0
--create directory create directory dump_dir as '/splex/dump'; grant read,write on directory dump_dir to public; --export full database schema expdp u ...
分类:
数据库 时间:
2021-06-02 14:24:07
阅读次数:
0
R的引用(在R中输入citation()) R Core Team (2020). R: A language and environment for statistical computing. R Foundation for Statistical Computing, Vienna, Aus ...
分类:
其他好文 时间:
2021-06-02 14:13:11
阅读次数:
0
本文是篇WPF Shape的入门文章 Shape 首先看看shape的继承链关系: 一个Shape具有哪些重要属性: 属性 说明 DefiningGeometry 默认的几何形状 RenderedGeometry 最终渲染后呈现的几何形状 Stroke 绘制的形状轮廓加上画刷(颜色) StrokeT ...
#include <stdio.h> const int N=3; int main() { int a[N] = {1, 2, 3}; int i; printf("通过数组名和下标直接访问数组元素:\n"); for(i=0; i<N; i++) printf("%d: %d\n", &a[i] ...
分类:
其他好文 时间:
2021-06-02 13:43:42
阅读次数:
0