代码搜索:JS 有哪些应用?

找到约 10,000 项符合「JS 有哪些应用?」的源代码

代码结果 10,000
www.eeworm.com/read/198342/7939828

txt 钩子的应用程序运行监视.txt

if(f.Exists) //如果文件存在 { try { f.Active = true; //打开文件 char aLine[2048]; while(fgets(aLine,2000,f)) //读一行文本 (标准 C 函数) { if(strnicmp(aLine,"CLASS=",6)
www.eeworm.com/read/198238/7946242

txt 计数器:generic语句的应用.txt

-- n-Bit Synchronous Counter -- dowload from: www.fpga.com.cn & www.pld.com.cn LIBRARY ieee; USE ieee.Std_logic_1164.ALL; USE ieee.Std_logic_unsigned.ALL; ENTITY cntrnbit IS GENERIC(
www.eeworm.com/read/198238/7946372

txt 计数器:wait语句的应用.txt

-- This example shows an inefficient way of describing a counter. -- vhdl model of a 3-state counter illustrating the use -- of the WAIT statement to suspend a process.At each wait -- statement th
www.eeworm.com/read/198238/7946382

txt 计数器:generic语句的应用.txt

-- n-Bit Synchronous Counter -- dowload from: www.fpga.com.cn & www.pld.com.cn LIBRARY ieee; USE ieee.Std_logic_1164.ALL; USE ieee.Std_logic_unsigned.ALL; ENTITY cntrnbit IS GENERIC(
www.eeworm.com/read/198238/7946398

txt 计数器:wait语句的应用.txt

-- This example shows an inefficient way of describing a counter. -- vhdl model of a 3-state counter illustrating the use -- of the WAIT statement to suspend a process.At each wait -- statement th
www.eeworm.com/read/198238/7946402

txt 计数器:generate语句的应用.txt

-- Generated Binary Up Counter -- The first design entity is a T-type flip-flop. -- The second is an scalable synchronous binary up counter illustrating the use of the generate statement to produce
www.eeworm.com/read/198238/7946412

txt 加法器:generate语句的应用.txt

-- n-bit Adder using the Generate Statement -- download from: www.fpga.com.cn & www.pld.com.cn library IEEE; use IEEE.Std_logic_1164.all; ENTITY addn IS GENERIC(n : POSITIVE := 3); --no.