代码搜索:execute
找到约 10,000 项符合「execute」的源代码
代码结果 10,000
www.eeworm.com/read/340665/3278657
x 920501-7.x
# This doesn't work on sparc's with -mflat.
if { [istarget "sparc-*-*"] && [string match "*mflat*" $CFLAGS] } {
set torture_execute_xfail "sparc-*-*"
}
return 0
www.eeworm.com/read/340665/3278988
x 941014-1.x
# This doesn't always work for Thumb.
if { [istarget arm*-*-*] || [istarget xscale*-*-*] \
|| [istarget strongarm*-*-*] } {
set torture_eval_before_execute {
global compiler_conditional_xf
www.eeworm.com/read/340665/3279152
x 920428-2.x
# This doesn't work on sparc's with -mflat.
if { [istarget "sparc-*-*"] && [string match "*mflat*" $CFLAGS] } {
set torture_execute_xfail "sparc-*-*"
}
return 0
www.eeworm.com/read/330522/3422216
java initsystem.java
package cn.myapps.init;
/**
* Execute this object to nitialize the system.
*/
public class InitSystem {
public static void main(String[] args) throws Exception {
init();
}
public
www.eeworm.com/read/329537/3431042
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/329482/3431545
java command.java
package jns.command;
/**
Command is a very important class in JNS because it represents the commands
that the simulator is supposed to execute at a specific time.
You have to subclass c
www.eeworm.com/read/318815/3562679
java oncommand.java
package com.javapatterns.command.television;
public class OnCommand implements Command
{
private Tv myTv;
public OnCommand (Tv tv)
{
myTv = tv;
}
public void execute( )
{
www.eeworm.com/read/318815/3562683
java offcommand.java
package com.javapatterns.command.television;
public class OffCommand implements Command
{
private Tv myTv;
public OffCommand (Tv tv)
{
myTv = tv;
}
public void execute()