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

无数据

分类

全部综合其他(416)Weblate(278)KiCad(51)Blender(39)产品与服务(16)Apache OFBiz(14)Krita(9)版本控制(6)GIMP(5)笔试面试(4)

语言

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

格式

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

    no layers are given, all layers are exported. -D <variable name>= , --define-var <variable_name>= Add or override project variable definitions. Can be used multiple times to define file extension, depending on the selected format. -D <variable name>= , --define-var <variable_name>= Add or override project variable definitions. Can be used multiple times to define the drawing sheet specified in the board file. -D <variable name>= , --define-var <variable_name>= Add or override project variable definitions. Can be used multiple times to define
    0 码力 | 27 页 | 373.33 KB | 1 年前
    3
  • pdf文档 Google C++ Style Guide

    use as possible. This makes it easier for the reader to find the declaration and see what type the variable is and what it was initialized to. In particular, initialization should be used instead of declaration scopes. E.g.: while (const char* p = strchr(str, '/')) str = p + 1; There is one caveat: if the variable is an object, its constructor is invoked every time it enters scope and is created, and its destructor dtor get called 1000000 times each. f.DoSomething(i); } It may be more efficient to declare such a variable used in a loop outside that loop: Foo f; // My ctor and dtor get called once each. for (int i =
    0 码力 | 83 页 | 238.71 KB | 1 年前
    3
  • pdf文档 Pandoc User’s Guide (April 7, 2024)

    graphicx (if the doc- ument contains images), bookmark, xcolor, soul, geometry (with the geometry variable set), setspace (with linestretch), and babel (with lang). If CJKmainfont is set, xeCJK is needed engine requires fontspec. lualatex uses selnolig. xelatex uses bidi (with the dir variable set). If the mathspec variable is set, xelatex will use mathspec instead of unicode-math. The upquote and microtype microtype packages are used if available, and csquotes will be used for typography if the csquotes variable or metadata field is set to a true value. The natbib, biblatex, bibtex, and biber packages can optionally
    0 码力 | 168 页 | 475.29 KB | 1 年前
    3
  • pdf文档 KiCad 8.0 Schematic Editor

    assigns to its attached wire. Label text supports markup for overbars, subscripts, etc., as well as variable substitution. Use the Syntax help link in the dialog for a summary. There are several options control the appearance of inter-sheet references for that label. The ${INTERSHEET_REFS} text E 31 variable gets expanded to the full list of inter-sheet references for the global label, as configured in text^{superscript} text Subscript text_{subscript} text Overbar ~{text} text Variables ${variable} variable_value Symbol Fields ${refdes:field} field_value of symbol refdes NOTE Variables must be defined
    0 码力 | 200 页 | 8.34 MB | 1 年前
    3
  • pdf文档 KiCad 8.0 Schematic Editor

    assigns to its attached wire. Label text supports markup for overbars, subscripts, etc., as well as variable substitution. Use the Syntax help link in the dialog for a summary. There are several options control the appearance of inter-sheet references for that label. The ${INTERSHEET_REFS} text E 31 variable gets expanded to the full list of inter-sheet references for the global label, as configured in text^{superscript} text Subscript text_{subscript} text Overbar ~{text} text Variables ${variable} variable_value Symbol Fields ${refdes:field} field_value of symbol refdes NOTE Variables must be defined
    0 码力 | 194 页 | 7.86 MB | 1 年前
    3
  • pdf文档 Google Python Style Guide

    terms of performance, allowing properties bypasses needing trivial accessor methods when a direct variable access is reasonable. This also allows accessor methods to be added in the future without breaking testing whether a variable or argument that defaults to None was set to some other value. The other value might be a value that’s false in a boolean context! • Never compare a boolean variable to False using Python function can refer to variables defined in enclosing functions, but can not assign to them. Variable bindings are resolved using lexical scoping, that is, based on the static program text. Any assignment
    0 码力 | 30 页 | 94.81 KB | 1 年前
    3
  • pdf文档 Google Java Style Guide

    column limit may be line-wrapped at the author’s discretion. 6 Tip: Extracting a method or local variable may solve the problem without the need to line-wrap. 4.5.1 Where to break The prime directive parallel elements. Section 4.6.3 on Horizontal alignment addresses the discouraged practice of using a variable number of spaces to align certain tokens with previous lines. 4.6 Whitespace 4.6.1 Vertical Whitespace end-of-line comment. Here, multiple spaces are allowed, but not required. 7. Between the type and variable of a declaration: List list 8. Optional just inside both braces of an array initializer
    0 码力 | 19 页 | 84.76 KB | 1 年前
    3
  • pdf文档 Unity for Human Beings

    public variable that calls it. We also need to import the UnityEngine.UI Namespace. We will put it inside of the Start Method and remove the update method. The reason we want the public variable is so plain English for full understanding. Here is a variable of y and it equals 0. If y is less than the map size’s y minus 1, add to y. Here is a variable of x and it equals 0. If it is less than the map that equals 0. The for loop that says, here is a variable of y and it equals 0. If y is less than the map size’s y minus 1, add to y. Here is a variable of x and it equals 0. If it is less than the map
    0 码力 | 239 页 | 27.39 MB | 10 月前
    3
  • pdf文档 The Gimp User’s Manual version 1.0.1

    403 Motion Blur 404 Pixelize 406 Selective Gaussian Blur 406 Tileable Blur 407 Variable Blur 407 Antialias... 408 Chapter 27: Color Filters ................................ the filter that you want to apply, and specify how you want to apply it, by selecting constant or variable. When you have made your choice, a filter dialog will pop up asking for values. If you chose constant dialog will appear only once, and the values you specify will apply to all layers. If you chose variable, the dialog will appear for every layer so you can apply different values to each layer. HOW TO
    0 码力 | 924 页 | 9.50 MB | 1 年前
    3
  • pdf文档 KiCad 8.0 Documentation

    appropriate .hotkeys file(s). Paths configuration In KiCad, one can define paths using a path variable. A few path variables are internally defined by KiCad, and can be used to define paths for libraries instance, the path to the connect.pretty footprint library, when using the KICAD8_FOOTPRINT_DIR path variable, would be defined as ${KICAD8_FOOTPRINT_DIR}/connect.pretty . The Preferences → Configure Paths… variables from older versions of KiCad to the value of the corresponding variable from the current KiCad version, as long as the old variable is not explicitly defined itself. For example, ${KICAD7_FOOTPRINT_DIR}
    0 码力 | 25 页 | 789.18 KB | 1 年前
    3
共 416 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 42
前往
页
相关搜索词
KiCad8.0CommandLineInterfaceGoogleC++StyleGuidePandocSchematicEditorPythonJavaUnityforHumanBeingsTheGimpUserManualversion1.0Documentation
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩