Add files using upload-large-folder tool
Browse files- benchmark/IOAI/IOAI-2025/GAITE-Contest/Synthetic_Speech_Detector/training_set/bonafide/LA_E_6890141_bonafide.pt +3 -0
- benchmark/IOAI/IOAI-2025/GAITE-Contest/Synthetic_Speech_Detector/training_set/spoof/LA_E_9406431_spoof_A16.pt +3 -0
- benchmark/NYU_CTF_Bench/development/2013/CSAW-Finals/web/historypeats/csaw/fuel/core/tests/cache/handler/driver.php +24 -0
- benchmark/NYU_CTF_Bench/development/2013/CSAW-Finals/web/historypeats/csaw/fuel/core/tests/cache/handler/json.php +24 -0
- benchmark/NYU_CTF_Bench/development/2013/CSAW-Finals/web/historypeats/csaw/fuel/core/tests/cache/handler/serialized.php +24 -0
- benchmark/NYU_CTF_Bench/development/2013/CSAW-Finals/web/historypeats/csaw/fuel/core/tests/cache/handler/string.php +24 -0
- benchmark/NYU_CTF_Bench/development/2013/CSAW-Finals/web/historypeats/csaw/fuel/core/tests/cache/storage/driver.php +24 -0
- benchmark/NYU_CTF_Bench/development/2013/CSAW-Finals/web/historypeats/csaw/fuel/core/tests/cache/storage/file.php +24 -0
- benchmark/NYU_CTF_Bench/development/2013/CSAW-Finals/web/historypeats/csaw/fuel/core/tests/cache/storage/memcached.php +24 -0
- benchmark/NYU_CTF_Bench/development/2013/CSAW-Finals/web/historypeats/csaw/fuel/core/tests/database/mysqli/connection.php +24 -0
- benchmark/NYU_CTF_Bench/development/2013/CSAW-Finals/web/historypeats/csaw/fuel/core/tests/database/mysqli/result.php +24 -0
- benchmark/NYU_CTF_Bench/development/2013/CSAW-Finals/web/historypeats/csaw/fuel/core/tests/database/pdo/connection.php +24 -0
- benchmark/NYU_CTF_Bench/development/2013/CSAW-Finals/web/historypeats/csaw/fuel/core/tests/database/query/builder.php +24 -0
- benchmark/NYU_CTF_Bench/development/2013/CSAW-Finals/web/historypeats/csaw/fuel/core/tests/database/query/builder/delete.php +24 -0
- benchmark/NYU_CTF_Bench/development/2013/CSAW-Finals/web/historypeats/csaw/fuel/core/tests/database/query/builder/insert.php +24 -0
- benchmark/NYU_CTF_Bench/development/2013/CSAW-Finals/web/historypeats/csaw/fuel/core/tests/database/query/builder/join.php +24 -0
- benchmark/NYU_CTF_Bench/development/2013/CSAW-Finals/web/historypeats/csaw/fuel/core/tests/database/query/builder/select.php +24 -0
- benchmark/NYU_CTF_Bench/development/2013/CSAW-Finals/web/historypeats/csaw/fuel/core/tests/database/query/builder/update.php +24 -0
- benchmark/NYU_CTF_Bench/development/2013/CSAW-Finals/web/historypeats/csaw/fuel/core/tests/database/query/builder/where.php +24 -0
- benchmark/NYU_CTF_Bench/development/2013/CSAW-Finals/web/historypeats/csaw/fuel/core/tests/database/result/cached.php +24 -0
benchmark/IOAI/IOAI-2025/GAITE-Contest/Synthetic_Speech_Detector/training_set/bonafide/LA_E_6890141_bonafide.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cc26e0f4bae0cb6f3389d02b994e7fe19d56716311c8f18bf67fbc77ff751afe
|
| 3 |
+
size 49378
|
benchmark/IOAI/IOAI-2025/GAITE-Contest/Synthetic_Speech_Detector/training_set/spoof/LA_E_9406431_spoof_A16.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:81ce55a34801f047d9cea4a2bb813bce66837e872af2feaef41c2bed33abb492
|
| 3 |
+
size 49447
|
benchmark/NYU_CTF_Bench/development/2013/CSAW-Finals/web/historypeats/csaw/fuel/core/tests/cache/handler/driver.php
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php
|
| 2 |
+
/**
|
| 3 |
+
* Part of the Fuel framework.
|
| 4 |
+
*
|
| 5 |
+
* @package Fuel
|
| 6 |
+
* @version 1.7
|
| 7 |
+
* @author Fuel Development Team
|
| 8 |
+
* @license MIT License
|
| 9 |
+
* @copyright 2010 - 2013 Fuel Development Team
|
| 10 |
+
* @link http://fuelphp.com
|
| 11 |
+
*/
|
| 12 |
+
|
| 13 |
+
namespace Fuel\Core;
|
| 14 |
+
|
| 15 |
+
/**
|
| 16 |
+
* Cache_Handler_Driver class tests
|
| 17 |
+
*
|
| 18 |
+
* @group Core
|
| 19 |
+
* @group Cache
|
| 20 |
+
*/
|
| 21 |
+
class Test_Cache_Handler_Driver extends TestCase
|
| 22 |
+
{
|
| 23 |
+
public function test_foo() {}
|
| 24 |
+
}
|
benchmark/NYU_CTF_Bench/development/2013/CSAW-Finals/web/historypeats/csaw/fuel/core/tests/cache/handler/json.php
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php
|
| 2 |
+
/**
|
| 3 |
+
* Part of the Fuel framework.
|
| 4 |
+
*
|
| 5 |
+
* @package Fuel
|
| 6 |
+
* @version 1.7
|
| 7 |
+
* @author Fuel Development Team
|
| 8 |
+
* @license MIT License
|
| 9 |
+
* @copyright 2010 - 2013 Fuel Development Team
|
| 10 |
+
* @link http://fuelphp.com
|
| 11 |
+
*/
|
| 12 |
+
|
| 13 |
+
namespace Fuel\Core;
|
| 14 |
+
|
| 15 |
+
/**
|
| 16 |
+
* Cache_Handler_Json class tests
|
| 17 |
+
*
|
| 18 |
+
* @group Core
|
| 19 |
+
* @group Cache
|
| 20 |
+
*/
|
| 21 |
+
class Test_Cache_Handler_Json extends TestCase
|
| 22 |
+
{
|
| 23 |
+
public function test_foo() {}
|
| 24 |
+
}
|
benchmark/NYU_CTF_Bench/development/2013/CSAW-Finals/web/historypeats/csaw/fuel/core/tests/cache/handler/serialized.php
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php
|
| 2 |
+
/**
|
| 3 |
+
* Part of the Fuel framework.
|
| 4 |
+
*
|
| 5 |
+
* @package Fuel
|
| 6 |
+
* @version 1.7
|
| 7 |
+
* @author Fuel Development Team
|
| 8 |
+
* @license MIT License
|
| 9 |
+
* @copyright 2010 - 2013 Fuel Development Team
|
| 10 |
+
* @link http://fuelphp.com
|
| 11 |
+
*/
|
| 12 |
+
|
| 13 |
+
namespace Fuel\Core;
|
| 14 |
+
|
| 15 |
+
/**
|
| 16 |
+
* Cache_Handler_Serialized class tests
|
| 17 |
+
*
|
| 18 |
+
* @group Core
|
| 19 |
+
* @group Cache
|
| 20 |
+
*/
|
| 21 |
+
class Test_Cache_Handler_Serialized extends TestCase
|
| 22 |
+
{
|
| 23 |
+
public function test_foo() {}
|
| 24 |
+
}
|
benchmark/NYU_CTF_Bench/development/2013/CSAW-Finals/web/historypeats/csaw/fuel/core/tests/cache/handler/string.php
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php
|
| 2 |
+
/**
|
| 3 |
+
* Part of the Fuel framework.
|
| 4 |
+
*
|
| 5 |
+
* @package Fuel
|
| 6 |
+
* @version 1.7
|
| 7 |
+
* @author Fuel Development Team
|
| 8 |
+
* @license MIT License
|
| 9 |
+
* @copyright 2010 - 2013 Fuel Development Team
|
| 10 |
+
* @link http://fuelphp.com
|
| 11 |
+
*/
|
| 12 |
+
|
| 13 |
+
namespace Fuel\Core;
|
| 14 |
+
|
| 15 |
+
/**
|
| 16 |
+
* Cache_Handler_String class tests
|
| 17 |
+
*
|
| 18 |
+
* @group Core
|
| 19 |
+
* @group Cache
|
| 20 |
+
*/
|
| 21 |
+
class Test_Cache_Handler_String extends TestCase
|
| 22 |
+
{
|
| 23 |
+
public function test_foo() {}
|
| 24 |
+
}
|
benchmark/NYU_CTF_Bench/development/2013/CSAW-Finals/web/historypeats/csaw/fuel/core/tests/cache/storage/driver.php
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php
|
| 2 |
+
/**
|
| 3 |
+
* Part of the Fuel framework.
|
| 4 |
+
*
|
| 5 |
+
* @package Fuel
|
| 6 |
+
* @version 1.7
|
| 7 |
+
* @author Fuel Development Team
|
| 8 |
+
* @license MIT License
|
| 9 |
+
* @copyright 2010 - 2013 Fuel Development Team
|
| 10 |
+
* @link http://fuelphp.com
|
| 11 |
+
*/
|
| 12 |
+
|
| 13 |
+
namespace Fuel\Core;
|
| 14 |
+
|
| 15 |
+
/**
|
| 16 |
+
* Cache_Storage_Driver class tests
|
| 17 |
+
*
|
| 18 |
+
* @group Core
|
| 19 |
+
* @group Cache
|
| 20 |
+
*/
|
| 21 |
+
class Test_Cache_Storage_Driver extends TestCase
|
| 22 |
+
{
|
| 23 |
+
public function test_foo() {}
|
| 24 |
+
}
|
benchmark/NYU_CTF_Bench/development/2013/CSAW-Finals/web/historypeats/csaw/fuel/core/tests/cache/storage/file.php
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php
|
| 2 |
+
/**
|
| 3 |
+
* Part of the Fuel framework.
|
| 4 |
+
*
|
| 5 |
+
* @package Fuel
|
| 6 |
+
* @version 1.7
|
| 7 |
+
* @author Fuel Development Team
|
| 8 |
+
* @license MIT License
|
| 9 |
+
* @copyright 2010 - 2013 Fuel Development Team
|
| 10 |
+
* @link http://fuelphp.com
|
| 11 |
+
*/
|
| 12 |
+
|
| 13 |
+
namespace Fuel\Core;
|
| 14 |
+
|
| 15 |
+
/**
|
| 16 |
+
* Cache_Storage_File class tests
|
| 17 |
+
*
|
| 18 |
+
* @group Core
|
| 19 |
+
* @group Cache
|
| 20 |
+
*/
|
| 21 |
+
class Test_Cache_Storage_File extends TestCase
|
| 22 |
+
{
|
| 23 |
+
public function test_foo() {}
|
| 24 |
+
}
|
benchmark/NYU_CTF_Bench/development/2013/CSAW-Finals/web/historypeats/csaw/fuel/core/tests/cache/storage/memcached.php
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php
|
| 2 |
+
/**
|
| 3 |
+
* Part of the Fuel framework.
|
| 4 |
+
*
|
| 5 |
+
* @package Fuel
|
| 6 |
+
* @version 1.7
|
| 7 |
+
* @author Fuel Development Team
|
| 8 |
+
* @license MIT License
|
| 9 |
+
* @copyright 2010 - 2013 Fuel Development Team
|
| 10 |
+
* @link http://fuelphp.com
|
| 11 |
+
*/
|
| 12 |
+
|
| 13 |
+
namespace Fuel\Core;
|
| 14 |
+
|
| 15 |
+
/**
|
| 16 |
+
* Cache_Storage_Memcached class tests
|
| 17 |
+
*
|
| 18 |
+
* @group Core
|
| 19 |
+
* @group Cache
|
| 20 |
+
*/
|
| 21 |
+
class Test_Cache_Storage_Memcached extends TestCase
|
| 22 |
+
{
|
| 23 |
+
public function test_foo() {}
|
| 24 |
+
}
|
benchmark/NYU_CTF_Bench/development/2013/CSAW-Finals/web/historypeats/csaw/fuel/core/tests/database/mysqli/connection.php
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php
|
| 2 |
+
/**
|
| 3 |
+
* Part of the Fuel framework.
|
| 4 |
+
*
|
| 5 |
+
* @package Fuel
|
| 6 |
+
* @version 1.6
|
| 7 |
+
* @author Fuel Development Team
|
| 8 |
+
* @license MIT License
|
| 9 |
+
* @copyright 2010 - 2013 Fuel Development Team
|
| 10 |
+
* @link http://fuelphp.com
|
| 11 |
+
*/
|
| 12 |
+
|
| 13 |
+
namespace Fuel\Core;
|
| 14 |
+
|
| 15 |
+
/**
|
| 16 |
+
* Database_Mysqli_Connection class tests
|
| 17 |
+
*
|
| 18 |
+
* @group Core
|
| 19 |
+
* @group Database
|
| 20 |
+
*/
|
| 21 |
+
class Test_Database_Mysqli_Connection extends TestCase
|
| 22 |
+
{
|
| 23 |
+
public function test_foo() {}
|
| 24 |
+
}
|
benchmark/NYU_CTF_Bench/development/2013/CSAW-Finals/web/historypeats/csaw/fuel/core/tests/database/mysqli/result.php
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php
|
| 2 |
+
/**
|
| 3 |
+
* Part of the Fuel framework.
|
| 4 |
+
*
|
| 5 |
+
* @package Fuel
|
| 6 |
+
* @version 1.6
|
| 7 |
+
* @author Fuel Development Team
|
| 8 |
+
* @license MIT License
|
| 9 |
+
* @copyright 2010 - 2013 Fuel Development Team
|
| 10 |
+
* @link http://fuelphp.com
|
| 11 |
+
*/
|
| 12 |
+
|
| 13 |
+
namespace Fuel\Core;
|
| 14 |
+
|
| 15 |
+
/**
|
| 16 |
+
* Database_Mysqli_Result class tests
|
| 17 |
+
*
|
| 18 |
+
* @group Core
|
| 19 |
+
* @group Database
|
| 20 |
+
*/
|
| 21 |
+
class Test_Database_Mysqli_Result extends TestCase
|
| 22 |
+
{
|
| 23 |
+
public function test_foo() {}
|
| 24 |
+
}
|
benchmark/NYU_CTF_Bench/development/2013/CSAW-Finals/web/historypeats/csaw/fuel/core/tests/database/pdo/connection.php
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php
|
| 2 |
+
/**
|
| 3 |
+
* Part of the Fuel framework.
|
| 4 |
+
*
|
| 5 |
+
* @package Fuel
|
| 6 |
+
* @version 1.6
|
| 7 |
+
* @author Fuel Development Team
|
| 8 |
+
* @license MIT License
|
| 9 |
+
* @copyright 2010 - 2013 Fuel Development Team
|
| 10 |
+
* @link http://fuelphp.com
|
| 11 |
+
*/
|
| 12 |
+
|
| 13 |
+
namespace Fuel\Core;
|
| 14 |
+
|
| 15 |
+
/**
|
| 16 |
+
* Database_Pdo_Connection class tests
|
| 17 |
+
*
|
| 18 |
+
* @group Core
|
| 19 |
+
* @group Database
|
| 20 |
+
*/
|
| 21 |
+
class Test_Database_Pdo_Connection extends TestCase
|
| 22 |
+
{
|
| 23 |
+
public function test_foo() {}
|
| 24 |
+
}
|
benchmark/NYU_CTF_Bench/development/2013/CSAW-Finals/web/historypeats/csaw/fuel/core/tests/database/query/builder.php
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php
|
| 2 |
+
/**
|
| 3 |
+
* Part of the Fuel framework.
|
| 4 |
+
*
|
| 5 |
+
* @package Fuel
|
| 6 |
+
* @version 1.6
|
| 7 |
+
* @author Fuel Development Team
|
| 8 |
+
* @license MIT License
|
| 9 |
+
* @copyright 2010 - 2013 Fuel Development Team
|
| 10 |
+
* @link http://fuelphp.com
|
| 11 |
+
*/
|
| 12 |
+
|
| 13 |
+
namespace Fuel\Core;
|
| 14 |
+
|
| 15 |
+
/**
|
| 16 |
+
* Database_Query_Builder class tests
|
| 17 |
+
*
|
| 18 |
+
* @group Core
|
| 19 |
+
* @group Database
|
| 20 |
+
*/
|
| 21 |
+
class Test_Database_Query_Builder extends TestCase
|
| 22 |
+
{
|
| 23 |
+
public function test_foo() {}
|
| 24 |
+
}
|
benchmark/NYU_CTF_Bench/development/2013/CSAW-Finals/web/historypeats/csaw/fuel/core/tests/database/query/builder/delete.php
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php
|
| 2 |
+
/**
|
| 3 |
+
* Part of the Fuel framework.
|
| 4 |
+
*
|
| 5 |
+
* @package Fuel
|
| 6 |
+
* @version 1.6
|
| 7 |
+
* @author Fuel Development Team
|
| 8 |
+
* @license MIT License
|
| 9 |
+
* @copyright 2010 - 2013 Fuel Development Team
|
| 10 |
+
* @link http://fuelphp.com
|
| 11 |
+
*/
|
| 12 |
+
|
| 13 |
+
namespace Fuel\Core;
|
| 14 |
+
|
| 15 |
+
/**
|
| 16 |
+
* Database_Query_Builder_Delete class tests
|
| 17 |
+
*
|
| 18 |
+
* @group Core
|
| 19 |
+
* @group Database
|
| 20 |
+
*/
|
| 21 |
+
class Test_Database_Query_Builder_Delete extends TestCase
|
| 22 |
+
{
|
| 23 |
+
public function test_foo() {}
|
| 24 |
+
}
|
benchmark/NYU_CTF_Bench/development/2013/CSAW-Finals/web/historypeats/csaw/fuel/core/tests/database/query/builder/insert.php
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php
|
| 2 |
+
/**
|
| 3 |
+
* Part of the Fuel framework.
|
| 4 |
+
*
|
| 5 |
+
* @package Fuel
|
| 6 |
+
* @version 1.6
|
| 7 |
+
* @author Fuel Development Team
|
| 8 |
+
* @license MIT License
|
| 9 |
+
* @copyright 2010 - 2013 Fuel Development Team
|
| 10 |
+
* @link http://fuelphp.com
|
| 11 |
+
*/
|
| 12 |
+
|
| 13 |
+
namespace Fuel\Core;
|
| 14 |
+
|
| 15 |
+
/**
|
| 16 |
+
* Database_Query_Builder_Insert class tests
|
| 17 |
+
*
|
| 18 |
+
* @group Core
|
| 19 |
+
* @group Database
|
| 20 |
+
*/
|
| 21 |
+
class Test_Database_Query_Builder_Insert extends TestCase
|
| 22 |
+
{
|
| 23 |
+
public function test_foo() {}
|
| 24 |
+
}
|
benchmark/NYU_CTF_Bench/development/2013/CSAW-Finals/web/historypeats/csaw/fuel/core/tests/database/query/builder/join.php
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php
|
| 2 |
+
/**
|
| 3 |
+
* Part of the Fuel framework.
|
| 4 |
+
*
|
| 5 |
+
* @package Fuel
|
| 6 |
+
* @version 1.6
|
| 7 |
+
* @author Fuel Development Team
|
| 8 |
+
* @license MIT License
|
| 9 |
+
* @copyright 2010 - 2013 Fuel Development Team
|
| 10 |
+
* @link http://fuelphp.com
|
| 11 |
+
*/
|
| 12 |
+
|
| 13 |
+
namespace Fuel\Core;
|
| 14 |
+
|
| 15 |
+
/**
|
| 16 |
+
* Database_Query_Builder_Join class tests
|
| 17 |
+
*
|
| 18 |
+
* @group Core
|
| 19 |
+
* @group Database
|
| 20 |
+
*/
|
| 21 |
+
class Test_Database_Query_Builder_Join extends TestCase
|
| 22 |
+
{
|
| 23 |
+
public function test_foo() {}
|
| 24 |
+
}
|
benchmark/NYU_CTF_Bench/development/2013/CSAW-Finals/web/historypeats/csaw/fuel/core/tests/database/query/builder/select.php
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php
|
| 2 |
+
/**
|
| 3 |
+
* Part of the Fuel framework.
|
| 4 |
+
*
|
| 5 |
+
* @package Fuel
|
| 6 |
+
* @version 1.6
|
| 7 |
+
* @author Fuel Development Team
|
| 8 |
+
* @license MIT License
|
| 9 |
+
* @copyright 2010 - 2013 Fuel Development Team
|
| 10 |
+
* @link http://fuelphp.com
|
| 11 |
+
*/
|
| 12 |
+
|
| 13 |
+
namespace Fuel\Core;
|
| 14 |
+
|
| 15 |
+
/**
|
| 16 |
+
* Database_Query_Builder_Select class tests
|
| 17 |
+
*
|
| 18 |
+
* @group Core
|
| 19 |
+
* @group Database
|
| 20 |
+
*/
|
| 21 |
+
class Test_Database_Query_Builder_Select extends TestCase
|
| 22 |
+
{
|
| 23 |
+
public function test_foo() {}
|
| 24 |
+
}
|
benchmark/NYU_CTF_Bench/development/2013/CSAW-Finals/web/historypeats/csaw/fuel/core/tests/database/query/builder/update.php
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php
|
| 2 |
+
/**
|
| 3 |
+
* Part of the Fuel framework.
|
| 4 |
+
*
|
| 5 |
+
* @package Fuel
|
| 6 |
+
* @version 1.6
|
| 7 |
+
* @author Fuel Development Team
|
| 8 |
+
* @license MIT License
|
| 9 |
+
* @copyright 2010 - 2013 Fuel Development Team
|
| 10 |
+
* @link http://fuelphp.com
|
| 11 |
+
*/
|
| 12 |
+
|
| 13 |
+
namespace Fuel\Core;
|
| 14 |
+
|
| 15 |
+
/**
|
| 16 |
+
* Database_Query_Builder_Update class tests
|
| 17 |
+
*
|
| 18 |
+
* @group Core
|
| 19 |
+
* @group Database
|
| 20 |
+
*/
|
| 21 |
+
class Test_Database_Query_Builder_Update extends TestCase
|
| 22 |
+
{
|
| 23 |
+
public function test_foo() {}
|
| 24 |
+
}
|
benchmark/NYU_CTF_Bench/development/2013/CSAW-Finals/web/historypeats/csaw/fuel/core/tests/database/query/builder/where.php
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php
|
| 2 |
+
/**
|
| 3 |
+
* Part of the Fuel framework.
|
| 4 |
+
*
|
| 5 |
+
* @package Fuel
|
| 6 |
+
* @version 1.6
|
| 7 |
+
* @author Fuel Development Team
|
| 8 |
+
* @license MIT License
|
| 9 |
+
* @copyright 2010 - 2013 Fuel Development Team
|
| 10 |
+
* @link http://fuelphp.com
|
| 11 |
+
*/
|
| 12 |
+
|
| 13 |
+
namespace Fuel\Core;
|
| 14 |
+
|
| 15 |
+
/**
|
| 16 |
+
* Database_Query_Builder_Where class tests
|
| 17 |
+
*
|
| 18 |
+
* @group Core
|
| 19 |
+
* @group Database
|
| 20 |
+
*/
|
| 21 |
+
class Test_Database_Query_Builder_Where extends TestCase
|
| 22 |
+
{
|
| 23 |
+
public function test_foo() {}
|
| 24 |
+
}
|
benchmark/NYU_CTF_Bench/development/2013/CSAW-Finals/web/historypeats/csaw/fuel/core/tests/database/result/cached.php
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php
|
| 2 |
+
/**
|
| 3 |
+
* Part of the Fuel framework.
|
| 4 |
+
*
|
| 5 |
+
* @package Fuel
|
| 6 |
+
* @version 1.6
|
| 7 |
+
* @author Fuel Development Team
|
| 8 |
+
* @license MIT License
|
| 9 |
+
* @copyright 2010 - 2013 Fuel Development Team
|
| 10 |
+
* @link http://fuelphp.com
|
| 11 |
+
*/
|
| 12 |
+
|
| 13 |
+
namespace Fuel\Core;
|
| 14 |
+
|
| 15 |
+
/**
|
| 16 |
+
* Database_Result_Cached class tests
|
| 17 |
+
*
|
| 18 |
+
* @group Core
|
| 19 |
+
* @group Database
|
| 20 |
+
*/
|
| 21 |
+
class Test_Database_Result_Cached extends TestCase
|
| 22 |
+
{
|
| 23 |
+
public function test_foo() {}
|
| 24 |
+
}
|