Temp

7805 bookmarks
Custom sorting
DNSPod 域名检测工具 网站健康免费诊断 - WHOIS查询_网络拨测_故障排查_证书_备案 - 腾讯云 DNSPod
DNSPod 域名检测工具 网站健康免费诊断 - WHOIS查询_网络拨测_故障排查_证书_备案 - 腾讯云 DNSPod
DNSPod 提供免费域名解析自助检测工具,可一键检查域名健康状态、网站可用性。通过网站检测、故障排查、WHOIS查询、速度拨测、路由跟踪、权威递归解析、IPv6测试等功能,支持HTTP状态、Ping、80端口、443端口、网站无法访问等故障分析,快速查询SSL证书、域名污染、网站备案、工信部黑名单等信息。
·tool.dnspod.cn·
DNSPod 域名检测工具 网站健康免费诊断 - WHOIS查询_网络拨测_故障排查_证书_备案 - 腾讯云 DNSPod
Docker容器和K8s添加Health Check - Ryan.Miao - 博客园
Docker容器和K8s添加Health Check - Ryan.Miao - 博客园
docker容器启动后,怎么确认容器运行正常,怎么确认可以对外提供服务了,这就需要health check功能了。 之前对health check的功能不在意,因为只要镜像跑起来了就是健康的,如果有问
·cnblogs.com·
Docker容器和K8s添加Health Check - Ryan.Miao - 博客园
docker-compose 健康检查
docker-compose 健康检查
Docker原生健康检测机制 在docker-compose中加入healthcheckhealthcheck 支持下列选项:test:健康检查命令,例如 ["CMD", "...
·jianshu.com·
docker-compose 健康检查
CoreDNS: DNS and Service Discovery
CoreDNS: DNS and Service Discovery
Setups Here you can find a bunch of configurations for CoreDNS. All setups are done assuming you are not the root user and hence can’t start listening on port 53. We will use port 1053 instead, using the -dns.port flag. In every setup, the configuration file used is the CoreDNS' default, named Corefile. This means we don’t need to specify the configuration file with the -conf flag. In other words, we start CoreDNS with .
·coredns.io·
CoreDNS: DNS and Service Discovery
wjayesh/coredns-healthcheck: A binary and packages to perform health checks on pods and services running on Kubernetes and to remedy any failures.
wjayesh/coredns-healthcheck: A binary and packages to perform health checks on pods and services running on Kubernetes and to remedy any failures.
A binary and packages to perform health checks on pods and services running on Kubernetes and to remedy any failures. - wjayesh/coredns-healthcheck: A binary and packages to perform health checks ...
·github.com·
wjayesh/coredns-healthcheck: A binary and packages to perform health checks on pods and services running on Kubernetes and to remedy any failures.
profiler · GitHub Topics
profiler · GitHub Topics
GitHub is where people build software. More than 100 million people use GitHub to discover, fork, and contribute to over 330 million projects.
·github.com·
profiler · GitHub Topics
一口气搞懂「文件系统」,就靠这 25 张图了
一口气搞懂「文件系统」,就靠这 25 张图了
前言不多 BB,直接上「硬菜」。 正文文件系统的基本组成文件系统是操作系统中负责管理持久数据的子系统,说简单点,就是负责把用户的文件存到磁盘硬件中,因为即使计算机断电了,磁盘里的数据并不会丢失,所以可以…
·zhuanlan.zhihu.com·
一口气搞懂「文件系统」,就靠这 25 张图了
Lisa - LoRA Collection of Trauter's | Stable Diffusion LORA | Civitai
Lisa - LoRA Collection of Trauter's | Stable Diffusion LORA | Civitai
https://huggingface.co/YoungMasterFromSect/Trauter_LoRAsBig collection of Anime LoRAs that include characters from various series.Every day I try atleast to add 1 LoRA to the collection.It has guide on what LoRAs are, and how to use them.I also included images with metadata and sample prompts.Those are my personal LoRAs made with my usecase in mind. I don't guarantee that they will produce results that you are searching for.
·civitai.com·
Lisa - LoRA Collection of Trauter's | Stable Diffusion LORA | Civitai
由 shims-vue.d.ts 引发的思考 - 掘金
由 shims-vue.d.ts 引发的思考 - 掘金
由于项目近期进行 ts 迁移,作为第一个吃螃蟹的人,踩过了不少坑。迁移过程中遇到的大大小小的问题基本上都解决了,但是对于 shims-vue.d.ts 文件的命名以及其内的模块声明始终找不到比较贴切的解释。沉下心来读了些外网资料,总算是有点“豁开云雾见青天”的感觉了。此处就记录…
·juejin.cn·
由 shims-vue.d.ts 引发的思考 - 掘金
由 shims-vue.d.ts 引发的思考
由 shims-vue.d.ts 引发的思考
前言由于项目近期进行 ts 迁移,作为第一个吃螃蟹的人,踩过了不少坑。迁移过程中遇到的大大小小的问题基本上都解决了,但是对于 shims-vue.d.ts 文件的命名以及其内的模块声明始终找不到比较贴切的解释。沉下心来读了些外网资料,总算是有点“豁开云雾见青天”的感觉了。此处就记录我对于 ts 全局模块声明的一些思考以及一些 ts 项目迁移遇到的坑。
·kazehaiya.github.io·
由 shims-vue.d.ts 引发的思考
Vue3源码系列 (二) computed - 掘金
Vue3源码系列 (二) computed - 掘金
想起上次面试,被问了个古老的问题:watch和computed的区别。多少有点感慨,现在已经很少见这种耳熟能详的问题了,网络上八股文不少。今天,我更想分享一下从源码的层面来区别这八竿子打不着的两者。
·juejin.cn·
Vue3源码系列 (二) computed - 掘金
ArrayType VS Type[] in Typescript
ArrayType VS Type[] in Typescript
As far as I know a property's type can be defined in two ways when it's an Array. property_name: type where type can be either Array<string>, Array<MyType>, etc. (e.g. let prop1: Arr...
·stackoverflow.com·
ArrayType VS Type[] in Typescript
Pass data from nuxt module to plugin
Pass data from nuxt module to plugin
I am trying to pass data that I get from my module options down to a plugin. So let's say this is my module: module.exports = function (moduleOptions) { const options = { ...this.options.
·stackoverflow.com·
Pass data from nuxt module to plugin
[ 重構倒數30天,你的網站不Vue白不Vue ] :: 2021 iThome 鐵人賽
[ 重構倒數30天,你的網站不Vue白不Vue ] :: 2021 iThome 鐵人賽
將來分享如果接手的別人寫的專案或是碰到老舊的專案需要翻新的時候,該如何以 Vue 來作為主要的開發框架,重構這些項目,除了使用 Vue 以外,也有需多在舊專案製...
·ithelp.ithome.com.tw·
[ 重構倒數30天,你的網站不Vue白不Vue ] :: 2021 iThome 鐵人賽