积分充值
 首页
前端开发
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文库
  • 综合
  • 文档
  • 文章

无数据

分类

全部综合其他(10)Blender(10)后端开发(1)系统运维(1)Linux(1)Rust(1)

语言

全部中文(繁体)(12)

格式

全部PDF文档 PDF(12)
 
本次搜索耗时 0.524 秒,为您找到相关结果约 12 个.
  • 全部
  • 综合其他
  • Blender
  • 后端开发
  • 系统运维
  • Linux
  • Rust
  • 全部
  • 中文(繁体)
  • 全部
  • PDF文档 PDF
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 Comprehensive Rust(繁体中文)

    with let: fn main() { let x: i32 = 10; println!("x: {x}"); // x = 20; // println!("x: {x}"); } • 取消註解 x = 20,證明變數預設為不可變動。如要允許變更,請加入 mut 關鍵字。 • 這裡的 i32 是變數型別。這是編譯器必須在編譯期間掌握的資訊,但透過型別推斷 (稍後會說明), 程式設計師在許多情況下都能省略其型別宣告。 • &mut self:使用不重複且可變動的參照,從呼叫端借用物件。之後可以再次使用該物件。 • self:取得物件擁有權,並將其移出呼叫端。方法會成為物件的擁有者。系統會在方法傳回時捨棄 物件 (取消分配),但如果其擁有權已明確傳送的情況例外。具備完整擁有權,不自動等同於具備可變 動性。 • mut self: same as above, but the method can mutate the free,或在其指向的記憶體釋出後取消參照指標。 • C++ 提供智慧指標 (unique_ptr、shared_ptr) 等工具,可利用有關呼叫解構函式的語言保證, 確保在函式傳回時釋出記憶體。但這些工具仍很容易遭到濫用,並且會產生類似 C 語言中的那些錯 誤。 • Java、Go 和 Python 會利用垃圾收集器來識別並捨棄無法再存取的記憶體。這能確保任何指標都 可以取消參照,進而消除 UAF (使用已釋放記憶體)
    0 码力 | 358 页 | 1.41 MB | 11 月前
    3
  • pdf文档 Blender v2.92 参考手册(繁体中文版)

    Copy/Paste Delete Mute Show/Hide Layers Sidebar Node Tool View 節點群組化 Interface Edit Group Make Group 取消群組 Group Insert Appending Node Groups Frame Node 屬性 Editing Reroute Node 屬性 介紹 The different node include an output node in the group, there will not be an output socket available from the group! 取消群組 Reference 所有模式 Node ‣ Ungroup Ctrl-Alt-G The Ctrl-Alt-G tool removes the group and places the node group from the selected nodes, see Make Group for more information. 取消群組 Removes the selected nodes from a group, see 取消群組 for more information. Group Input Adds a group input node, this serves
    0 码力 | 3966 页 | 203.00 MB | 1 年前
    3
  • pdf文档 Blender v3.0 参考手册(繁体中文版)

    Copy/Paste Delete Mute Show/Hide Layers Sidebar Node Tool View 節點群組化 Interface Edit Group Make Group 取消群組 Group Insert Appending Node Groups Frame Node 屬性 Editing Reroute Node 屬性 介紹 The different node include an output node in the group, there will not be an output socket available from the group! 取消群組 Reference 所有模式 Node ‣ Ungroup Ctrl-Alt-G Removes the group and places the individual nodes into node group from the selected nodes, see Make Group for more information. 取消群組 Removes the selected nodes from a group, see 取消群組 for more information. Group Input Adds a group input node, this serves
    0 码力 | 4215 页 | 227.19 MB | 1 年前
    3
  • pdf文档 Blender v3.1 参考手册(繁体中文版)

    Copy/Paste Delete Mute Show/Hide Layers Sidebar Node Tool View 節點群組化 Interface Edit Group Make Group 取消群組 Group Insert Appending Node Groups Frame Node 屬性 Editing Reroute Node 屬性 介紹 The different node include an output node in the group, there will not be an output socket available from the group! 取消群組 Reference Node ‣ Ungroup Ctrl-Alt-G Removes the group and places the individual nodes into your node group from the selected nodes, see Make Group for more information. 取消群組 Removes the selected nodes from a group, see 取消群組 for more information. Group Input Adds a group input node, this serves
    0 码力 | 4393 页 | 256.31 MB | 1 年前
    3
  • pdf文档 Blender v3.4 参考手册(繁体中文版)

    Copy/Paste Delete Mute Show/Hide Layers Sidebar Node Tool View 節點群組化 Interface Edit Group Make Group 取消群組 Group Insert Reusing Node Groups Frame Node 屬性 Editing Reroute Node 屬性 介紹 Blender contains found in node groups, and should not be used in node groups either (only in the top-level node tree). 取消群組 Reference Node ‣ Ungroup Ctrl-Alt-G Removes the group and places the individual nodes into your node group from the selected nodes, see Make Group for more information. 取消群組 Removes the selected nodes from a group, see 取消群組 for more information. Group Input Adds a group input node, this serves
    0 码力 | 4469 页 | 258.38 MB | 1 年前
    3
  • pdf文档 Blender v3.3 参考手册(繁体中文版)

    Copy/Paste Delete Mute Show/Hide Layers Sidebar Node Tool View 節點群組化 Interface Edit Group Make Group 取消群組 Group Insert Reusing Node Groups Frame Node 屬性 Editing Reroute Node 屬性 介紹 Blender contains found in node groups, and should not be used in node groups either (only in the top-level node tree). 取消群組 Reference Node ‣ Ungroup Ctrl-Alt-G Removes the group and places the individual nodes into your node group from the selected nodes, see Make Group for more information. 取消群組 Removes the selected nodes from a group, see 取消群組 for more information. Group Input Adds a group input node, this serves
    0 码力 | 4464 页 | 259.55 MB | 1 年前
    3
  • pdf文档 Blender v3.2 参考手册(繁体中文版)

    Copy/Paste Delete Mute Show/Hide Layers Sidebar Node Tool View 節點群組化 Interface Edit Group Make Group 取消群組 Group Insert Appending Node Groups Frame Node 屬性 Editing Reroute Node 屬性 介紹 The different node include an output node in the group, there will not be an output socket available from the group! 取消群組 Reference Node ‣ Ungroup Ctrl-Alt-G Removes the group and places the individual nodes into your node group from the selected nodes, see Make Group for more information. 取消群組 Removes the selected nodes from a group, see 取消群組 for more information. Group Input Adds a group input node, this serves
    0 码力 | 4355 页 | 255.63 MB | 1 年前
    3
  • pdf文档 Blender v3.6 参考手册(繁体中文版)

    Copy/Paste Delete Mute Show/Hide Layers Sidebar Node Tool View 節點群組化 Interface Edit Group Make Group 取消群組 Group Insert Reusing Node Groups Frame Node 屬性 Editing Reroute Node 屬性 介紹 Blender contains found in node groups, and should not be used in node groups either (only in the top-level node tree). 取消群組 Reference Node ‣ Ungroup Ctrl-Alt-G Removes the group and places the individual nodes into your node group from the selected nodes, see Make Group for more information. 取消群組 Removes the selected nodes from a group, see 取消群組 for more information. Group Input Adds a group input node, this serves
    0 码力 | 4744 页 | 297.98 MB | 1 年前
    3
  • pdf文档 Blender v3.5 参考手册(繁体中文版)

    Copy/Paste Delete Mute Show/Hide Layers Sidebar Node Tool View 節點群組化 Interface Edit Group Make Group 取消群組 Group Insert Reusing Node Groups Frame Node 屬性 Editing Reroute Node 屬性 介紹 Blender contains found in node groups, and should not be used in node groups either (only in the top-level node tree). 取消群組 Reference Node ‣ Ungroup Ctrl-Alt-G Removes the group and places the individual nodes into your node group from the selected nodes, see Make Group for more information. 取消群組 Removes the selected nodes from a group, see 取消群組 for more information. Group Input Adds a group input node, this serves
    0 码力 | 4704 页 | 295.98 MB | 1 年前
    3
  • pdf文档 Debian 新維護人員手冊

    rules 文件裏開頭的空格是 TAB 填充的。) 可能在 shell 或 Perl 腳本中你已經對第一行的形式很熟悉了,它告訴作業系統這個檔案應使用 /usr/bin/make 處理。 可以取消第 4 行的註釋,以設置 DH_VERBOSE 變量爲 1,於是 dh 命令就會輸出它將要使用的 dh_* 命令。你也可以在 此添加一行 export DH_OPTIONS=-v ,於是 dh_*
    0 码力 | 63 页 | 512.12 KB | 1 年前
    3
共 12 条
  • 1
  • 2
前往
页
相关搜索词
ComprehensiveRust繁体中文繁体中文Blenderv292参考手册参考手册v3Debian新維護人員手冊
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩