代码搜索:execute
找到约 10,000 项符合「execute」的源代码
代码结果 10,000
www.eeworm.com/read/392558/2494738
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/392558/2494763
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/378488/2685860
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/378488/2685885
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/376060/2715485
svn-base speedhack.pas.svn-base
unit speedhack;
interface
uses windows,classes,globals;
type TTick=class(TThread)
private
public
procedure Execute; override;
end;
procedure InitializeSpeedhack;
procedure Sto
www.eeworm.com/read/369426/2798813
java threadpool.java
import java.util.LinkedList;
/**
A thread pool is a group of a limited number of threads that
are used to execute tasks.
*/
public class ThreadPool extends ThreadGroup {
private
www.eeworm.com/read/362216/2936318
m munit_applications.m
%****m* munit/Applications
%
% NAME
% MUnit Applications
%
% DESCRIPTION
% The MUnit test framework consists of several applications
% to execute and manage the test cases and test suites.
% T
www.eeworm.com/read/360437/2962966
inc fv1.inc
--disable_query_log
EXECUTE ins_sel_with_result;
SET @select_id = LAST_INSERT_ID();
--enable_query_log
www.eeworm.com/read/360437/2962968
inc fv2.inc
--disable_query_log
EXECUTE ins_sel_no_result;
SET @select_id = LAST_INSERT_ID();
--enable_query_log
www.eeworm.com/read/360247/2964217
pas unit2.pas
unit Unit2;
interface
uses
Classes;
type
kjh = class(TThread)
private
{ Private declarations }
protected
procedure Execute; override;
end;
implementation
{ Impo