代码搜索:execute
找到约 10,000 项符合「execute」的源代码
代码结果 10,000
www.eeworm.com/read/432926/1886142
pde noloop.pde
/**
* No Loop.
*
* The noLoop() function causes draw() to only
* execute once. Without calling noLoop(), draw()
* executed continually.
*/
// The statements in the setup() function
// execu
www.eeworm.com/read/429836/1945373
java jtthread.java
package Jt;
/**
* Jt objects that inherit from this class execute in a separate/independent thread:
* Jt Messages are processed asynchronously using a separate thread.
* A queue of me
www.eeworm.com/read/410060/2218671
readme_pipeserver
FILE LIST -
pipeServer.c
DESCRIPTION -
This demo demonstrates intertask communication using pipes.
ServerStart() initializes a server task to execute functions
at a low prior
www.eeworm.com/read/410060/2218696
readme_recoverexcsigdemo
FILE LIST -
recoverExcSigDemo.c
DESCRIPTION -
tServer task executes functions at low priority (254). serverSend
funtion is used to send a request to the tServer to execute a
func
www.eeworm.com/read/409386/2231643
java hibernatecallback.java
package com.redsaga.hibnatesample.step2.util;
import net.sf.hibernate.HibernateException;
public interface HibernateCallback {
Object execute() throws HibernateException;
}
www.eeworm.com/read/409386/2231804
java hibernatecallback.java
package com.redsaga.hibernatesample.step3.util;
import net.sf.hibernate.HibernateException;
public interface HibernateCallback {
Object execute() throws HibernateException;
}
www.eeworm.com/read/397826/2399754
java macrocommand.java
/* Generated by Together */
package com.javapatterns.command.document;
public interface MacroCommand extends Command {
void execute();
void remove(Command toRemove);
void ad
www.eeworm.com/read/397826/2399808
java macrocommand.java
package com.javapatterns.command.audioplayer;
public interface MacroCommand extends Command
{
void execute();
void remove(Command toRemove);
void add(Command toAdd);
}
www.eeworm.com/read/397826/2399833
java invoker.java
package com.javapatterns.command;
public class Invoker
{
public Invoker(Command command)
{
this.command = command;
}
public void action()
{
command.execute()
www.eeworm.com/read/392558/2494684
java macrocommand.java
/* Generated by Together */
package com.javapatterns.command.document;
public interface MacroCommand extends Command {
void execute();
void remove(Command toRemove);
void ad