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

无数据

分类

全部后端开发(181)综合其他(128)Weblate(90)云计算&大数据(55)Python(53)系统运维(51)PyWebIO(48)区块链(44)数据库(36)OpenShift(27)

语言

全部中文(简体)(469)

格式

全部PDF文档 PDF(336)其他文档 其他(130)DOC文档 DOC(2)PPT文档 PPT(1)
 
本次搜索耗时 0.298 秒,为您找到相关结果约 469 个.
  • 全部
  • 后端开发
  • 综合其他
  • Weblate
  • 云计算&大数据
  • Python
  • 系统运维
  • PyWebIO
  • 区块链
  • 数据库
  • OpenShift
  • 全部
  • 中文(简体)
  • 全部
  • PDF文档 PDF
  • 其他文档 其他
  • DOC文档 DOC
  • PPT文档 PPT
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 Golang 101(Go语言101 中文版) v1.21.a

    SSA使得Go编译器可以有效利用诸如 BCE(https://en.wikipedia.org/wiki/Bounds-checking_elimination)(bounds check elimination,边界检查消除)和CSE (https://en.wikipedia.org/wiki/Common_subexpression_elimination) (common subexpression subexpression elimination,公共子表达式消除)等优化。 BCE可以避 免很多不必要的边界检查,CSE可以避免很多重复表达式的计算,从而使得编译器编 译出的程序执行效率更高。有时候这些优化的效果非常明显。 本文将展示一些例子来解释边界检查消除在官方标准编译器1.7+中的表现。 对于Go官方工具链1.7+,我们可以使用编译器选项-gcflags="- d=ssa/check_bce"来列出哪些代码行仍然需要边界检查。 22| _ = a[4] // 第22行: 边界检查消除了! 23| } 24| 25| func main() {} $ go run -gcflags="-d=ssa/check_bce" example1.go ./example1.go:5: Found IsInBounds ./example1.go:6: Found IsInBounds ./example1
    0 码力 | 591 页 | 21.40 MB | 1 年前
    3
  • epub文档 Golang 101(Go语言101 中文版) v1.21.a

    - assignment form,静态单赋值形式)的后端。 SSA使得Go编译器可以有效利用 诸如BCE ? (bounds check elimination,边界检查消除)和CSE ? (common subexpression elimination,公共子表达式消除)等优化。 BCE可以避免很多不 必要的边界检查,CSE可以避免很多重复表达式的计算,从而使得编译器编译 出的程序执行效率更高。有时候这些优化的效果非常明显。 出的程序执行效率更高。有时候这些优化的效果非常明显。 本文将展示一些例子来解释边界检查消除在官方标准编译器1.7+中的表现。 对于Go官方工具链1.7+,我们可以使用编译器选项-gcflags="- d=ssa/check_bce"来列出哪些代码行仍然需要边界检查。 例子1 1| // example1.go 2| package main 3| 4| func f1(s []int) { 5| _ = s[0] _ = a[4] // 第22行: 边界检查消除了! 23 | } 24 | 25 | func main() {} $ go run -gcflags="-d=ssa/check_bce" example1.go ./example1.go:5: Found IsInBounds ./example1.go:6: Found IsInBounds ./example1.go:7:
    0 码力 | 821 页 | 956.82 KB | 1 年前
    3
  • mobi文档 Golang 101(Go语言101 中文版) v1.21.a

    gle- assignment form,静态单赋值形式)的后端。 SSA使得Go编译器可以有效利用 诸如BCE (bounds check elimination,边界检查消除)和CSE (common subexpression elimination,公共子表达式消除)等优化。 BCE可以避免很多不 必要的边界检查,CSE可以避免很多重复表达式的计算,从而使得编译器编译 出的程序执行效率更高。有时候这些优化的效果非常明显。 本文将展示一些例子来解释边界检查消除在官方标准编译器1.7+中的表现。 对 于 Go 官 方 工 具 链 1.7+ , 我 们 可 以 使 用 编 译 器 选 项 -gcflags="- d=ssa/check_bce"来列出哪些代码行仍然需要边界检查。 例子1 1. // example1.go 2. package main 3. 4. func f1(s []int) { 5. [5]int) { 22. _ = a[4] // 第22行: 边界检查消除了! 23. } 24. 25. func main() {} $ go run -gcflags="-d=ssa/check_bce" example1.go ./example1.go:5: Found IsInBounds ./example1.go:6: Found IsInBounds ./example1.go:7:
    0 码力 | 608 页 | 1.08 MB | 1 年前
    3
  • pdf文档 Julia 中文文档

    inbounds . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1202 The bounds checking call hierarchy . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1202 92 debug 信息 的级别为 1;若配置了此选项却没指定具体级别,则默认级别为 2。 --inline={yes|no} 控制是否允许函数内联,此选项会覆盖源文件中的 @inline 声明 --check-bounds={yes|no} 设置边界检查状态:始终检查或永不检查。永不检查时会忽略源文件中的 相应声明 --math-mode={ieee,fast} 开启或关闭非安全的浮点数代数计算优化,此选项会覆盖源文件中的 be omitted only if there is only one possible value that those omitted indices could be for an in-bounds indexing expression. For example, a four-dimensional array with size (3, 4, 2, 1) may be indexed
    0 码力 | 1238 页 | 4.59 MB | 1 年前
    3
  • epub文档 Kotlin 1.9.10 官方文档 中文版

    browser with all the benefits of WebAssembly. 如何入门 Get started with Kotlin/Wasm in IntelliJ IDEA Check out the GitHub repository with Kotlin/Wasm examples 库支持 You can use the Kotlin standard library real-time code insights. It is now the preferred method for working with Kotlin notebooks. Be sure to check out our blog post about it. Jupyter Kotlin 内核 Jupyter Notebook 是一个开源 Web 应用程序, 它允许创建与共享包含代码、可 smart coding assistance when writing code, and share results as interactive or static reports. Check out a sample report. Sign up and use Kotlin with a free Datalore Community account. Zeppelin Kotlin
    0 码力 | 3753 页 | 29.69 MB | 1 年前
    3
  • pdf文档 Kotlin 官方文档中文版 v1.9

    browser with all the benefits of WebAssembly. 如何入门 Get started with Kotlin/Wasm in IntelliJ IDEA Check out the GitHub repository with Kotlin/Wasm examples 库支持 You can use the Kotlin standard library real-time code insights. It is now the preferred method for working with Kotlin notebooks. Be sure to check out our blog post about it. Kotlin 用于数据科学 41 Jupyter Kotlin 内核 Jupyter Notebook 是一个开源 Web 应用程序, get smart coding assistance when writing code, and share results as interactive or static reports. Check out a sample report. Kotlin 用于数据科学 43 Sign up and use Kotlin with a free Datalore Community account
    0 码力 | 2049 页 | 45.06 MB | 1 年前
    3
  • epub文档 FISCO BCOS 2.3.0 中文文档

    文件中的错误信息。 bash build_chain.sh -l "127.0.0.1:4" -p 30300,20200,8545 Checking fisco-bcos binary... Binary check passed. ============================================================== Generating CA key... ===== servers, it is usually different from p2p_ip. ; You can check accessible addresses of your network card. ; Please see https://tecadmin.net/check-ip-address-ubuntu-18-04- desktop/ ; for more instructions servers, it is usually different from p2p_ip. ; You can check accessible addresses of your network card. ; Please see https://tecadmin.net/check-ip-address-ubuntu-18-04- desktop/ ; for more instructions
    0 码力 | 1227 页 | 10.79 MB | 1 年前
    3
  • epub文档 FISCO BCOS 2.2.0 中文文档

    bash build_chain.sh -l "127.0.0.1:4" -p 30300,20200,8545 Checking fisco-bcos binary... Binary check passed. ============================================================== Generating CA key... ===== nle端 口。 配置控制台证书 重要 如果控制台配置正确,但是在CentOS系统上启动控制台出现如下错 误: Failed to connect to the node. Please check the node status and the console configuration. info|2019-01-21 17:23:32.576197| [g:1][p:264][CONSENSUS] servers, it is usually different from p2p_ip. ; You can check accessible addresses of your network card. ; Please see https://tecadmin.net/check-ip-address-ubuntu-18-04- desktop/ ; for more instructions
    0 码力 | 1156 页 | 10.03 MB | 1 年前
    3
  • pdf文档 Rust 程序设计语言简体中文版

    Running `target/debug/hello_cargo` Hello, world! Cargo 还提供了一个叫 cargo check 的命令。该命令快速检查代码确保其可以编译,但并不 产生可执行文件: $ cargo check Checking hello_cargo v0.1.0 (file:///projects/hello_cargo) Finished 32 secs 为什么你会不需要可执行文件呢?通常 cargo check 要比 cargo build 快得多,因为它省略 了生成可执行文件的步骤。如果你在编写代码时持续的进行检查,cargo check 可以让你快速 了解现在的代码能不能正常通过编译!为此很多 Rustaceans 编写代码时定期运行 cargo check 确保它们可以编译。当准备好使用可执行文件时才运行 cargo 创建项目。 • 可以使用 cargo build 构建项目。 21/600 Rust 程序设计语言 简体中文版 • 可以使用 cargo run 一步构建并运行项目。 • 可以使用 cargo check 在不生成二进制文件的情况下构建项目来检查错误。 • 有别于将构建结果放在与源码相同的目录,Cargo 会将其放到 target/debug 目录。 使用 Cargo 的一个额外的优点是,不管
    0 码力 | 600 页 | 12.99 MB | 1 年前
    3
  • epub文档 FISCO BCOS 2.4.0 中文文档

    文件中的错误信息。 bash build_chain.sh -l "127.0.0.1:4" -p 30300,20200,8545 Checking fisco-bcos binary... Binary check passed. ============================================================== Generating CA key... ===== servers, it is usually different from p2p_ip. ; You can check accessible addresses of your network card. ; Please see https://tecadmin.net/check-ip-address-ubuntu-18-04- desktop/ ; for more instructions servers, it is usually different from p2p_ip. ; You can check accessible addresses of your network card. ; Please see https://tecadmin.net/check-ip-address-ubuntu-18-04- desktop/ ; for more instructions
    0 码力 | 1314 页 | 11.21 MB | 1 年前
    3
共 469 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 47
前往
页
相关搜索词
Golang101Go语言中文文版中文版v121Julia文档Kotlin1.910官方FISCOBCOS2.32.2Rust程序设计程序设计简体简体中文版2.4
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩