开源

  • Hadoop之HDFS的FileSystem接口详解

    基本的文件系统命令操作, 通过hadoop fs-help可以获取所有的命令的详细帮助文件。 Java抽象类org.apache.hadoop.fs.FileSystem定义了hadoop的一个文件系统接口。Hadoop中关于文件操作类基本上全部是在"org.apache.h…

    大数据 2021年11月15日
  • 範本學習 - 什么是ArchiMate图?

    ArchiMate是一种可视化建模语言,将用于描述业务流程,组织结构,信息流,IT系统和技术基础架构的已知开放标准。ArchiMate 3包含核心层,以及用于建模体系动机及其实施和迁移规划的新扩展。ArchiMate 3更新了代表企…

    大数据 2021年11月15日
  • Se(5)---定位元素

    package testWd; import org.openqa.selenium.By; import org.openqa.selenium.WebDriver; import org.openqa.selenium.WebElement; import org.openqa.selenium.firefox.FirefoxDriver; import org.testng.annotat…

    大数据 2021年11月15日
  • git提交汇总

    git提交汇总 第一次提交 教程参照:转载自 http://www.testclass.net/git/git-commit-code 总结: 1.连接ssh: ssh -T git@github.com 2.在~/.ssh目录下进行初始化设置 git config --global user.name "你自己在git…

    大数据 2021年11月15日
  • linux JIRA安装

    第一步 [root@bogon home]# chmod 755 atlassian-jira-software-7.6.2-x64.bin [root@bogon home]# ./atlassian-jira-software-7.6.2-x64.bin Unpacking JRE ... Starting Installer ... This will install JIRA So…

    大数据 2021年11月15日
  • janus 启动问题

    root@4c9f329b2677:/home/dong/janus-src/janus-gateway# /opt/janus/bin/janus -configs-folder=/opt/janus/etc/janusJanus commit: 5aab9f03f57060eb6ba29150f132f248a4f24e0aCompiled on:  Fri Dec  6 17:07:07 …

    大数据 2021年11月15日
  • 基于python的大数据分析实战学习笔记-Anaconda

    Anaconda指的是一个开源的Python发行版本,其包含了conda、Python等180多个科学包及其依赖项。还有很多官方介绍,总而言之就是强大强大很强大。。。在我看来 TA主要面向科学计算,其实就是数据分析的一个标准环境。…

    大数据 2021年11月15日
  • activemq 安全连接

    一、定义用户组 1.1 simpleAuthenticationPlugin通过在activemq.xml中配置用户组 <plugins>   <simpleAuthenticationPlugin>     <users>   &nbsp…

    大数据 2021年11月15日
  • some of the best practices for software development

    According to Professor Joe Hummel, of Lake Forest College, some of the best practices for software development include these elements:*  Object-oriented programming: This style of programming ma…

    大数据 2021年11月15日
  • Java注册登陆学习笔记

    import java.util.Scanner; //用户类 class Users { String username; String password; public Users(String username,String password) { this.username = username; this.password = password; } } public class…

    大数据 2021年11月15日