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

无数据

分类

全部后端开发(7)UML(7)综合其他(4)KiCad(3)前端开发(2)JavaScript(2)系统运维(1)Linux(1)Krita(1)

语言

全部日语(14)

格式

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

    promiseオブジェクトを返す関数の配列 var tasks = [request.comment, request.people]; var promise = Promise.resolve(); // スタート地点 for (var i = 0; i < tasks.length; i++) { var task = tasks[i]; promise results; } var pushValue = recordValue.bind(null, []); var tasks = [request.comment, request.people]; return tasks.reduce(function (promise, task) { return promise.then(task).then(pushValue); sequenceTasks と いうものを作ってみます。 以下のように書くことができれば、 tasks が順番に処理されていくことが関数名から見て分 かるようになります。 var tasks = [request.comment, request.people]; sequenceTasks(tasks); 逐次処理を行う関数を定義する 基本的には、reduceを使ったやり方を関数として切り離せばいいだけですね。
    0 码力 | 115 页 | 1.06 MB | 1 年前
    3
  • pdf文档 JavaScript Promiseの本 v2

    promiseオブジェクトを返す関数の配列 const tasks = [request.comment, request.people]; let promise = Promise.resolve();// スタート地点 for (let i = 0; i < tasks.length; i++) { const task = tasks[i]; promise results; } const pushValue = recordValue.bind(null, []); const tasks = [request.comment, request.people]; return tasks.reduce((promise, task) => { return promise.then(task).then(pushValue); sequenceTasks と いうものを作ってみます。 以下のように書くことができれば、 tasks が順番に処理されていくことが関数名から見て分 かるようになります。 const tasks = [request.comment, request.people]; sequenceTasks(tasks); 逐次処理を行う関数を定義する 基本的には、reduceを使ったやり方を関数として切り離せばいいだけですね。
    0 码力 | 137 页 | 1.17 MB | 1 年前
    3
  • pdf文档 PlantUML 1.2019.3 言語リファレンスガイド

    @endgantt 10.8 Simplified task succession It's possible to use the then keyword to denote consecutive tasks. @startgantt [Prototype design] lasts 14 days then [Test prototype] lasts 4 days then [Deploy prototype] prototype] [Prototype design] -> [Prepare test] @endgantt 10.9 Separator You can use -- to group tasks together. @startgantt [Task1] lasts 10 days then [Task2] lasts 4 days -- Phase Two -- then [Task3] [Task3] lasts 5 days then [Task4] lasts 6 days @endgantt 10.10 Working with resources You can affect tasks on resources using the on keyword and brackets for resource name. PlantUML 言語リファレンスガイド (1.2019.3)
    0 码力 | 160 页 | 1.80 MB | 1 年前
    3
  • pdf文档 PlantUML 1.2019.2 言語リファレンスガイド

    @endgantt 10.8 Simplified task succession It's possible to use the then keyword to denote consecutive tasks. @startgantt [Prototype design] lasts 14 days then [Test prototype] lasts 4 days then [Deploy prototype] prototype] [Prototype design] -> [Prepare test] @endgantt 10.9 Separator You can use -- to group tasks together. @startgantt [Task1] lasts 10 days then [Task2] lasts 4 days -- Phase Two -- then [Task3] [Task3] lasts 5 days then [Task4] lasts 6 days @endgantt 10.10 Working with resources You can affect tasks on resources using the on keyword and brackets for resource name. PlantUML 言語リファレンスガイド (1.2019.2)
    0 码力 | 160 页 | 1.80 MB | 1 年前
    3
  • pdf文档 PlantUML を使った UML の描き方 - PlantUML 言語リファレンスガイド(Version 1.2019.1)

    ガントチャート 10.8 Simplified task succession It's possible to use the then keyword to denote consecutive tasks. @startgantt [Prototype design] lasts 14 days then [Test prototype] lasts 4 days then [Deploy prototype] prototype] [Prototype design] -> [Prepare test] @endgantt 10.9 Separator You can use -- to group tasks together. @startgantt [Task1] lasts 10 days then [Task2] lasts 4 days -- Phase Two -- then [Task3] [Task3] lasts 5 days then [Task4] lasts 6 days @endgantt 10.10 Working with resources You can affect tasks on resources using the on keyword and brackets for resource name. @startgantt [Task1] on {Alice}
    0 码力 | 148 页 | 1.92 MB | 1 年前
    3
  • pdf文档 PlantUML 1.2019.6 言語リファレンスガイド

    @endgantt 10.8 Simplified task succession It's possible to use the then keyword to denote consecutive tasks. @startgantt [Prototype design] lasts 14 days then [Test prototype] lasts 4 days then [Deploy prototype] prototype] [Prototype design] -> [Prepare test] @endgantt 10.9 Separator You can use -- to group tasks together. @startgantt [Task1] lasts 10 days then [Task2] lasts 4 days -- Phase Two -- then [Task3] [Task3] lasts 5 days then [Task4] lasts 6 days @endgantt 10.10 Working with resources You can affect tasks on resources using the on keyword and brackets for resource name. PlantUML 言語リファレンスガイド (1.2019.6)
    0 码力 | 174 页 | 1.99 MB | 1 年前
    3
  • pdf文档 PlantUML 1.2019.4 言語リファレンスガイド

    @endgantt 10.8 Simplified task succession It's possible to use the then keyword to denote consecutive tasks. @startgantt [Prototype design] lasts 14 days then [Test prototype] lasts 4 days then [Deploy prototype] prototype] [Prototype design] -> [Prepare test] @endgantt 10.9 Separator You can use -- to group tasks together. @startgantt [Task1] lasts 10 days then [Task2] lasts 4 days -- Phase Two -- then [Task3] [Task3] lasts 5 days then [Task4] lasts 6 days @endgantt 10.10 Working with resources You can affect tasks on resources using the on keyword and brackets for resource name. PlantUML 言語リファレンスガイド (1.2019.4)
    0 码力 | 168 页 | 1.90 MB | 1 年前
    3
  • pdf文档 Debian リファレンス v2.124

    優先度 (priority): 必須 (required) > 重要 (important) > 標準 (standard) > 任意 (optional) > 特別 (extra) • タスク (tasks): ” デスクトップ環境” のようなタスクにリストされたパッケージ • 依存パッケージにより選ばれたパッケージ (例えば、gcc による gcc-10) • ポプコン: 投票やインストールの数が多い パッケージの debtags によるタグ付け状況を改善するのにご協力下さい! 標準” パッケージ画面” はパッケージを dselect にいくつかの機能を加えた感じで分類します。 ティップ Tasks ビューはあなたのタスクに使うパッケージをいいとこ取りするのに使えます。 Debian リファレンス 56 / 259 分類 ビューの説明 更新可能なパッケージ section → area な方法については項9.3.9を参照 下さい。 2.3 aptitude 操作例 aptitude(8) 操作例を次に示します。 2.3.1 興味あるパッケージの探索 パッケージの説明や”Tasks” の下のリストを使ってあなたが必要なパッケージを aptitude で見つけることができ ます。 Debian リファレンス 59 / 259 2.3.2 regex にマッチするパッケージ名のパッケージをリスト
    0 码力 | 287 页 | 1.60 MB | 1 年前
    3
  • pdf文档 KiCad 8.0 イントロダクション

    Requirements KiCad is capable of running on a wide variety of hardware and operating systems, but some tasks may be slower or more difficult on lower-end hardware. For the best experience, a dedicated graphics
    0 码力 | 25 页 | 705.63 KB | 1 年前
    3
  • pdf文档 KiCad 8.0 ことはじめ

    KiCad community. 3 Basic Concepts and Workflow The typical workflow in KiCad consists of two main tasks: drawing a schematic and laying out a circuit board. The schematic is a symbolic representation
    0 码力 | 53 页 | 2.34 MB | 1 年前
    3
共 14 条
  • 1
  • 2
前往
页
相关搜索词
JavaScriptPromisev1v2PlantUML1.2019言語UMLVersionDebian124KiCad8.0
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩