码迷,mamicode.com
首页 >  
搜索关键字:set map    ( 79693个结果
nodejs的npm改为国内源和参数
npm源改为国内 此方法不需要安装cnpm也可以使用淘宝镜像,提高国内访问速度 由于 Node 的官方模块仓库网速太慢,模块仓库需要切换到阿里的源。 npm config set registry https://registry.npm.taobao.org/ 执行下面的命令,确认是否切换成功。 ...
分类:Web程序   时间:2021-06-02 17:08:19    阅读次数:0
nodeJs爬取网络图片
const cheerio = require("cheerio") const axios = require("axios") const fs = require("fs") if (!fs.existsSync("download")) { fs.mkdirSync("download", ...
分类:Web程序   时间:2021-06-02 17:04:51    阅读次数:0
KNN-简单电影测试程序debug
import numpy as np import operator """ Parameters: 无 returns: group -数据集 labels -分类标签 """ #函数说明:创建数据集 def createDataSet(): #6组二维特征 group = np.array([[ ...
分类:其他好文   时间:2021-06-02 17:00:08    阅读次数:0
时间同步服务 chromy
1. chrony 服务器端配置 假设chrony服务器端192.168.1.1 $ cat /etc/chrony.conf # Use public servers from the pool.ntp.org project. server ntp1.aliyun.com iburst serv ...
分类:其他好文   时间:2021-06-02 16:47:45    阅读次数:0
自定义进度条Android,kotlin
1:效果 一运行起来,红色是下载的部分,蓝色是为下载部分,下载完之后先缩成一个椭圆,在缩成一个圆 GitHub地址:https://github.com/luofangli/MyDrawProgress 详细代码: <?xml version="1.0" encoding="utf-8"?><and ...
分类:移动开发   时间:2021-06-02 16:08:01    阅读次数:0
aws - Default VPC and default subnets
Default VPC components When we create a default VPC, we do the following to set it up for you: Create a VPC with a size /16 IPv4 CIDR block (172.31.0. ...
分类:Web程序   时间:2021-06-02 15:47:16    阅读次数:0
Python高阶函数和装饰器
高阶函数 能够把函数当做参数传递的函数被称为高阶函数。 map函数 把传入的函数func作用到iterable中的每个元素中。 map(func, iterable) 参数: func:函数(内置函数,自定义函数) iterable:可迭代对象 返回值: 迭代器 示例: list1 = [1, 2, ...
分类:编程语言   时间:2021-06-02 15:38:34    阅读次数:0
Architecture Reference-Read&Write set semantics
https://hyperledger-fabric.readthedocs.io/en/latest/readwrite.html Read-Write set semantics This document discusses the details of the current impleme ...
分类:其他好文   时间:2021-06-02 15:28:52    阅读次数:0
2、linux Hadoop集群环境配置ssh无密码验证
集群网络配置 分别设置修改主机名 master slave1 slave2 hostnamectl set-hostname 名字 分别配置/etc/hosts文件 查看openssh和rsync安装 rpm -qa | grep 名字 切换到Hadoop用户 各节点生成秘钥 ssh-keygen ...
分类:系统相关   时间:2021-06-02 15:27:52    阅读次数:0
触发器
触发器 触发器(trigger)是SQL server 提供给程序员和数据分析员来保证数据完整性的一种方法,它是与表事件相关的特殊的存储过程,它的执行不是由程序调用,也不是手工启动,而是由事件来触发,比如当对一个表进行操作( insert,delete, update)时就会激活它执行。触发器经常用 ...
分类:其他好文   时间:2021-06-02 15:23:01    阅读次数:0
79693条   上一页 1 ... 25 26 27 28 29 ... 7970 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!