代码搜索:test1
找到约 3,239 项符合「test1」的源代码
代码结果 3,239
www.eeworm.com/read/151159/5685724
h sortable.h
/*------------------------------------------------------------------------*/
/* */
/* SORTABLE.H
www.eeworm.com/read/133731/5903116
h sortable.h
/*------------------------------------------------------------------------*/
/* */
/* SORTABLE.H
www.eeworm.com/read/129064/5975219
makefile
CC=gcc
MAKE=make
CFLAGS=-g
LIBS=-L. -ldb -L/usr/mysql/sql -lmysqlclient -lpthread -lm -lnsl -lresolv -lrt
all : mysql
mysql : dbcom.h dbfunc.h dbcom.c dbfunc.c
$(CC) $(CFLAGS) -c -o dbcom.o dbcom.c
www.eeworm.com/read/125819/6021116
c cflow.c
int x;
#ifdef TEST0
void foo(void)
{
while (1) ;
}
#endif
#ifdef TEST1
void foo(void)
{
while (1) ;
x++; /* WARNING(SDCC) */
}
#endif
#ifdef TEST2
void foo(void)
{
int y=1;
while (y) ;
www.eeworm.com/read/117605/6101285
asm levelop.asm
test1:
mov word [0x0010 + (test2 - test1)], 0x0000
mov word [0x0010 + test2 - test1], 0x0000
test2:
www.eeworm.com/read/109010/6180719
jsp bean-define.jsp
Test struts-bean:define Tag
Test struts-bean:define
www.eeworm.com/read/280673/6341467
dpr project1.dpr
program Project1;
uses
Forms,
Test1 in 'Test1.pas' {Form1};
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.
www.eeworm.com/read/409021/11361534
txt linux下patch的制作和应用.txt
Linux下patch的制作和应用
因为在u-boot移植过程中,有几处通用文件要修改,如果每次都要手动修改就太麻烦了。制作补丁可以解决这个问题。
学习资料的收集比较简单,方法一类似于这种初级问题网上资料非常丰富,google或者baidu搜索一下,然后选择有价值的资料,方法二是阅读man在线文档。完成收集工作,当然最终要在自己的Linux上作实验,比较总结,消化吸收为自己的东西。要除去这么 ...