The Unique MST Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 30194 Accepted: 10809 Description Given a connected undirected graph, tell i ...
分类:
其他好文 时间:
2020-06-24 21:33:23
阅读次数:
67
const express = require('express') const app = express() app.use(express.static('./dist')) app.listen(8081, () => { console.log('server running... at ...
分类:
其他好文 时间:
2020-06-24 11:55:17
阅读次数:
50
1. Compute the response time and turnaround time when running three jobs of length 200 with the SJF and FIFO schedulers. 没区别, 响应时间 周转时间 等待时间 1 0 200 0 ...
分类:
其他好文 时间:
2020-06-24 00:07:01
阅读次数:
83
template.j2 模板 {{ansible_facts.hostname}}:{{ansible_default_ipv4.address}} This system's total memory is: {{ ansible_memtotal_mb }}MBs. The current fr ...
分类:
其他好文 时间:
2020-06-23 19:45:22
阅读次数:
71
一、协程是什么? 协程是程序自己控制挂起和恢复的程序。 协程可以实现多任务协作执行。 二、协程作用? 协程可以让异步代码同步化。 协程可以降低异步程序的设计复杂度。 三、协程分类 按调用栈分类: 有栈协程:每个协程都会分配一个单独调用栈,类似于线程的调用栈。 无栈协程:协程不会分配一个单独调用栈,挂 ...
分类:
其他好文 时间:
2020-06-23 18:41:54
阅读次数:
71
1.系统常用检查命令 1 磁盘 df -h 2 内存 free -m 3 负载 top 4 5 [hadoop@bigdata ~]$ free -m 6 total used free shared buff/cache available 7 Mem: 7823 222 6229 257 137 ...
分类:
系统相关 时间:
2020-06-23 15:37:42
阅读次数:
82
基于上篇文档安装主节点:安装kubenet-dashboard发现会报错kubectlapply-fhttp://mirror.faasx.com/kubernetes/dashboard/master/src/deploy/recommended/kubernetes-dashboard.yamled/kubernetes-dashboard.yaml可以先下载这个dashboard.yamlw
分类:
其他好文 时间:
2020-06-23 15:11:25
阅读次数:
59
SELECT TOP 10 execution_count as [Number Of Executions],total_worker_time/execution_count as [Average CPU Time],total_elapsed_time/execution_count as ...
分类:
数据库 时间:
2020-06-23 11:38:09
阅读次数:
93
(我们以删除 php-fpm 这个镜像为例子) 一、查看镜像的 ID [root@localhost ~]# docker images REPOSITORY TAG IMAGE ID CREATED SIZE docker.io/redis latest 36304d3b4540 3 weeks ...
分类:
其他好文 时间:
2020-06-22 10:47:45
阅读次数:
52
package Date20200622; public class TortoiseHareRace { public static void main(String[] args) { int total = 10; int tortoiseStep = 0; int hareStep = 0; ...
分类:
编程语言 时间:
2020-06-22 10:43:52
阅读次数:
59