Description HostAgent fails to establish SSH Connection to RedHat EL7 hostThe error reported when the agent attempts to connect to the host matches th ...
分类:
系统相关 时间:
2020-06-18 19:16:06
阅读次数:
459
1、定义节点类、设置节点、遍历输出 class Node{ private String data; private Node next; public Node(String data){ this.data = data; } public String getData(){ return th ...
分类:
编程语言 时间:
2020-06-18 13:25:00
阅读次数:
52
Given the array candies and the integer extraCandies, where candies[i] represents the number of candies that the ith kid has. For each kid check if th ...
分类:
其他好文 时间:
2020-06-18 13:17:39
阅读次数:
65
bootstraptable通过数据属性或javascript以表格格式显示数据 通过数据属性(把数据写死) <table data-toggle="table"> <thead> <tr> <th>Item ID</th> <th>Item Name</th> <th>Item Price</th ...
分类:
编程语言 时间:
2020-06-17 01:13:40
阅读次数:
58
在router.js的配置文件中 添加如下代码: const originalPush = VueRouter.prototype.pushVueRouter.prototype.push = function push(location) { return originalPush.call(th ...
分类:
其他好文 时间:
2020-06-15 17:22:55
阅读次数:
106
1 2 int main(void) 3 { 4 int a=1; 5 char *pp; 6 void *p=&a; 7 p++; 8 p+=a; 9 pp=(char *)p; 10 pp+=a; 11 //(char *)p +=a; 12 } (char *)p +=a; 会报左值错误 Th ...
分类:
其他好文 时间:
2020-06-15 11:58:51
阅读次数:
48
1.更新现有idea版本,查看版本号 2.进入插件中心,搜索chinese,根据版本选择下载 3.下载完成之后可以直接拖动文件到打开的idea中,也可以使用使用File > Settings > Plugins > 安装本地插件包,重启,然后就可以使用了 插件中心地址 https://plugins ...
分类:
其他好文 时间:
2020-06-13 17:33:00
阅读次数:
391
哎,入职了一家规模超级大的公司,在某一领域世界第一,并且 “ We're not a Chinese company ” 呃,继续吧,体验其实挺不好的。 我真的很想努力,但是队伍带不起来就是带不起来, 各个都是老大哥,年轻点的都是35岁的,我算是小一辈的, 各个都是架构师,主管介绍的时候这么说的,我 ...
分类:
其他好文 时间:
2020-06-13 00:30:44
阅读次数:
80
相信好多程序员在码墙的过程中遇到取模(%)和取余(/)的算法,但是就我而言总没搞清楚这两者的关系,再次抽个时间baba: 话不多说,先看看这两者的概念把,百度百科的解释: 取模运算(“Modulus Operation”)和取余运算(“Remainder Operation ”)两个概念有重叠的部分 ...
分类:
编程语言 时间:
2020-06-12 00:36:27
阅读次数:
246
新建脚本,并命名为welcome.sh,将如下内容写入脚本中。#!/bin/bashchmod ugo+x welcome.shcd ~sudo apt-get updatesudo apt-get install cowsaysudo apt-get install fortunegit clon ...
分类:
系统相关 时间:
2020-06-11 20:03:56
阅读次数:
118