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

无数据

分类

全部后端开发(70)区块链(70)

语言

全部中文(简体)(44)英语(26)

格式

全部其他文档 其他(43)PDF文档 PDF(27)
 
本次搜索耗时 0.134 秒,为您找到相关结果约 70 个.
  • 全部
  • 后端开发
  • 区块链
  • 全部
  • 中文(简体)
  • 英语
  • 全部
  • 其他文档 其他
  • PDF文档 PDF
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • epub文档 Hyperledger Fabric 1.4 中文文档

    的库和命令行工具,用来提高基于 SSH 的 应用部署和系统管理效率。 更具体地说,Fabric 是: 一个让你通过 命令行 执行 无参数 Python 函数 的工具; 一个让通过 SSH 执行 Shell 命令更加 容易 、 更符合 Python 风格 的命令 库(建立于一个更低层次的库)。 自然而然地,大部分用户把这两件事结合着用,使用 Fabric 来写和执行 Python 函数或 task 中完成。 参见 Execution strategy, 定义任务, fab 选项和参数 任务参数 和你平时的 Python 编程一样,给任务函数传递参数很有必要``。Fabric 支持 Shell 兼容的参数用法: <任务名>:<参数>, <关键字参数名>=<参数值>,... 用起来就 是这样,下面我们用一个 say hello 的实例来展开说明一下: def hello(name="world"): 本地命令 在前面的例子中, fab 实际上只节省了数行 if __name__ == "__main__" 这样 的惯例代码而已。Fabric 的设计目的更是为了使用它自己的 API,包括执行 Shell 命令、传送文件等函数(或操作)接口。 假设我们需要为一个 web 应用创建 fabfile 。具体的情景如下:这个 web 应用 的代码使用 git 托管在一台远程服务器 vcshost 上,我们把它的代码库克隆到
    0 码力 | 145 页 | 161.53 KB | 1 年前
    3
  • epub文档 Hyperledger Fabric 2.5 中文文档

    的库和命令行工具,用来提高基于 SSH 的 应用部署和系统管理效率。 更具体地说,Fabric 是: 一个让你通过 命令行 执行 无参数 Python 函数 的工具; 一个让通过 SSH 执行 Shell 命令更加 容易 、 更符合 Python 风格 的命令 库(建立于一个更低层次的库)。 自然而然地,大部分用户把这两件事结合着用,使用 Fabric 来写和执行 Python 函数或 task 中完成。 参见 Execution strategy, 定义任务, fab 选项和参数 任务参数 和你平时的 Python 编程一样,给任务函数传递参数很有必要``。Fabric 支持 Shell 兼容的参数用法: <任务名>:<参数>, <关键字参数名>=<参数值>,... 用起来就 是这样,下面我们用一个 say hello 的实例来展开说明一下: def hello(name="world"): 本地命令 在前面的例子中, fab 实际上只节省了数行 if __name__ == "__main__" 这样 的惯例代码而已。Fabric 的设计目的更是为了使用它自己的 API,包括执行 Shell 命令、传送文件等函数(或操作)接口。 假设我们需要为一个 web 应用创建 fabfile 。具体的情景如下:这个 web 应用 的代码使用 git 托管在一台远程服务器 vcshost 上,我们把它的代码库克隆到
    0 码力 | 138 页 | 154.00 KB | 1 年前
    3
  • epub文档 Hyperledger Fabric 1.1 Documentation

    them in the appropriate startup file, such as your personal ~/.bashrc file if you are using the bash shell under Linux. First, you must set the environment variable GOPATH to point at the Go workspace containing other parts of the build system. So even if you currently have no such directory yet, extend your shell search path as above. Node.js Runtime and NPM If you will be developing applications for Hyperledger Git Bash [https://git-scm.com/downloads] and provides a better alternative to the built-in Windows shell. However experience has shown this to be a poor development environment with limited functionality
    0 码力 | 422 页 | 4.84 MB | 1 年前
    3
  • pdf文档 Hyperledger Fabric 1.1 Documentation

    them in the appropriate startup file, such as your personal ~/.bashrc file if you are using the bash shell under Linux. First, you must set the environment variable GOPATH to point at the Go workspace containing other parts of the build system. So even if you currently have no such directory yet, extend your shell search path as above. 1.1.4 Node.js Runtime and NPM If you will be developing applications for Hyperledger Quickstart Terminal which uses Git Bash and provides a better alternative to the built-in Windows shell. However experience has shown this to be a poor development environment with limited functionality
    0 码力 | 277 页 | 3.21 MB | 1 年前
    3
  • pdf文档 Hyperledger Fabric 1.2 Documentation

    them in the appropriate startup file, such as your personal ~/.bashrc file if you are using the bash shell under Linux. First, you must set the environment variable GOPATH to point at the Go workspace containing other parts of the build system. So even if you currently have no such directory yet, extend your shell search path as above. 3.1.4 Node.js Runtime and NPM If you will be developing applications for Hyperledger Quickstart Terminal which uses Git Bash and provides a better alternative to the built-in Windows shell. However experience has shown this to be a poor development environment with limited functionality
    0 码力 | 335 页 | 4.48 MB | 1 年前
    3
  • epub文档 Hyperledger Fabric 1.2 Documentation

    them in the appropriate startup file, such as your personal ~/.bashrc file if you are using the bash shell under Linux. First, you must set the environment variable GOPATH to point at the Go workspace containing other parts of the build system. So even if you currently have no such directory yet, extend your shell search path as above. Node.js Runtime and NPM If you will be developing applications for Hyperledger Git Bash [https://git-scm.com/downloads] and provides a better alternative to the built-in Windows shell. However experience has shown this to be a poor development environment with limited functionality
    0 码力 | 497 页 | 6.59 MB | 1 年前
    3
  • epub文档 Hyperledger Fabric 1.3 Documentation

    them in the appropriate startup file, such as your personal ~/.bashrc file if you are using the bash shell under Linux. First, you must set the environment variable GOPATH to point at the Go workspace containing other parts of the build system. So even if you currently have no such directory yet, extend your shell search path as above. Node.js Runtime and NPM If you will be developing applications for Hyperledger Git Bash [https://git-scm.com/downloads] and provides a better alternative to the built-in Windows shell. However experience has shown this to be a poor development environment with limited functionality
    0 码力 | 528 页 | 6.85 MB | 1 年前
    3
  • pdf文档 Hyperledger Fabric 1.3 Documentation

    them in the appropriate startup file, such as your personal ~/.bashrc file if you are using the bash shell under Linux. First, you must set the environment variable GOPATH to point at the Go workspace containing other parts of the build system. So even if you currently have no such directory yet, extend your shell search path as above. 5.1.4 Node.js Runtime and NPM If you will be developing applications for Hyperledger Quickstart Terminal which uses Git Bash and provides a better alternative to the built-in Windows shell. However experience has shown this to be a poor development environment with limited functionality
    0 码力 | 367 页 | 4.95 MB | 1 年前
    3
  • epub文档 Hyperledger Fabric 1.4.8 Documentation

    them in the appropriate startup file, such as your personal ~/.bashrc file if you are using the bash shell under Linux. First, you must set the environment variable GOPATH to point at the Go workspace containing other parts of the build system. So even if you currently have no such directory yet, extend your shell search path as above. Node.js Runtime and NPM If you will be developing applications for Hyperledger Git Bash [https://git-scm.com/downloads] and provides a better alternative to the built-in Windows shell. However experience has shown this to be a poor development environment with limited functionality
    0 码力 | 699 页 | 9.02 MB | 1 年前
    3
  • pdf文档 Hyperledger Fabric 1.4.9 Documentation

    them in the appropriate startup file, such as your personal ~/.bashrc file if you are using the bash shell under Linux. First, you must set the environment variable GOPATH to point at the Go workspace containing other parts of the build system. So even if you currently have no such directory yet, extend your shell search path as above. 5.1.4 Node.js Runtime and NPM If you will be developing applications for Hyperledger Quickstart Terminal which uses Git Bash and provides a better alternative to the built-in Windows shell. However experience has shown this to be a poor development environment with limited functionality
    0 码力 | 483 页 | 7.48 MB | 1 年前
    3
共 70 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
前往
页
相关搜索词
HyperledgerFabric1.4中文文文文档中文文档2.51.1Documentation1.21.3
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩