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

无数据

分类

全部后端开发(398)Python(240)综合其他(185)Weblate(153)Java(61)Spring(61)区块链(45)Django(43)PyWebIO(43)Jupyter(31)

语言

全部英语(514)中文(简体)(133)法语(1)日语(1)韩语(1)英语(1)

格式

全部其他文档 其他(651)
 
本次搜索耗时 0.188 秒,为您找到相关结果约 651 个.
  • 全部
  • 后端开发
  • Python
  • 综合其他
  • Weblate
  • Java
  • Spring
  • 区块链
  • Django
  • PyWebIO
  • Jupyter
  • 全部
  • 英语
  • 中文(简体)
  • 法语
  • 日语
  • 韩语
  • 英语
  • 全部
  • 其他文档 其他
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • epub文档 peewee Documentation Release 3.6.0

    from peewee import * # SQLite database using WAL journal mode and 64MB cache. sqlite_db = SqliteDatabase('/path/to/app.db', pragmas={ 'journal_mode': 'wal', 'cache_size': -1024 * 64}) # Connect to th/to/app.db', regexp_function=True, timeout=3, pragmas={'journal_mode': 'wal'}) from playhouse.postgres_ext import PostgresqlExtDatabase # Use Postgres (and register hstore extension) org/2/library/sqlite3.html#sqlite3.connect]. sqlite_db = SqliteDatabase('my_app.db', pragmas={'journal_mode': 'wal'}) class BaseModel(Model): """A base model that will use our Sqlite database.""" class Meta:
    0 码力 | 377 页 | 399.12 KB | 1 年前
    3
  • epub文档 peewee Documentation Release 3.5.0

    from peewee import * # SQLite database using WAL journal mode and 64MB cache. sqlite_db = SqliteDatabase('/path/to/app.db', pragmas={ 'journal_mode': 'wal', 'cache_size': -1024 * 64}) # Connect to th/to/app.db', regexp_function=True, timeout=3, pragmas={'journal_mode': 'wal'}) from playhouse.postgres_ext import PostgresqlExtDatabase # Use Postgres (and register hstore extension) org/2/library/sqlite3.html#sqlite3.connect]. sqlite_db = SqliteDatabase('my_app.db', pragmas={'journal_mode': 'wal'}) class BaseModel(Model): """A base model that will use our Sqlite database.""" class Meta:
    0 码力 | 347 页 | 380.80 KB | 1 年前
    3
  • epub文档 peewee Documentation Release 3.0.0

    from peewee import * # SQLite database using WAL journal mode and 64MB cache. sqlite_db = SqliteDatabase('/path/to/app.db', pragmas=( ('journal_mode', 'wal'), ('cache_size', -1024 * 64))) # Connect h/to/app.db', regexp_function=True, timeout=3, pragmas=(('journal_mode', 'wal'),)) from playhouse.postgres_ext import PostgresqlExtDatabase # Use Postgres (and register hstore playhouse.sqlite_ext import SqliteExtDatabase sqlite_db = SqliteExtDatabase('my_app.db', journal_mode='WAL') PRAGMA statements SQLite allows run-time configuration of a number of parameters through PRAGMA
    0 码力 | 319 页 | 361.50 KB | 1 年前
    3
  • epub文档 peewee Documentation Release 3.4.0

    from peewee import * # SQLite database using WAL journal mode and 64MB cache. sqlite_db = SqliteDatabase('/path/to/app.db', pragmas=( ('journal_mode', 'wal'), ('cache_size', -1024 * 64))) # Connect h/to/app.db', regexp_function=True, timeout=3, pragmas=(('journal_mode', 'wal'),)) from playhouse.postgres_ext import PostgresqlExtDatabase # Use Postgres (and register hstore playhouse.sqlite_ext import SqliteExtDatabase sqlite_db = SqliteExtDatabase('my_app.db', journal_mode='WAL') PRAGMA statements SQLite allows run-time configuration of a number of parameters through PRAGMA
    0 码力 | 349 页 | 382.34 KB | 1 年前
    3
  • epub文档 peewee Documentation Release 3.1.0

    from peewee import * # SQLite database using WAL journal mode and 64MB cache. sqlite_db = SqliteDatabase('/path/to/app.db', pragmas=( ('journal_mode', 'wal'), ('cache_size', -1024 * 64))) # Connect h/to/app.db', regexp_function=True, timeout=3, pragmas=(('journal_mode', 'wal'),)) from playhouse.postgres_ext import PostgresqlExtDatabase # Use Postgres (and register hstore playhouse.sqlite_ext import SqliteExtDatabase sqlite_db = SqliteExtDatabase('my_app.db', journal_mode='WAL') PRAGMA statements SQLite allows run-time configuration of a number of parameters through PRAGMA
    0 码力 | 332 页 | 370.77 KB | 1 年前
    3
  • epub文档 peewee Documentation Release 2.10.2

    use the schema migrations extension to alter your database schema using Python. Note You can also write database.create_tables([User, ...], True) and peewee will first check to see if the table exists before playhouse.sqlite_ext import SqliteExtDatabase sqlite_db = SqliteExtDatabase('my_app.db', journal_mode='WAL') PRAGMA statements New in version 2.6.4. SQLite allows run-time configuration of a number of parameters containing the pragma name and value: db = SqliteDatabase('my_app.db', pragmas=( ('journal_mode', 'WAL'), ('cache_size', 10000), ('mmap_size', 1024 * 1024 * 32), )) SQLite and Autocommit Changed
    0 码力 | 275 页 | 276.96 KB | 1 年前
    3
  • epub文档 Hyperledger Fabric 2.1 Documentation

    policy for keys within the collection. This feature can be used to restrict which organizations can write data to a collection, and is what enables the new chaincode lifecycle and chaincode application patterns Hyperledger Fabric has a ledger subsystem comprising two components: the world state and the transaction log. Each participant has a copy of the ledger to every Hyperledger Fabric network they belong to. The the state of the ledger at a given point in time. It’s the database of the ledger. The transaction log component records all transactions which have resulted in the current value of the world state; it’s
    0 码力 | 904 页 | 10.95 MB | 1 年前
    3
  • epub文档 FISCO BCOS 2.3.0 中文文档

    0.0 ,出于安全考 虑,请根据实际业务网络情况,修改为安全的监听地址,如:内网IP或 特定的外网IP 命令执行成功会输出All completed。如果执行出错,请检查nodes/build.log 文件中的错误信息。 bash build_chain.sh -l "127.0.0.1:4" -p 30300,20200,8545 Checking fisco-bcos binary... /home/ubuntu/fisco/nodes/127.0.0.1/node3/../fisco-bcos -c config.ini tail -f nodes/127.0.0.1/node0/log/log* | grep connected 正常情况会不停地输出链接信息,从输出可以看出node0与另外3个节点有链 接。 执行下面指令,检查是否在共识 正常情况会不停输出++++Generating 17:31:18.317105| [P2P][Service] heartBeat connected count,size=3 tail -f nodes/127.0.0.1/node0/log/log* | grep +++ info|2019-01-21 17:23:32.576197| [g:1][p:264][CONSENSUS] [SEALER]++++++++++++++++Generating
    0 码力 | 1227 页 | 10.79 MB | 1 年前
    3
  • epub文档 FISCO BCOS 2.2.0 中文文档

    jsonrpc_port, 出于安全考虑jsonrpc/channel默认监听127.0.0.1,需要外网访问请添加-i 参数。 命令执行成功会输出All completed。如果执行出错,请检查nodes/build.log 文件中的错误信息。 启动FISCO BCOS链 启动所有节点 启动成功会输出类似下面内容的响应。否则请使用netstat -an | grep tcp 检查机器的30300~30303,20 /home/fisco/fisco/nodes/127.0.0.1/node3/../fisco-bcos -c config.ini tail -f nodes/127.0.0.1/node0/log/log* | grep connected info|2019-01-21 17:30:58.316769| [P2P][Service] heartBeat connected count,size=3 17:31:18.317105| [P2P][Service] heartBeat connected count,size=3 tail -f nodes/127.0.0.1/node0/log/log* | grep +++ 配置及使用控制台 在控制台通过Web3SDK链接FISCO BCOS节点,实现查询区块链状态、部署 调用合约等功能,能够快速获取到所需要的信息。控制台指令详细介绍参考
    0 码力 | 1156 页 | 10.03 MB | 1 年前
    3
  • epub文档 FISCO BCOS 2.4.0 中文文档

    0.0 ,出于安全考 虑,请根据实际业务网络情况,修改为安全的监听地址,如:内网IP或 特定的外网IP 命令执行成功会输出All completed。如果执行出错,请检查nodes/build.log 文件中的错误信息。 bash build_chain.sh -l "127.0.0.1:4" -p 30300,20200,8545 Checking fisco-bcos binary... /home/ubuntu/fisco/nodes/127.0.0.1/node3/../fisco-bcos -c config.ini tail -f nodes/127.0.0.1/node0/log/log* | grep connected 正常情况会不停地输出链接信息,从输出可以看出node0与另外3个节点有链 接。 执行下面指令,检查是否在共识 正常情况会不停输出++++Generating info|2019-01-21 17:31:18.317105| [P2P][Service] heartBeat,connected count=3 tail -f nodes/127.0.0.1/node0/log/log* | grep +++ info|2019-01-21 17:23:32.576197| [g:1][p:264][CONSENSUS] [SEALER]++++++++++++++++Generating
    0 码力 | 1314 页 | 11.21 MB | 1 年前
    3
共 651 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 66
前往
页
相关搜索词
peeweeDocumentationRelease3.63.53.03.43.12.10HyperledgerFabric2.1DocumentationFISCOBCOS2.3中文文档2.22.4
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩