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

无数据

分类

全部系统运维(8)网络与安全(8)后端开发(1)数据库(1)综合其他(1)Python(1)PostgreSQL(1)云计算&大数据(1)Kubernetes(1)版本控制(1)

语言

全部英语(9)中文(简体)(3)

格式

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

    \033[和m之间的数字为显示效果及颜色的 数字代码 数 字 代 码 效果 颜色 前景色代 码 背景色代 码 0 默 认 , 灰 白 黑 30 40 1 粗体 红 31 41 4 下划线 绿 32 42 5 闪烁 黄 33 43 7 反白显示 蓝 34 44 紫 35 45 青 36 46 灰 白 , 同 0 默认 37 47 效果+颜色用;分号隔开 print( To Do # range(1,9) #从1开始,1到8 # range(1,9,2) #从1开始,步长为2,即1,3,5,7 ②while循环 while 判断 : 循环体 con�nue #con�nue跳过剩下的循环体,进入下一轮loop,break 跳出整个循环 也可用 import math ; math.trunc(xx/yy) 来取整,(xx/yy)可为float,结果 也是整数商 ★小数取整 ①内置函数round()为四舍五入,n.5则靠偶数取整 ROUND_HALF_EVEN round(2.5) #返回2 round(3.5) #返回4 ②math.ceil() 进一法 import
    0 码力 | 213 页 | 3.53 MB | 1 年前
    3
  • word文档 git 操作手册

    rmtRepo main:bran5 #将远程的main分支下载到本地并基于此创 建bran5分支 # git checkout bran5 #切换到bran5分支 # git branch -a * bran5 remotes/rmtRepo/main 或者: # git checkout -b bran5 rmtRepo/main #成员再做增删改工作,过程省略 # git push -u rmtRepo bran5 #将本地代码库的当前分支(bran3)推送到远 程的代码库的bran5分支 # git branch -a * bran5 remotes/rmtRepo/bran5 #可见远程仓库已有bran5分支了 remotes/rmtRepo/main #如果管理员 merge remotes/origin/main main #合并同步远程代码库的main分支到 本地的main分支 ★其他克隆操作 # git clone -b bran5 --depth=1 h�p://gitlab.cof-lee.com/cof/pro-1.git #-b克 隆指定版本,可以是branch,也可是tag,--depth=1表示史克隆最新一层提交,
    0 码力 | 35 页 | 1.69 MB | 1 年前
    3
  • word文档 k8s操作手册 2.3

    k8s.io/v1beta1 kind: KubeletConfigura�on cgroupDriver: systemd failSwapOn: False #保存,(修改蓝色字体的参数值及新增最后5行) # kubeadm config images list --config /etc/kubeadm-init.yaml #查看需要的镜 像 cof-lee.com k8s.io/v1beta1 kind: KubeletConfigura�on cgroupDriver: systemd failSwapOn: False #保存,(修改蓝色字体的参数值及新增最后5行) # kubeadm config images list --config /etc/kubeadm-init.yaml #查看需要的镜 像 cof-lee.com 1 4h25m �gera-operator �gera-operator 1/1 1 1 5h5m ★指定底层网络接口(node ip) k8s calico组件daemonset设置: - name: IP_AUTODETECTION_METHOD valuse: "interface=ens3"
    0 码力 | 126 页 | 4.33 MB | 1 年前
    3
  • word文档 The DevOps Handbook

    The DevOps Handbook – Parts 5 & 6 – Part 5: The Third Way – The Technical Practices of Continual Learning and Experimentation; 1. Introduction a. Goal – practices to enable learning as quickly, frequently humans can decide to take action or not, and that the judgment of those decisions lies in hindsight 5. Propose countermeasures to prevent a similar accident from happening in the future and ensure these identified the problem 3. People who responded to the problem 4. People who diagnosed the problem 5. People who were affected by the problem 6. Anyone else who is interested in attending the meeting
    0 码力 | 9 页 | 25.13 KB | 5 月前
    3
  • word文档 The DevOps Handbook

    dependencies 2. Environment scripts & creation tools 3. DB scripts and reference data 4. Containers 5. Automated tests 6. Project artifacts – documentation, procedures, etc. 7. Application configuration the lifecycle. Downward spiral of pain b. HP LaserJet Firmware –i. Before CI: 2 releases per year. 5% of effort supporting new features, 20% on detailed planning, 25% on porting code amongst branches higher throughput and better stability, and even higher job satisfaction and lower rates of burnout. 5. Ch. 12 Automate and Enable Low-Risk Releases a. Just like we reduce batch size and increase frequency
    0 码力 | 8 页 | 23.08 KB | 5 月前
    3
  • word文档 The DevOps Handbook

    and will likely trigger an alert 4. Error – error conditions such as API failures, internal issues 5. Fatal – forces a termination iv. Examples of potentially significant events (Gartner’s GTP Security data access 3. System and application changes, especially privileged changes 4. Data changes (CRUD) 5. Invalid input, possible malicious injections or threats 6. Resources (RAM, disk, CPU, bandwidth, and has a service handback mechanism to the development team when production services become fragile 5. Ch. 17 – Integrate Hypothesis-Driven Development and A/B Testing into Our Daily Work a. INTRODUCTION
    0 码力 | 8 页 | 24.02 KB | 5 月前
    3
  • word文档 DoD CIO Enterprise DevSecOps Reference Design - Summary

    also be used to send notifications when there is anomalous behavior. 4. Vulnerability Management 5. A service mesh proxy to connect to the service mesh 6. Zero Trust down to the container level. Program-specific artifact repository 4. Runtime Behavior Analysis Artificial Intelligence (AI) service 5. DCAR for the hardened containers 6. Common Vulnerabilities and Exposures (CVE)Service / host-based
    0 码力 | 8 页 | 3.38 MB | 5 月前
    3
  • word文档 The DevOps Handbook

    iv. Mean time to restore service (168 times faster) 4. An Introduction to The DevOps Handbook xxi 5. PART I—THE THREE WAYS 1 a. Introduction i. THE LEAN MOVEMENT 1. manufacturing lead time required step? g. What is your expected outcome? h. When can we check? 6. PART II—WHERE TO START 47 7. Ch. 5 Selecting Which Value Stream to Start With 51 a. GREENFIELD vs BROWNFIELD SERVICES i. DevOps is not
    0 码力 | 8 页 | 22.57 KB | 5 月前
    3
  • word文档 Velocity Conference 2015

    ublic/schedule/proceedings [2] YouTube Playlist: https://www.youtube.com/playlist?list=PL055Epbe6d5Y86GSg3nhUH3o_v62FGpCI
    0 码力 | 4 页 | 176.79 KB | 5 月前
    3
  • word文档 Government Excerpt

    a national leader in sustainable energy and a clean environment; 4. Healthy and safe communities; 5. Efficient, effective, and accountable government. These are not revolutionary goals. This is what people
    0 码力 | 3 页 | 414.99 KB | 5 月前
    3
共 12 条
  • 1
  • 2
前往
页
相关搜索词
python3学习手册git操作操作手操作手册k8s2.3TheDevOpsHandbookDoDCIOEnterpriseDevSecOpsReferenceDesignSummaryVelocityConference2015GovernmentExcerpt
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩