代码搜索:operation
找到约 10,000 项符合「operation」的源代码
代码结果 10,000
www.eeworm.com/read/152814/5666608
operation
title Agent Operating Mode
description This section defines how the agent will operate when it
description is running.
token master
info Should the agent operate as a master agent or not.
info Cu
www.eeworm.com/read/139206/5807145
operation
title Agent Operating Mode
description This section defines how the agent will operate when it
description is running.
token master
info Should the agent operate as a master agent or not.
info Cu
www.eeworm.com/read/104049/6211877
operation
title Agent Operating Mode
description This section defines how the agent will operate when it
description is running.
token master
info Should the agent operate as a master agent or not.
info Cu
www.eeworm.com/read/468598/1485803
operation
toolbar: flat crossdiagonal gradient
toolbar.color: rgb:6/9/c
toolbar.colorTo: rgb:4/6/8
toolbar.button: parentrelative
toolbar.button.picColor: grey85
toolbar.button.pressed: flat crossdiagon
www.eeworm.com/read/177235/5331545
operation
title Agent Operating Mode
description This section defines how the agent will operate when it
description is running.
token master
info Should the agent operate as a master agent or not.
info Cu
www.eeworm.com/read/271875/4221477
operation
title Agent Operating Mode
description This section defines how the agent will operate when it
description is running.
token master
info Should the agent operate as a master agent or not.
info Cu
www.eeworm.com/read/292164/8371806
c operation.c
#include "global.h"
//表达式的计算
void operate(SqStack *S,int theta)
{
int a,b,result;
b=Pop(S);
a=Pop(S);
switch(theta) {
case '+':
result=a+b; break;
case '-':
result=a-b; break;
c
www.eeworm.com/read/292164/8371812
cpp operation.cpp
#include "global.h"
void operate(SqStack *S,int theta)
{
int a,b,result;
b=Pop(S);
a=Pop(S);
switch(theta) {
case '+':
result=a+b; break;
case '-':
result=a-b; break;
case '*':
www.eeworm.com/read/191434/8429666
java operation.java
/*
* @(#)Operation.java 1.14 01/12/03
*
* Copyright 2002 Sun Microsystems, Inc. All rights reserved.
* SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*/
package java.rmi.server;