以上是代码 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApplication ...
分类:
编程语言 时间:
2020-03-05 00:49:21
阅读次数:
87
参考: https://docs.microsoft.com/zh-cn/dotnet/api/system.threading.tasks.task?view=netframework-4.8#definition “Task 类表示不返回值并且通常以异步方式执行的单个操作” 来自参考的示例代码: ...
传送门:https://abc091.contest.atcoder.jp/tasks/arc092_a?lang=en 题目:On a two-dimensional plane, there are N red points and N blue points. The coordinates ...
分类:
其他好文 时间:
2020-03-01 20:17:00
阅读次数:
104
包含 动态包含 变量包含 角色 ROLE 角色定义 角色依赖 例子包含使用include模块来包含foo文件tasks: - include: foo.yml--- foo.yml- name: test foo command: echo fooinclude 还允许传递变量- include: ... ...
分类:
其他好文 时间:
2020-02-25 13:13:42
阅读次数:
91
using System; using System.Collections.Generic; using System.Data; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks ...
分类:
其他好文 时间:
2020-02-23 19:50:00
阅读次数:
63
一、引言 我们先来看下面的一个小示例:一个Winfrom程序,界面上有一个按钮,有两个异步方法,点击按钮调用两个异步方法,弹出执行顺序,代码如下: using System; using System.Threading; using System.Threading.Tasks; using Sy ...
分类:
其他好文 时间:
2020-02-22 00:08:50
阅读次数:
55
题目链接:https://atcoder.jp/contests/abc155/tasks/abc155_f 题目大意 分析 代码如下 ...
分类:
其他好文 时间:
2020-02-21 09:55:50
阅读次数:
61
题目链接:https://atcoder.jp/contests/abc155/tasks/abc155_d 题目大意 给定$N$个整数$A_1, A_2, \dots, A_N$, 求集合$S = \{A_i * A_j | 1 \leq i, j \leq N 且 i \neq j\}$的第$K ...
分类:
其他好文 时间:
2020-02-21 09:15:47
阅读次数:
75
简单使用 安装celery及redis 定义celery任务 项目下新建tasks.py from celery import Celery # 创建一个Celery类的实例对象 app = Celery('celery_task.tasks', broker='redis://127.0.0.1: ...
分类:
其他好文 时间:
2020-02-20 00:20:27
阅读次数:
114
1,编写mariadb.yaml文件 [root@c7-4-mh02 ansible]# vim mariadb.yaml - hosts: mariadb remote_user: root tasks: - name: install mariadb yum: name=mariadb-serv ...
分类:
数据库 时间:
2020-02-19 15:25:49
阅读次数:
150