https://zh-hans.reactjs.org/docs/react-component.html ...
分类:
其他好文 时间:
2020-06-29 22:50:39
阅读次数:
61
https://docs.microsoft.com/en-us/aspnet/core/fundamentals/servers/kestrel?view=aspnetcore-3.1 主要特性: 支持 https 在 nginx 后面的时候,可以用 Unix socket 提高性能 http/2 ...
分类:
Web程序 时间:
2020-06-29 22:36:10
阅读次数:
85
语义分割与数据集 Semantic Segmentation and the Dataset 在目标检测问题中,我们只使用矩形边界框来标记和预测图像中的对象。在这一节中,我们将对不同的语义区域进行语义分割。这些语义区域在像素级标记和预测对象。图1显示了一个语义分割的图像,区域标记为“dog”、“ca ...
分类:
其他好文 时间:
2020-06-29 20:16:05
阅读次数:
73
runtime 调度器是个非常有用的东西,关于 runtime 包几个方法: Gosched:让当前线程让出 cpu 以让其它线程运行,它不会挂起当前线程,因此当前线程未来会继续执行 NumCPU:返回当前系统的 CPU 核数量 GOMAXPROCS:设置最大的可同时使用的 CPU 核数 Goexi ...
分类:
其他好文 时间:
2020-06-29 18:27:15
阅读次数:
65
1、问题现象 [root@master35 scripts]# ./list_pod.sh | grep imis imis-866d46c464-nvz4b 0/1 ContainerCreating 0 3m <none> node149 发现有的pod无法启动,刚开始describe查了下原因 ...
分类:
Web程序 时间:
2020-06-29 17:18:13
阅读次数:
116
pg9.6 或 pg10 在Windows Server 2012 R2 DataCenter 中使用。 使用如下建库语句,建库时 CREATE DATABASE upmap WITH OWNER = postgres ENCODING = 'UTF8' LC_COLLATE = 'Chinese ...
分类:
编程语言 时间:
2020-06-29 15:32:01
阅读次数:
407
搭建php-fpm apache nginx 环境 docker-compose.yml文件 networks: net: driver: bridge ipam: config: - subnet: 192.138.0.0/16 services: apache: container_name: ...
分类:
其他好文 时间:
2020-06-28 18:24:12
阅读次数:
69
from fastapi import FastAPI app = FastAPI() @app.get("/") def read_root(): return {"Hello": "World"} @app.get("/items/{item_id}") def read_item(item_i ...
对于RocketMQ而言,感觉官方提供的东西还是可以的:https://github.com/apache/rocketmq/tree/master/docs/cn ...
分类:
其他好文 时间:
2020-06-27 11:37:28
阅读次数:
45
序列化 如何对 JSON 进行序列化和反序列化 如何从 Newtonsoft.Json(也就是json.net) 迁移到 System.Text.Json ...