码迷,mamicode.com
首页 >  
搜索关键字:node nodejs 编译node n    ( 31809个结果
sass安装报错
这个错误是因为sass安装时获取源的问题,先修改sass安装的源,再运行npm install就成功了 在命令行中敲入: npm config set sass_binary_site=https://npm.taobao.org/mirrors/node-sass ...
分类:其他好文   时间:2021-07-27 17:41:09    阅读次数:0
java注解
注解 anno1 package com.ding.anno1; /** * @Description TODO * @Author 丁帅帅 * @Date 21/07/24 23:41 * @Version 1.0 */ public class Fu { public void show(){ ...
分类:编程语言   时间:2021-07-26 16:52:58    阅读次数:0
【PostGIS】实时坐标-电子围栏-判断-(参考遥想公瑾当年postgres+socket.io+nodejs实时地图应用实践)
CREATE OR REPLACE FUNCTION "public"."process_t_gps"() RETURNS "pg_catalog"."trigger" AS $BODY$ DECLARE rec record; ewith record; BEGIN IF (TG_OP = 'DE ...
分类:Web程序   时间:2021-07-26 16:42:44    阅读次数:0
ConcurrentHashMap(JDK8)源码分析及夺命9连问
ConcurrentHashMap(jdk1.8) 底层操作 //数组对象 = 头对象(8bytes) + 指针对象(4bytes) + 数组长度(4bytes) + 数据(xxxbytes) Class<?> ak = Node[].class; //Node[]Class 对象ak ABASE ...
分类:其他好文   时间:2021-07-26 16:39:24    阅读次数:0
leetcode-94. 二叉树的中序遍历
####我的菜鸡方法C++实现普通二叉树的中序遍历 /** * Definition for a binary tree node. * struct TreeNode { * int val; * TreeNode *left; * TreeNode *right; * TreeNode() : ...
分类:其他好文   时间:2021-07-26 16:33:12    阅读次数:0
leetcode-144-二叉树的前序遍历
不太明智的c++实现方法: 1 /** 2 * Definition for a binary tree node. 3 * struct TreeNode { 4 * int val; 5 * TreeNode *left; 6 * TreeNode *right; 7 * TreeNode() ...
分类:其他好文   时间:2021-07-26 16:32:32    阅读次数:0
Node.js版本管理工具nvm
1.介绍 nvm 是 nodejs 的版本管理工具,可以在一个环境中同时安装多个 nodejs 版本(和配套的 npm 版本),并随时切换。 好处是,开发调试不同 nodejs 应用变得更省心,随时切换所需要的版本。 2.安装 2.1 下载 链接 可下载以下版本: nvm-noinstall.zip ...
分类:Web程序   时间:2021-07-26 16:25:56    阅读次数:0
K8s 通过 firewalld 放行端口
#对于etcd、controlplane 和 worker节点,运行以下命令: firewall-cmd --permanent --add-port=22/tcp firewall-cmd --permanent --add-port=80/tcp firewall-cmd --permanent ...
分类:其他好文   时间:2021-07-21 17:40:59    阅读次数:0
记录k8s安装过程
yum -y install wget telnet net-tools lrzsz vim zip unzip 修改主机名 将master节点主机名修改为k8s-master01 node节点为k8s-node01 以这种命名规则命名即可 关闭防火墙 systemctl stop firewall ...
分类:其他好文   时间:2021-07-16 17:44:33    阅读次数:0
hadoop系列之一问题锦集
1、启动过程中出现Configuration has multiple addresses that match local node's address. Please configure the system with dfs.nameservice.id and dfs.ha.namenode ...
分类:其他好文   时间:2021-07-16 17:32:09    阅读次数:0
31809条   1 2 3 4 ... 3181 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!