码迷,mamicode.com
首页 >  
搜索关键字:name    ( 94827个结果
Ubuntu安装docker/docker-compose(在全新系统状态下的安装)
设置仓库 更新 apt 包索引。 $ sudo apt-get update 安装 apt 依赖包,用于通过HTTPS来获取仓库: $ sudo apt-get install \ apt-transport-https \ ca-certificates \ curl \ gnupg-agent ...
分类:系统相关   时间:2021-04-16 11:59:52    阅读次数:0
kubernetes(k8s)阿里云yum源
cat <<EOF > kubernetes.repo[kubernetes]name=Kubernetesbaseurl=https://mirrors.aliyun.com/kubernetes/yum/repos/kubernetes-el7-x86_64enabled=1gpgcheck=1 ...
分类:Web程序   时间:2021-04-16 11:56:03    阅读次数:0
发布-订阅模式
模拟订阅报纸: 消费者与出版社之间没有联系,甚至互不相识,但报纸却从出版社到达了消费者手中,发布-订阅模式就是通过模拟订阅报纸,实现消息在模块之间的传递、模块与模块之间的调用。 Python样例 from blinker import Namespace # 创建一个Signal,其名为test m ...
分类:其他好文   时间:2021-04-16 11:41:15    阅读次数:0
断开式查询
断开式查询(没有打开和关闭) 1、连接字符串 string str = "server=.;database=数据库名称;uid=sa;pwd=123"; 2、创建连接对象 SqlConnection sqlcon = new SqlConnection(str); ```C# ### 3、sql语 ...
分类:其他好文   时间:2021-04-15 12:46:29    阅读次数:0
新建一个vue项目
1、在任意位置建一个空文件夹; 2、打开vscode,定位到刚才新建的文件夹; 点击左下角位置 弹出 3、输入npm install vue 展开刚才新建的项目 4、测试一下项目是否搭建成功; 新建一个index.html; 输入感叹号,直接回车; 就生成了html模板 新建一个vue小demo; ...
分类:其他好文   时间:2021-04-15 12:43:16    阅读次数:0
CSAPP
只能用指定字符,实现函数功能 /* * CS:APP Data Lab * * <Please put your name and userid here> * * bits.c - Source file with your solutions to the Lab. * This is the ...
分类:移动开发   时间:2021-04-15 12:42:58    阅读次数:0
十大经典排序之归并排序(C++实现)
#归并排序 思路:(分而治之的思想) 1.申请空间,使其大小为两个已经排序序列之和,该空间用来存放合并后的序列; 2.设定两个指针,最初位置分别为两个已经排序序列的起始位置; 3.比较两个指针所指向的元素,选择相对小的元素放入到合并空间,并移动指针到下一位置; 4.重复步骤 3 直到某一指针达到序列 ...
分类:编程语言   时间:2021-04-15 12:38:31    阅读次数:0
解决Gitlab的The remote end hung up unexpectedly错误,解决RPC failed; HTTP 413 curl 22 The requested URL returned error: 413 Request Entity Too Large问题
解决Gitlab的The remote end hung up unexpectedly错误 解决RPC failed; HTTP 413 curl 22 The requested URL returned error: 413 Request Entity Too Large问题 解决办法1: ...
分类:Web程序   时间:2021-04-15 12:34:26    阅读次数:0
sw抄来的主席树
//本模板是离散后对权值建树 #include<bits/stdc++.h> #define mid (l+r>>1) using namespace std; const int N=2e5+10; struct TR { int sum,lo,ro; }tr[N<<5]; int tr_cnt; ...
分类:其他好文   时间:2021-04-15 12:28:09    阅读次数:0
运动版无缝衔接轮播图
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content ...
分类:其他好文   时间:2021-04-15 12:24:53    阅读次数:0
94827条   上一页 1 ... 73 74 75 76 77 ... 9483 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!