码迷,mamicode.com
首页 >  
搜索关键字:rep    ( 1080个结果
Pull项目失败
1.网速原因 2.提示邮箱失效。 邮箱失效:解决方案 File->Setting: 然后,要记得重启,IDEA。 然后,在终端输入:git branch -l 查看项目分支 这样,设置好了用户名和邮箱后,就可以去pull代码了。 如何Pull 代码: 选中项目app,右击git->pull->rep ...
分类:其他好文   时间:2017-06-23 19:26:55    阅读次数:261
逆向出自己写的demo小程序
工具:DTDEBUG 分别用 VC6 和VS2010 编写的程序,逆向出来的代码不同。 例如: VC6 一般自己定义的函数 有以下几种特点: 1. LEA EDI,DWORD PTR SS:[EBP-C0] MOV ECX,30 MOV EAX,CCCCCCCC REP STOS DWORD PTR ...
分类:其他好文   时间:2017-06-19 00:37:38    阅读次数:273
PHP 算法
1、首先来画个菱形玩玩,很多人学C时在书上都画过,咱们用PHP画下,画了一半。 思路:多少行for一次,然后在里面空格和星号for一次。 ? 1 2 3 4 5 6 <?php for($i=0;$i<=3;$i++){ echo str_repeat(" ",3-$i); echo str_rep ...
分类:编程语言   时间:2017-06-12 10:33:48    阅读次数:247
Construct String From Binary Tree
You need to construct a string consists of parenthesis and integers from a binary tree with the preorder traversing way. The null node needs to be rep ...
分类:其他好文   时间:2017-06-09 13:17:26    阅读次数:123
Centos的yum源修改
前言:Centos系统默认的yum源已经配置好了,但是由于镜像站都在国外,国内访问非常慢甚至无法访问,我们可以修改成国内的网络yum源或者搭建光盘yum源。这里以centos7为例进行演示:1、网络yum源:[root@bogon~]#cd/etc/yum.repos.d/ [root@bogonyum.repos.d]#mvCentOS-Base.rep..
分类:其他好文   时间:2017-06-07 21:46:47    阅读次数:209
MySQL主从复制
##主库#开启节点echo -e "log-bin=mysql-bin\nserver-id=1">>/etc/my.cnf#开启数据库/etc/init.d/mysqld restart#添加从库用户grant replication slave on *.* to 'rep'@'172.16.1 ...
分类:数据库   时间:2017-06-07 14:14:33    阅读次数:211
ERP问题解决
1、Programstoppedat‘cin_aint340.4gl‘,linenumber1121.FORMSstatementerrornumber-1338.Thefunction‘cl_exe_rep‘hasnotbeendefinedinanymoduleintheprogram.解决办法:1、做报表打印格式时,在azzi988里面添加报表元件参数时,必须要重新下载单据程序并且上传,2、上传后第一..
分类:其他好文   时间:2017-06-06 18:46:53    阅读次数:592
[leetcode-606-Construct String from Binary Tree]
You need to construct a string consists of parenthesis and integers from a binary tree with the preorder traversing way. The null node needs to be rep ...
分类:其他好文   时间:2017-06-04 12:48:58    阅读次数:214
Codeforces Round #417 (Div. 2)——ABCE
题目链接 题面有点长需耐心读题。 A.一个人行道上的人被撞有4种情况 1.所在车道有车驶出 2.右边车道有左转车 3.左边车道有右转车 4.对面车道有直行车 #include <bits/stdc++.h> #define rep(i, j, k) for(int i = j;i <= k;i ++ ...
分类:其他好文   时间:2017-06-02 13:27:47    阅读次数:179
V-rep学习笔记:Reflexxes Motion Library 2
VREP中的simRMLMoveToPosition函数可以将静态物体按照设定的运动规律移动到指定的目标位置/姿态。If your object is dynamically enabled, it will not work (since in that case the position of ...
分类:其他好文   时间:2017-06-01 23:37:17    阅读次数:1148
1080条   上一页 1 ... 42 43 44 45 46 ... 108 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!