代码搜索:execute
找到约 10,000 项符合「execute」的源代码
代码结果 10,000
www.eeworm.com/read/174524/5361356
s mul.s
AREA ARMex, CODE, READONLY ; name this block of code
ENTRY ; mark first instruction
; to execute
start
MOV r0, #1
www.eeworm.com/read/174524/5361358
s mul64.s
AREA ARMex, CODE, READONLY ; name this block of code
ENTRY ; mark first instruction
; to execute
start
MOV ip, a1, L
www.eeworm.com/read/174456/5361538
pas uthdwritelogtest.pas
unit UthdWriteLogtest;
interface
uses
Classes;
type
TWriteLog = class(TThread)
private
{ Private declarations }
protected
procedure Execute; override;
end;
impleme
www.eeworm.com/read/169602/5420093
readme
Executing flexHammer-tests automatically
========================================
It is possible to execute almost al the flexHammer-tests
automatically. The procedure contains three steps:
www.eeworm.com/read/318815/3562674
java command.java
package com.javapatterns.command.audioplayer;
/**
* This class plays the role of Abstract Command
*/
public interface Command
{
public abstract void execute ( );
}
www.eeworm.com/read/314938/3628409
java command.java
package com.javapatterns.command.audioplayer;
/**
* This class plays the role of Abstract Command
*/
public interface Command
{
public abstract void execute ( );
}
www.eeworm.com/read/302553/3825112
java welcomerequest.java
public class WelcomeRequest implements IRequest {
private String place;
public WelcomeRequest(String place) {
this.place = place;
}
public void execute() {