Este sítio funciona melhor com JavaScript.
Página inicial
Explorar
帮助
返回水杉在线
登录水杉在线
登录水杉码园
building_data_management_systems.Xuanzhou.2024Fall.DaSE
/
LevelDB-Time-To-Live
Vigiar
23
Marcar como favorito
0
Derivar
0
Código
Questões
0
Pedidos de integração
0
Lançamentos
0
Wiki
Trabalho
Ver a proveniência
Defend against inclusion of windows.h in tests that invoke
Env::DeleteFile. PiperOrigin-RevId: 283607548
naive_version
leveldb Team
há 5 anos
committed by
Victor Costan
ascendente
58a89bbcb2
cometimento
d152b23f3b
6 ficheiros alterados
com
30 adições
e
0 eliminações
Visualização em 2 colunas
Opções das diferenças
Mostrar estatísticas
Descarregar ficheiro patch
Descarregar ficheiro diff
+5
-0
benchmarks/db_bench.cc
+5
-0
db/db_test.cc
+5
-0
db/fault_injection_test.cc
+5
-0
db/recovery_test.cc
+5
-0
helpers/memenv/memenv_test.cc
+5
-0
util/env_test.cc
+ 5
- 0
benchmarks/db_bench.cc
Ver ficheiro
@ -18,6 +18,11 @@
#
include
"util/random.h"
#
include
"util/testutil.h"
#
if defined(_WIN32) && defined(DeleteFile)
// See rationale in env.h
#
undef DeleteFile
#
endif
// Comma-separated list of operations to run in the specified order
// Actual benchmarks:
// fillseq -- write N values in sequential key order in async mode
+ 5
- 0
db/db_test.cc
Ver ficheiro
@ -23,6 +23,11 @@
#
include
"util/mutexlock.h"
#
include
"util/testutil.h"
#
if defined(_WIN32) && defined(DeleteFile)
// See rationale in env.h
#
undef DeleteFile
#
endif
namespace
leveldb
{
static
std
:
:
string
RandomString
(
Random
*
rnd
,
int
len
)
{
+ 5
- 0
db/fault_injection_test.cc
Ver ficheiro
@ -25,6 +25,11 @@
#
include
"util/mutexlock.h"
#
include
"util/testutil.h"
#
if defined(_WIN32) && defined(DeleteFile)
// See rationale in env.h
#
undef DeleteFile
#
endif
namespace
leveldb
{
static
const
int
kValueSize
=
1000
;
+ 5
- 0
db/recovery_test.cc
Ver ficheiro
@ -13,6 +13,11 @@
#
include
"util/logging.h"
#
include
"util/testutil.h"
#
if defined(_WIN32) && defined(DeleteFile)
// See rationale in env.h
#
undef DeleteFile
#
endif
namespace
leveldb
{
class
RecoveryTest
:
public
testing
:
:
Test
{
+ 5
- 0
helpers/memenv/memenv_test.cc
Ver ficheiro
@ -13,6 +13,11 @@
#
include
"leveldb/env.h"
#
include
"util/testutil.h"
#
if defined(_WIN32) && defined(DeleteFile)
// See rationale in env.h
#
undef DeleteFile
#
endif
namespace
leveldb
{
class
MemEnvTest
:
public
testing
:
:
Test
{
+ 5
- 0
util/env_test.cc
Ver ficheiro
@ -12,6 +12,11 @@
#
include
"util/mutexlock.h"
#
include
"util/testutil.h"
#
if defined(_WIN32) && defined(DeleteFile)
// See rationale in env.h
#
undef DeleteFile
#
endif
namespace
leveldb
{
static
const
int
kDelayMicros
=
100000
;
Escrever
Pré-visualizar
Carregando…
Cancelar
Guardar