代码搜索:execute

找到约 10,000 项符合「execute」的源代码

代码结果 10,000
www.eeworm.com/read/247565/12642190

c watch.c

/* watch -- execute a program repeatedly, displaying output fullscreen * * Based on the original 1991 'watch' by Tony Rems * (with mods and corrections by Francois Pinard). *
www.eeworm.com/read/133540/14036170

makefile

# # Build a test for linear regression and standard # deviation. # # This is a Microsoft nmake Makefile. To execute enter "nmake". # This Makefile will also remove object and debug files buil
www.eeworm.com/read/201648/15400308

java threadpool.java

import java.util.LinkedList; /** A thread pool is a group of a limited number of threads that are used to execute tasks. */ public class ThreadPool extends ThreadGroup { private
www.eeworm.com/read/102720/15761892

3 execl.3

EXECL(3) Minix Programmer's Manual EXECL(3) NAME execl, execv, execle, execlp, execvp, exec, environ - execute a file SYNOPSIS #include
www.eeworm.com/read/100333/15876978

h block.h

/* Little Smalltalk block definitions timothy a. budd, 10/84 */ /* for blocks b_size = BLOCKSIZE b_interpreter is an instance of interpreter that will actually execute the
www.eeworm.com/read/291204/8434766

pas unit2.pas

unit Unit2; interface uses Classes,winsock,sysutils,windows; type convert = class(TThread) private { Private declarations } protected procedure Execute; override; end
www.eeworm.com/read/390183/8480652

c outrdf.c

/* outrdf.c output routines for the Netwide Assembler to produce * RDOFF format object files (which are intended mainly * for use in proprietary projects, as the code to load and * execute th
www.eeworm.com/read/184417/9102343

html fglcalllists.html

NAME fglCallLists - execute a list of display lists FORTRAN SPECIFICATION SUBROUTINE f
www.eeworm.com/read/179007/9379228

java macrocommand.java

package com.javapatterns.command.audioplayer2; public interface MacroCommand extends Command { void execute(); void remove(Command toRemove); void add(Command toAdd); }