书栈网 · BookStack 本次搜索耗时 0.022 秒,为您找到 4467 个相关结果.
  • 拉取请求

    拉取请求 One Time Setup Fork 工作流程 审查者指南 提示 拉取请求 This page describes the tools used for code contribution and review. Reviews are a key measure to assure changes are of a good ...
  • 9. PHP Socket初探—-先从一个简单的socket服务器开始

    1888 2020-02-05 《PHP进阶教程》
    socket的中文名字叫做套接字,这种东西就是对TCP/IP的“封装”。现实中的网络实际上只有四层而已,从上至下分别是应用层、传输层、网络层、数据链路层。最常用的http协议则是属于应用层的协议,而socket,可以简单粗暴的理解为是传输层的一种东西。如果还是很难理解,那再粗暴地点儿tcp://218.221.11.23:9999,看到没?这就是一个tcp ...
  • Pull Requests

    Pull Requests One Time Setup Fork 工作流程 Guidelines for Reviewers 末级 Pull Requests This page describes the tools used for code contribution and review. Reviews are a key mea...
  • Pull Requests

    82 2024-06-27 《Blender 4.1 Manual》
    Pull Requests One Time Setup Fork Workflow Guidelines for Reviewers Tips Pull Requests This page describes the tools used for code contribution and review. Reviews are a k...
  • 3. 进程控制

    3. 进程控制 3.1. fork函数 3.2. exec函数 3.3. wait和waitpid函数 习题 3. 进程控制 3.1. fork函数 #include <sys/types.h> #include <unistd.h>   pid_t fork ( void ); fork 调用失败则返回-1,调用...
  • Parallel Gateway

    Camunda Extensions Additional Resources Gateways can also be used to model concurrency in a process. The most straightforward gateway to introduce concurrency in a process model...
  • 8.18

    8.18 c +-------+---------+ | "0" exit "2" | c ...
  • 代码贡献

    412 2022-03-10 《Loggie v1.0 教程》
    代码贡献 代码/文档贡献流程 1. 创建本地工程 fork代码 clone到本地 2. 本地开发 add upstream create branch 提交代码 3. 创建PR 提交至Github 寻求Merge 代码贡献 Note 如果你: 有新的想法 提交Feature Bug report/fix 贡献文档 Help ...
  • Releasing a new version of ks

    Releasing a new version of ks Install and configure goreleaser Tag a release Create and clone fork of ksonnet/homebrew-tap Update your fork of ksonnet/homebrew-tap Copy and ...
  • Copy On Write

    1210 2018-05-03 《理解Linux进程》
    写时复制(Copy On Write) 写时复制(Copy On Write) 一般我们运行程序都是Fork一个进程后马上执行Exec加载程序,而Fork的时候实际上用的是父进程的堆栈空间,Linux通过Copy On Write技术极大地减少了Fork的开销。 Copy On Write的含义是只有真正写的时候才把数据写到子进程,Fork时只会把...