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

无数据

分类

全部综合其他(410)Weblate(297)Blender(36)KiCad(35)产品与服务(19)Apache OFBiz(12)Krita(9)版本控制(4)笔试面试(3)GIMP(3)

语言

全部英语(278)中文(简体)(115)中文(繁体)(10)日语(5)法语(1)韩语(1)

格式

全部PDF文档 PDF(238)其他文档 其他(172)
 
本次搜索耗时 0.037 秒,为您找到相关结果约 410 个.
  • 全部
  • 综合其他
  • Weblate
  • Blender
  • KiCad
  • 产品与服务
  • Apache OFBiz
  • Krita
  • 版本控制
  • 笔试面试
  • GIMP
  • 全部
  • 英语
  • 中文(简体)
  • 中文(繁体)
  • 日语
  • 法语
  • 韩语
  • 全部
  • PDF文档 PDF
  • 其他文档 其他
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 Google C++ Style Guide

    entire source file after includes, gflags defi- nitions/declarations and forward declarations of classes from other namespaces. // In the .h file namespace mynamespace { // All declarations are within • Do not declare anything in namespace std, including forward declarations of standard library classes. Declaring entities in namespace std is unde- fined behavior, i.e., not portable. To declare entities depend on external variables, and should nearly always exist in a namespace. Rather than creating classes only to group static member functions which do not share static data, use namespaces instead. For
    0 码力 | 83 页 | 238.71 KB | 1 年前
    3
  • pdf文档 Game Development for Human Beings

    TiledState = function () { 4 "use strict"; 5 Phaser.State.call(this); 6 7 this.prefab_classes = { 8 "player": Platformer.Player.prototype.constructor, 9 "ground_enemy": Platformer create object according to its type 92 if (this.prefab_classes.hasOwnProperty(object.type)) { 93 prefab = new this.prefab_classes[object.type](this, position, object.properties); 94 } constructor. This way, to instantiate a new prefab we check if the type is present in the “prefab_classes” objects, and if so, we call the correct constructor. Notice that this only works because all prefabs
    0 码力 | 472 页 | 8.46 MB | 10 月前
    3
  • pdf文档 Kicad 4.0 Plugins

    October 31, 2021 Kicad Plugins iii Contents 1 Introduction to the KiCad plugin system 2 1.1 Plugin Classes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . The plugin framework was later generalized so that in the future developers can create different classes of plugins. Currently only 3D plugins are implemented within KiCad but it is envisioned that a PCB it possible for users to implement data Importers and Exporters. 1.1 Plugin Classes Plugins are divided into Plugin Classes since each plugin addresses problems in a specific domain and therefore requires
    0 码力 | 36 页 | 210.85 KB | 1 年前
    3
  • pdf文档 Kicad 5.1 Plugins

    October 31, 2021 Kicad Plugins iii Contents 1 Introduction to the KiCad plugin system 2 1.1 Plugin Classes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . The plugin framework was later generalized so that in the future developers can create different classes of plugins. Currently only 3D plugins are implemented within KiCad but it is envisioned that a PCB it possible for users to implement data Importers and Exporters. 1.1 Plugin Classes Plugins are divided into Plugin Classes since each plugin addresses problems in a specific domain and therefore requires
    0 码力 | 36 页 | 204.70 KB | 1 年前
    3
  • epub文档 Kicad 5.1 Plugins

    The plugin framework was later generalized so that in the future developers can create different classes of plugins. Currently only 3D plugins are implemented within KiCad but it is envisioned that a PCB it possible for users to implement data Importers and Exporters. 1.1. Plugin Classes Plugins are divided into Plugin Classes since each plugin addresses problems in a specific domain and therefore requires to link to KiCad’s scene graph library kicad_3dsg. KiCad’s Scene Graph Library provides a set of classes which can be used to build the Scene Graph Object; the Scene Graph Object is an intermediate data
    0 码力 | 48 页 | 44.28 KB | 1 年前
    3
  • epub文档 Kicad 4.0 Plugins

    The plugin framework was later generalized so that in the future developers can create different classes of plugins. Currently only 3D plugins are implemented within KiCad but it is envisioned that a PCB it possible for users to implement data Importers and Exporters. 1.1. Plugin Classes Plugins are divided into Plugin Classes since each plugin addresses problems in a specific domain and therefore requires to link to KiCad’s scene graph library kicad_3dsg. KiCad’s Scene Graph Library provides a set of classes which can be used to build the Scene Graph Object; the Scene Graph Object is an intermediate data
    0 码力 | 48 页 | 66.10 KB | 1 年前
    3
  • pdf文档 Google Python Style Guide

    Contents Python Language Rules Lint Imports Packages Exceptions Global variables Nested/Local/Inner Classes and Functions List Comprehensions Default Iterators and Operators Generators Lambda Functions Conditional Rules Semicolons Line length Parentheses Indentation Blank Lines Whitespace Shebang Line Comments Classes Strings Files and Sockets TODO Comments Imports formatting Statements Access Control Naming Main through public module level functions; see Naming below. Nested/Local/Inner Classes and Functions link￿ Nested/local/inner classes and functions are fine. Definition: A class can be defined inside of a
    0 码力 | 30 页 | 94.81 KB | 1 年前
    3
  • pdf文档 Google Java Style Guide

    great effect on learnability, but there is no single correct recipe for how to do it. Different classes may order their members differently. What is important is that each class order its members in some (otherCondition()) { somethingElse(); } else { lastThing(); } } }; A few exceptions for enum classes are given in Section 4.8.1, Enum classes. 4.1.3 Empty blocks: may be concise 5 An empty block or block-like construct Between consecutive members (or initializers) of a class: fields, construc- tors, methods, nested classes, static initializers, instance initializers. 7 • Exception: A blank line between two consecutive
    0 码力 | 19 页 | 84.76 KB | 1 年前
    3
  • pdf文档 Pandoc User’s Guide (April 7, 2024)

    headings (defaults to 1). --indented-code-classes=CLASSES Specify classes to use for indented code blocks–for example, perl,numberLines or haskell. Multiple classes may be separated by spaces or commas. deletions, and comments, wrapped in spans with insertion, deletion, comment-start, and comment-end classes, respectively. The author and time of change is included. all is useful for 13 Options scripting: defaults file --shift-heading-level-by -1 shift-heading-level-by: -1 --indented-code-classes python indented-code-classes: - python --default-image-extension ".jpg" default-image-extension: '.jpg' --file-scope
    0 码力 | 168 页 | 475.29 KB | 1 年前
    3
  • pdf文档 KiCad PCB Editor 7.0

    Net and net class controls The Nets tab of the appearance panel shows a list of all nets and net classes in the board. Each net has a visibility control that controls the visibility of that net in the select and highlight nets and net classes via the appearance panel: right-click on a net or net class to show these options in a menu. Below the list of net classes is an expandable panel that contains you to define the track and via dimensions you want to have available while routing tracks. Net classes can be used to define the default dimensions for tracks and vias in different nets (see below) but
    0 码力 | 129 页 | 7.75 MB | 1 年前
    3
共 410 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 41
前往
页
相关搜索词
GoogleC++StyleGuideGameDevelopmentforHumanBeingsKicad4.0Plugins5.1PythonJavaPandocKiCadPCBEditor7.0
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩