代码搜索:executed
找到约 9,141 项符合「executed」的源代码
代码结果 9,141
www.eeworm.com/read/38056/1107772
whs text file conversion windows - unix.whs
// WinHex sample script that converts a Windows text file into a UNIX text file.
// The representation of line breaks differs in both systems.
// Can only be executed by the evaluation version if un
www.eeworm.com/read/38056/1107776
whs text file conversion unix - windows.whs
// WinHex sample script that converts a UNIX text file into a Windows text file.
// The representation of line breaks differs in both systems.
// Can only be executed by the evaluation version if un
www.eeworm.com/read/492281/1177044
readme_unixclient
FILE LIST -
unixClient.c
client.h
DESCRIPTION -
Code to be executed by client. Writes request/message into socket
and optionally receives a reply back. Code exe
www.eeworm.com/read/492252/1178411
inf allproducts.inf
; INF file that will be executed for all products.
[FilesCopy]
; format:
; source path, destination path, [option], [osversion], [infVals]
%cdromRootDirGet%\README.TXT,%destDirGet%\README.TXT,update
www.eeworm.com/read/480440/1317879
java task.java
package mpi.signals;
import java.io.*;
import mpi.*;
public interface Task /*implements Serializable*/ {
/**
* Specify how the input task is to be executed. The result of the
* evalu
www.eeworm.com/read/465307/1521017
prl hedit.prl
#!/usr/local/bin/perl
# This shell script invokes HHEd to perform a global edit of a set
# of models. It must be executed from within the directory holding
# the hmm directories.
#
# Usage:
www.eeworm.com/read/169681/5415673
readme
This directory includes a set of scripts which will add event points
to the network stack for use with the WindView visualization tool. Each
script is executed from the Tornado Shell. Executing t
www.eeworm.com/read/347759/3163688
java command.java
/*
* @(#)Command.java 5.2
*
*/
package CH.ifa.draw.util;
/**
* Commands encapsulate an action to be executed. Commands have
* a name and can be used in conjunction with Command enab
www.eeworm.com/read/344496/3208622
java demotask.java
package onlyfun.caterpillar;
import java.util.TimerTask;
public class DemoTask extends TimerTask {
public void run() {
System.out.println("Task is executed.");
}
}