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

无数据

分类

全部后端开发(34)系统运维(24)httpd(17)综合其他(16)区块链(16)Blender(7)Rust(6)Krita(6)Python(4)Zabbix(4)

语言

全部中文(简体)(76)

格式

全部其他文档 其他(39)PDF文档 PDF(37)
 
本次搜索耗时 0.214 秒,为您找到相关结果约 76 个.
  • 全部
  • 后端开发
  • 系统运维
  • httpd
  • 综合其他
  • 区块链
  • Blender
  • Rust
  • Krita
  • Python
  • Zabbix
  • 全部
  • 中文(简体)
  • 全部
  • 其他文档 其他
  • PDF文档 PDF
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 Rust 程序设计语言简体中文版

    现在让我们看看通过 Cargo 构建和运行 “Hello, world!” 程序有什么不同!在 hello_cargo 目录 下,输入下面的命令来构建项目: $ cargo build Compiling hello_cargo v0.1.0 (file:///projects/hello_cargo) Finished dev [unoptimized + debuginfo] target(s) 的输出。Cargo 发现文件并没有被 改变,所以它并没有重新编译,而是直接运行了可执行文件。如果修改了源文件的话,Cargo 会在运行之前重新构建项目,并会出现像这样的输出: $ cargo run Compiling hello_cargo v0.1.0 (file:///projects/hello_cargo) Finished dev [unoptimized + debuginfo] target(s) } 现在使用 cargo run 命令,一步完成 “Hello, world!” 程序的编译和运行: 23/600 Rust 程序设计语言 简体中文版 $ cargo run Compiling guessing_game v0.1.0 (file:///projects/guessing_game) Finished dev [unoptimized + debuginfo]
    0 码力 | 600 页 | 12.99 MB | 1 年前
    3
  • pdf文档 Rust 程序设计语言 简体中文版 1.85.0

    现在让我们看看通过 Cargo 构建和运行 “Hello, world!” 程序有什么不同!在 hello_cargo 目录 下,输入下面的命令来构建项目: $ cargo build Compiling hello_cargo v0.1.0 (file:///projects/hello_cargo) Finished dev [unoptimized + debuginfo] target(s) 的输出。Cargo 发现文件并没有被 改变,所以它并没有重新构建,而是直接运行了二进制文件。如果修改了源文件的话,Cargo 会在运行之前重新构建项目,并会出现像这样的输出: $ cargo run Compiling hello_cargo v0.1.0 (file:///projects/hello_cargo) Finished dev [unoptimized + debuginfo] target(s) println!("Hello, world!"); } 现在使用 cargo run 命令,一步完成 “Hello, world!” 程序的编译和运行: $ cargo run Compiling guessing_game v0.1.0 (file:///projects/guessing_game) Finished `dev` profile [unoptimized +
    0 码力 | 562 页 | 3.23 MB | 8 天前
    3
  • pdf文档 从零蛋开始学 Rust

    ����� movies::english::comedy::play("Airplane!".to_string()); } [www.badu.com]$ cargo run Compiling guess-game-app v0.1.0 (/Users/Admin/Downloads/guess-game-app) Finished dev [unoptimized + debuginfo] �� Cargo.toml ������ �� Cargo.toml ���� [dependencies] ����� ���������� $ cargo build Compiling movie_lib v0.1.0 (/Users/Admin/Downloads/rust/movie_app/movie_lib) Finished dev [unoptimized �������������������������� ������ ������� $ cargo run Compiling movies_lib v0.1.0 (/Users/Admn/Downloads/rust/movie_app/movie_lib) Compiling movie_lib_test v0.1.0 (/Users/Admin/Downloads/rust/m
    0 码力 | 168 页 | 1.24 MB | 1 年前
    3
  • pdf文档 Swift for TensorFlow - 莲叔

    Eager-style code, but run as graph.
 • With full optimization from Graph mode.
 • Generate graph in compiling stage, 
 then intelligently coordinate it with program 
 during execution. 
 • Transparent graph Since there is no runtime shit in Swift Can directly deduct by AST traverse Generate graph in compiling stage • Compiler will generate TF graph based on static analysis result.
 • Static type system the approach rather than Python. Reference: Swift for TensorFlow white paper document After Compiling func linear(x : FloatTensor, w : FloatTensor, b : FloatTensor) -> FloatTensor { let tmp = w
    0 码力 | 56 页 | 3.03 MB | 1 年前
    3
  • pdf文档 Rust 异步 Runtime 的兼容层 - 施继成

    structures and associate functions • Raw functions Compatible layer Macro wrapper • Conditional compiling • Attribute proc macro Compatible layer Data structure wrapper • The same type name but different abstraction Compatible layer Function wrapper • Conditional compiling • Type conversion Compatible layer Limitations • Conditional compiling → global single runtime • External Libs (Http, S3, etc.)
    0 码力 | 22 页 | 957.41 KB | 1 年前
    3
  • epub文档 Kotlin 1.9.10 官方文档 中文版

    Kotlin/Native. The compilation of klib artifacts into native code is now partially incremental. When compiling Kotlin source code into native binary in debug mode, the compilation goes through two stages: from 1.6.20, the JS IR compiler generates separate .js files for project modules by default. Compiling the project into a single .js file is now available with the following Gradle property: # gradle flag --parallel . Using this flag, Gradle executes tasks concurrently, increasing the speed of compiling tasks and utilizing the resources more efficiently. You no longer need to use the kotlin.parallel
    0 码力 | 3753 页 | 29.69 MB | 1 年前
    3
  • chm文档 httpd 2.2.29 中文文档

    Documentation > Version 2.2 Compiling and Installing This document covers compilation and installation of the Apache HTTP Server on Unix and Unix-like systems only. For compiling and installation on Windows and installation process is described in more detail below, beginning with the requirements for compiling and installing Apache HTTP Server. Requirements The following requirements exist for building several mirrors. Most users of Apache HTTPd on unix-like systems will be better off downloading and compiling a source version. The build process (described below) is easy, and it allows you to customize your
    0 码力 | 1854 页 | 1.48 MB | 1 年前
    3
  • chm文档 httpd 2.2.27 中文文档

    Documentation > Version 2.2 Compiling and Installing This document covers compilation and installation of the Apache HTTP Server on Unix and Unix-like systems only. For compiling and installation on Windows and installation process is described in more detail below, beginning with the requirements for compiling and installing Apache HTTP Server. Requirements The following requirements exist for building several mirrors. Most users of Apache HTTPd on unix-like systems will be better off downloading and compiling a source version. The build process (described below) is easy, and it allows you to customize your
    0 码力 | 1849 页 | 1.47 MB | 1 年前
    3
  • chm文档 httpd 2.2.31 中文文档

    Documentation > Version 2.2 Compiling and Installing This document covers compilation and installation of the Apache HTTP Server on Unix and Unix-like systems only. For compiling and installation on Windows and installation process is described in more detail below, beginning with the requirements for compiling and installing Apache HTTP Server. Requirements The following requirements exist for building several mirrors. Most users of Apache HTTPd on unix-like systems will be better off downloading and compiling a source version. The build process (described below) is easy, and it allows you to customize your
    0 码力 | 1860 页 | 1.48 MB | 1 年前
    3
  • chm文档 httpd 2.2.27.dev 中文文档

    Documentation > Version 2.2 Compiling and Installing This document covers compilation and installation of the Apache HTTP Server on Unix and Unix-like systems only. For compiling and installation on Windows and installation process is described in more detail below, beginning with the requirements for compiling and installing Apache HTTP Server. Requirements The following requirements exist for building several mirrors. Most users of Apache HTTPd on unix-like systems will be better off downloading and compiling a source version. The build process (described below) is easy, and it allows you to customize your
    0 码力 | 1849 页 | 1.47 MB | 1 年前
    3
共 76 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 8
前往
页
相关搜索词
Rust程序设计程序设计语言简体中文文版中文版简体中文版1.85零蛋开始SwiftforTensorFlow莲叔继成2023RustChinaConf异步兼容Kotlin1.910官方文档httpd2.2292731dev
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩