码迷,mamicode.com
首页 >  
搜索关键字:union all    ( 25526个结果
CAP Theorem
一个分布式系统最多只能同时满足一致性(Consistency)、可用性(Availability)和分区容错性(Partition tolerance)这三项中的两项。 Consistency 一致性是指 “all nodes see the same data at the same time.” ...
分类:其他好文   时间:2020-04-19 13:19:17    阅读次数:70
win10开始菜单图标损坏修复
新建RefreshMenuIcons.bat @echo off for /R "%APPDATA%\Microsoft\Windows\Start Menu\Programs\" %%f in (*.lnk) do copy /b "%%f"+,, "%%f" 1>nul for /R "%ALL ...
分类:Windows程序   时间:2020-04-19 10:30:45    阅读次数:84
Zabbix 的简单使用
创建Host 然后保存退出即可看到以成功添加 创建监控项 在主机界面选择监控项,进入监控项总览页面,在点击添加按钮 函数参数解析 proc.num[java,guigu,all,zookeeper] <name> —— 运行进程的进程名,用Java启动的进程,进程名就是Java,从top命令中可以查 ...
分类:其他好文   时间:2020-04-18 22:41:12    阅读次数:80
第4章 可变参数模板:4.2 折叠表达式
4.2 Fold Expressions 4.2 折叠表达式 Since C++17, there is a feature to compute the result of using a binary operator over all the arguments of a parameter ...
分类:其他好文   时间:2020-04-18 19:00:14    阅读次数:82
spring-core源码走读
Spring-core 5.0.8 asm ASM is an all purpose Java bytecode manipulation and analysis framework. ASM是一个万能的java字节码操纵和分析框架 asm官网 ASM和访问者模式 ASM库的介绍和使用 cgli ...
分类:编程语言   时间:2020-04-18 15:54:44    阅读次数:100
WIN10连上了网络却无法上网
就如上图所示,连接上了却无法打开任何页面,手机开热点也不行。 遂百度,找到了解决方法。 首先cmd打开命令提示符,然后输入 ipconfig/all 回车,然后找到这行字 再右键网络,打开‘网络和internet'设置 接下来选更改设备器选项 右键选择你的网络,属性 然后如下图,选ipv4,dns选 ...
分类:Windows程序   时间:2020-04-18 14:05:24    阅读次数:91
shell命令
What does `set -x` do? Take a look: help sethelp -m set | less set -x enables a mode of the shell where all executed commands are printed to the termi ...
分类:系统相关   时间:2020-04-17 23:42:11    阅读次数:110
掘金用户头像旋转
#pic:hover { transform: rotate(666turn); transition-delay: 1s; transition-property: all; transition-duration: 59s; transition-timing-function: cubic-b ...
分类:其他好文   时间:2020-04-17 22:08:12    阅读次数:95
git 强制更新
git fetch --all git reset --hard origin/master ...
分类:其他好文   时间:2020-04-17 20:27:11    阅读次数:59
linux下为普通用户添加root权限
尝试了好多方法,最终选择推荐以下这种方法 方法原理: 修改 /etc/sudoers 文件,添加我们普通用户名,即可获得我们的root用户权限 在root 下 vim /etc/sudoers ## Allow root to run any commands anywhere root ALL=( ...
分类:系统相关   时间:2020-04-17 16:10:13    阅读次数:149
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!