代码搜索:Process
找到约 10,000 项符合「Process」的源代码
代码结果 10,000
www.eeworm.com/read/138637/7107849
vhd i2cmaster.vhd
--------------------------------------------------------------------------------
-- i2cMaster (i2c main Master Sequencers)
-- Takashi Kohno (DigiCat)
-- Rev. 0.5.1c / 20, Jun., 2005
--
---------
www.eeworm.com/read/138637/7107858
vhd i2cslave.vhd
--------------------------------------------------------------------------------
-- i2cSlave (i2c Slave Unit)
-- Takashi Kohno (DigiCat)
-- Rev. 0.5.0c / 20, Jun., 2005
--
----------------------
www.eeworm.com/read/189342/7115270
c execl.c
#include
#include
void main(void)
{
printf("About to call child process\n\n");
execl("CHILD.EXE", "CHILD.EXE",
"AAA", "BBB", "CCC", NULL);
printf("\n\nBa
www.eeworm.com/read/244009/7118130
vhd testfreq.vhd
LIBRARY ieee;
USE ieee.std_logic_1164.ALL;
USE ieee.std_logic_unsigned.ALL;
entity testfreq is
port( clk :in std_logic;
clock: in std_logic;
freq: out integer range 0 to 999999);
end t
www.eeworm.com/read/239481/7127751
һ
----------------------------------------------------------------
--
-- Copyright (c) 1992,1993,1994, Exemplar Logic Inc. All rights reserved.
--
-------------------------------------------------------
www.eeworm.com/read/293555/7129018
c ex4-17.c
#include
int max(int x, int y) {
int z;
if (x>y) z=x;
else z=y;
return(z);
}
int min(int x, int y) {
int z;
if (x
www.eeworm.com/read/243283/7141415
cs demomethods.cs
using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.
www.eeworm.com/read/332978/7141790
java covariantreturn.java
//: polymorphism/CovariantReturn.java
class Grain {
public String toString() { return "Grain"; }
}
class Wheat extends Grain {
public String toString() { return "Wheat"; }
}
class Mil
www.eeworm.com/read/332978/7141969
java apply.java
//: interfaces/classprocessor/Apply.java
package interfaces.classprocessor;
import java.util.*;
import static net.mindview.util.Print.*;
class Processor {
public String name() {
return g
www.eeworm.com/read/332978/7141975
java filterprocessor.java
//: interfaces/interfaceprocessor/FilterProcessor.java
package interfaces.interfaceprocessor;
import interfaces.filters.*;
class FilterAdapter implements Processor {
Filter filter;
public F