积分充值
 首页
前端开发
AngularDartElectronFlutterHTML/CSSJavaScriptReactSvelteTypeScriptVue.js构建工具
后端开发
.NetC#C++C语言DenoffmpegGoIdrisJavaJuliaKotlinLeanMakefilenimNode.jsPascalPHPPythonRISC-VRubyRustSwiftUML其它语言区块链开发测试微服务敏捷开发架构设计汇编语言
数据库
Apache DorisApache HBaseCassandraClickHouseFirebirdGreenplumMongoDBMySQLPieCloudDBPostgreSQLRedisSQLSQLiteTiDBVitess数据库中间件数据库工具数据库设计
系统运维
AndroidDevOpshttpdJenkinsLinuxPrometheusTraefikZabbix存储网络与安全
云计算&大数据
Apache APISIXApache FlinkApache KarafApache KyuubiApache OzonedaprDockerHadoopHarborIstioKubernetesOpenShiftPandasrancherRocketMQServerlessService MeshVirtualBoxVMWare云原生CNCF机器学习边缘计算
综合其他
BlenderGIMPKiCadKritaWeblate产品与服务人工智能亿图数据可视化版本控制笔试面试
文库资料
前端
AngularAnt DesignBabelBootstrapChart.jsCSS3EchartsElectronHighchartsHTML/CSSHTML5JavaScriptJerryScriptJestReactSassTypeScriptVue前端工具小程序
后端
.NETApacheC/C++C#CMakeCrystalDartDenoDjangoDubboErlangFastifyFlaskGinGoGoFrameGuzzleIrisJavaJuliaLispLLVMLuaMatplotlibMicronautnimNode.jsPerlPHPPythonQtRPCRubyRustR语言ScalaShellVlangwasmYewZephirZig算法
移动端
AndroidAPP工具FlutterFramework7HarmonyHippyIoniciOSkotlinNativeObject-CPWAReactSwiftuni-appWeex
数据库
ApacheArangoDBCassandraClickHouseCouchDBCrateDBDB2DocumentDBDorisDragonflyDBEdgeDBetcdFirebirdGaussDBGraphGreenPlumHStreamDBHugeGraphimmudbIndexedDBInfluxDBIoTDBKey-ValueKitDBLevelDBM3DBMatrixOneMilvusMongoDBMySQLNavicatNebulaNewSQLNoSQLOceanBaseOpenTSDBOracleOrientDBPostgreSQLPrestoDBQuestDBRedisRocksDBSequoiaDBServerSkytableSQLSQLiteTiDBTiKVTimescaleDBYugabyteDB关系型数据库数据库数据库ORM数据库中间件数据库工具时序数据库
云计算&大数据
ActiveMQAerakiAgentAlluxioAntreaApacheApache APISIXAPISIXBFEBitBookKeeperChaosChoerodonCiliumCloudStackConsulDaprDataEaseDC/OSDockerDrillDruidElasticJobElasticSearchEnvoyErdaFlinkFluentGrafanaHadoopHarborHelmHudiInLongKafkaKnativeKongKubeCubeKubeEdgeKubeflowKubeOperatorKubernetesKubeSphereKubeVelaKumaKylinLibcloudLinkerdLonghornMeiliSearchMeshNacosNATSOKDOpenOpenEBSOpenKruiseOpenPitrixOpenSearchOpenStackOpenTracingOzonePaddlePaddlePolicyPulsarPyTorchRainbondRancherRediSearchScikit-learnServerlessShardingSphereShenYuSparkStormSupersetXuperChainZadig云原生CNCF人工智能区块链数据挖掘机器学习深度学习算法工程边缘计算
UI&美工&设计
BlenderKritaSketchUI设计
网络&系统&运维
AnsibleApacheAWKCeleryCephCI/CDCurveDevOpsGoCDHAProxyIstioJenkinsJumpServerLinuxMacNginxOpenRestyPrometheusServertraefikTrafficUnixWindowsZabbixZipkin安全防护系统内核网络运维监控
综合其它
文章资讯
 上传文档  发布文章  登录账户
IT文库
  • 综合
  • 文档
  • 文章

无数据

分类

全部后端开发(178)综合其他(90)云计算&大数据(85)系统运维(64)Weblate(54)区块链(43)OpenShift(38)Python(37)Linux(36)PyWebIO(28)

语言

全部中文(简体)(459)

格式

全部PDF文档 PDF(346)其他文档 其他(102)PPT文档 PPT(11)
 
本次搜索耗时 0.195 秒,为您找到相关结果约 459 个.
  • 全部
  • 后端开发
  • 综合其他
  • 云计算&大数据
  • 系统运维
  • Weblate
  • 区块链
  • OpenShift
  • Python
  • Linux
  • PyWebIO
  • 全部
  • 中文(简体)
  • 全部
  • PDF文档 PDF
  • 其他文档 其他
  • PPT文档 PPT
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 2.4 Go 1.4 runtime

    Go 1.4 runtime Gopher China 2015 1. Memory Allocator 2. Garbage Collector 3. Goroutine Scheduler 1. Memory Allocator 内存分配器 base on tcmalloc. 基于成熟方案,性能优秀。随着版本升级, 针对性改进,以期与垃圾回收器更好协作。 核心:自主管理,缓存复用,无锁分配。 阈值触发,并行标记,并发清理。 定期强制回收,释放物理内存。 版本升级,垃圾回收效率总是核心问题。 gogc. 阈值检查,或强制回收。 malloc next_gc 0 gogc runtime.gc() stop start mark sweep stop start mark sweep 0 2 2 1 forcegc 2m 1 mark. 暂停用户逻辑,并行标记。 scheduler thread processor goroutine max. 系统限制,允许调整。 runtime.GOMAXPROCS 调整 P 数量,会导致 G 任务队列重新分布。 M G P scheduler max = 10000 max = 256 runtime/debug.SetMaxThreads 超出限制,会导致进程崩溃。 newproc. 创建新并发任务。
    0 码力 | 29 页 | 608.57 KB | 1 年前
    3
  • pdf文档 Rust 异步 Runtime 的兼容层 - 施继成

    Rust 异步 Runtime 的兼容层 施继成 @ DatenLord Introduce what’s rust async runtime # Rust async runtime Analyze the reason of runtime isolation # Async runtime binding # Compatible layer 1 Create a wheel 2 3 # Rust async runtime 1 Light-weight task • Language and compiler define tasks • How to run it? • When to run it? • How does it deal with the I/O? Rust async runtime Runtime responsibilities it’s multi-thread model Rust async runtime Available Runtimes • Tokio • Async-std • Smol • Monoio Rust async runtime # Async runtime binding 2 Which runtime to choose ? • More adopters • Rich
    0 码力 | 22 页 | 957.41 KB | 1 年前
    3
  • pdf文档 Tracing in TiDB 浅谈全链路监控: 从应用到数据库到 Runtime

    浅谈全链路监控: 从应用到数据库到 Runtime 黄东旭, Co-founder & CTO, PingCAP 关于我 黄东旭,联合创始人 & CTO @ PingCAP 做分布式数据库的程序员 ● 现在能写代码的时间是奢侈品 TiDB 的亲爹之一兼首席客服和新功能的第一个用户 ● 冤有头债有主,SQL 慢了来找我。。。 偶尔玩玩音乐 ● 摇滚乐->实验音乐 Go 的粉丝!!!! tool trace go tool trace ● 优点:好用,好看(UI) ● 缺点:性能损耗太大,不能一直开着 Trace in Go runtime ● go tool trace 的原理是? Trace 会 Go Runtime 的代码中打桩收集 CPU time,在 Goroutine 开始执行时记录 start_run_time, 在调度退出执行时记录 end_run_time,累加 goroutine 的 CPU time。 A little bit about Go runtime https://learnku.com/articles/41728 https://github.com/golang/go/blob/ma ster/src/runtime/trace.go hack runtime 的思路: follow the tracing event. PingCAP
    0 码力 | 39 页 | 3.43 MB | 1 年前
    3
  • pdf文档 openEuler 21.03 技术白皮书

    ecosystem. openEuler is an innovative platform driven by community collaboration. It aims to build a unified and open OS that supports multiple processor architectures, and to advance the hardware and software complete lifecycle management that covers building, verification, and distribution. The build, runtime dependencies, and upstream communities of the open source software form a closed loop, realizing In-depth optimizations for scheduling, I/O, and memory management • Tiered memory expansion etMem: unified management of various memory and storage media, and smooth expansion of system capacity • Live
    0 码力 | 21 页 | 948.66 KB | 1 年前
    3
  • pdf文档 Apache ShardingSphere v5.5.0 document

    elastic scaling, encryption features & more. The project is committed to providing a multi‐source heterogeneous, enhanced database platform and further building an ecosystem around the upper layer of the platform Apache ShardingSphere, aims at building the standard and ecosystem on the upper layer of the heterogeneous database. It focuses on how to make full and reasonable use of the computing and storage capabilities database proxy, providing a database server that encapsulates database binary protocol to support heterogeneous languages. 1 Apache ShardingSphere document 1.2 Product Features F ea tu re Definition
    0 码力 | 602 页 | 3.85 MB | 1 年前
    3
  • pdf文档 Julia 中文文档

    . . . . . . . . . . . . . . . . . . . . . . . . . . 1196 92.15printf() and stdio in the Julia runtime . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1200 Libuv wrappers for stdio . . a method error, it seems probable that the intention is for x to be local to the for loop. But runtime values and what methods happen to exist cannot be used to determine the scopes of variables. With 者说「world age」。它还允 许仅仅通过其序数值来比较在两个 world 中可用的方法。在上例中,我们看到(方法 newfun 所存在 的)「current world」比局部于任务的「runtime world」大一,后者在 tryeval 开始执行时是固定的。 有时规避这个是必要的(例如,如果你在实现上面的 REPL)。幸运的是这里有个简单地解决方法:使 用Base.invokelatest调用函数:
    0 码力 | 1238 页 | 4.59 MB | 1 年前
    3
  • pdf文档 Blender v4.1 Manual

    You can also edit videos. It is well suited to individuals and small studios who benefit from its unified pipeline and responsive development process. Being a cross-platform application, Blender runs on Introduction Language Input File and Paths Save & Load Configuring Peripherals Displays Input Devices Head-Mounted Displays (Virtual Reality) Defaults Import Existing Settings Create New Settings Saving span multiple monitors. Example of Blender’s multi-monitor support. Input Devices Blender supports various types of input devices: Keyboard (recommended: keyboard with numeric keypad, English layout works
    0 码力 | 6263 页 | 303.71 MB | 1 年前
    3
  • pdf文档 openEuler 21.09 技术白皮书

    released. This premium version is designed to supercharge all scenarios, including edge and embedded devices. It enhances server and cloud computing features, and incorporates key technologies including cloud-native developers who plan to enhance scenario-specific capabilities. By creating a unified OS that supports multiple devices, openEuler hopes to enable a single application development for all scenarios and verifies its source code by comparing it to that of the upstream communities. The build, runtime dependencies, and upstream communities of the open source software form a closed loop, realizing
    0 码力 | 36 页 | 3.40 MB | 1 年前
    3
  • pdf文档 2022年美团技术年货 合辑

    [10] He Y, Lin J, Liu Z, et al. Amc: Automl for model compression and acceleration on mobile devices[C]//Proceedings of the European conference on computer vision (ECCV). 2018: 784-800. [11] Yang Shichao Liu, Wen Zhang, and Yanqing Niu. 2020. Graph embedding ensemble methods based on the heterogeneous network for lncRNA-miRNA interaction prediction. BMC genomics 21, 13 (2020), 1–12. [21] 的图神经网络框架至少具备以下特点。 (1)完善支持当前流行的图神经网络模型。 从图本身的类型来看,图神经网络模型可以分为同质图 (Homogeneous Graph)、 异质图 (Heterogeneous Graph)、动态图 (Dynamic Graph) 等类型。从训练方式 来看,又可以分为全图消息传递 [4] 和基于子图采样的消息传递 [8] 等类型。从推理方 式来看,还可以分为直推式和归纳式
    0 码力 | 1356 页 | 45.90 MB | 1 年前
    3
  • epub文档 Kotlin 1.9.10 官方文档 中文版

    projects. With Kotlin/Wasm, you can create applications that run on different environments and devices supporting WebAssembly and meeting Kotlin's requirements. Learn more about Kotlin/Wasm in this Kotlin 1.9.0 introduces the preview of a custom memory allocator. Its allocation system improves the runtime performance of the Kotlin/Native memory manager. The current object allocation system in Kotlin/Native reference to the Objective-C object. When the Kotlin object gets deallocated, the Kotlin/Native runtime calls the objc_release function that releases that Objective-C reference. Previously, the Kotlin/Native
    0 码力 | 3753 页 | 29.69 MB | 1 年前
    3
共 459 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 46
前往
页
相关搜索词
2.4Go1.4runtime继成2023RustChinaConf异步兼容TracinginTiDB浅谈链路监控应用数据据库数据库RuntimeopenEuler21.03技术白皮皮书白皮书ApacheShardingSpherev55.0documentJulia中文文档Blenderv4Manual21.092022美团年货合辑Kotlin1.910官方文版中文版
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩