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

无数据

分类

全部综合其他(407)Weblate(302)Blender(39)产品与服务(19)KiCad(19)Apache OFBiz(16)Krita(9)人工智能(7)版本控制(6)GIMP(4)

语言

全部英语(272)中文(简体)(118)中文(繁体)(10)日语(2)zh(2)法语(1)韩语(1)ro(1)

格式

全部PDF文档 PDF(233)其他文档 其他(174)
 
本次搜索耗时 0.071 秒,为您找到相关结果约 407 个.
  • 全部
  • 综合其他
  • Weblate
  • Blender
  • 产品与服务
  • KiCad
  • Apache OFBiz
  • Krita
  • 人工智能
  • 版本控制
  • GIMP
  • 全部
  • 英语
  • 中文(简体)
  • 中文(繁体)
  • 日语
  • zh
  • 法语
  • 韩语
  • ro
  • 全部
  • PDF文档 PDF
  • 其他文档 其他
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 Google Python Style Guide

    from one module to an- other. Pros: The namespace management convention is simple. The source of each identifier is indicated in a consistent way; x.Obj says that object Obj is defined in module x. Cons: Cons: Module names can still collide. Some module names are inconveniently long. Decision: Use import x for importing packages and modules. Use from x import y where x is the package prefix and y is the the module name 3 with no prefix. Use from x import y as z if two modules named y are to be imported or if y is an inconveniently long name. For example the module sound.effects.echo may be imported as
    0 码力 | 30 页 | 94.81 KB | 1 年前
    3
  • epub文档 KiCad PCB Editor 5.1

    language. Also see the doxygen documentation on Python Scripting Reference. You can see python module help by typing pydoc pcbnew on your terminal. Using scripting you can create: Plugins: this type BOARD section below. 15.2. Basic API Reference All the pcbnew API is provided from the "pcbnew" module in Python. GetBoard() method will return the current pcb open at editor, useful for commands written = LoadBoard(filename) for module in pcb.GetModules(): print "* Module: %s"%module.GetReference() module.Value().SetVisible(False) # set Value as Hidden module.Reference().SetVisible(True)
    0 码力 | 279 页 | 3.02 MB | 1 年前
    3
  • pdf文档 The Weblate Manual 3.6.1

    2019 User docs 1 Features 3 2 Documentation 5 3 Installation 7 4 Bugs 9 5 License 11 Python Module Index 301 HTTP Routing Table 303 i ii Weblate Documentation, Release 3.6.1 Weblate is a copylefted com/project/docs.git master \ 'docs/locale/*/LC_MESSAGES/dir2/**.po' See also: The Odorik python module documentation is built using Sphinx, Read the Docs and translated using Weblate. Integrating with might occur. 5.12.1 Installation The Weblate Client is shipped separately and includes the Python module. You need to install wlc:, wlc to use these. pip3 install wlc 100 Chapter 5. License Weblate Documentation
    0 码力 | 317 页 | 2.63 MB | 1 年前
    3
  • pdf文档 The Weblate Manual 3.7.1

    ˇCihaˇr Jun 28, 2019 User docs 1 Documentation 3 2 Installation 5 3 Bugs 7 4 License 9 Python Module Index 307 HTTP Routing Table 309 Index 311 i ii Weblate Documentation, Release 3.7.1 Weblate com/project/docs.git master \ 'docs/locale/*/LC_MESSAGES/dir2/**.po' See also: The Odorik python module documentation is built using Sphinx, Read the Docs and translated using Weblate. Integrating with might occur. 4.12.1 Installation The Weblate Client is shipped separately and includes the Python module. You need to install wlc:, wlc to use these. pip3 install wlc 4.12.2 Synopsis wlc [parameter]
    0 码力 | 323 页 | 3.10 MB | 1 年前
    3
  • pdf文档 Weblate 3.7 Documentation

    2019 User docs 1 Features 3 2 Documentation 5 3 Installation 7 4 Bugs 9 5 License 11 Python Module Index 309 HTTP Routing Table 311 Index 313 i ii Weblate Documentation, Release 3.7 Weblate com/project/docs.git master \ 'docs/locale/*/LC_MESSAGES/dir2/**.po' See also: The Odorik python module documentation is built using Sphinx, Read the Docs and translated using Weblate. Integrating with might occur. 5.12.1 Installation The Weblate Client is shipped separately and includes the Python module. You need to install wlc:, wlc to use these. pip3 install wlc 5.12.2 Synopsis wlc [parameter]
    0 码力 | 325 页 | 3.11 MB | 1 年前
    3
  • pdf文档 The Weblate Manual 3.6

    2019 User docs 1 Features 3 2 Documentation 5 3 Installation 7 4 Bugs 9 5 License 11 Python Module Index 301 HTTP Routing Table 303 i ii Weblate Documentation, Release 3.6 Weblate is a copylefted com/project/docs.git master \ 'docs/locale/*/LC_MESSAGES/dir2/**.po' See also: The Odorik python module documentation is built using Sphinx, Read the Docs and translated using Weblate. Integrating with might occur. 5.12.1 Installation The Weblate Client is shipped separately and includes the Python module. You need to install wlc:, wlc to use these. pip3 install wlc 100 Chapter 5. License Weblate Documentation
    0 码力 | 317 页 | 2.63 MB | 1 年前
    3
  • epub文档 KiCad PCB Editor 4.0

    language. Also see the doxygen documentation on Python Scripting Reference. You can see python module help by typing pydoc pcbnew on your terminal. Using scripting you can create: Plugins: this type BOARD section below. 15.2. Basic API Reference All the pcbnew API is provided from the "pcbnew" module in Python. GetBoard() method will return the current pcb open at editor, useful for commands written = LoadBoard(filename) for module in pcb.GetModules(): print "* Module: %s"%module.GetReference() module.Value().SetVisible(False) # set Value as Hidden module.Reference().SetVisible(True)
    0 码力 | 268 页 | 2.81 MB | 1 年前
    3
  • pdf文档 The Weblate Manual 3.11.3

    series . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 323 Python Module Index 326 HTTP Routing Table 327 Index 329 ii CHAPTER 1 User docs 1.1 Weblate basics 1.1.1 com/project/docs.git master \ 'docs/locale/*/LC_MESSAGES/dir2/**.po' See also: The Odorik python module documentation is built using Sphinx, Read the Docs and translated using Weblate. Integrating with might occur. 1.13.1 Installation The Weblate Client is shipped separately and includes the Python module. You need to install wlc:, wlc to use these. pip3 install wlc 1.13.2 Synopsis wlc [parameter]
    0 码力 | 340 页 | 3.53 MB | 1 年前
    3
  • pdf文档 The Weblate Manual 3.10

    series . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 311 Python Module Index 315 HTTP Routing Table 316 Index 318 ii CHAPTER 1 User docs 1.1 Weblate basics 1.1.1 com/project/docs.git master \ 'docs/locale/*/LC_MESSAGES/dir2/**.po' See also: The Odorik python module documentation is built using Sphinx, Read the Docs and translated using Weblate. Integrating with Release 3.10 1.13.1 Installation The Weblate Client is shipped separately and includes the Python module. You need to install wlc:, wlc to use these. pip3 install wlc 1.13.2 Synopsis wlc [parameter]
    0 码力 | 329 页 | 3.09 MB | 1 年前
    3
  • pdf文档 The Weblate Manual 3.10.1

    series . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 312 Python Module Index 315 HTTP Routing Table 316 Index 318 ii CHAPTER 1 User docs 1.1 Weblate basics 1.1.1 com/project/docs.git master \ 'docs/locale/*/LC_MESSAGES/dir2/**.po' See also: The Odorik python module documentation is built using Sphinx, Read the Docs and translated using Weblate. Integrating with might occur. 1.13.1 Installation The Weblate Client is shipped separately and includes the Python module. You need to install wlc:, wlc to use these. pip3 install wlc 1.13.2 Synopsis wlc [parameter]
    0 码力 | 329 页 | 3.05 MB | 1 年前
    3
共 407 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 41
前往
页
相关搜索词
GooglePythonStyleGuideKiCadPCBEditor5.1TheWeblateManual3.63.7Documentation4.03.113.10
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩