书栈网 · BookStack 本次搜索耗时 0.038 秒,为您找到 10458 个相关结果.
  • Concurrency

    Concurrency Write a test Write enough code to make it pass A quick aside into a parallel(ism) universe… … and we’re back. Channels Wrapping up Make it fast Concurrency Y...
  • Go 设计模式

    Go 设计模式 单例模式(Singleton) Go 设计模式 单例模式(Singleton) package main import ( "fmt" "sync" ) /* go 单例模式: 1. 使用 lock,为了并发安全,使用 lock + double check ...
  • 连续栈

    1396 2018-04-11 《深入解析Go》
    3.5 连续栈 基本原理 实现过程 具体细节 如何捕获到函数的栈空间不足 旧栈数据复制到新栈 小结 3.5 连续栈 Go语言支持goroutine,每个goroutine需要能够运行,所以它们都有自己的栈。假如每个goroutine分配固定栈大小并且不能增长,太小则会导致溢出,太大又会浪费空间,无法存在许多的goroutine。 为了解...
  • 描述 scheduler 的初始化过程

    调整 SP 初始化 g0 栈 主线程绑定 m0 初始化 m0 初始化 allp 参考资料 上一节我们说完了 GPM 结构体,这一讲,我们来研究 Go sheduler 结构体,以及整个调度器的初始化过程。 Go scheduler 在源码中的结构体为 schedt ,保存调度器的状态信息、全局的可运行 G 队列等。源码如下: // 保存调度...
  • The GCCGO plugin

    The GCCGO plugin How it works Why not use plain Go? Building the plugin The first app uwsgi.gox Shared libraries VS monolithic binaries Goroutines Options uWSGI API Notes ...
  • Concurrency

    699 2020-01-18 《Learning Go v2.0》
    Concurrency Concurrency Parallelism is about performance. Concurrency is about program design. ** Google I/O 2010 – Rob Pike In this chapter we will show off Go’s abil...
  • runtime/debug

    package debug Overview Index Package files version: 1.10 package debug import "runtime/debug" Overview Package debug contains facilities for programs to debug themsel...
  • 故障诊断和分析

    JuiceFS 故障诊断和分析 错误日志 访问日志 运行时信息 注意 注意 JuiceFS 故障诊断和分析 错误日志 当 JuiceFS 通过 -d 选项在后台运行时,日志会输出到系统日志和 /var/log/juicefs.log (v0.15+,参见 --log 选项 )。取决于你使用的操作系统,你可以通过不同的命令获取日志: # ...
  • 退出码

    2236 2018-05-03 《理解Linux进程》
    退出码 示例程序 运行结果 使用退出码 退出码 任何进程退出时,都会留下退出码,操作系统根据退出码可以知道进程是否正常运行。 退出码是0到255的整数,通常0表示正常退出,其他数字表示不同的错误。 示例程序 package main func main () { panic ( "Call panic()" ) ...
  • High Performance Parameter Server Design

    High Performance Parameter Server Design Motivation Communication Computation Tensor Math library Scheduling Conclusion Reference High Performance Parameter Server Desig...