码迷,mamicode.com
首页 >  
搜索关键字:mapreduce_shuffle do    ( 12392个结果
Rename a Computer that Hosts a Stand-Alone Instance of SQL Server
When you change the name of the computer that is running SQL Server, the new name is recognized during SQL Server startup. You do not have to run Setu ...
分类:数据库   时间:2020-06-01 20:53:21    阅读次数:104
UML之状态图
举例 ##状态 对象生命期的一个阶段,在该阶段中该对象要满足一些特定的条件,并可从事特定的活动 表示法: 三个特定的动作标号:entry,exit,do entry:入口动作,进入状态,立即执行 exit:出口动作,退出状态,立即执行 do:内部活动,占有有限时间,并可以中断的工作 ##转换 ##作 ...
分类:其他好文   时间:2020-06-01 14:17:26    阅读次数:79
脚本启动集群 zookeeper , hadoop
1.在NameNode的一个节点下执行以下命令 #!/bin/bash for i in 192.168.1.101 192.168.1.102 192.168.1.103 do ssh $i "source /etc/profile;source ~/.bash_profile;/home/abb ...
分类:其他好文   时间:2020-06-01 13:34:08    阅读次数:62
Vue组件
Vue组件的使用: 全局组件注册语法: Vue.component(组件名称,{data:组件数据,template:组件的模板内容}) 定义了一个组件: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Do ...
分类:其他好文   时间:2020-05-31 17:57:08    阅读次数:42
将一个数组中的值按逆序重新存放
#include <stdio.h>int main(){ int i,a[100],number,mid,temp1,temp2; printf("How many numbers do you want to enter? \n"); scanf("%d",&number);//确定数组长度 p ...
分类:编程语言   时间:2020-05-31 11:02:52    阅读次数:258
批量去除文件名中的空格
把以下代码保存成.bat批处理文件,放到需要批量重命名的文件内,运行即可。 @echo off&setlocal enabledelayedexpansion for /f "delims=" %%i in ('dir /s/b .') do ( set "foo=%%~nxi" set foo=! ...
分类:其他好文   时间:2020-05-30 18:24:33    阅读次数:168
W5500 学习开发: TCP客户端
TCP客户端 W5500的TCP客户端百度到处都有,而且都是一个模子 简而言之:就是这么写,这么用 上菜 /** * @brief TCP客户端 * @param None * @retval None * @warning None * @example **/ void do_tcpc(void ...
分类:其他好文   时间:2020-05-30 12:29:50    阅读次数:129
Win7下C盘无法创建文件解决办法
Win7下C盘无法创建文件解决办法: To fix it, just turn off the User Account Control (UAC). In Windows 8, do not turn off the UAC via control panel, it must go throug ...
分类:Windows程序   时间:2020-05-29 23:15:13    阅读次数:132
010#文件锁定
#!/bin/bash # FILENAME:filelock # 默认重试次数 retries="10" # 默认操作 action="lock" # 用于锁文件的空命令 nullcmd="'which true'" # 设置选项 while getopts "lur:" opt; do case ...
分类:其他好文   时间:2020-05-29 23:01:51    阅读次数:89
接口测试基础—pymysql模块
import pymysql #导入pymysql模块from scripts.handle_yaml import HandleYaml #系统配置模块,关于数据库的配置都放在mysql区域名里面do_yaml = HandleYaml()class hander_sql: def __init_ ...
分类:数据库   时间:2020-05-29 21:33:16    阅读次数:94
12392条   上一页 1 ... 35 36 37 38 39 ... 1240 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!