摘要:
using System; using System.Collections; using System.Collections.Generic; using UnityEngine; using System.IO; using System.Diagnostics; public class E 阅读全文
摘要:
一、将读取Excel文件放到Plugins文件下,并添加组件 二、相关代码 using System; using System.Collections; using System.Collections.Generic; using UnityEngine; using System.Data; 阅读全文
摘要:
一、简介 Scheduler 是 kubernetes 的调度器,主要的任务是把定义的 pod 分配到集群的节点上。听起来非常简单,但有很多要考虑的问题: ① 公平:如何保证每个节点都能被分配资源 ② 资源高效利用:集群所有资源最大化被使用 ③ 效率:调度的性能要好,能够尽快地对大批量的 pod 完 阅读全文