首页
学习
活动
专区
圈层
工具
发布
    • 综合排序
    • 最热优先
    • 最新优先
    时间不限
  • 来自专栏繁依Fanyi 的专栏

    Documentation

    Documentation General Process Flow(一般流程) An agent receives information from the server which it processes Documentation about the skill description language, as well as some example kicking skills using the More Documentation(更多文档) More information about the UT Austin Villa agent, including a fairly comprehensive

    38910编辑于 2023-05-07
  • 来自专栏增长技术

    ffmpeg Documentation

    | | | | | input | demuxer | encoded data | decoder | file | ———> | packets | —–+ |__| |____| | v ____ | | | decoded | | frames | |__| ___ ______ | | | | | | | output | <——– | encoded data | <—-+ | file | muxer | packets | encoder |__| |______| ffmpeg的调用了libavformat库(含分流器)来读取输入文件并获得含有从他们编码的数据包。 当有多个输入文件,ffmpeg试图保持同步通过在任何活动的输入流跟踪最低的时间戳。 编码的数据包然后被传递到解码器(除非复制音频流被选择用于流,见进一步的说明)。解码器产生的未 压缩帧(原始视频/PCM音频/…),它可以进一步通过过滤进行处理(见下一节)。过滤后,这些帧被传递到 编码器,其编码它们并输出编码的数据包。最后这些被传递到复用器,并写入编码数据包到输出文件。

    1.2K10发布于 2018-09-06
  • 来自专栏后端码事

    Azkaban 2.5 Documentation

    Installation of MySQL DB won't be covered by these instructions, but you can access the instructions on MySQL Documentation

    3K10发布于 2020-09-11
  • 来自专栏WTSolutions

    JSON to Excel Documentation

    JSON to Excel Documentation Note: This documentation could be updated at any time, visit https: //json-to-excel.wtsolutions.cn for the latest documentation.

    20200编辑于 2025-03-06
  • 来自专栏佳爷的后花媛

    gitbookGitBook Toolchain Documentation

    GitBook Toolchain Documentation This document aims to be a comprehensive guide to GitBook. It contains the full documentation for version {{ book.version }}. This documentation has been generated using GitBook. Contribute to this documentation You can contribute to improve this documentation on GitHub by signaling

    37420发布于 2018-09-12
  • 来自专栏WTSolutions

    Excel to JSON API by WTSolution Documentation

    Excel to JSON API by WTSolution Documentation Introduction The Excel to JSON API provides a simple way

    15200编辑于 2025-07-13
  • 来自专栏WTSolutions

    Excel to JSON MCP by WTSolutions Documentation

    Excel to JSON MCP by WTSolutions Documentation Introduction The Excel to JSON MCP (Model Context Protocol Donation https://buymeacoffee.com/wtsolutions Documentation https://s.wtsolutions.cn/excel-to-json-mcp.html

    23410编辑于 2025-07-24
  • 来自专栏云计算与大数据

    linux kernel Documentation filesystems overlayfs

    Please see MAINTAINERS file for where to send questions.

    2.7K30发布于 2019-01-23
  • 来自专栏黑光技术

    Apache Flink 1.6 Documentation: Jobs and Scheduling

    Flink中的执行资源是通过任务执行槽来确定的。每个TaskManager有一个或者多个任务执行槽,每个可以运行一个并行任务的流水线。每个流水线包含多个连续的任务,像N次的MapFunction的并行实例跟一个ReduceFunction的n次并行实例。注意Flink经常同时执行多个连续的任务:对数据流程序来说都会这样,但是对于批处理程序来只是频繁发生。

    80820发布于 2019-03-06
  • 来自专栏程序手艺人

    git push Please read the documentation and contact an administrator

    remote: To push into this reference you need 'Push' rights. remote: User: xxx remote: Please read the documentation

    2.2K20发布于 2019-02-21
  • 来自专栏数据小冰

    Go语言中常见100问题-#15 Missing code documentation

    文档(代码注释)是编码的一个重要方面,它可以降低客户端使用API的复杂度,也有助于项目维护。在Go语言中,我们应该遵循一些规则使得我们的代码更地道。下面一起来看看这些规则。

    45210编辑于 2022-12-18
  • 来自专栏机器人课程与技术

    Win10Ubuntu20.04编译ros2_documentation-foxy过程

    C:\ros_ws>cd ros2_documentation-foxy C:\ros_ws\ros2_documentation-foxy>make html 'make' is not recognized C:\ros_ws\ros2_documentation-foxy>mingw32-make html 'mingw32-make' is not recognized as an internal or C:\ros_ws\ros2_documentation-foxy>mingw32-make html Makefile:13: recipe for target 'html' failed mingw32 -make: *** [html] Error 9009 C:\ros_ws\ros2_documentation-foxy>mingw32-make html Makefile:13: recipe zhangrelay@s2:/media/zhangrelay/96F0DD30F0DD1779/ros_ws/ros2_documentation-foxy$ pip3 install sphinx

    71910发布于 2021-12-02
  • 来自专栏韩曙亮的移动开发专栏

    【Linux 内核】Linux 内核源码目录说明 ① ( arch 目录 | block 目录 | certs 目录 | crypto 目录 | Documentation 目录 )

    文章目录 一、arch 目录 二、block 目录 三、certs 目录 四、crypto 目录 五、Documentation 目录 在上一篇博客 【Linux 内核】Linux 内核源码结构 ( 下载 certs 目录 ---- certs 目录中存储了 认证 和 签名 相关代码 ; 四、crypto 目录 ---- crypto 目录中存储了 内核中常用的 加密 , 压缩 等算法 相关代码 ; 五、Documentation 目录 ---- Documentation 目录中存储了 内核中常用的 协议规范 , 功能模块 相关代码 ;

    15.8K30编辑于 2023-03-30
  • Where is the kernel documentation?; Ubuntu 上如何安装 linux 内核文档;fedora 上如何安装linux内核文档?

    linux内核文档对我们很重要,我们可以在linux系统中安装,并及时查看: 参考链接:https://askubuntu.com/questions/841043/where-is-the-kernel-documentation In CentOS I can do yum install kernel-doc and then read /usr/share/doc/kernel-doc/Documentation/filesystems

    1.9K10发布于 2020-12-30
  • 来自专栏技术杂记

    Ruby on Rails 基础(4)

    ri documentation for thread_safe-0.3.5 Parsing documentation for tzinfo-1.2.2 Installing ri documentation documentation for activesupport-4.2.6 Installing ri documentation for activesupport-4.2.6 Parsing documentation documentation for erubis-2.7.0 Parsing documentation for builder-3.2.2 Installing ri documentation for documentation for thor-0.19.1 Installing ri documentation for thor-0.19.1 Parsing documentation for documentation for mail-2.6.4 Parsing documentation for actionmailer-4.2.6 Installing ri documentation

    2.2K10发布于 2021-11-25
  • 来自专栏陈满iOS

    CocoaPods与Ruby安装,配置,及使用详细记录(Mac环境)

    documentation for claide-1.0.2 Parsing documentation for CFPropertyList-2.3.5 Installing ri documentation documentation for nap-1.1.0 Installing ri documentation for nap-1.1.0 Parsing documentation for molinillo Parsing documentation for netrc-0.7.8 Installing ri documentation for netrc-0.7.8 Parsing documentation documentation for fuzzy_match-2.0.4 Installing ri documentation for fuzzy_match-2.0.4 Parsing documentation documentation for i18n-0.8.4 Parsing documentation for activesupport-4.2.9 Installing ri documentation

    2.2K30发布于 2018-09-10
  • 来自专栏Java日常

    xsd 自定义list 实现

    >多条RecordSet多条RecordSet</xs:documentation> </xs:annotation> </xs:element> >对方开户行全称 60位对方开户行全称 60位</xs:documentation> </xs:annotation> </xs:element> >对方开户行行号 20位对方开户行行号 20位</xs:documentation> </xs:annotation> </xs:element> >发生金额 13位 无小数点单位为分发生金额 13位 无小数点单位为分</xs:documentation> </xs:annotation> < >转账后余额 13位 无小数点单位为分转账后余额 13位 无小数点单位为分</xs:documentation> </xs:annotation>

    92820发布于 2020-12-25
  • 来自专栏大壮

    如何安装和使用cocoapods来集成第三方库(实战篇) 配置初始项目 2.cocoapods的使用

    for cocoapods-core-0.38.2 Installing ri documentation for cocoapods-core-0.38.2 Parsing documentation for claide-0.9.1 Installing ri documentation for claide-0.9.1 Parsing documentation for xcodeproj- 0.26.3 Installing ri documentation for xcodeproj-0.26.3 Parsing documentation for cocoapods-downloader -0.5.3 Installing ri documentation for cocoapods-stats-0.5.3 Parsing documentation for cocoapods-try -0.4.5 Installing ri documentation for cocoapods-try-0.4.5 Parsing documentation for cocoapods-trunk

    94640发布于 2018-06-19
  • 来自专栏技术杂记

    etcd 基础1

    / etcd-v2.2.4-linux-amd64/Documentation/runtime-configuration.md etcd-v2.2.4-linux-amd64/Documentation /admin_guide.md etcd-v2.2.4-linux-amd64/Documentation/tuning.md etcd-v2.2.4-linux-amd64/Documentation etcd-v2.2.4-linux-amd64/Documentation/errorcode.md etcd-v2.2.4-linux-amd64/Documentation/metrics.md -linux-amd64/Documentation/backward_compatibility.md etcd-v2.2.4-linux-amd64/Documentation/platforms/ etcd-v2.2.4-linux-amd64/Documentation/other_apis.md etcd-v2.2.4-linux-amd64/Documentation/benchmarks

    30320编辑于 2022-01-20
  • 来自专栏Objective-C

    iOS-安装和使用 CocoaPods

    -1.1.0 Parsing documentation for nap-1.1.0 Installing ri documentation for nap-1.1.0 Parsing documentation ri documentation for escape-0.0.4 Parsing documentation for cocoapods-try-1.1.0 Installing ri documentation documentation for tzinfo-1.2.3 Installing ri documentation for tzinfo-1.2.3 Parsing documentation ri documentation for cocoapods-stats-1.0.0 Parsing documentation for netrc-0.7.8 Installing ri documentation documentation for xcodeproj-1.5.2 Parsing documentation for escape-0.0.4 Installing ri documentation

    4.4K70发布于 2018-05-10
领券