码迷,mamicode.com
首页 >  
搜索关键字:operation    ( 2786个结果
更新工艺路线资源
?? DECLARE   -- API input variables   l_operation_tbl    bom_rtg_pub.operation_tbl_type := bom_rtg_pub.g_miss_operation_tbl;   l_rtg_header_rec   bom_rtg_pub.rtg_header_rec_type := bom_rtg_pub...
分类:其他好文   时间:2014-09-25 00:11:58    阅读次数:511
POJ 2562 Primary Arithmetic(简单题)
【题意简述】:计算两数相加,有多少个进位。 【分析】:很简单,不过还是要注意输出的细节。当进位为1时,输出的operation,没有s。 详见代码: // 216K 0Ms #include using namespace std; int main() { int a,b; while(cin>>a>>b) { if(a == 0&&b == 0) break; // ...
分类:其他好文   时间:2014-09-23 22:46:05    阅读次数:174
检查平台的python脚本
# -*- coding: utf-8 -*-import platformdef TestPlatform(): print ("----------Operation System--------------------------") #Windows will be : (32b...
分类:编程语言   时间:2014-09-23 15:24:14    阅读次数:165
【MongoDB】The high query operation of MongoDB(三)
1, Sort  Needless to say, mongodb also support to sort data. THe positive one means sorting by asc order and negetive means by desc. 2. Group The grammar of group: Description Of Argument:...
分类:数据库   时间:2014-09-23 02:47:33    阅读次数:267
OpenERP-Java调用XML-RPC接口示例(Examples for calling XML-RPC interfaces by Java)
官网没有给出CREATE、SEARCH、WRITE等XML-RPC接口的Java 调用示例,在此补充一下。 There is no examples on the official site for the XML-RPC operation interfaces for Java, so I posted my code here.  import org.apache.xmlrpc.Xml...
分类:编程语言   时间:2014-09-23 00:07:33    阅读次数:443
Windows7 general operation/cmd notes
为bb准备的Window命令集
分类:Windows程序   时间:2014-09-22 23:42:53    阅读次数:437
Concurrency and Application Design (三)
Operation Queuesoperation object是 NSOperation class实例用来封装想要执行的任务。nsoperation class是抽象类必须子类化。Creating an NSInvocationOperation Object
分类:移动开发   时间:2014-09-22 19:34:53    阅读次数:159
【MongoDB】The high query operation of MongoDB(二)
In the last blog, there are three query condition to be described. In the blog, we wil...
分类:数据库   时间:2014-09-22 03:37:02    阅读次数:255
【MongoDB】The high Query operation of MongoDB(一)
In the last blog, we talked about the basic operation of MongoDB, including insert, query, remove and update. Now in this blog, we will further hava a good understanding of  querying operation.  At f...
分类:数据库   时间:2014-09-22 01:35:41    阅读次数:233
【MongoDB】The basic operation of Mongodb, Insert\Query\Delete\Update
1, Insert MongoDB is database storing document object, the type of which is called Bson.(like JSON); Example:  // document defination      Now after using command[db.posts.insert(doc)], you will...
分类:数据库   时间:2014-09-21 01:19:39    阅读次数:380
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!