代码搜索:Process
找到约 10,000 项符合「Process」的源代码
代码结果 10,000
www.eeworm.com/read/481905/6632203
vhd crcreg.vhd
-------------------------------------------------------------------------------
-- Title : Parameterisable CRC Shift Register
-- Project :
---------------------------------------------------
www.eeworm.com/read/481616/6636552
vhd r2p_post.vhd
--
-- post.vhd
--
-- Cordic post-processing block
--
-- Compensate cordic algorithm K-factor; divide Radius by 1.6467, or multiply by 0.60725.
-- Approximation: Ra = Ri/2 + Ri/8 - Ri/64 - Ri/512
--
www.eeworm.com/read/266275/6639640
java memory.java
import java.awt.*;
import java.awt.event.*;
class process{
public int pid;
public String name;
public int pri;
public int time;
public int size;
}
class mmemory{
public int address;
www.eeworm.com/read/481225/6645173
h processmanager.h
#include "Table.h"
class Process{
public:
int ppid;
int pid;
int status;
int active;
int joined;
Semaphore* joinsem;
};
class ProcessManager{
public:
ProcessManager();
~ProcessManager();
in
www.eeworm.com/read/481239/6645527
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/481033/6655827
c tandem.c
/****************************************************************************
* *
* Tandem Randomness-Gathering Code *
* Copyright Peter Gutmann 2002-2004 *
*
www.eeworm.com/read/481033/6655835
c os2.c
/****************************************************************************
* *
* OS/2 Randomness-Gathering Code *
* Copyright Peter Gutmann and Stuart Woolford 1996
www.eeworm.com/read/480611/6666961
cpp 10.23.cpp
//用指向函数的指针作函数参数
/*例10.23设一个函数process,在调用它的时候,每次 实现不同的功能。输入a和b两个数,第一次
调用progress时找出a和b的最大者,第二次找出其中的小者,第三次求a和b的和*/
#include
int main()
{
int max(int,int);
int min(int
www.eeworm.com/read/480296/6672060
vhd rxcver.vhd
-- *******************************************************************
--
-- Owner: Xilinx Inc.
-- File: rxcver.vhd
--
-- Purpose: Main UART receiver logic module. Receives
-- incoming ser
www.eeworm.com/read/479775/6678542
txt proxy.txt
基本原理:
代理服务器打开一个端口接收浏览器发来的访问某个站点的请求,从请求的字符串中解析出用户想访问哪个网页,让后通过URL对象建立输入流读取相应的网页内容,最后按照web服务器的工作方式将网页内容发送给用户浏览器
源程序:
import java.net.*;
import java.io.*;
public class MyProxyServer
{
publ ...