码迷,mamicode.com
首页 >  
搜索关键字:domain name    ( 98069个结果
第五篇 进程&线程&协程
多进程 1 #方式一: 2 # from multiprocessing import Process 3 # import time 4 # 5 # def task(name): 6 # print('%s is running' %name) 7 # time.sleep(3) 8 # pri ...
分类:编程语言   时间:2021-05-04 15:51:14    阅读次数:0
层次打印二叉树
#include<vector> #include<queue> #include<string> #include<binaryNode.hpp> #include<iostream> #include<sstream> template<typename T> class traverse { ...
分类:其他好文   时间:2021-05-04 15:34:11    阅读次数:0
js中的队列结构
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="wi ...
分类:Web程序   时间:2021-05-04 15:33:37    阅读次数:0
Ansible+Consul实现100台主机自动监控
ansible批量部署node_exporter; 基于consul服务发现; 将node_exporter所在机器的ip和端口注册到consul; 普罗米修斯从consul获取到ip和端口自动加入监控 100台:web、db、负载均衡、消息队列 "id": "web-1","name": "web ...
分类:其他好文   时间:2021-05-04 15:32:29    阅读次数:0
安装pip报错Traceback (most recent call last): File "get-pip.py", line 22318, in <module> main()
原文链接:(1条消息) 安装pip报错Traceback (most recent call last): File "get-pip.py", line 22318, in <module> main()_festone000的专栏-CSDN博客 首选说明,我全部注释了Ubuntu自带的源,全改成 ...
分类:其他好文   时间:2021-05-04 15:28:07    阅读次数:0
使用GitHub搭建个人网站
1.登录GitHub,点击右上角的 + 号按钮,选择【New repository】,打开创建新仓库页面。 https://github.com/ 创建一个名为为username.github.io的代码仓库,其中username为你的GitHub的账户名称。如示例的用户名称为octocat 可见性 ...
分类:Web程序   时间:2021-05-03 12:26:41    阅读次数:0
Python中的闭包原理
普通函数作用域 def outer(): outer_var = "i am is a outer var." def inner(): inner_var = "i am is a inner var." print(outer_var) print(inner_var) if __name__ ...
分类:编程语言   时间:2021-05-03 12:21:11    阅读次数:0
决策树3:基尼指数--Gini index(CART)
pi表示在信息熵部分中有介绍,如下图中介绍 选择最小的那个0.3 #整个c4.5决策树的所有算法: import numpy as np import operator def creatDataSet(): """ outlook-> 0:sunny | 1:overcast | 2:rain t ...
分类:其他好文   时间:2021-05-03 12:13:28    阅读次数:0
git credentials
https://stackoverflow.com/questions/38461705/checkout-jenkins-pipeline-git-scm-with-credentials withCredentials([usernamePassword(credentialsId: '<cre ...
分类:其他好文   时间:2021-05-03 12:01:40    阅读次数:0
构造器
public class oopDemo7 { public static void main(String[] args) { oopDemo71 oopDemo7 = new oopDemo71("罗hz"); System.out.println(oopDemo7.name); }} publ ...
分类:其他好文   时间:2021-05-03 11:56:18    阅读次数:0
98069条   上一页 1 ... 60 61 62 63 64 ... 9807 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!