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

无数据

分类

全部后端开发(8)UML(7)综合其他(6)KiCad(4)前端开发(2)JavaScript(2)人工智能(1)Rust(1)Krita(1)

语言

全部日语(16)

格式

全部PDF文档 PDF(15)其他文档 其他(1)
 
本次搜索耗时 0.063 秒,为您找到相关结果约 16 个.
  • 全部
  • 后端开发
  • UML
  • 综合其他
  • KiCad
  • 前端开发
  • JavaScript
  • 人工智能
  • Rust
  • Krita
  • 全部
  • 日语
  • 全部
  • PDF文档 PDF
  • 其他文档 其他
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 JavaScript Promiseの本 v1

    コールバックスタイルのテスト コールバックスタイルの非同期処理をテストする場合、Mochaでは以下のように書くことが できます。 basic-test.js var assert = require('assert'); it('should use `done` for test', function (done) { setTimeout(function () { を呼ぶ代わりに、promiseオブジェ クトをreturnすることができると書いてあります。 では、実際にどのように書くかの例を見ていきたいと思います。 mocha-promise-test.js var assert = require('assert'); describe('Promise Test', function () { it('should return a promise object', function の例を元にonRejectedを期待してテストできる shouldRejected というヘルパー関数を作ってみたいと思います。 shouldRejected-test.js var assert = require('assert'); function shouldRejected(promise) { return { 'catch': function (fn) {
    0 码力 | 115 页 | 1.06 MB | 1 年前
    3
  • pdf文档 JavaScript Promiseの本 v2

    コールバックスタイルのテスト コールバックスタイルの非同期処理をテストする場合、Mochaでは以下のように書くことが できます。 basic-test.js const assert = require("assert"); it("should use `done` for test", (done) => { setTimeout(() => { assert(true); クトをreturnすることができると書いてあります。 では、実際にどのように書くかの例を見ていきたいと思います。 mocha-promise-test.js const assert = require("assert"); describe("Promise Test", () => { it("should return a promise object", () => { の例を元にonRejectedを期待してテストできる shouldRejected というヘルパー関数を作ってみたいと思います。 shouldRejected-test.js const assert = require("assert"); function shouldRejected(promise) { return { "catch": function(fn) {
    0 码力 | 137 页 | 1.17 MB | 1 年前
    3
  • pdf文档 KiCad 8.0 Schematic Editor

    whether you wish to maintain a wired connection between the pins and the labels. NOTE Pin helpers require you to select individual pins, not their parent symbol. Pins cannot be individually selected if the orphaned symbols using the Change Symbols or Edit Symbol Library Links dialogs, but either option may require manual corrections to the schematic. These tools are explained in more detail in the Updating and they are passives and automatically assign an appropriate simulation model. Therefore they do not require any special settings; users only need to set the Value field of the symbol. KiCad infers simulation
    0 码力 | 194 页 | 7.86 MB | 1 年前
    3
  • pdf文档 KiCad 8.0 ことはじめ

    for both the VCC and GND nets. This is a common KiCad ERC error. Power symbols are set up to require a power output pin, such as the output of a voltage regulator, on the same net; otherwise KiCad window. For this guide, leave the number of copper layers at 2, but more complicated projects might require more layers. 22 Next, go to the Design Rules → Constraints page. The settings on this page specify be improved by adding a switch to turn the LED on and off. The process to add this switch will require creating a new symbol and footprint library, drawing a switch symbol, and creating a footprint for
    0 码力 | 53 页 | 2.34 MB | 1 年前
    3
  • pdf文档 KiCad 8.0 イントロダクション

    the recommended workflow for transferring information from the schematic to the board does not require the use of netlist files. *.cmp Association between components used in the schematic and their footprints the recommended workflow for transferring information from the board to the schematic does not require the use of .cmp files. Fabrication and documentation files *.gbr Gerber files, for fabrication
    0 码力 | 25 页 | 705.63 KB | 1 年前
    3
  • pdf文档 KiCad 8.0 PCB Editor

    accessible after the pattern is initially created, so changing a target length or skew in this way may require the pattern to be adjusted to meet the new target value, if the pattern’s geometric constraints they automatically reflow text within that border. Text boxes are placed with the button, and require clicking twice to specify the top left and bottom right corners of the box. Ctrl Shift T 61 (constraint zone_connection solid) (condition "A.Fabrication_Property == 'Heatsink pad'")) # Require all four thermal relief spokes to connect to parent zone (rule fully_spoked_pads (constraint
    0 码力 | 204 页 | 6.90 MB | 1 年前
    3
  • pdf文档 TVM Meetup: Quantization

    ops from scratch • New Relay passes and TVM schedules required • AlterOpLayout, Graph Fusion etc require work/operator • No reuse of existing Relay and TVM infrastructure. Option 2 – Lower to a sequence
    0 码力 | 19 页 | 489.50 KB | 5 月前
    3
  • epub文档 Krita 5.2 マニュアル

    axonometric with the transform tool Now, there's an alternative way of getting there that doesn't require as much space. We open our orthographic with Open existing Document as Untitled Document so that this capture interval to pass before making a new snap shot. This means quick strokes will not each require a new snapshot. Increase this if you want less snapshots to be recorded during a painting session management of multiple optional comment fields. While some projects might require only one comment field for dialog per scene, some might require additional fields that describe character actions or camera directions
    0 码力 | 1591 页 | 79.16 MB | 1 年前
    3
  • pdf文档 PlantUML 1.2019.6 言語リファレンスガイド

    call a function. It is possible to use the unquoted keyword to indicate that a function does not require quotes for its arguments. @startuml !unquoted function id($text1, $text2="FOO") return $text1 +
    0 码力 | 174 页 | 1.99 MB | 1 年前
    3
  • pdf文档 PlantUML 1.2019.9 言語リファレンスガイド

    call a function. It is possible to use the unquoted keyword to indicate that a function does not require quotes for its arguments. @startuml !unquoted function id($text1, $text2="FOO") return $text1 +
    0 码力 | 175 页 | 2.02 MB | 1 年前
    3
共 16 条
  • 1
  • 2
前往
页
相关搜索词
JavaScriptPromisev1v2KiCad8.0SchematicEditorPCBTVMMeetupQuantizationKrita5.2PlantUML1.2019言語
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩