代码搜索:Process
找到约 10,000 项符合「Process」的源代码
代码结果 10,000
www.eeworm.com/read/364932/9887589
6 fig1.6
#include "apue.h"
int
main(void)
{
printf("hello world from process ID %d\n", getpid());
exit(0);
}
www.eeworm.com/read/168666/9902534
java excute.java
package src;
public class Excute {
public static void main(String[] args){
Runtime rn = Runtime.getRuntime();
Process p = null;
try{
p = rn.exec("notepad");
}catch(Exception e){
www.eeworm.com/read/364478/9905907
vhd speaker.vhd
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
use ieee.std_logic_arith.all;
entity speaker is
port(clk:in std_logic;
tone:in std_logic_vector(10 downto 0);
www.eeworm.com/read/364436/9906615
vhd f50k.vhd
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
use ieee.std_logic_arith.all;
---------------------------------------------------
entity f50k is
port (
clk :
www.eeworm.com/read/364169/9919436
vhd fenwei.vhd
LIBRARY IEEE;
USE IEEE.Std_Logic_1164.ALL;
ENTITY Fenwei IS
PORT ( Numin: In Integer range 0 to 25 ;
NumA,NumB: Out Integer range 0 to 9);
END ;
ARCHITECTURE behavior OF Fenw
www.eeworm.com/read/363821/9934633
plg 12.plg
礦ision3 Build Log
Project:
D:\08电子设计\keyboard\12.uv2
Project File Date: 09/13/2008
Output:
compiling 12.c...
12.C(538): warning C280: 'ADs':
www.eeworm.com/read/168173/9935545
plg ultrasonic.plg
礦ision3 Build Log
Project:
D:\C51\ultrasonic\ultrasonic.uv2
Project File Date: 08/19/2005
Output:
Build target 'Target 1'
compiling ultrasoni
www.eeworm.com/read/363762/9936527
cls isubclass.cls
VERSION 1.0 CLASS
BEGIN
MultiUse = -1 'True
Persistable = 0 'NotPersistable
DataBindingBehavior = 0 'vbNone
DataSourceBehavior = 0 'vbNone
MTSTransactionMode = 0 'NotAnMTSObject
www.eeworm.com/read/168118/9938021
m pmtsetmenus.m
% This diagram shows the dependancies between
% process -> data -> menu enabling.
%
% Process Data output Menu Submenu
% ------- ----------- ---- -------
% load shotcoord Process rectimecheck
%
www.eeworm.com/read/167987/9942644
mycalculator
#!/bin/ksh
# Script name: mycalculator
# Example 10.133
# A simple calculator -- uses the bc command to perform the
# calculations
# Since the shell performs operations on integers only,
# this pro