码迷,mamicode.com
首页 >  
搜索关键字:steve jobs    ( 964个结果
修改sql2slack 支持sql2 钉钉消息处理
sql2slack对于slack 的处理是通过http 请求的,默认已经固定了格式了,以下是一个简单的修改,可以方便的支持钉钉webhook消息 而且具有通用性 需要修改部分 主要是关于使用resty 处理http 请求的部分,默认是写死的,可以修改为 job.go // _, err = rest ...
分类:数据库   时间:2020-06-29 11:45:19    阅读次数:84
Shell script notes
Shell script notes I used this tutorial to learn shell scripting: Shell Scripting Tutorial-Steve Parker. I given my executing result for almost every ...
分类:系统相关   时间:2020-06-26 22:22:32    阅读次数:75
OSTEP第八章测试题
1. Run a few randomly-generated problemswith just two jobs and two queues; compute the MLFQ execution trace for each. Make your life easier by limitin ...
分类:其他好文   时间:2020-06-26 16:17:45    阅读次数:78
OSTEP第七章代码
1. Compute the response time and turnaround time when running three jobs of length 200 with the SJF and FIFO schedulers. 没区别, 响应时间 周转时间 等待时间 1 0 200 0 ...
分类:其他好文   时间:2020-06-24 00:07:01    阅读次数:83
PAT1042 Shuffling Machine (20分) 用1-54代替点数更方便哦
题目 Shuffling is a procedure used to randomize a deck of playing cards. Because standard shuffling techniques are seen as weak, and in order to avoid " ...
分类:系统相关   时间:2020-06-11 16:17:02    阅读次数:66
linux后台运行和关闭、查看后台任务
一、& 加在一个命令的最后,可以把这个命令放到后台执行,如 watch -n 10 sh test.sh & #每10s在后台执行一次test.sh脚本 二、ctrl + z 可以将一个正在前台执行的命令放到后台,并且处于暂停状态。 三、jobs 查看当前有多少在后台运行的命令 jobs -l选项可 ...
分类:系统相关   时间:2020-06-03 16:02:21    阅读次数:91
使用sklearn对文档进行向量化
1 """ 2 演示内容:文档的向量化 3 """ 4 from sklearn.feature_extraction.text import CountVectorizer 5 corpus = [ 6 'Jobs was the chairman of Apple Inc., and he wa ...
分类:其他好文   时间:2020-06-02 09:29:58    阅读次数:87
Quartz3.0定时任务学习之异步调度器
前言 Quartz3与Quartz2的主要区别有两点: 1,Quartz3将它的资源类库拆的更细了,比如,想使用Quartz3开发,最少要引用Quartz,Quartz.Jobs,Quartz.Plugins这三个类库。 2,Quartz3整体上使用的是异步创建实例,所以我们使用时就必须要async ...
分类:其他好文   时间:2020-05-21 09:36:58    阅读次数:65
【翻译自mos文章】DBA_JOBS 和 DBA_JOBS_RUNNING 不同的结果的解释
【翻译自mos文章】DBA_JOBS 和 DBA_JOBS_RUNNING 不同的结果的解释 DBA_JOBS 和 DBA_JOBS_RUNNING 不同的结果 參考原文: Different Results from DBA_JOBS and DBA_JOBS_RUNNING (Doc ID 10 ...
分类:数据库   时间:2020-05-19 00:49:11    阅读次数:98
对数组的排序操作
//二维数组 <?php $data = array( array( 'id' => 5698, 'first_name' => 'Bill', 'last_name' => 'Gates', ), array( 'id' => 4767, 'first_name' => 'Steve', 'las ...
分类:编程语言   时间:2020-05-18 18:32:38    阅读次数:71
964条   上一页 1 2 3 4 5 6 ... 97 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!