代码搜索:Testing
找到约 10,000 项符合「Testing」的源代码
代码结果 10,000
www.eeworm.com/read/206867/15287786
c datetime.c
#include
void main(void)
{
printf("Beta Testing: Last compiled %s %s\n", __DATE__,
__TIME__);
}
www.eeworm.com/read/206867/15287816
c filecnst.c
#include
void main(void)
{
printf("The file %s is under Beta testing\n", __FILE__);
}
www.eeworm.com/read/173141/5378441
sql longcolumn.sql
-- test sinle long column table
-- create table with one long column
-- test 1: one long column
run resource 'createTestProcedures.subsql';
call SYSCS_UTIL.SYSCS_SET_DATABASE_PROPERTY('derby.storage.p
www.eeworm.com/read/173141/5378443
sql longrow.sql
-- create a table with 5 rows, with 4K pageSize,
-- this should expand over 3 pages
run resource 'createTestProcedures.subsql';
call SYSCS_UTIL.SYSCS_SET_DATABASE_PROPERTY('derby.storage.pageSize', '4
www.eeworm.com/read/173141/5379177
properties derby94_derby.properties
#modify the lock escalation threshold to smaller value to make testing simple
derby.locks.escalationThreshold=102
www.eeworm.com/read/173141/5379473
out streamingcolumn.out
Test streamingColumn starting
===> testing extin/short.data length = 56
No truncation and hence no error
===> testing extin/shortbanner length = 8282
No truncation and hence no error
===> testing exti
www.eeworm.com/read/173141/5379681
out derbystress.out
Test derbyStress starting
Testing with 2000 prepared statements
PASS -- Prepared statement test
Test derbyStress finished.
www.eeworm.com/read/171479/5394330
tex operators.tex
\chapter{Operators}
\section{\indexoperator{.} -- property access}
\section{\indexoperator{[]} -- collection member access}
\section{\indexoperator{()} -- method invocation}
\section{\indexoperator{=
www.eeworm.com/read/171479/5395027
groovy testbase.groovy
/**
* A base class for testing constructors
*
* @version $Revision: 1.10 $
*/
class TestBase {
String foo
TestBase() {
}
TestBase(String aFoo) {
this.f
www.eeworm.com/read/171479/5395042
groovy testderived.groovy
/**
* A base class for testing constructors
*
* @version $Revision: 1.5 $
*/
class TestDerived extends TestBase {
TestDerived(String aFoo) {
super(aFoo)
}
def doS