代码搜索:Testing
找到约 10,000 项符合「Testing」的源代码
代码结果 10,000
www.eeworm.com/read/257450/11926337
thanks
in no particular order:
* Eric - for fixing some bugs and testing
* Alex Fiori - for testing
* Marcelo Toledo - for testing
* Jaromil
www.eeworm.com/read/343594/11940653
m elm_fun.m
function [TrainingTime, TrainingAccuracy, TestingAccuracy] = elm_fun(TrainingData_File, TestingData_File, NumberofHiddenNeurons, ActivationFunction, Elm_Type)
% Usage: elm(TrainingData_File, Testin
www.eeworm.com/read/342587/12011147
htm sweep081.htm
Appendix A - Required Files
#tctop {color: red}
#cpslug {color: red; text-decoration: none}
www.eeworm.com/read/256092/12029313
c test.c
/************* test.c *****************/
/**************************************/
int main(void)
{ /* comment */
int i;
int j; /* comment */
int d;
int t;
/* testing
comment */
out
www.eeworm.com/read/256092/12029345
c test.c
/************* test.c *****************/
/**************************************/
int main(void)
{ /* comment */
int i;
int j; /* comment */
int d;
int t;
/* testing
comment */
out
www.eeworm.com/read/152595/12100197
test_policy
grant {
// Allow everything for testing purposes
permission java.security.AllPermission;
};
www.eeworm.com/read/254349/12141943
todo
$Id: TODO,v 1.4 2000/04/17 05:11:09 eldamitri Exp $
id3lib still requires the following work:
* testing testing testing
* The interface for file access is muddled. It has been separated out from th
www.eeworm.com/read/150214/12304800
mod2convert-test-out
Creating sparse matrix.
Converting from sparse to dense.
Converting back to dense again.
Testing for equality of two sparse matrices: OK.
Converting to dense once again.
Testing for equality of two d
www.eeworm.com/read/148696/12442997
c strieql.c
#include
#include
int strieql(char *str1, char *str2)
{
while ((toupper(*str1) == toupper(*str2)) && (*str1))
{
str1++;
str2++;
}
return
www.eeworm.com/read/148696/12443014
c streql.c
#include
int streql(char *str1, char *str2)
{
while ((*str1 == *str2) && (*str1))
{
str1++;
str2++;
}
return((*str1 == NULL) && (*str2 == NULL));