代码搜索:Testing

找到约 10,000 项符合「Testing」的源代码

代码结果 10,000
www.eeworm.com/read/323119/13350571

36_i686-cmp-mysql,oracle connect-oracle-linux_2.0.36_i686-cmp-mysql,oracle

Testing server 'Oracle 8.0.5.0.0' at 1999-03-15 7:47:56 Testing the speed of connecting to the server and sending of data All tests are done 10000 times Testing connection/disconnect Time to connec
www.eeworm.com/read/323119/13350873

35_i686-cmp-adabas,mysql select-mysql-linux_2.0.35_i686-cmp-adabas,mysql

Testing server 'MySQL 3.22.9 beta' at 1998-10-20 7:02:48 Testing the speed of selecting on keys that consist of many parts The test-table has 10000 rows and the test is done with 22 ranges. Creatin
www.eeworm.com/read/323119/13350882

35_i686-cmp-adabas,mysql insert-adabas-linux_2.0.35_i686-cmp-adabas,mysql

Testing server 'Adabas 10.01.00' at 1998-09-24 12:13:15 Testing the speed of inserting data into 1 table and do some selects on it. The tests are done with a table that has 10000 rows. Generating ra
www.eeworm.com/read/323119/13350894

14_my_smp_i686-cmp-frontbase,mysql select-frontbase-linux_2.2.14_my_smp_i686-cmp-frontbase,mysql

Testing server '2.1' at 2000-11-24 12:38:06 Testing the speed of selecting on keys that consist of many parts The test-table has 10000 rows and the test is done with 150 ranges. Creating table Inser
www.eeworm.com/read/323119/13352250

result merge.result

drop table if exists t1,t2,t3,t4,t5,t6; drop database if exists mysqltest; create table t1 (a int not null primary key auto_increment, message char(20)); create table t2 (a int not null primary key au
www.eeworm.com/read/323119/13352718

test comments.test

# # Testing of comments # select 1+2/*hello*/+3; select 1 /* long multi line comment */; --error 1065 ; select 1 /*!32301 +1 */; select 1 /*!52301 +1 */; select 1--1; # Note that the following retur
www.eeworm.com/read/320816/13417979

c streql.c

#include int streql(char *str1, char *str2) { while ((*str1 == *str2) && (*str1)) { str1++; str2++; } return((*str1 == NULL) && (*str2 == NULL));
www.eeworm.com/read/320816/13417982

c strieql.c

#include #include int strieql(char *str1, char *str2) { while ((toupper(*str1) == toupper(*str2)) && (*str1)) { str1++; str2++; } return
www.eeworm.com/read/316923/13514502

c streql.c

#include int streql(char *str1, char *str2) { while ((*str1 == *str2) && (*str1)) { str1++; str2++; } return((*str1 == NULL) && (*str2 == NULL));
www.eeworm.com/read/316923/13514505

c strieql.c

#include #include int strieql(char *str1, char *str2) { while ((toupper(*str1) == toupper(*str2)) && (*str1)) { str1++; str2++; } return