Loading

上一页 1 ··· 42 43 44 45 46 47 48 49 50 ··· 76 下一页
摘要: 代码 code1.c: 1 #include <sys/ipc.h> 2 #include <sys/shm.h> 3 #include <sys/types.h> 4 #include <unistd.h> 5 #include <stdio.h> 6 #include <string.h> 7 阅读全文
posted @ 2020-04-21 20:51 拾月凄辰 阅读(1073) 评论(0) 推荐(0)
摘要: https://download.csdn.net/download/zzzyyyyyy66/12335457 将链接中jar包替换掉eclipse中plugins目录下的同名jar包,重启eclipse oxygen 4.7.3a 即可 阅读全文
posted @ 2020-04-17 22:42 拾月凄辰 阅读(234) 评论(0) 推荐(0)
摘要: 权限掩码 umask为用户文件创建掩码,是创建文件或文件夹时默认权限的基础。通常我们可以使用chmod修改linux中文件的权限。umask的作用与chmod的效果相反,具体看下面。 若没有文件掩码时,文件的默认权限为0666,文件夹的默认权限为0777。 第一位代表特殊权限(suid:4、sgid 阅读全文
posted @ 2020-04-17 08:32 拾月凄辰 阅读(1277) 评论(0) 推荐(0)
摘要: 在Windows操作系统中使用eclipse本地运行hadoop的hdfs程序, FileSystem local = FileSystem.getLocal(conf); 使用 FSDataOutputStream out = local.create(localFile); 创建本地文件输出流时 阅读全文
posted @ 2020-04-15 20:25 拾月凄辰 阅读(941) 评论(0) 推荐(2)
摘要: windows环境变量增加一项HADOOP_USER_NAME,值为你的Linux用户名。 阅读全文
posted @ 2020-04-15 20:22 拾月凄辰 阅读(242) 评论(0) 推荐(0)
摘要: 产生这些问题的原因: 使用 bin/hdfs namenode -format 进行过多次格式化,namenode format清空了namenode下的数据,但是没有清空datanode下的数据。 所以要做的就是每次format前,清空一下hdfs-site.xml中配置的所有目录,之后再进行fo 阅读全文
posted @ 2020-04-11 18:17 拾月凄辰 阅读(1243) 评论(0) 推荐(0)
摘要: Eclipse连接不上虚拟机上的hdfs,一直显示Listing folder content,如下图所示: 要做到以下三点: 1. 本身就还没创建输入和输出目录,此时要在hdfs上建个文件夹 。 bin/hdfs dfs -mkdir -p /user/hadoop/input bin/hdfs 阅读全文
posted @ 2020-04-11 17:23 拾月凄辰 阅读(1580) 评论(0) 推荐(0)
摘要: "Well, it seems the first problem is too easy. I will let you know how foolish you are later." feng5166 says. "The second problem is, given an positiv 阅读全文
posted @ 2020-04-08 22:03 拾月凄辰 阅读(229) 评论(0) 推荐(0)
摘要: 定义 在一个规模为N的数组A[N]中,所谓主元素就是出现次数大于N/2的元素,例如 3.3.4.2.4.4.2.4.4 有一个主元素为4。 充分利用主元素的出现次数大于N/2这个已知条件,因为主元素的出现次数大于N/2,所以容易证明下面的解法是正确的: 首先假设主元素是X,则遍历数组时出现与X相等的 阅读全文
posted @ 2020-04-08 19:15 拾月凄辰 阅读(630) 评论(0) 推荐(0)
摘要: For each test case, all dates will be within a single month. Each on-line record is paired with the chronologically next record for the same customer 阅读全文
posted @ 2020-04-04 17:33 拾月凄辰 阅读(196) 评论(0) 推荐(0)
上一页 1 ··· 42 43 44 45 46 47 48 49 50 ··· 76 下一页