上一页 1 ··· 31 32 33 34 35 36 37 38 39 ··· 69 下一页
摘要: ⒈TypeScript简介 1.JavaScript的超集 2.支持ECMAScript6标准,并支持输出ECMAScript3/5/6标准的纯JavaScript代码 3.支持ECMAScript未来提案中的特性,比如异步功能和装饰器 4.支持类型系统且拥有类型推断 5.支持运行在任何浏览器、No 阅读全文
posted @ 2019-11-08 21:45 SpringCore 阅读(265) 评论(0) 推荐(0)
摘要: using System; using System.Collections.Generic; using System.Data; using System.IO; using System.Linq; using System.Security.Cryptography; using System.Text; namespace TJCFinanceWriteOff.BizLogic.Co... 阅读全文
posted @ 2019-10-29 09:56 SpringCore 阅读(706) 评论(0) 推荐(0)
摘要: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace TJCFinanceWriteOff.BizLogic.Common { /// /// C#金额大写转小写 /// ... 阅读全文
posted @ 2019-10-29 09:54 SpringCore 阅读(270) 评论(0) 推荐(0)
摘要: 1 using System; 2 using System.Collections.Generic; 3 using System.Text; 4 5 namespace TJCFinanceWriteOff.BizLogic.Common 6 { 7 public class UnixTimeUtil 8 { 9 /// 10 ... 阅读全文
posted @ 2019-10-29 09:54 SpringCore 阅读(449) 评论(0) 推荐(0)
摘要: 1 using (Bitmap bmp = new Bitmap(scanImgPath)) 2 { 3 Bitmap bitmap = new Bitmap(bmp.Width, bmp.Height, PixelFormat.Format16bppRgb555); 4 using (Graphics draw = Graphics.FromImage(bitmap)) 5 { 6 draw.D 阅读全文
posted @ 2019-10-29 09:52 SpringCore 阅读(3061) 评论(0) 推荐(0)
摘要: using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.Data; using System.Reflection; using System.Text; namespace TJCFinanceWriteOff.BizLog... 阅读全文
posted @ 2019-10-14 14:45 SpringCore 阅读(996) 评论(0) 推荐(0)
摘要: 对于k8s传统的svc来说 它仅支持4层代理,如果遇到7层代理的话,是没有办法去实现的 k8s官方在1.11中推出了ingress api接口,通过ingress达到7层代理的效果 对于ingress来说,必须要绑定一个域名,因为它是基于7层代理的 资料信息 Ingress-Nginx github 阅读全文
posted @ 2019-09-29 17:51 SpringCore 阅读(1308) 评论(0) 推荐(0)
摘要: ⒈介绍 kubernetes 通过标签选择的方式来匹配一组pod,然后提供对外访问的一种机制 一组pod可以对应到多个svc的 每一个service(svc)都可以理解为一个微服务 Service有且只有一个算法 RB 轮询, Service能够提供负载均衡的能力,但是在使用上有以下限制: ·只提供 阅读全文
posted @ 2019-09-24 16:28 SpringCore 阅读(8848) 评论(0) 推荐(1)
摘要: ⒈DaemonSet介绍,什么是DaemonSet DaemonSet 确保全部(或者一些)Node 上运行一个Pod的副本【注意主节点并不会参加调度】。当有 Node 加入集群时,也会为他们新增一个Pod。当有Node从集群移除时,这些Pod 也会被回收。删除DaemonSet将会删除它创建的所有 阅读全文
posted @ 2019-09-24 13:47 SpringCore 阅读(636) 评论(0) 推荐(0)
摘要: 1.ReplicationController和ReplicaSet介绍 RC(ReplicationController)主要的作用就是用来确保容器应用的副本数始终保持在用户定义的副本数。即如果有容器异常退出,会自动创建新的Pod来替代;而如果异常多出来的容器也会自动回收Kubernetes 官方 阅读全文
posted @ 2019-09-23 17:31 SpringCore 阅读(1602) 评论(0) 推荐(0)
上一页 1 ··· 31 32 33 34 35 36 37 38 39 ··· 69 下一页