官方链接:https://kubernetes.io/zh/docs/tasks/inject data application/environment variable expose pod information/ ...
分类:
其他好文 时间:
2020-01-25 23:29:01
阅读次数:
419
C# 控制台应用 实现 2048游戏 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Game ...
import djcelery from datetime import timedelta djcelery.setup_loader() CELERY_QUEUES = { 'beat_tasks':{ 'exchange':'beat_tasks', 'exchange_type':'dire ...
分类:
其他好文 时间:
2020-01-23 09:49:33
阅读次数:
169
题目链接 https://atcoder.jp/contests/agc033/tasks/agc033_c 题解 终于会做点最简单的博弈论了…… 首先题目中操作的含义就是选定一个点,把所有不是这个点的叶子删掉(如果这个点不是叶子就删所有叶子)。 对于任何一棵点数不少于$3$的树,一定存在一个点(比 ...
分类:
其他好文 时间:
2020-01-22 11:16:11
阅读次数:
99
Remote procedure call (RPC)What This Tutorial Focuses OnIn the second tutorial we learned how to use Work Queues to distribute time-consuming tasks am... ...
分类:
其他好文 时间:
2020-01-20 00:26:29
阅读次数:
98
https://atcoder.jp/contests/abc151/tasks/abc151_e 题意:给你n个数,从中任意选出k个数作为一组,求出任意组合的最大值-最小值之和。 解法:排序,前缀和和后缀和,组合规律。 #include<stdio.h> #include<string.h> #i ...
分类:
其他好文 时间:
2020-01-14 09:44:06
阅读次数:
100
上次我们讲到了集合。说到集合,那往往少不了循环。今天我们说下什么是并行循环 Parallel.For,Paraller.Foreach (System.Threading.Tasks) 相信大家对此都不陌生。 long sum = 0; Parallel.For(0, MaxValue, (i) = ...
分类:
其他好文 时间:
2020-01-12 22:06:28
阅读次数:
123
替换为 markdown it 今天在迁移博客项目的时候,发现原来在 hugo 中可以使用的 Emoji 和 tasks 功能都不能正常使用了,查询了一下原因,主要是因为 hexo 默认的解析器是 ,这个默认的渲染器是不支持 emoji 功能的,但是支持 tasks,但是这个渲染器是不支持扩展的,所 ...
分类:
其他好文 时间:
2020-01-12 00:32:06
阅读次数:
106
runplat的作用在调度性能分析这块十分的重要,其作用是主要检测一个tasks从运行队列中到运行需要等待的时延。 老样子,先从help说起: ./runqlat -m 5 3 以每5秒的形式时延情况,一共线上三次 ./runqlat -mp 4505 1 仅显示pid为4505的时延,并且每1毫秒 ...
分类:
其他好文 时间:
2020-01-11 09:16:56
阅读次数:
83
1.DelegateCommand.cs 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 u ...