代码搜索:execute
找到约 10,000 项符合「execute」的源代码
代码结果 10,000
www.eeworm.com/read/240529/4573064
java command.java
/* Generated by Together */
package com.javapatterns.command.drawapplet;
public interface Command {
abstract public void execute();
abstract public void unexecute();
www.eeworm.com/read/240529/4573070
java command.java
/* Generated by Together */
package com.javapatterns.command.drawlines;
public interface Command {
abstract public void execute();
abstract public void unexecute();
www.eeworm.com/read/239312/4602435
runit
#!/bin/bash
# Scriptname: runit
PS3="Select a program to execute: "
select program in 'ls -F' pwd date
do
$program
done
www.eeworm.com/read/233448/4682064
x 931004-12.x
if { [istarget "powerpc-*-darwin*] } {
# xfail this on powerpc-*-darwin, see PR 15923
set torture_execute_xfail [istarget]
}
return 0
www.eeworm.com/read/229812/4740622
cmp err44a.cmp
mkerr
Error(E14): Cannot execute (mkerr): No such file or directory
Error(E44): AFTER command returned a bad status
www.eeworm.com/read/222307/4820527
java tranxcommand.java
/*
*
* @author chenqj
* Created on 2005-1-12
*
*/
package com.cache.behavior;
/**
* @author chenqj
*
*/
public interface TranxCommand {
void execute();
}