上一页 1 2 3 4 5 6 7 8 9 10 ··· 40 下一页
摘要: var url = "http://wthrcdn.etouch.cn/WeatherApi?city=" + HttpUtility.UrlDecode(city); var client = this.httpClientFactory.CreateClient(nameof(HttpClien 阅读全文
posted @ 2021-08-02 14:00 b̶i̶n̶g̶.̶ 阅读(50) 评论(0) 推荐(0) 编辑
摘要: 1.可在创建Task时将一个CancellationToken传给构造器,从而将两者相关联,如果CancellationToken在Task调度前取消,那么Task就会被取消,永远都不执行。 2.但如果Task已调度,那么Task的代码就只支持显示取消,其操作才能在执行期间取消,遗憾的是,虽然Tas 阅读全文
posted @ 2021-07-31 11:55 b̶i̶n̶g̶.̶ 阅读(368) 评论(0) 推荐(0) 编辑
摘要: var args = argsBuild.ToString(); var ffmpegProcess = new Process(); ffmpegProcess.StartInfo.FileName = Cmd; ffmpegProcess.StartInfo.Arguments = args; 阅读全文
posted @ 2021-07-27 17:08 b̶i̶n̶g̶.̶ 阅读(146) 评论(0) 推荐(0) 编辑
摘要: 在选择第一项时,按Tab键,UEFI的是按E键,将 Mlinuz initrd=initrd.img inst.stage2=hd:LABEL=CentOS\* rd.live.check quiet 更换为 vmlinuz initrd=initrd.img inst.stage2=hd:/dev 阅读全文
posted @ 2021-07-27 12:17 b̶i̶n̶g̶.̶ 阅读(129) 评论(0) 推荐(0) 编辑
摘要: public static void Main(string[] args) { CultureInfo.DefaultThreadCurrentCulture = new CultureInfo("zh-CN", true) { DateTimeFormat = { ShortDatePatter 阅读全文
posted @ 2021-07-01 11:45 b̶i̶n̶g̶.̶ 阅读(109) 评论(0) 推荐(0) 编辑
摘要: https://www.kancloud.cn/aligame/hp-socket/724212 阅读全文
posted @ 2021-06-25 12:53 b̶i̶n̶g̶.̶ 阅读(26) 评论(0) 推荐(0) 编辑
摘要: 一、术语 1.容器 很多用户在接触Docker 之初都会认为容器就是一种轻量级的虚拟机,但实际上,容器和虚拟机有非常大的区别。从根本形态上来看,容器其实就是运行在操作系统上的一个进程,只不过加入了对资源的隔离和限制。 2.镜像 容器是一个动态的概念,而镜像是一个相对静止的概念。简单来说,镜像就是容器 阅读全文
posted @ 2021-06-18 17:57 b̶i̶n̶g̶.̶ 阅读(72) 评论(0) 推荐(0) 编辑
摘要: 1.当使用Docker For Window,且不使用VMware时,请以管理员身份运行PowerShell,并输入 命令: bcdedit /set hypervisorlaunchtype auto 2.当需要WMware而不是用Docker For WIndow时,请以管理员身份运行Power 阅读全文
posted @ 2021-06-18 13:05 b̶i̶n̶g̶.̶ 阅读(103) 评论(0) 推荐(0) 编辑
摘要: curl -L https://github.com/docker/compose/releases/download/1.29.2/docker-compose-`uname -s`-`uname -m` -o /usr/local/bin/docker-compose chmod +x /usr 阅读全文
posted @ 2021-06-18 09:48 b̶i̶n̶g̶.̶ 阅读(46) 评论(0) 推荐(0) 编辑
摘要: <PackageReference Include="BouncyCastle.NetCore" Version="1.8.8" /> 一、后端 public static class RSASignatureEncrypterHelp { /// <summary> /// 生成PEM格式的公钥和 阅读全文
posted @ 2021-06-17 11:36 b̶i̶n̶g̶.̶ 阅读(97) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 40 下一页