Introduction Introduction For this first programming assignment you will write three functions that are meant to interact with dataset that accompanie ...
分类:
其他好文 时间:
2019-02-09 20:53:53
阅读次数:
261
1 //test.c 2 3 #include 4 extern int global_var; 5 6 void test_global_var() 7 { 8 global_var++; 9 printf("global_var = %d\n", global_var); 10 } 1 #inc... ...
分类:
编程语言 时间:
2019-02-07 16:27:25
阅读次数:
224
1.linux必要配置 在防火墙里开放http跟ssh端口 yum install lokkit yum install curl openssh-server openssh-clients postfix cronie -y service postfix start chkconfig pos ...
分类:
其他好文 时间:
2019-02-02 23:31:28
阅读次数:
216
1 #include "stdafx.h" 2 3 BOOL CALLBACK EnumWindowsProc(HWND hwnd, LPARAM lParam); 4 HWND GetMainWindow(); 5 6 extern "C" BOOL APIENTRY DllMain(HINSTA ...
分类:
编程语言 时间:
2019-01-31 00:11:32
阅读次数:
302
[client]port=5725[mysql]default-character-set=utf8[mysqld]# 设置5725端口port=5725# 设置mysql的安装目录basedir=D:\\mysql725\\mysql-5.7.25-winx64# 设置mysql数据库的数据的存放 ...
分类:
数据库 时间:
2019-01-28 23:03:47
阅读次数:
216
[DllImport("kernel32.dll", EntryPoint = "SetProcessWorkingSetSize")] public static extern int SetProcessWorkingSetSize(IntPtr process, int minSize, in ...
分类:
其他好文 时间:
2019-01-27 21:39:29
阅读次数:
166
<dependency><groupId>io.appium</groupId><artifactId>java-client</artifactId><version>7.0.0</version></dependency>importjava.util.Set;importjava.util.con
分类:
其他好文 时间:
2019-01-27 21:30:33
阅读次数:
262
gitlab-ctl reconfigure #初次配置服务 gitlab-ctl start #启动服务 gitlab-ctl stop #停止服务 gitlab-ctl restart #重启服务 vim /etc/gitlab/gitlab.rb 备份:备份命令:gitlab-rake git ...
分类:
其他好文 时间:
2019-01-25 19:20:13
阅读次数:
177
前面的文章描述了如何搭建一个Gerrit server和基本的使用。 本文描述Gerrit的管理。 文档 Gerrit服务器启动后,网站上有一个Documentation链接。点击后会看到四个选项: index,searching,uploading和access control 文档内容很多,不必 ...
分类:
其他好文 时间:
2019-01-25 18:52:41
阅读次数:
185
引入内联函数的目的是为了解决程序中函数调用的效率问题,也是用内联函数取代带参宏定义(函数传参比宏更加方便易用) inline关键字用来定义一个类的内联函数。 在类体中和类体外定义成员函数是有区别的:在类体中定义的成员函数为内联(inline)函数,在类体外定义的不是。如果你既希望将函数定义在类体外部 ...
分类:
编程语言 时间:
2019-01-25 11:36:36
阅读次数:
186