大数据集群组件参数化

  • Post author:
  • Post category:其他

集群组件参数化 一、HDFS 1.1、namenode 内存 1.2、datanode 内存 1.3、fs.trash.interval 1.4、dfs.datanode.du.reserved 1.5、dfs.namenode.handler.count 二、YARN 2.1、Memory allocated for all YARN containers on a node 2.2、Conta…

继续阅读 大数据集群组件参数化

curl&&openssl编译(x86)

  • Post author:
  • Post category:其他

1、解压openssl至目录/home/yk/openssl/openssl-1.0.2h 2、进入目录/home/yk/openssl/openssl-1.0.2h 3、 mkdir yk3399_openssl 4、 ./config -fPIC no-shared --prefix=/home/yk/openssl/openssl-1.0.2h/yk3399_openssl --openss…

继续阅读 curl&&openssl编译(x86)

C# ListView用法详解

  • Post author:
  • Post category:其他

一、ListView类 1、常用的基本属性: (1) FullRowSelect :设置是否行选择模式。(默认为false) 提示:只有在Details视图该属性才有意义。 (2) GridLines :设置行和列之间是否显示网格线。(默认为false)提示:只有在Details视图该属性才有意义。 (3) AllowColumnReorder :设置是否可拖动列标头来对改变列的顺序。(默认为fa…

继续阅读 C# ListView用法详解

vue2的生命周期

  • Post author:
  • Post category:vue

vue2有8个生命周期 beforeCreate created beforeMount mounted beforeUpdate updated beforeDestory destoryed 进入组件会执行的生命周期 beforeCreate(){ console.log(this.$el,this.$data) // 在Vue2中,this.$el是一个DOM元素,表示当前组件渲染的根元素。…

继续阅读 vue2的生命周期

jquery禁止点击事件,css禁止按钮

  • Post author:
  • Post category:其他

jquery禁止点击事件,css禁止按钮 $('.disabled').unbind('click'); cursor: not-allowed; 转载于:https://www.cnblogs.com/starwink/p/10542424.html

继续阅读 jquery禁止点击事件,css禁止按钮

sqlserver 命令一览表

  • Post author:
  • Post category:其他

sqlserver 命令一览表 1.创建数据库: create database Student on ( name=Student_Data, filename='f:\data\student_Data.mdf', size=10, maxsize=20, filegrowth=5 ) log on ( name=Student_Log, filename='f:\data\student_L…

继续阅读 sqlserver 命令一览表

【报错】error while loading shared libraries: libc++.so.1: cannot open shared object file: No such file

  • Post author:
  • Post category:其他

(1) 报错如下???: error while loading shared libraries: libc++.so.1: cannot open shared object file: No such file or directory (2) 解决方法???: sudo apt-get install apt-file sudo apt-file update apt-file searc…

继续阅读 【报错】error while loading shared libraries: libc++.so.1: cannot open shared object file: No such file

gitee ssh提交代码_push到github/gitee的最简方式

  • Post author:
  • Post category:其他

push到github/gitee有超级多种方式。综合各家之长,碰到一种自认为是最简方式。 前提 vscode作为编辑器 安装github插件(这个插件对gitee同样有效) 操作 1. 在代码所在客户端生成ssh key 并且,加入到你的github账号中 [避免抄袭的LINK]。这个LINK与本操作关联之处是教你如何: a. 生成github/gitee的ssh key; b. 应该把生成的文…

继续阅读 gitee ssh提交代码_push到github/gitee的最简方式

ThreeJs 学习之旅(十二)—Particle(粒子)

  • Post author:
  • Post category:其他

点(Points) 一个用于显示点的类。 由WebGLRenderer渲染的点使用 gl.POINTS 。 构造器 Points( geometry : Geometry, material : Material ) geometry —— (可选)是一个Geometry或者BufferGeometry的实例,默认值是一个新的BufferGeometry。 material —— (可选) 是一个…

继续阅读 ThreeJs 学习之旅(十二)—Particle(粒子)

第六届蓝桥杯 软件类省赛真题 第九题:打印大X

  • Post author:
  • Post category:其他

打印大X 小明希望用星号拼凑,打印出一个大X,他要求能够控制笔画的宽度和整个字的高度。 为了便于比对空格,所有的空白位置都以句点符来代替。 要求输入两个整数m n,表示笔的宽度,X的高度。用空格分开(0<m<n, 3<n<1000, 保证n是奇数) 要求输出一个大X 例如,用户输入: 3 9 程序应该输出: ***.....*** .***...***. ..***.***…

继续阅读 第六届蓝桥杯 软件类省赛真题 第九题:打印大X