严富坤的知识库专栏 本次搜索耗时 0.023 秒,为您找到 539 个相关结果.
  • 深入理解操作系统的进程

    2121 2024-10-12 《操作系统原理》
    一、进程是对系统资源的抽象 二、进程的并发运行与交错执行 三、上下文切换的过程与步骤 1. 保存当前进程的上下文(状态) 2. 调用调度器(Scheduler) 3. 加载新进程的上下文(状态) 4. 切换内核栈和用户栈(如果需要) 5. 恢复执行 四、上下文切换的注意事项 五、引发上下文切换的原因 六、总结 参考资料 一、进程...
  • 版本库管理

    2120 2025-02-05 《Git知识大全》
    14.1 谈谈服务器 14.2 发布版本库 14.2.1 带访问控制的版本库 14.2.2 分权限名读取访问的版本库 14.2.3 分权限名写入权限的版本库 14.2.4 在 GitHub 上发布版本库 14.3 有关发布版本库的建议 14.4 版本库结构 14.4.1 共享的版本库结构 14.4.2 分布式版本库结构 14.4.3 版本库...
  • 提交

    2102 2025-02-05 《Git知识大全》
    7.1 原子变更集 7.1.1 提交的基本操作 7.2 识别提交 7.2.1 绝对提交名 7.2.2 引用和符号引用 7.2.3 相对提交名 7.3 提交历史记录 7.3.1 查看旧提交 7.3.2 提交图 7.3.3 提交范围 7.4 查找提交 7.4.1 使用 git bisect 7.4.2 使用 git blame 7.4.3...
  • 备忘录模式

    2101 2024-09-12 《设计模式》
    Question 1: What is the Memento pattern in software design? 问题 1:什么是软件设计中的备忘录模式? Answer: The Memento pattern is a behavioral design pattern that allows an object to capture an...
  • 深入解析 LangChain 的“深层代理”概念

    2100 2025-08-04 《Langgraph教程》
    原文链接 引言 浅层代理的局限 深层代理(deep agents)的特性 深层代理的优势 LangChain 的深层代理包 结论 总结 原文链接 Deep Agents - LangChain Blog 引言 使用语言模型(LLM)在循环中调用工具是最简单的代理形式。然而,这种架构可能会导致代理“浅层”,无法处理较长时间跨度或复...
  • 中介模式

    2091 2024-09-12 《设计模式》
    Question 1: What is the Mediator pattern in software design? 问题 1:什么是软件设计中的中介模式? Answer: The Mediator pattern is a behavioral design pattern that defines an object (the mediat...
  • 状态模式

    2090 2024-09-12 《设计模式》
    Question 1: What is the State pattern in software design? 问题 1:什么是软件设计中的状态模式? Answer: The State pattern is a behavioral design pattern that allows an object to change its beha...
  • 原型模式

    2083 2024-09-12 《设计模式》
    Question 1: What is the Prototype pattern in software design? 问题 1:什么是软件设计中的原型模式? Answer: The Prototype pattern is a creational design pattern that allows objects to be copied...
  • 组件与VNode是一一对应的吗?

    一、组件与 VNode 的关系 1. 组件生成 VNode 树 2. 一个组件对应一个 VNode 吗? 3. 组件与 VNode 的对应关系 二、组件树与 VNode 树的区别 1. 组件树 2. VNode 树 3. 两者的关系 三、示例说明 1. 组件代码示例 2. 组件树 3. VNode 树 4. 分析 四、结论 五、补...
  • 装饰器模式

    2080 2024-09-12 《设计模式》
    Question 1: What is the Decorator pattern in software design? 问题 1:什么是软件设计中的装饰器模式? Answer: The Decorator pattern is a structural design pattern that allows behavior to be adde...