码迷,mamicode.com
首页 >  
搜索关键字:自动化运维 ansible saltstack puppet push    ( 16763个结果
有关vue全家桶和vue-cli的知识点总结
1,vue全家桶有什么? 2,vue中怎样获取value值,js怎样获取value值? 3,vue-router的作用? 4,vue开发的项目中为什么要设置请求或响应拦截器,作用分别是什么? 5,vue开发的项目中怎样添加路由导航,他的作用是什么? 6,vue项目中怎样获取组件间的数据? 7,vue ...
分类:其他好文   时间:2021-04-06 14:39:06    阅读次数:0
用两个栈实现队列
解题思路: 栈是先进后出,队列是先进先出 # -*- coding:utf-8 -*- class Solution: # 初始化栈为空列表 def __init__(self): self.acceptStack=[] self.outputStack=[] def push(self, node ...
分类:其他好文   时间:2021-04-02 13:32:05    阅读次数:0
[SDOI2008]Sandy的卡片
VIII.[SDOI2008]Sandy的卡片 ……有什么意义吗…… 差个分,然后就是IV.[POI2000]公共串的内容了,套个单调队列,$O(n)$解决,假如你用DC3的话。 代码: #include<bits/stdc++.h> using namespace std; int all,n,m ...
分类:其他好文   时间:2021-04-01 13:08:31    阅读次数:0
9.ansible 循环功能和忽略错误
在剧本中设置循环信息 vim test04.yml hosts: all remote_user: root tasks: name: Add Users user: name={{ item.name }} groups={{ item.groups }} state=present with_i ...
分类:其他好文   时间:2021-03-31 11:52:29    阅读次数:0
7.数据结构-stl
/* 总结:stl里数据结构,如hash(unordered_set\map),queue,deque,priority_queue,stack 主要会用以上数据结构的成员函数,empty(),count(),insert(),push(),push_back(),front(),top(),bac ...
分类:其他好文   时间:2021-03-30 13:58:40    阅读次数:0
Pod处于imagepullbackoff状态
背景: Pod状态是imagepullbackoff 原因可能有多种: 1、镜像名称无效,例如拼错镜像名称,或者镜像不存在 解:修改镜像名称和标记来解决该问题,或者将正确镜像上传到仓库中。 2、镜像仓库中丢失此镜像及Pod所在节点上丢失了镜像。 解:需要从新上传镜像到仓库中,或者同一Pod部署在了多 ...
分类:其他好文   时间:2021-03-30 13:46:35    阅读次数:0
ansible_配置介绍
文档链接 https://docs.ansible.com/ansible/latest/reference_appendices/config.html 配置文件 [defaults] inventory = /etc/ansible/hosts sudo_user=root remote_por ...
分类:其他好文   时间:2021-03-30 13:37:18    阅读次数:0
leetcode 173. 二叉搜索树迭代器
leetcode 173. 二叉搜索树迭代器:实现一个二叉搜索树迭代器类BSTIterator ,表示一个按中序遍历二叉搜索树(BST)的迭代器。 ...
分类:其他好文   时间:2021-03-30 13:04:24    阅读次数:0
C语言实现顺序栈
#include <stdio.h> #define NUMBER 100 int push(int* a, int top, int data) { a[++top] = data; return top; } int pop(int* a, int top) { if (top == -1) { ...
分类:编程语言   时间:2021-03-29 12:23:07    阅读次数:0
Linux 命令
1. git git checkout -b v1 // 创建并切换 git checkout name // 撤回修改文件 git branch -a // 查看所有分支 git branch --set-upstream-to=origin/feature-v1 // 默认拉取远程分支 git ...
分类:系统相关   时间:2021-03-29 11:44:12    阅读次数:0
16763条   上一页 1 ... 11 12 13 14 15 ... 1677 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!