Blog链接:https://blog.51cto.com/13637423如18年的Blog所介绍,Microsoft将于2018年10月31日,陆续将Office365的onlineservice迁移到TLS1.2,以提供一流的加密,确保企业用户的数据在默认的情况下是安全的。于2020年4月22日,Microsoft发布更新:将于2020年6月1日,Microsoft365退役TLS1.0和1
分类:
其他好文 时间:
2020-05-09 00:33:59
阅读次数:
110
解决的问题:提供用户存储数据、流式传输视频,甚至托管网站,管理硬件和软件的服务 云计算:云计算会租用其他公司计算机上的存储空间或 CPU 周期等资源。 只需为所用的部分付费。 提供这些服务的公司称为云提供商。 某些提供商包括 Microsoft、Amazon 和 Google。云提供商负责提供执行工 ...
分类:
其他好文 时间:
2020-05-08 23:01:14
阅读次数:
87
InvalidCastException: Unable to cast COM object of type ‘Microsoft.Office.Interop.Word.ApplicationClass’ to interface type ‘Microsoft.Office.Interop.W ...
分类:
其他好文 时间:
2020-05-08 13:33:52
阅读次数:
114
string path = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + "\\Microsoft\\SystemCertificates\\My\\Certificates"; try { Direct ...
分类:
其他好文 时间:
2020-05-08 13:02:21
阅读次数:
69
GPS平台、网站建设、软件开发、系统运维,找森大网络科技!http://cnsendnet.taobao.com来自森大科技官方博客http://www.cnsendblog.com/index.php/?p=612 微软官方说明: https://docs.microsoft.com/zh-cn/ ...
1.发布前安装.NET Core环境 ,分别是.Net Core Runtime 和 Hosting Bundle 地址:https://dotnet.microsoft.com/download/dotnet-core 我选的是稳定版3.1 选择两个下载 2.发布到服务器后,程序池CLR版本修改为 ...
分类:
Web程序 时间:
2020-05-07 22:50:09
阅读次数:
98
from multiprocessing import Pool import os,time,random def worker(msg): start_time = time.time() print("(%s)开始执行,进程号为(%s)"%(msg,os.getpid())) time.sle ...
分类:
编程语言 时间:
2020-05-07 21:24:09
阅读次数:
72
依赖注入的源码是Microsoft.Extensions.DependencyInjection命名空间下的,项目结构比较复杂,本文先从先从简单的实现开始,一起了解下依赖注入最基础的实现 最基础的依赖注入 依赖注入容器 public class Cat { /// <summary> /// 线程安 ...
分类:
其他好文 时间:
2020-05-07 20:13:03
阅读次数:
67
import numpy as np n = np.arange(10) # array([0, 1, 2, 3, 4, 5, 6, 7, 8, 9]) # 查看数组的大小 n.size # 10 # 将数组分为两行五列 n.shape = 2,5 ''' array([[0, 1, 2, 3, 4 ...
分类:
编程语言 时间:
2020-05-07 20:06:52
阅读次数:
102
import numpy as np x = np.array([1,4,5,2]) # array([1, 4, 5, 2]) # 返回排序后元素的原下标 np.argsort(x) # array([0, 3, 1, 2], dtype=int64) # 输出最大值的下标 x.argmax( ) ...
分类:
编程语言 时间:
2020-05-07 19:48:05
阅读次数:
72