码迷,mamicode.com
首页 >  
搜索关键字:sh failed with exit code    ( 132990个结果
Linux命令8
安装 javaee jdk mysql apache ideaIU shell编程 x.sh脚本 格式要求: 1.脚本以#!/bin/bash开头 2.脚本要有可执行权限 vim hello.sh 写上: #!/bin/bash echo "hello,world" 保存退出 sh hello.sh ...
分类:系统相关   时间:2021-05-24 13:41:21    阅读次数:0
Atlas import-hive.sh元数据
方案一: 如果是集成CDH环境,首先检查/etc/hive/conf目录下是不是有atlas-application.properties文件,如果没有,从atlas路径下copy一份过去 方案二: 如果确认文件已经有了,导入还是报错,强行修改import-hive.sh文件,指定HIVE_CP=/ ...
分类:其他好文   时间:2021-05-24 13:38:19    阅读次数:0
常用的Dos命令
查看当前目录下的所有文件 dir 切换目录 cd /d e:\test cd .. 清理屏幕 cls (clear screen) 退出终端 exit 查看电脑IP ipconfig /all ping命令 ping www.baidu.com 查看应用 calc notepad mspaint 文 ...
分类:其他好文   时间:2021-05-24 13:34:35    阅读次数:0
布尔类型
bool #布尔类型 True #真 False #假 l = [1,2,3,4] print( 1>2 ) #False print( 4 in l) #True print(1 not in l) #False print( len(l) > 3) #True 比如,想写个while的死循环,可 ...
分类:其他好文   时间:2021-05-24 13:31:59    阅读次数:0
GO语言学习基础-学生管理系统的实现
1. 编写 main.go 程序 ` package main import ( "fmt" "os" ) var smr stuMgr //声明一个全局的全局变量学生管理smr // 菜单函数 func showMenu() { fmt.Println(" Welcome to sms! ") f ...
分类:编程语言   时间:2021-05-24 13:24:34    阅读次数:0
MarkDown入门学习
MarkDown学习 标题 星号(*)+空格--一级标题 两个(**)星号+空格--二级标题 以此类推…… 标题 三级标题 四级标题 五级标题 六级标题(最多支持六级) 字体 Hello World!! Hello World!! Hello World!! Hello World!! 粗体:文字两 ...
分类:其他好文   时间:2021-05-24 13:24:00    阅读次数:0
leetcode 232 用栈实现队列
简介 使用队列实现队列哈哈. code class MyQueue { public: queue<int> q; public: /** Initialize your data structure here. */ MyQueue() { } /** Push element x to the ...
分类:其他好文   时间:2021-05-24 13:17:52    阅读次数:0
k8s学习记录,HPA(十一)
##水平自动扩容HPA【Horizontal Pod Autoscaler】将流量分配到更多的节点上去 通过监听Pod的内存或者CPU使用率,达到警告值时来进行自动扩容 ####HPA v1为稳定版自动水平伸缩,只支持CPU指标 ####v2为beta版本,分为v2beta1和v2beta2 ### ...
分类:其他好文   时间:2021-05-24 13:11:21    阅读次数:0
leetcode 121 买卖股票的最佳时机
简介 使用感觉类似动态规划的思路进行计算 code class Solution { public: int maxProfit(vector<int>& prices) { int inf = 1e9; int minPrice = inf; int maxProfit = 0; for(auto ...
分类:其他好文   时间:2021-05-24 13:09:51    阅读次数:0
从Gitee克隆项目
1 >~desktop 2 >Desktop git clone https://gitee.com/guangzan/awescnb.git //进入项目,并用编辑器打开>Desktop cd awescnb/ >awescnb(master) code. //安装依赖>awescnb(maste ...
分类:其他好文   时间:2021-05-24 13:08:04    阅读次数:0
132990条   上一页 1 ... 74 75 76 77 78 ... 13299 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!