码迷,mamicode.com
首页 >  
搜索关键字:current    ( 7130个结果
C语言结构体和联合体
1、单链表插入#include #include #define FALSE 0#define TRUE 1typedef struct NODE{ STRUCT NODE *link; int value;}Node;int sll_insert(Node *current,int n...
分类:编程语言   时间:2014-10-30 18:31:40    阅读次数:195
Echarts柱状图
ECharts-基本线性图及其配置要求 // 按需加载 // Step:3 conifg ECharts's path, link to echarts.js from current page. // Step:3 为模块加载器配置echarts的路径,从当前页面链接到echarts.js,定义所需图表路...
分类:其他好文   时间:2014-10-30 13:37:56    阅读次数:194
OPEN RESETLOGS 启动,报ORA-00392   ORA-00312错误
错误信息:SQL>alterdatabaseopenresetlogs;alterdatabaseopenresetlogs*ERRORatline1:ORA-00392:log3ofthread1isbeingcleared,operationnotallowedORA-00312:onlinelog3thread1:‘/orabase/bak/oradata/orcl/redo03.log‘官方解释:CLEARING_CURRENT-Currentlogisbeingcleare..
分类:其他好文   时间:2014-10-30 02:12:47    阅读次数:232
git:解决The current branch is not configured for pull No value for key branch.master.merge found in config
网上多半都是命令行下的解决方案,我用的是EGit,所以要在eclipse里(我的版本是kepler)把下面这句话添加到配置文件中.Window->Preference->Team->Git->Configuration->Repository Settings->选择你的repository,然后点...
分类:其他好文   时间:2014-10-29 23:55:02    阅读次数:236
Appendix D. Gradle Command Line
http://www.gradle.org/docs/current/userguide/gradle_command_line.htmlAppendixD.Gradle Command LineThegradlecommand has the following usage:gradle[opti...
分类:移动开发   时间:2014-10-29 12:50:19    阅读次数:287
解决The current branch is not configured for pull No value for key branch.master.merge found in config
网上多半都是命令行下的解决方案,我用的是EGit,所以要在eclipse里(我的版本是kepler)把下面这句话添加到配置文件中.Window->Preference->Team->Git->Configuration->Repository Settings->选择你的repository,然后点...
分类:其他好文   时间:2014-10-28 23:40:03    阅读次数:349
Python标准库os
如果你希望自己的程序能够与平台无关的话,这个模块至关重要。os.name #'nt' for windows, 'posix' for linux/unixos.getcwd() #get current work directory,即Python脚本工作的目录路径os.getenv() #get...
分类:编程语言   时间:2014-10-28 21:28:25    阅读次数:166
Echarts折线图
ECharts-基本线性图及其配置要求 // 按需加载 // Step:3 conifg ECharts's path, link to echarts.js from current page. // Step:3 为模块加载器配置echarts的路径,从当前页面链接到echarts.js,定义所需图表路...
分类:其他好文   时间:2014-10-28 17:48:16    阅读次数:332
面试中变相靠算法复杂度
一:题目:给定单向链表的头指针和一个结点指针,定义一个函数在O(1)时间删除该结点。链表结点与函数的定义如下: struct ListNode { int m_nValue; ListNode* m_pNext; }; void delete_note(ListNode *head,ListNode *current) { // 空的 if(head == null || ...
分类:编程语言   时间:2014-10-28 00:53:32    阅读次数:180
sudo and su
sudo bash :change the current user into rootsu u1:change the current user into u1useradd: add new user into systemuserdel: delete a user from systemgr...
分类:其他好文   时间:2014-10-27 22:59:09    阅读次数:221
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!