Git 基本知识与常用指令一、Git代码状态转换图其中:未被Git跟踪的状态为unstage状态;已被Git跟踪的状态为stage状态(stage:阶段),因此包括staging状态和staged状态。      untrack files:是指尚未被git所管理的文件;changed but not updated:是指文件被git管理,并且发生
Python 3.0for x in range(1,11): print '{0:2d} {1:3d} {2:4d}'.format(x, x*x, x*x*x) Python 2.5for x in range(1,11): print '%2d %3d %4d' % (x, x*x, x*x*x)
转载 2010-09-08 20:19:00
98阅读
2评论
gerrit权限控制 Access controls in Gerrit are group based. Every user account is a member of one or more groups, and access and privileges are granted to those groups. Access rights cannot be granted to in
idea 暂存 Stash Changes Git/Repository/Stash Changes 恢复暂存 UnStash Changes git stash save "save message" git stash pop 命令更方便一些
原创 2022-08-29 16:33:37
1448阅读
​Track Changes is a great feature of Word that allows you to see what changes have been made to a document.  The tools for track changes are found on the Reviewing tab of the Ribbon.Begin Track Change
ico
转载 2011-05-17 14:24:00
160阅读
2评论
// Problem: C. Dividing the numbers// Contest: Codeforces - Codeforces Round #452 (Div. 2)// URL: https://co
原创 2022-08-16 14:45:17
92阅读
git initgit statusgit add readme.txtgit add --all         Adds all new or modified filesgit commit -m"message"git add '*.txt'    Add all txt file in the whole projectgit
下面是hive基本练习,持续补充中。Hive导出数据有几种方式,如何导出数据1.insert# 分为导出到本地或者hdfs,还可以格式化输出,指定分隔符 # 导出到本地 0: jdbc:hive2://node01:10000> insert overwrite local directory '/kkb/install/hivedatas/stu3' select * from stu;
转载 2024-06-21 16:57:38
120阅读
IDEA提交代码,一直卡着不动,显示:Commit Changes Dialog local changes refresh 修改方法为:   go to settings version control background set changelists to cache initia
转载 2018-04-17 10:16:00
515阅读
在生产环境中,spark 部署方式一般都是 yarn-cluster 模式,本文针对该模式进行讲解,当然大体思路也适用于其他模式 基础概念一个 spark 应用包含 job、stage、task 三个概念job:以 action 方法为界,一个 action 触发一个 jobstage:它是 job 的子集,以 RDD 宽依赖为界,遇到宽依赖即划分 stagetask:它是 stage
转载 2023-08-09 10:21:59
60阅读
Hive 的Stage如何划分,也是Hive SQL需要优化的一个点,这个问题,我也是在实际的工作中遇到的。所以我查询了网络的解答并记录下来,以便日后复习。以下是主要内容,enjoy~~~一个 Hive 任务会包含一个或多个 stage,不同的 stage 间会存在着依赖关系,越复杂的查询通常会引入越多的 stage (而 stage 越多就需要越多的时间时间来完成)。用户提交的 Hive QL
转载 2023-09-10 12:41:54
165阅读
  //提交stage,为stage创建一批task,task数量和partition数量相同  private def submitMissingTasks(stage: Stage, jobId: Int) {    logDebug("submitMissingTasks(" + stage + ")")    // Get our
原创 2017-05-05 15:26:00
774阅读
如何实现 "openharmony stage" 作为一名经验丰富的开发者,我将帮助你了解如何实现 "openharmony stage"。下面是整个过程的步骤,并附带了每个步骤需要执行的代码和注释。 **步骤1:创建 OpenHarmony 项目** 首先,你需要创建一个 OpenHarmony 项目。可以按照以下步骤操作: 1. 打开终端,并进入你的项目目录。 2. 使用以下命令创建一个
原创 2024-01-15 23:52:22
33阅读
1. Job提交触发 流程图: 作业提交流程由RDD的action操作触发,继而调用SparkContext.runJob。 在RDD的action操作后可能会调用多个SparkContext.runJob的重载函数,但最终会调用的runJob见1.1。 1.1. SparkContext.runJob def runJob[T, U: ClassTag]
转载 2024-06-22 18:29:53
127阅读
why change fortune of knowledge: when each person is born time,fortune have been doomed,Some people may be born with a golden key--Enough to live comfortably ,some people may be problem of food and c
原创 2009-07-10 01:59:10
458阅读
Changes with Chinatree 2012
原创 2013-02-08 10:42:08
350阅读
FlexIRC 1.0 beta 此文章将记录FlexIRC从今天起的changes update。敬请关注。 2008-01-30   1, -new- 增加了视频缩放功能,自认为做的比较成功   2, -new- 新增对/j命令的支持,/j #频道名 可快速加入指定频道   3, -new- 系统支持多设备,不同的频道可以使用不同的设备进行发布
IT
原创 2021-07-29 15:32:55
93阅读
1. git push 报错: 2. 提交时加上参数:-a ,表示新增。 git commit -am "提交说明" 提交成功。 ...
git
转载 2021-07-20 14:17:00
931阅读
2评论
环境:Oracle 11.2, CEntOS 6.6, VMware原因:磁盘I/O性能低效,VMware虚拟机备份占用大量磁盘I/O吞吐能力现象:最后的alert日志内容Fri Feb 03 17:38:57 2017********************* ATTENTION: ********************  The controlfile header block r
转载 2024-09-05 20:46:34
76阅读
       谈到网络socket编程, 我们不得不提两个基本也很重要的函数:send和recv.  对socket编程理解不深的童鞋容易产生这样一个错误的认识: send函数是用来发送数据, 而recv函数是用来接收数据的, 其实, 这种观点是稍微有点偏颇的, 掩盖了本质。       下面, 我们看一幅图
  • 1
  • 2
  • 3
  • 4
  • 5