代码搜索:MyTask
找到约 314 项符合「MyTask」的源代码
代码结果 314
www.eeworm.com/read/140122/5795016
c sched_toggle.c
/* PARALLEL
periodic scheduled task that toggles parallel port on each invocation.
Originally by Michael "FZ" Barabanov
Modified by Victor Yodaiken yodaiken@cs.nmt.edu
(c) Barabanov
www.eeworm.com/read/125140/6032698
makefile
# Makefile
#
# Constructs Entry.obj, the entry point for MyTask
all: Entry.obj
.asm.obj:
ml /c /Fl /coff $*.asm
clean:
deltree /y *.obj
www.eeworm.com/read/125140/6032707
bat build.bat
debug ..\bin\Bootsctr.img < Debug.txt
del a:\*.img
dir Release\MyTask.img
copy Release\MyTask.img a:\
www.eeworm.com/read/103509/6215087
c sched_toggle.c
/* PARALLEL
periodic scheduled task that toggles parallel port on each invocation.
Originally by Michael "FZ" Barabanov
Modified by Victor Yodaiken yodaiken@cs.nmt.edu
(c) Barabanov
www.eeworm.com/read/101153/6237715
c sched_toggle.c
/* PARALLEL
periodic scheduled task that toggles parallel port on each invocation.
Originally by Michael "FZ" Barabanov
Modified by Victor Yodaiken yodaiken@cs.nmt.edu
(c) Barabanov
www.eeworm.com/read/163818/5509311
c sched_toggle.c
/* PARALLEL
periodic scheduled task that toggles parallel port on each invocation.
Originally by Michael "FZ" Barabanov
Modified by Victor Yodaiken yodaiken@cs.nmt.edu
(c) Barabanov
www.eeworm.com/read/269232/11103993
java sample17_5.java
package wyf.jc;
import java.util.concurrent.*;
//定义执行指定任务的类
class MyTask implements Runnable
{
//任务名称
private String tname;
//有参构造器
public MyTask(String tname)
{
this.tname=tname;
}
www.eeworm.com/read/269232/11103996
java sample17_9.java
package wyf.jc;
import java.util.concurrent.*;
import java.util.concurrent.locks.*;
//自定义的资源池类
class MyResourcePool
{
public Semaphore sp;
public MyResourcePool(int count)
{