代码搜索:execute
找到约 10,000 项符合「execute」的源代码
代码结果 10,000
www.eeworm.com/read/358128/3006138
sin insert-header.sin
# Sed script that inserts the file called HEADER before the header entry.
#
# At each occurrence of a line starting with "msgid ", we execute the following
# commands. At the first occurrence, insert
www.eeworm.com/read/265336/4283061
pas unit2.pas
unit Unit2;
interface
uses
Classes,comctrls;
type
FreezeMeThread = class(TThread)
private
i:integer;
protected
procedure Execute; override; // Main thread execution
publi
www.eeworm.com/read/265336/4283071
pas unit3.pas
unit Unit2;
interface
uses
Classes,comctrls;
type
HoldMeThread = class(TThread)
private
i:integer;
protected
procedure Execute; override; // Main thread execution
publish
www.eeworm.com/read/255418/4375968
java stereooncommand.java
package headfirst.command.party;
public class StereoOnCommand implements Command {
Stereo stereo;
public StereoOnCommand(Stereo stereo) {
this.stereo = stereo;
}
public void execute() {
ste
www.eeworm.com/read/255418/4375974
java hottuboffcommand.java
package headfirst.command.party;
public class HottubOffCommand implements Command {
Hottub hottub;
public HottubOffCommand(Hottub hottub) {
this.hottub = hottub;
}
public void execute() {
h
www.eeworm.com/read/255418/4375983
java hottuboncommand.java
package headfirst.command.party;
public class HottubOnCommand implements Command {
Hottub hottub;
public HottubOnCommand(Hottub hottub) {
this.hottub = hottub;
}
public void execute() {
hott
www.eeworm.com/read/255418/4375993
java lightoncommand.java
package headfirst.command.simpleremote;
public class LightOnCommand implements Command {
Light light;
public LightOnCommand(Light light) {
this.light = light;
}
public void execute() {
l