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

无数据

分类

全部系统运维(9)网络与安全(9)后端开发(1)数据库(1)Python(1)PostgreSQL(1)云计算&大数据(1)Kubernetes(1)

语言

全部英语(10)中文(简体)(2)

格式

全部DOC文档 DOC(12)
 
本次搜索耗时 0.017 秒,为您找到相关结果约 12 个.
  • 全部
  • 系统运维
  • 网络与安全
  • 后端开发
  • 数据库
  • Python
  • PostgreSQL
  • 云计算&大数据
  • Kubernetes
  • 全部
  • 英语
  • 中文(简体)
  • 全部
  • DOC文档 DOC
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • word文档 python3学习手册

    -c "要执行的代码,多个语句之间用;分号隔开" ③执行脚本 # vi test.py #内容如下3行 #!/usr/bin/env python3 # coding=u�-8 print("hello world") # chmod +x test.py #添加可执行权限 # python3脚本文件 python2脚本文件里要指定以下2行 #!/usr/bin/env python # -*- coding: u�-8 -*- # ./test.py #执行脚本 #或者 # python3 test.py ★第1章、PyCharm常用设置 PyCharm官网: h�ps://www.jetbrains.com/pycharm/download/ def func_test(*tuple_xx, **dict_xx): print(tuple_xx) print(dict_xx) def func_test2(a, b, c): print(a, b, c) def func_test3(name, age, weight): print(name, age, weight) func_test(1, 2, 3
    0 码力 | 213 页 | 3.53 MB | 1 年前
    3
  • word文档 k8s操作手册 2.3

    #pod存活性探测 exec: #使用exec,在容器里执行shell命令,返回0则成功 command: ["test", "-e", "/tmp/xxhealthy"] #执行的命令 # kubectl get pod #查看pod, deployment dep-xxx --type=NodePort --name=svc-test1 #将 deploy里的端口暴露出来 # kubectl expose pod pod-nginx-web1 --type=NodePort --name=svc-test2 #将 pod里的端口暴露出来 # kubectl get svc NAME ★创建PV(使用RBD后端) # cat > pv-rbd-image-test1.yaml <test1 #此PV的名称 labels: pvlab: pvlab-rbd-image-test1 spec: capacity:
    0 码力 | 126 页 | 4.33 MB | 1 年前
    3
  • word文档 postgresql操作手册

    #创建一个名为cof的 用户,并设置密码 postgres=# grant all on database db_test to cof; #给cof授权,有操作db_test 库的所有权限 postgres=# postgres=# revoke all on database db_test from cof; #撤销用户权限 postgres=# drop user -d db_test #使用cof用户登录pg,连接 db_test这个库 db_test=> #提示符 => 表示普通账号,=#表示管理员账号 db_test=> #提示符=>前的db_test表示当前数据库名 from pg_database; #列出所有数据库(标准的sql 语句) datname ----------- postgres template1 template0 db_test postgres=# \l #列出所有数据库(pg内置查询命令)
    0 码力 | 17 页 | 445.84 KB | 1 年前
    3
  • word文档 The DevOps Handbook

    work were significantly behind schedule. Surprising discovery: only 50% of the source code in Dev/Test environments matched Prod. They fixed forward, but changes not put back into version control. Focused automated environment creation – time reduced from 8 weeks to 1 day b. ENABLE ON-DEMAND CREATION OF DEV, TEST, AND PRODUCTION ENVRIONMENTS i. Major contributing cause of issues stems from releases representing Reliable Automated Testing a. Undesired outcomes result from finding and fixes errors in a separate test phase. b. Delayed feedback fades the cause & effect link of the error; now requires firefighting
    0 码力 | 8 页 | 23.08 KB | 5 月前
    3
  • word文档 The DevOps Handbook

    PRACTICE i. Ensure automated tests demonstrate use and behavior of libraries and components ii. Test suite becomes the living documentation of the system specification and represent working examples Testing on the Toilet periodical 1. Started Test Certified Levels for teams and products to measure themselves against 2. Provide Test Certified Mentors and Test Mercenaries to kick start testing efforts code review 3. Instrument the repository to detect suspicious code (API calls from certain types of test code) 4. Ensure every CI process is in an isolated container 5. Make the version control credentials
    0 码力 | 9 页 | 25.13 KB | 5 月前
    3
  • word文档 DevOps Meetup

    technical learning.  How we need to improve  Sharing ideas, code, Community of Practice, etc.  Test Driven Infrastructure  Blue – green deployments  Combining DevOps Scrum – planning, standups Large-Scale Scrum, Craig Larman  Continuous Delivery: Reliable Software Releases through Build, Test, and Deployment Automation, Jez Humble and David Farley  The Phoenix Project: A Novel About IT
    0 码力 | 2 页 | 246.04 KB | 5 月前
    3
  • word文档 A Seat at the Table - IT Leadership in the Age of Agility

    risks to delivery? What assumptions are contained in the plans? How will the team move quickly to test those assumptions and gain information to manage the risks? I want to understand their plan for learning of discovery and innovation, during which they begin with a goal in mind and empirically find and test hypotheses. A Better Way – Desired Outcomes: We must replace the notion of requirement with that
    0 码力 | 4 页 | 379.23 KB | 5 月前
    3
  • word文档 A Seat at the Table: IT Leadership in the Age of Agility - Part 2

    pieces without requiring changes to the whole ball of EA.  It has a robust, automated regression test suite, so that new development does not cause expensive break-fix activity.  It has good monitoring quickly deploying functionality, learning, and adjusting plans.  We can conduct experiments that test the assumptions in our business cases.  We can reduce the overhead of our governance processes and
    0 码力 | 7 页 | 387.61 KB | 5 月前
    3
  • word文档 DoD CIO Enterprise DevSecOps Reference Design - Summary

    automate, monitor, and apply security at all phases of the software lifecycle: plan, develop, build, test, release, deliver, deploy, operate, and monitor. In DevSecOps, testing and security are shifted to
    0 码力 | 8 页 | 3.38 MB | 5 月前
    3
  • word文档 The DevOps Handbook

    and A/B Testing into Our Daily Work a. INTRODUCTION i. Jez Humble, “The most inefficient way to test a business model or product idea is to build the complete product to see whether the predicted demand
    0 码力 | 8 页 | 24.02 KB | 5 月前
    3
共 12 条
  • 1
  • 2
前往
页
相关搜索词
python3学习手册k8s操作操作手操作手册2.3postgresqlTheDevOpsHandbookMeetupSeatattheTableITLeadershipinAgeofAgilityPartDoDCIOEnterpriseDevSecOpsReferenceDesignSummary
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩