上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 186 下一页
摘要: C source files not allowed when not using cgo or SWIG 搜索 复制 阅读全文
posted @ 2022-09-11 08:50 papering 阅读(285) 评论(0) 推荐(0) 编辑
摘要: <2022-08-27 19:45:01>Debug: Product: DeskDict; appVer: 9.0.1.1<2022-09-10 11:34:00>Thread Exception Captured. -- Thread Exception Report -- ThreadID=3 阅读全文
posted @ 2022-09-10 11:37 papering 阅读(44) 评论(0) 推荐(0) 编辑
摘要: (历史) 1960s,大家争先在共享内存上实现原子性 (互斥) 但几乎所有的实现都是错的,直到 Dekker's Algorithm,还只能保证两个线程的互斥 阅读全文
posted @ 2022-09-09 23:18 papering 阅读(26) 评论(0) 推荐(0) 编辑
摘要: 【多处理器编程:从入门到放弃 (线程库;现代处理器和宽松内存模型) [南京大学2022操作系统-P3]】https://www.bilibili.com/video/BV13u411X72Q c printf 线程安全 go fmt 阅读全文
posted @ 2022-09-09 11:58 papering 阅读(62) 评论(0) 推荐(0) 编辑
摘要: vivo 全球商城:电商平台通用取货码设计 https://mp.weixin.qq.com/s/uCzc_mDkt2cZZkbCLGLuUQ 阅读全文
posted @ 2022-09-09 06:05 papering 阅读(57) 评论(0) 推荐(0) 编辑
摘要: // Check if the context is expired. select { default: case <-ctx.Done(): db.mu.Unlock() return nil, ctx.Err() } Go\src\database\sql\sql.go 阅读全文
posted @ 2022-09-08 18:00 papering 阅读(53) 评论(0) 推荐(0) 编辑
摘要: 问题:GRPC应用中是否必要建立连接池 实践: import ( "LabGO/utils" "fmt" "runtime" "sync" "time" "google.golang.org/grpc" "google.golang.org/grpc/encoding/gzip" ) var Con 阅读全文
posted @ 2022-09-08 17:11 papering 阅读(69) 评论(0) 推荐(0) 编辑
摘要: 小结: 传统的加密方式,虽然可以保护明文的机密性,但是加密后的数据无法继续处理,失去了可用性。而全同态加密允许密文参与计算,密文上的计算结果解密后等价于对明文的计算。 https://mp.weixin.qq.com/s/CZTCVdXf3nQxep2f1v5T3w 不明觉厉!博士小姐姐在这项涉及未 阅读全文
posted @ 2022-09-07 22:17 papering 阅读(374) 评论(0) 推荐(0) 编辑
摘要: 宽松内存模型 (Relaxed/Weak Memory Model) 宽松内存模型的目的是使单处理器的执行更高效。 x86 已经是市面上能买到的 “最强” 的内存模型了 😂 这也是 Intel 自己给自己加的包袱 看看 ARM/RISC-V 吧,根本就是个分布式系统 (x86-TSO in Har 阅读全文
posted @ 2022-09-07 13:56 papering 阅读(156) 评论(0) 推荐(0) 编辑
摘要: A Quick Guide to Go's Assembler - The Go Programming Language https://go.dev/doc/asm 汇编器 阅读全文
posted @ 2022-09-06 13:04 papering 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 小结: 1、 与 Java 的内存模型一样,C++11 的内存模型最终也是不正确的。 https://research.swtch.com/hwmm Hardware Memory Models A long time ago, when everyone wrote single-threaded 阅读全文
posted @ 2022-09-05 11:41 papering 阅读(191) 评论(0) 推荐(0) 编辑
摘要: 小结: 1、 序列化访问 Programs that modify data being simultaneously accessed by multiple goroutines must serialize such access. To serialize access, protect t 阅读全文
posted @ 2022-09-04 20:44 papering 阅读(134) 评论(0) 推荐(0) 编辑
摘要: for (int i = 0; i < 4; ++i) c 执行结果一样 for i := 0; i <N; ++i { go 不能编译 1 2 #include <stdio.h> 3 int main() 4 { 5 int i,j; 6 i++; 7 ++j; 8 } 1 .file "loo 阅读全文
posted @ 2022-09-03 10:57 papering 阅读(73) 评论(0) 推荐(0) 编辑
摘要: 说说不能说的话——敏感问题调查 https://mp.weixin.qq.com/s/q_a_1Psbbdwzqkiufm4TOQ 说说不能说的话——敏感问题调查 原创 房祥忠 统计之都 2022-09-03 08:31 发表于北京 收录于合集 #科普5个 #统计学11个 #调查1个 本文选自《中国 阅读全文
posted @ 2022-09-03 08:48 papering 阅读(115) 评论(0) 推荐(0) 编辑
摘要: 非递归版本 塔 阅读全文
posted @ 2022-09-02 23:00 papering 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 12638 2022-09-08 16:23:46.627220 103.95.254.153 10.128.1.192 TCP 60 [TCP Previous segment not captured] 50053 → 55605 [FIN, ACK] Seq=1650 Ack=446 Win= 阅读全文
posted @ 2022-09-02 18:02 papering 阅读(695) 评论(0) 推荐(0) 编辑
摘要: github.com\google\gopacket@v1.1.19\pcap\pcap_windows.go switch goroutines // waitForPacket waits for a packet or for the timeout to expire. func (p *H 阅读全文
posted @ 2022-09-01 13:39 papering 阅读(58) 评论(0) 推荐(0) 编辑
摘要: <svg id="shape" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 29 16" shape-rendering="geometricPrecision" 阅读全文
posted @ 2022-08-31 21:05 papering 阅读(100) 评论(0) 推荐(0) 编辑
摘要: 在 事件查看器 > windows日志 >应用程序 可以查看某一条的详细信息 Win+R键,然后在弹出的运行窗口中输入eventvwr并回车. 阅读全文
posted @ 2022-08-30 14:59 papering 阅读(845) 评论(0) 推荐(0) 编辑
摘要: 小结: 1、 stack allocation he space is stored on the goroutine stack. escape to the heap the Go compiler cannot determine its lifetime 垃圾回收目标:堆空间大小始终低于目标 阅读全文
posted @ 2022-08-30 11:19 papering 阅读(40) 评论(0) 推荐(0) 编辑
摘要: 常数时间国密算法(三):SM2的素域求逆技术 https://mp.weixin.qq.com/s/4dOgGKJ7bwTxsHr-xekz0Q 常数时间国密算法(三):SM2的素域求逆技术 原创 高能链 哔哩哔哩技术 2022-08-23 12:00 发表于上海 收录于合集 #B站54个 #加密算 阅读全文
posted @ 2022-08-29 14:11 papering 阅读(203) 评论(0) 推荐(0) 编辑
摘要: Golang 中反射的应用与理解 https://mp.weixin.qq.com/s/TmzV2VTfkE8of2_zuKa0gA Golang 中反射的应用与理解 原创 赵燕辉 字节跳动技术团队 2022-08-23 12:00 发表于北京 字节跳动技术团队 字节跳动的技术实践分享 231篇原创 阅读全文
posted @ 2022-08-29 09:53 papering 阅读(143) 评论(0) 推荐(0) 编辑
摘要: 抖音平台多产物代码隔离技术的实践与探索 https://mp.weixin.qq.com/s/fjeF3LLoGsPIQN4D3el67g 抖音平台多产物代码隔离技术的实践与探索 原创 郭玉鹏 字节跳动技术团队 2022-08-26 12:00 发表于北京 字节跳动技术团队 字节跳动的技术实践分享 阅读全文
posted @ 2022-08-29 09:47 papering 阅读(128) 评论(0) 推荐(0) 编辑
摘要: 小结: 1、 库存扣减使用redis,我们采取预扣库存的形式,每次从数据库申请固定步长的库存进行发放,发完再次申请 发券高并发库存扣减方案落地实践 https://mp.weixin.qq.com/s/emSihdGEocnks_-BUUjlUw 发券高并发库存扣减方案落地实践 dchl 拍码场 2 阅读全文
posted @ 2022-08-29 09:35 papering 阅读(933) 评论(0) 推荐(0) 编辑
摘要: 分拣平台API安全治理实战 https://mp.weixin.qq.com/s/2xd3EiPA1DfNa6XedFi64A 分拣平台API安全治理实战 原创 京东物流 魏晓峰 京东技术 2022-08-26 19:21 发表于北京 导读 本文主要基于京东物流的分拣业务平台在生产环境遇到的一些安全 阅读全文
posted @ 2022-08-29 09:27 papering 阅读(322) 评论(0) 推荐(0) 编辑
摘要: func solveSudoku(board [][]byte) { var line, column [9][9]bool var block [3][3][9]bool var spaces [][2]int for i, row := range board { for j, b := ran 阅读全文
posted @ 2022-08-25 21:18 papering 阅读(24) 评论(0) 推荐(0) 编辑
摘要: Replication(上):常见的复制模型&分布式系统的挑战 https://mp.weixin.qq.com/s/LB5SR4ypQwDxzueI1ai2Kg Replication(下):事务,一致性与共识 https://mp.weixin.qq.com/s/O9Z5e_BzdxKcULHi 阅读全文
posted @ 2022-08-25 20:20 papering 阅读(35) 评论(0) 推荐(0) 编辑
摘要: 单进程 var concurrenceContainerWarning sync.Map // Load returns the value stored in the map for a key, or nil if no // value is present. // The ok result 阅读全文
posted @ 2022-08-25 17:41 papering 阅读(16) 评论(0) 推荐(0) 编辑
摘要: https://baike.baidu.com/item/DSP芯片/2090266 数字信号处理傅里叶变换 1965年J.W.库利和T.W.图基首先提出离散傅里叶变换的快速算法,简称快速傅里叶变换,以FFT表示。自有了快速算法以后,离散傅里叶变换的运算次数大为减少,使数字信号处理的实现成为可能。快 阅读全文
posted @ 2022-08-25 11:51 papering 阅读(604) 评论(0) 推荐(0) 编辑
摘要: a 搜索 复制 阅读全文
posted @ 2022-08-25 10:28 papering 阅读(12) 评论(0) 推荐(0) 编辑
摘要: memory = 14261 KB 阅读全文
posted @ 2022-08-24 17:56 papering 阅读(16) 评论(0) 推荐(0) 编辑
摘要: 65535 阅读全文
posted @ 2022-08-24 16:30 papering 阅读(21) 评论(0) 推荐(0) 编辑
摘要: func mapKeyOrder() { m := map[int]struct{}{} for i := 0; i < 16; i++ { m[i] = struct{}{} } for i := 0; i < 16; i++ { l := []int{} for k := range m { l 阅读全文
posted @ 2022-08-24 14:30 papering 阅读(32) 评论(0) 推荐(0) 编辑
摘要: mysql用int做时间戳存储,最大2147483647, 大限2038年_生活有味道的博客-CSDN博客_mysql存时间戳 https://blog.csdn.net/fzlw000/article/details/124144603 阅读全文
posted @ 2022-08-23 10:10 papering 阅读(320) 评论(0) 推荐(0) 编辑
摘要: a 搜索 复制 阅读全文
posted @ 2022-08-22 23:43 papering 阅读(11) 评论(0) 推荐(0) 编辑
摘要: Go组件:context学习笔记! https://mp.weixin.qq.com/s/OCpVRwtiphFRZgu9zdae5g 阅读全文
posted @ 2022-08-22 21:23 papering 阅读(27) 评论(0) 推荐(0) 编辑
摘要: 改写日志组件 zap runtimeInfo := utils.ConcatStr(utils.ConcatInterfaceStr(utils.MemStats()), utils.Hostname(), " ", os.Getenv("USER"), utils.ConcatStr(utils. 阅读全文
posted @ 2022-08-22 19:12 papering 阅读(49) 评论(0) 推荐(0) 编辑
摘要: dial tcp 127.0.0.1:3306: connect: cannot assign requested address 阅读全文
posted @ 2022-08-22 09:43 papering 阅读(143) 评论(0) 推荐(0) 编辑
摘要: B站SRE负责人亲述 713事故后的多活容灾建设 https://mp.weixin.qq.com/s/R7MYVA_YFj2JwoFXu4oS5w 阅读全文
posted @ 2022-08-20 09:34 papering 阅读(33) 评论(0) 推荐(0) 编辑
摘要: func TimeSerie(Serie []int, Interval int) []int { if len(Serie) == 0 { return nil } abs := func(i int) int { if i < 0 { return -i } return i } ans := 阅读全文
posted @ 2022-08-18 17:45 papering 阅读(78) 评论(0) 推荐(0) 编辑
上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 186 下一页