代码搜索结果
找到约 10,000 项符合
Driver 的代码
driver.cpp
/********************************************************************************
*
* $Id: driver.cpp,v 2.0.4.6 2003/10/02 03:14:25 dvi175 Exp $
*
* File: Main.cpp
*
* Copyright (c) 2000-2002 D
driver.java
package id3;
import shared.*;
/* Driver class, used to create,initialize,run inducers */
/** Basic Driver class used to interface the ID3Inducer.
* @author James Louis Created implementation.
driver.lst
C51 COMPILER V7.50 DRIVER 04/12/2009 20:41:41 PAGE 1
C51 COMPILER V7.50, COMPILATION OF MODULE DRIVER
OBJECT MODULE PLACED IN
driver.c
#include "includes.h"
#define DDS_Port P2
sbit W_CLK = P3^2;
sbit FQ_UD = P3^3;
sbit RST = P3^4;
sbit sdata =P3^1;
void AD9851_RST(void)
{
RST = 1;
delay(20);
RST = 0;
delay(20);
W_CLK =
driver.java
public class Driver
{
public static void main( String arg[] )
{
SimpleThread t1 = new SimpleThread();
t1.start();
}
}
driver.java
public class Driver
{
public static void main( String arg[] )
{
SimpleThread t1 = new SimpleThread("Hassaan");
SimpleThread t2 = new SimpleThread("Yasir");
t1
driver.java
public class Driver extends Thread
{
public static final int MAX_PRIMES = 100000;
public static final int TEN_SECONDS = 10000;
public static volatile boolean finish = false;
pub
driver.h
/************************************************************************
* 文件名称:Driver.h
* 作 者:张帆
* 完成日期:2007-11-1
****************************
driver.cpp
/************************************************************************
* 文件名称:Driver.cpp
* 作 者:张帆
* 完成日期:2007-11-1
**************************