摘要: 阅读全文
posted @ 2019-04-17 17:20 Lyk_timmf 阅读(75) 评论(0) 推荐(0) 编辑
摘要: 我们大学使用的素数判定方法: bool ISprime(int x) { if(x<=1) //特殊情况判定 return false; for(int i = 2 ; i <= sqrt(x) ; ++i) { if(x%i == 0) return false; //不是素数 } return 阅读全文
posted @ 2019-04-17 17:13 Lyk_timmf 阅读(160) 评论(0) 推荐(0) 编辑
摘要: 问题描述:pods状态一直处于ContainerCreating 解决方案: (1)若没有/etc/rhsm,则下载,命令为#yum install *rhsm* (2)之后输入命令,#docker pull registry.access.redhat.com/rhel7/pod-infrastr 阅读全文
posted @ 2019-04-17 16:43 Lyk_timmf 阅读(238) 评论(0) 推荐(0) 编辑
摘要: 1.问题描述: 创建mysql.rc.yaml 执行kubectl create -f mysql.yaml 执行成功。 执行kubectl get rc 反馈正常 执行kubectl get pods .显示 : No resources found 2.解决方案 (1)#vi /etc/kube 阅读全文
posted @ 2019-04-17 00:20 Lyk_timmf 阅读(3493) 评论(0) 推荐(0) 编辑