上一页 1 ··· 24 25 26 27 28 29 30 31 32 ··· 184 下一页
摘要: https://leetcode.cn/problems/partition-labels/ 阅读全文
posted @ 2022-05-18 07:49 papering 阅读(19) 评论(0) 推荐(0) 编辑
摘要: Lecture 10 - Heap Operations: Insert and Delete https://webdocs.cs.ualberta.ca/~holte/T26/heap-ops.html 阅读全文
posted @ 2022-05-18 07:48 papering 阅读(20) 评论(0) 推荐(0) 编辑
摘要: Semaphores in Process Synchronization - GeeksforGeeks https://www.geeksforgeeks.org/semaphores-in-process-synchronization/ 系列文章 阅读全文
posted @ 2022-05-18 07:47 papering 阅读(15) 评论(0) 推荐(0) 编辑
摘要: Cigarette smokers problem - Wikipedia https://en.wikipedia.org/wiki/Cigarette_smokers_problem 阅读全文
posted @ 2022-05-18 07:47 papering 阅读(13) 评论(0) 推荐(0) 编辑
摘要: Completely Fair Scheduler - Wikipedia https://en.wikipedia.org/wiki/Completely_Fair_Scheduler https://zh.wikipedia.org/wiki/完全公平排程器 Inside the Linux 2 阅读全文
posted @ 2022-05-17 10:13 papering 阅读(227) 评论(0) 推荐(0) 编辑
摘要: a 搜索 复制 阅读全文
posted @ 2022-05-16 20:29 papering 阅读(11) 评论(0) 推荐(0) 编辑
摘要: https://leetcode.cn/problems/M1oyTv/ 阅读全文
posted @ 2022-05-16 20:15 papering 阅读(32) 评论(0) 推荐(0) 编辑
摘要: https://leetcode.cn/problems/RQku0D/ 阅读全文
posted @ 2022-05-16 20:08 papering 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 源码 //go:nosplit 阅读全文
posted @ 2022-05-16 20:07 papering 阅读(60) 评论(0) 推荐(0) 编辑
摘要: https://go.dev/doc/faq#atomic_maps 阅读全文
posted @ 2022-05-16 20:07 papering 阅读(13) 评论(0) 推荐(0) 编辑
摘要: Pointers vs. Values https://go.dev/doc/effective_go#pointers_vs_values 阅读全文
posted @ 2022-05-16 20:06 papering 阅读(12) 评论(0) 推荐(0) 编辑
摘要: https://leetcode.cn/problems/subarray-sum-equals-k/ 阅读全文
posted @ 2022-05-15 09:52 papering 阅读(41) 评论(0) 推荐(0) 编辑
摘要: https://leetcode.cn/problems/non-overlapping-intervals/ 阅读全文
posted @ 2022-05-14 15:08 papering 阅读(19) 评论(0) 推荐(0) 编辑
摘要: https://leetcode.cn/problems/search-a-2d-matrix-ii/ 阅读全文
posted @ 2022-05-14 14:52 papering 阅读(30) 评论(0) 推荐(0) 编辑
摘要: 图片存储格式之一,由JPEG格式衍生而来,后缀为".jfif"。 阅读全文
posted @ 2022-05-14 08:51 papering 阅读(288) 评论(0) 推荐(0) 编辑
摘要: [u@VM-12-11-centos asm-generic]$ cat /proc/version Linux version 4.18.0-305.10.2.el8_4.x86_64 (mockbuild@kbuilder.bsys.centos.org) (gcc version 8.4.1 阅读全文
posted @ 2022-05-14 00:19 papering 阅读(1376) 评论(0) 推荐(0) 编辑
摘要: https://mp.weixin.qq.com/s/i2jA817fXK7TxyA3lLP22A nil 接口不是 nil 我们强行将一段 Go 程序的变量值赋为 nil,并进行 nil 与 nil 的判断。 代码如下: func main() { var v interface{} v = (* 阅读全文
posted @ 2022-05-13 23:06 papering 阅读(61) 评论(0) 推荐(0) 编辑
摘要: a 翻译 搜索 复制 阅读全文
posted @ 2022-05-13 22:04 papering 阅读(36) 评论(0) 推荐(0) 编辑
摘要: https://mp.weixin.qq.com/s/SmHT6NswqsmZDKKKTjUHgw 反射式DLL注入实现 _DriverEntry 看雪学苑 2022-05-13 17:59 收录于合集#“雪花”创作激励计划63个 本文为看雪论坛优秀文章看雪论坛作者ID:_DriverEntry 一 阅读全文
posted @ 2022-05-13 18:08 papering 阅读(278) 评论(0) 推荐(0) 编辑
摘要: Content-Disposition https://cloud.tencent.com/document/product/436/30740 如何使文件直接在浏览器中预览,而不是下载? 您需要为该文件指定正确的 Content-Type 头部,同时 Content-Disposition 的参数 阅读全文
posted @ 2022-05-13 16:40 papering 阅读(352) 评论(0) 推荐(0) 编辑
摘要: 小结: 1、 type Any interface { } v1 := new(Any) err = json.Unmarshal([]byte(bs1), &v1) V interface{} resp.V = v1 package presentationLayer import ( "Test 阅读全文
posted @ 2022-05-13 12:54 papering 阅读(61) 评论(0) 推荐(0) 编辑
摘要: 实践: 1、 import "encoding/json" func mapVstruct2jsonMarshal() { t := struct { A string B int32 C bool }{"a", 123, true} m := map[string]interface{}{ "A" 阅读全文
posted @ 2022-05-13 12:34 papering 阅读(45) 评论(0) 推荐(0) 编辑
摘要: int-->string strconv.Itoa(i) []byte-->string ... 阅读全文
posted @ 2022-05-13 11:16 papering 阅读(25) 评论(0) 推荐(0) 编辑
摘要: https://leetcode.cn/problems/sort-colors/solution/yan-se-fen-lei-by-leetcode-solution/ 阅读全文
posted @ 2022-05-13 00:39 papering 阅读(55) 评论(0) 推荐(0) 编辑
摘要: https://leetcode.cn/problems/aseY1I/solution/ 阅读全文
posted @ 2022-05-13 00:27 papering 阅读(34) 评论(0) 推荐(0) 编辑
摘要: https://leetcode.cn/problems/WGki4K/solution/zhi-chu-xian-yi-ci-de-shu-zi-by-leetcode-0vrt/ 阅读全文
posted @ 2022-05-13 00:16 papering 阅读(95) 评论(0) 推荐(0) 编辑
摘要: 记一次Redis数据库配置导致的连接数泄露的问题 - SegmentFault 思否 https://segmentfault.com/a/1190000013253988 记一次Redis数据库配置导致的连接数泄露的问题 Martin91发布于 2018-02-10 问题背景 去年圣诞节当天,突然 阅读全文
posted @ 2022-05-12 17:35 papering 阅读(108) 评论(0) 推荐(0) 编辑
摘要: 标准化思想及组装式架构在后端BFF中的实践 - 美团技术团队 https://tech.meituan.com/2022/04/28/composable-architecture-in-bff-2022.html 1. 前言 在本地生活服务领域,面向C端的信息展示类功能存在着类生物系统的复杂性,具 阅读全文
posted @ 2022-05-12 09:13 papering 阅读(86) 评论(0) 推荐(0) 编辑
摘要: https://mp.weixin.qq.com/s/HdP5NcQIdzfznGwcHLTvMw 无锁队列的几种实现及其性能对比 原创 腾讯程序员 腾讯技术工程 2022-05-11 18:00 发表于广东 作者:juliatliu,腾讯 PCG 运营开发工程师 一、无锁队列用在什么样的场景? 当 阅读全文
posted @ 2022-05-11 20:17 papering 阅读(193) 评论(0) 推荐(0) 编辑
摘要: https://mp.weixin.qq.com/s/XvmQQ1_EtXKTm8J0k3K63Q 阅读全文
posted @ 2022-05-11 20:17 papering 阅读(57) 评论(0) 推荐(0) 编辑
摘要: https://mp.weixin.qq.com/s/ddpi0r3Q5uonLljX1dtq2g 阅读全文
posted @ 2022-05-11 20:16 papering 阅读(37) 评论(0) 推荐(0) 编辑
摘要: https://leetcode.cn/problems/w3tCBm/solution/qian-n-ge-shu-zi-er-jin-zhi-zhong-1-de-g-fkjq/ 阅读全文
posted @ 2022-05-11 20:15 papering 阅读(30) 评论(0) 推荐(0) 编辑
摘要: https://leetcode.cn/problems/xoh6Oh/solution/zheng-shu-chu-fa-by-leetcode-solution-3572/ 阅读全文
posted @ 2022-05-11 20:11 papering 阅读(24) 评论(0) 推荐(0) 编辑
摘要: https://leetcode.cn/problems/majority-element/ 阅读全文
posted @ 2022-05-11 19:54 papering 阅读(21) 评论(0) 推荐(0) 编辑
摘要: Go 高性能编程技法 - 知乎 https://zhuanlan.zhihu.com/p/482547957 1.1 优先使用 strconv 而不是 fmt 基本数据类型与字符串之间的转换,优先使用 strconv 而不是 fmt,因为前者性能更佳。 // Bad for i := 0; i < 阅读全文
posted @ 2022-05-11 11:19 papering 阅读(78) 评论(0) 推荐(0) 编辑
摘要: Linux系统目录数和文件数限制 - 走看看 http://t.zoukankan.com/zt007-p-6639322.html Linux系统目录数和文件数限制 对于系统管理员来说,了解系统的一些限制是非常有必要的,这样可以根据需要进行必要的参数配置和调整,进而实现更优的性能,对于系统设计人员 阅读全文
posted @ 2022-05-11 10:22 papering 阅读(1185) 评论(0) 推荐(0) 编辑
摘要: 最全HTTP安全响应头设置指南_语言 & 开发_Charlie Belmer_InfoQ精选文章 https://www.infoq.cn/article/SHlQeOJDEfSx*P5Cjg1s 阅读全文
posted @ 2022-05-10 13:32 papering 阅读(111) 评论(0) 推荐(0) 编辑
摘要: 实践: 1、 w.Header().Set("Content-Type", "application/json;charset=UTF-8") // X-Content-Type-Options: nosniff 防嗅探 w.Header().Set("X-Content-Type-Options" 阅读全文
posted @ 2022-05-10 13:26 papering 阅读(430) 评论(0) 推荐(0) 编辑
摘要: Language Guide (proto3) | Protocol Buffers | Google Developers https://developers.google.cn/protocol-buffers/docs/proto3?hl=zh-cn#simple Scalar Value 阅读全文
posted @ 2022-05-10 09:32 papering 阅读(42) 评论(0) 推荐(0) 编辑
摘要: 广告素材优选算法在内容营销中的应用实践 https://mp.weixin.qq.com/s?__biz=MzI1MzYzMjE0MQ==&mid=2247493271&idx=1&sn=6f87fd1f2f308c6296c8d58f8a072961&chksm=e9d32d75dea4a463f 阅读全文
posted @ 2022-05-10 09:30 papering 阅读(67) 评论(0) 推荐(0) 编辑
上一页 1 ··· 24 25 26 27 28 29 30 31 32 ··· 184 下一页