码迷,mamicode.com
首页 >  
搜索关键字:mount point    ( 11132个结果
winform 无边框窗口
(1)无边框窗口的拖动事件 新建一个MenuStrip,然后注册其MouseMove与MouseDown事件 private Point formPoint = new Point(); public MainForm() { InitializeComponent(); } private voi ...
分类:Windows程序   时间:2020-07-30 01:39:45    阅读次数:95
docker部署jira(8.0.0)和confluence(6.14.1)
docker 安装confluence
分类:其他好文   时间:2020-07-29 17:56:28    阅读次数:120
[模板]计算几何
struct point{ double x, y; }; struct line{ double A, B, C;//Ax + By + C = 0; }; line PPL(point a, point b){// 两点确定直线的一般式 if(a.x == b.x) return line{1, ...
分类:其他好文   时间:2020-07-29 17:50:20    阅读次数:62
前端开发之弹出框系列教程一:Alert提示框
1、居中弹出 $k.alert({content:'居中弹出'}); 查看效果 2、左上角弹出 $k.alert({ content:'左上角弹出', style:{left:0,top:0} }); 查看效果 3、右下角弹出 $k.alert({ content:'右上角弹出', style:{l ...
分类:其他好文   时间:2020-07-29 15:28:39    阅读次数:95
Arrays类
Arrays类 基本概念: 该类包含用于操作数组的各种方法(如排序和搜索)。 Arryas类中的对象都是用static修饰的静态方法,在使用的时候可以直接用类名调用,而**"不用"使用对象来调用**(注意:是“不用”而不是“不能”) 如果指定的数组引用为空,则该类中的方法都抛出一个NullPoint ...
分类:其他好文   时间:2020-07-29 12:39:19    阅读次数:66
路飞项目六
1 短信接口频率限制 # throttlings.py from rest_framework.throttling import SimpleRateThrottle class SMSThrotting(SimpleRateThrottle): scope = 'sms' def get_cac ...
分类:其他好文   时间:2020-07-27 17:46:17    阅读次数:100
鼠标单击烟花效果
#效果预览 本博客使用的点击特效就是这个,为了避免部分浏览器不支持(目前已知Edge浏览器不支持该特效),还是弄一张gif上来。 #实现代码 把下面的代码放在<body></body>中即可 <script src="https://blog-static.cnblogs.com/files/ast ...
分类:其他好文   时间:2020-07-27 15:52:27    阅读次数:72
linux上装oracle
将 /tmp/image.iso 这个光碟的 image 档使用 loop 模式挂在 /mnt/cdrom之下。用这种方法可以将一般网络上可以找到的 Linux 光 碟 ISO 档在不烧录成光碟的情况下检视其内容。 #mount -o loop /tmp/image.iso /mnt/cdrom-t ...
分类:数据库   时间:2020-07-26 19:12:14    阅读次数:105
MPC特点原理以及各项参数的选择--引用别人的博客网址
参见:MATLAB techtalk 中关于MPC的讲解视频: https://www.mathworks.com/videos/series/understanding-model-predictive-control.html 或者: Understanding Model Predictive ...
分类:其他好文   时间:2020-07-26 15:55:13    阅读次数:291
IO驱动通信
客户端通信是DLL 文件,看需求可以自己编译到exe上 下面是DLL调用过程 客户端代码 // DriveDll.cpp : Defines the entry point for the DLL application. // #include "stdafx.h" #include <windo ...
分类:其他好文   时间:2020-07-26 15:25:12    阅读次数:107
11132条   上一页 1 ... 26 27 28 29 30 ... 1114 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!