码迷,mamicode.com
首页 >  
搜索关键字:mit    ( 6179个结果
Vocabulary Recitation 2020/05/27
adroit adj. ADJ-GRADED Someone who is adroit is quick and skillful in their thoughts, behaviour, or actions. abdicate vt./vi. VERB If a king or queen ...
分类:其他好文   时间:2020-05-28 00:54:08    阅读次数:79
oracle序列的使用
创建序列代码如下: --创建序列 create sequence s_person--指定序列名 start with 1;--指定开始大小 查询序列代码如下: --查询序列 select s_person.nextval from dual;--查询下一个值 select s_person.cur ...
分类:数据库   时间:2020-05-27 22:03:03    阅读次数:104
Ruby on Rails 单元测试
Ruby on Rails 单元测试 为什么要写测试文件? 软件开发中,一个重要的环节就是编写测试文件,对代码进行单元测试,确保程序各部分功能执行正确。但是,这一环节很容易被我们轻视,认为进行单元测试的必要性不大,最主要的一个原因是需要耗费大量时间。显然,这种观点是很浅显的,Michael Hart ...
分类:其他好文   时间:2020-05-27 12:33:25    阅读次数:71
Another git process seems to be running in this repository
Git操作的过程中显示 Another git process semms to be running in this repository, e.g. an editor opened by ‘git commit’. Please make sure all processes are term ...
分类:其他好文   时间:2020-05-27 12:19:44    阅读次数:73
CF671E(线段树+单调栈)
传送门 神仙题,看题解看了一个多小时才看懂 首先我们设$Pre_i$和$suf_i$分别表示$1$到$i$需要的额外油量和$i$到$1$需要的额外油量,那么有 \[ \begin{aligned} Pre_i=Pre_{i-1}-a_{i-1}+w_{i-1}\\ suf_i=suf_{i-1}-a ...
分类:其他好文   时间:2020-05-27 12:17:56    阅读次数:64
Spring 中的事务
前言: 之前总结了事务以及数据库中事务相关的知识点,Spring 对于事务做了相应的封装,便于业务开发中使用事务。 项目中使用Spring中的事务首先时基于Mysql数据库中InnoDB 引擎的,如果数据库中就是使用MyISAM 引擎那么就不支持事务了。 1. Spring 中的事务 Spring ...
分类:编程语言   时间:2020-05-27 01:17:24    阅读次数:85
MySQL-高可用架构MHA
第1章 主从复制架构演变 1.1 高性能架构 读写分离架构(读性能较高) 1.代码级别 MySQL proxy (Atlas,mysql router,proxySQL(percona),maxscale)、 amoeba(taobao) xx-dbproxy等。 2.分布式架构(读写性能都提高): ...
分类:数据库   时间:2020-05-25 23:41:10    阅读次数:123
MySQL游标简介【8】
使用MySQL游标 首先,必须使用DECLARE语句声明游标: DECLARE cursor_name CURSOR FOR SELECT_statement; 游标声明必须在变量声明之后。如果在变量声明之前声明游标,MySQL将会发出一个错误。游标必须始终与SELECT语句相关联。 接下来,使用O ...
分类:数据库   时间:2020-05-25 19:38:01    阅读次数:79
go中gin框架+realize实现边写代码边编译,热更新
最近看到了热加载,相关的,就搜索了goland实现热加载 发现了一个插件realize https://github.com/oxequa/realize 然后,为了自己撸代码更方便,配合gin写个教程 1.准备 go get github.com/oxequa/realizego get gith ...
分类:其他好文   时间:2020-05-25 19:36:37    阅读次数:202
inotify 监控几个脚本
inotify 监控简单shell for foo in /proc/*/fd/*; do readlink -f $foo; done | grep inotify | sort | uniq -c | sort -nr 一个很不错的script #!/bin/sh ? # Get the pro ...
分类:其他好文   时间:2020-05-25 12:10:58    阅读次数:73
6179条   上一页 1 ... 43 44 45 46 47 ... 618 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!