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

无数据

分类

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

语言

全部日语(18)

格式

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

    という関数を作ります。 xhr-promise.js function fetchURL(URL) { return new Promise((resolve, reject) => { const req = new XMLHttpRequest(); req.open("GET", URL, true); req.onload = () => { }; req.send(); }); } 12 JavaScript Promiseの本 // 実行例 const URL = "https://httpbin.org/get"; fetchURL(URL).then(function onFulfilled(value){ console.log(value); }).catch(function onRejected(error){ Fulfilledの状態になった 時ということですね。 resolveされた時の処理は、 .then メソッドに呼びたい関数を渡すことで行えます。 const URL = "https://httpbin.org/get"; fetchURL(URL).then((value) => { console.log(value); }); 分かりやすくするため関数に onFulfilled という名前を付けています
    0 码力 | 137 页 | 1.17 MB | 1 年前
    3
  • pdf文档 JavaScript Promiseの本 v1

    という関数を作ります。 xhr-promise.js function getURL(URL) { return new Promise(function (resolve, reject) { var req = new XMLHttpRequest(); req.open('GET', URL, true); req.onload = function statusText)); }; req.send(); }); } // 実行例 var URL = "http://httpbin.org/get"; 11 JavaScript Promiseの本 getURL(URL).then(function onFulfilled(value){ console.log(value); }).catch(function FulFilledの状態になった 時ということですね。 resolveされた時の処理は、 .then メソッドに呼びたい関数を渡すことで行えます。 var URL = "http://httpbin.org/get"; getURL(URL).then(function onFulfilled(value){ console.log(value); }); 分かりやすくするため関数に
    0 码力 | 115 页 | 1.06 MB | 1 年前
    3
  • pdf文档 Comprehensive Rust(日语) 202412

    t; use reqwest::Url; use scraper::{Html, Selector}; use thiserror::Error; enum Error { ReqwestError(#[from] reqwest::Error), BadResponse(String), } struct CrawlCommand { url: Url, extract_links: bool visit_page(client: &Client, command: &CrawlCommand) -> ResultUrl>, Error> { println!("Checking {:#}", command.url); let response = client.get(command.url.clone()).send()?; if !response.status().is_success() { mut link_urls = Vec::new(); if !command.extract_links { return Ok(link_urls); } let base_url = response.url().to_owned(); let body_text = response.text()?; let document = Html::parse_document(&body_text);
    0 码力 | 381 页 | 1.36 MB | 10 月前
    3
  • pdf文档 PlantUML 1.2019.6 言語リファレンスガイド

    メッセージは、矢印構文を使います。 @startuml robust "ウェブブラウザ" as WB concise "ユーザ" as WU @0 WU is アイドル WB is アイドル @100 WU -> WB : URL WU is 待機 WB is 処理中 @300 WB is 待機 PlantUML 言語リファレンスガイド (1.2019.6) 94 / 173 9.3 相対時間での指定 9 タイミング図 concise "ユーザ" as WU @0 WU is アイドル WB is アイドル DNS is アイドル @+100 WU -> WB : URL WU is 待機 WB is 処理中 @+200 WB is 待機 WB -> DNS@+50 : URL から IPアドレス を解決 @+100 DNS is 処理中 @+300 DNS is アイドル @enduml PlantUML 言語リファレンスガイド : the file must be accessible by the filesystem • : the URL must be available from the Internet @startuml :* You can change text color * You
    0 码力 | 174 页 | 1.99 MB | 1 年前
    3
  • pdf文档 PlantUML 1.2020.23 言語リファレンスガイド

    メッセージは、矢印構文を使います。 @startuml robust "ウェブブラウザ" as WB concise "ユーザ" as WU @0 WU is アイドル WB is アイドル @100 WU -> WB : URL WU is 待機 WB is 処理中 @300 WB is 待機 @enduml 9.4 相対時間での指定 @ で時間を指定するとき、相対的な時間の指定の仕方ができます。 @startuml concise "ユーザ" as WU @0 WU is アイドル WB is アイドル DNS is アイドル @+100 WU -> WB : URL WU is 待機 WB is 処理中 @+200 WB is 待機 WB -> DNS@+50 : URL から IPアドレス を解決 PlantUML 言語リファレンスガイド (1.2020.23) 139 / 305 9.5 Anchor Points 2020.23) 145 / 305 9.15 タイトルなどを追加する 9 タイミング図 @100 WU -> WB : URL WU is Waiting #LightCyan;line:Aqua @200 WB is Proc. @300 WU -> WB@350 : URL2 WB is Waiting @+200 WU is ok @+200 WB is Idle highlight
    0 码力 | 306 页 | 3.19 MB | 1 年前
    3
  • pdf文档 PlantUML を使った UML の描き方 - PlantUML 言語リファレンスガイド(Version 1.2020.22)

    メッセージは、矢印構文を使います。 @startuml robust "ウェブブラウザ" as WB concise "ユーザ" as WU @0 WU is アイドル WB is アイドル @100 WU -> WB : URL WU is 待機 WB is 処理中 @300 WB is 待機 @enduml 9.4 相対時間での指定 @ で時間を指定するとき、相対的な時間の指定の仕方ができます。 @startuml concise "ユーザ" as WU @0 WU is アイドル WB is アイドル DNS is アイドル @+100 WU -> WB : URL WU is 待機 WB is 処理中 @+200 WB is 待機 WB -> DNS@+50 : URL から IPアドレス を解決 PlantUML 言語リファレンスガイド (1.2020.22) 128 / 293 9.5 Anchor Points 2020.22) 134 / 293 9.15 タイトルなどを追加する 9 タイミング図 @100 WU -> WB : URL WU is Waiting #LightCyan;line:Aqua @200 WB is Proc. @300 WU -> WB@350 : URL2 WB is Waiting @+200 WU is ok @+200 WB is Idle highlight
    0 码力 | 294 页 | 3.11 MB | 1 年前
    3
  • pdf文档 PlantUML 1.2019.9 言語リファレンスガイド

    メッセージは、矢印構文を使います。 @startuml robust "ウェブブラウザ" as WB concise "ユーザ" as WU @0 WU is アイドル WB is アイドル @100 WU -> WB : URL WU is 待機 WB is 処理中 @300 WB is 待機 PlantUML 言語リファレンスガイド (1.2019.9) 95 / 174 9.3 相対時間での指定 9 タイミング図 concise "ユーザ" as WU @0 WU is アイドル WB is アイドル DNS is アイドル @+100 WU -> WB : URL WU is 待機 WB is 処理中 @+200 WB is 待機 WB -> DNS@+50 : URL から IPアドレス を解決 @+100 DNS is 処理中 @+300 DNS is アイドル @enduml PlantUML 言語リファレンスガイド : the file must be accessible by the filesystem • : the URL must be available from the Internet @startuml :* You can change text color * You
    0 码力 | 175 页 | 2.02 MB | 1 年前
    3
  • pdf文档 PlantUML を使った UML の描き方 - PlantUML 言語リファレンスガイド(Version 1.2021.1)

    メッセージは、矢印構文を使います。 @startuml robust "ウェブブラウザ" as WB concise "ユーザ" as WU @0 WU is アイドル WB is アイドル @100 WU -> WB : URL WU is 待機 WB is 処理中 @300 WB is 待機 @enduml 10.4 相対時間での指定 @ で時間を指定するとき、相対的な時間の指定の仕方ができます。 @startuml concise "ユーザ" as WU @0 WU is アイドル WB is アイドル DNS is アイドル @+100 WU -> WB : URL WU is 待機 WB is 処理中 @+200 WB is 待機 WB -> DNS@+50 : URL から IPアドレス を解決 PlantUML 言語リファレンスガイド (1.2021.1) 182 / 392 10.5 Anchor Points "Web User" as WU @0 WU is Idle WB is Idle @100 WU -> WB : URL WU is Waiting #LightCyan;line:Aqua @200 WB is Proc. @300 WU -> WB@350 : URL2 WB is Waiting @+200 WU is ok @+200 WB is Idle highlight
    0 码力 | 393 页 | 4.27 MB | 1 年前
    3
  • pdf文档 PlantUML を使った UML の描き方 - PlantUML 言語リファレンスガイド(Version 1.2021.2)

    メッセージは、矢印構文を使います。 @startuml robust "ウェブブラウザ" as WB concise "ユーザ" as WU @0 WU is アイドル WB is アイドル @100 WU -> WB : URL WU is 待機 WB is 処理中 @300 WB is 待機 @enduml 10.4 相対時間での指定 @ で時間を指定するとき、相対的な時間の指定の仕方ができます。 @startuml concise "ユーザ" as WU @0 WU is アイドル WB is アイドル DNS is アイドル @+100 WU -> WB : URL WU is 待機 WB is 処理中 @+200 WB is 待機 WB -> DNS@+50 : URL から IPアドレス を解決 PlantUML 言語リファレンスガイド (1.2021.2) 185 / 398 10.5 Anchor Points "Web User" as WU @0 WU is Idle WB is Idle @100 WU -> WB : URL WU is Waiting #LightCyan;line:Aqua @200 WB is Proc. @300 WU -> WB@350 : URL2 WB is Waiting @+200 WU is ok @+200 WB is Idle highlight
    0 码力 | 399 页 | 4.33 MB | 1 年前
    3
  • pdf文档 PlantUML を使った UML の描き方 - PlantUML 言語リファレンスガイド(Version 1.2023.11)

    アイドル WB is アイドル PlantUML 言語リファレンスガイド (1.2023.11) 237 / 544 10.4 相対時間での指定 10 タイミング図 @100 WU -> WB : URL WU is 待機 WB is 処理中 @300 WB is 待機 @enduml 10.4 相対時間での指定 @ で時間を指定するとき、相対的な時間の指定の仕方ができます。 @startuml concise "ユーザ" as WU @0 WU is アイドル WB is アイドル DNS is アイドル @+100 WU -> WB : URL WU is 待機 WB is 処理中 @+200 WB is 待機 WB -> DNS@+50 : URL から IPアドレス を解決 @+100 DNS is 処理中 @+300 DNS is アイドル @enduml PlantUML 言語リファレンスガイド WB is アイドル @100 WU -> WB : URL PlantUML 言語リファレンスガイド (1.2023.11) 244 / 544 10.15 ノートの使用 10 タイミング図 WU is 待機 #LightCyan;line:Aqua @200 WB is 処理中 @300 WU -> WB@350 : URL2 WB is 待機 @+200 WU is ok @+200
    0 码力 | 545 页 | 7.75 MB | 1 年前
    3
共 18 条
  • 1
  • 2
前往
页
相关搜索词
JavaScriptPromisev2v1ComprehensiveRust日语202412PlantUML1.2019言語1.202023UMLVersion221.20211.202311
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩