代码搜索:Testing

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

代码结果 10,000
www.eeworm.com/read/160303/5575363

sh alloc_dealloc.sh

#!/bin/sh # This script allocates a number of SPIs, then deallocates them in a # different order. It is driven by an input file which contains some # generated SPI data. def_enckey=0x40434345454646
www.eeworm.com/read/160303/5575441

sh alloc_dealloc.sh

#!/bin/sh # This script allocates a number of SPIs, then deallocates them in a # different order. It is driven by an input file which contains some # generated SPI data. def_enckey=0x40434345454646
www.eeworm.com/read/155570/5620612

phpt 02fetch.phpt

--TEST-- DB_pgsql fetch test --SKIPIF-- --FILE--
www.eeworm.com/read/155570/5620621

phpt 02fetch.phpt

--TEST-- DB_ibase fetch test --SKIPIF-- --FILE--
www.eeworm.com/read/155570/5620637

phpt 02fetch.phpt

--TEST-- DB_mysql fetch test --SKIPIF-- --FILE--
www.eeworm.com/read/155570/5620650

phpt 02fetch.phpt

--TEST-- DB_oci8 fetch test --SKIPIF-- --FILE--
www.eeworm.com/read/155570/5620662

phpt 02fetch.phpt

--TEST-- DB_odbc fetch test --SKIPIF-- --FILE--
www.eeworm.com/read/475955/6771046

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/475955/6771049

c strieql.c

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

sh runalltests.sh

#!/bin/bash # File: runalltests.sh # Description: Script to run a set of UNLV test sets. # Author: Ray Smith # Created: Thu Jun 14 08:21:01 PDT 2007 # # (C) Copyright 2007, Google Inc.