代码搜索:test1

找到约 3,239 项符合「test1」的源代码

代码结果 3,239
www.eeworm.com/read/279052/10474244

c condtest.c

/* condtest.c - An example of optimizing if-then code */ #include int conditiontest(int test1, int test2) { int result; if (test1 > test2) { result =
www.eeworm.com/read/279046/10475267

c condtest.c

/* condtest.c - An example of optimizing if-then code */ #include int conditiontest(int test1, int test2) { int result; if (test1 > test2) { result =
www.eeworm.com/read/351829/10605050

test delete.test

Test the delete command. $ rm -rf d $ mkdir -p d/patches $ cd d $ quilt delete > No patches in series $ cat > test.txt < Calling pci_match_id() would be more feasible. $ quilt new test1 >
www.eeworm.com/read/417208/11000218

sql 实例1(数据库的创建和管理).sql

-- 上课内容:第二单元 数据库的创建和管理 -- 2.1 数据库的创建 -- 2.1.1 基本结构 CREATE DATABASE 数据库名 ON [PRIMARY] -- 定义 数据文件,包括主数据文件.MDF、辅助数据文件.NDF,多个数据文件用,隔开 ( NAME=逻辑文件名, FILENAME='物理文件名', -- 要求写名文件路径 SIZE=初始
www.eeworm.com/read/468026/6998052

lnp test1.lnp

"test1.obj", "head.obj", "ADUC812.obj", "public.obj", "usb.obj", "uart_port.obj", "USB_protocol.obj" TO "test1" RAMSIZE(256) XDATA( 0X0000-0XFFFE )
www.eeworm.com/read/332978/7141826

java shortcircuit.java

//: operators/ShortCircuit.java // Demonstrates short-circuiting behavior // with logical operators. import static net.mindview.util.Print.*; public class ShortCircuit { static boolean test1(
www.eeworm.com/read/449030/7519973

c condtest.c

/* condtest.c - An example of optimizing if-then code */ #include int conditiontest(int test1, int test2) { int result; if (test1 > test2) { result =
www.eeworm.com/read/199951/7814181

makefile

all : test1 test2 test3 test1 : $(LIB)/libnmeap.a $(TST)/test1.c gcc -g -O0 -I $(INC) $(CDEFS) -Wall -Werror -o test1 $(TST)/test1.c $(LIB)/libnmeap.a test2 : $(LIB)/libnmeap.a $(TST)/test2.
www.eeworm.com/read/198384/7937922

txt readme.txt

1 本程序说明了用最大概率法进行分词处理的一般过程 2 用户可以修改config.ini文件中的值 3 用于测试的三个文件中: test1是小学语文课本语料 test2是按句分行的语料 test3是包含歧义串的语料
www.eeworm.com/read/298041/7977025

makefile

CC = $(CROSS_COMPILE)gcc AS = $(CROSS_COMPILE)as LD = $(CROSS_COMPILE)ld RM = rm CFLAGS = -Wall -D_DEBUG_ -g LDFLAGS = -static TARGETS = hello test1 test2 test3 test4 test5 test6 test7 test8 \ t