repo
stringlengths
1
191
file
stringlengths
23
351
code
stringlengths
0
5.32M
file_length
int64
0
5.32M
avg_line_length
float64
0
2.9k
max_line_length
int64
0
288k
extension_type
stringclasses
1 value
null
NearPMSW-main/baseline/logging/YCSB/HdrHistogram/src/main/java/org/HdrHistogram/ConcurrentHistogram.java
/** * Written by Gil Tene of Azul Systems, and released to the public domain, * as explained at http://creativecommons.org/publicdomain/zero/1.0/ * * @author Gil Tene */ package org.HdrHistogram; import java.io.IOException; import java.io.ObjectInputStream; import java.nio.ByteBuffer; import java.util.concurrent...
29,671
41.878613
117
java
null
NearPMSW-main/baseline/logging/YCSB/HdrHistogram/src/main/java/org/HdrHistogram/PackedConcurrentHistogram.java
/** * Written by Gil Tene of Azul Systems, and released to the public domain, * as explained at http://creativecommons.org/publicdomain/zero/1.0/ * * @author Gil Tene */ package org.HdrHistogram; import org.HdrHistogram.packedarray.ConcurrentPackedLongArray; import java.io.IOException; import java.io.ObjectInpu...
13,839
43.645161
122
java
null
NearPMSW-main/baseline/logging/YCSB/HdrHistogram/src/main/java/org/HdrHistogram/DoubleValueRecorder.java
package org.HdrHistogram; public interface DoubleValueRecorder { /** * Record a value * * @param value The value to be recorded * @throws ArrayIndexOutOfBoundsException (may throw) if value cannot be covered by the histogram's range */ void recordValue(double value) throws ArrayIndexO...
2,181
44.458333
119
java
null
NearPMSW-main/baseline/logging/YCSB/HdrHistogram/src/main/java/org/HdrHistogram/Recorder.java
/** * Written by Gil Tene of Azul Systems, and released to the public domain, * as explained at http://creativecommons.org/publicdomain/zero/1.0/ * * @author Gil Tene */ package org.HdrHistogram; import java.util.concurrent.atomic.AtomicLong; /** * Records integer values, and provides stable interval {@link Hi...
16,840
48.532353
117
java
null
NearPMSW-main/baseline/logging/YCSB/HdrHistogram/src/main/java/org/HdrHistogram/Base64Helper.java
/** * Written by Gil Tene of Azul Systems, and released to the public domain, * as explained at http://creativecommons.org/publicdomain/zero/1.0/ * * @author Gil Tene */ package org.HdrHistogram; import java.lang.reflect.Method; /** * Base64Helper exists to bridge inconsistencies in Java SE support of Base64 e...
3,940
39.214286
112
java
null
NearPMSW-main/baseline/logging/YCSB/HdrHistogram/src/main/java/org/HdrHistogram/SynchronizedHistogram.java
/** * Written by Gil Tene of Azul Systems, and released to the public domain, * as explained at http://creativecommons.org/publicdomain/zero/1.0/ * * @author Gil Tene */ package org.HdrHistogram; import java.io.IOException; import java.io.ObjectInputStream; import java.io.PrintStream; import java.nio.ByteBuffer;...
20,798
38.466793
145
java
null
NearPMSW-main/baseline/logging/YCSB/HdrHistogram/src/main/java/org/HdrHistogram/SingleWriterRecorder.java
/** * Written by Gil Tene of Azul Systems, and released to the public domain, * as explained at http://creativecommons.org/publicdomain/zero/1.0/ * * @author Gil Tene */ package org.HdrHistogram; import java.util.concurrent.atomic.AtomicLong; /** * Records integer values, and provides stable interval {@link Hi...
15,734
48.018692
124
java
null
NearPMSW-main/baseline/logging/YCSB/HdrHistogram/src/main/java/org/HdrHistogram/PackedDoubleHistogram.java
/** * Written by Gil Tene of Azul Systems, and released to the public domain, * as explained at http://creativecommons.org/publicdomain/zero/1.0/ * * @author Gil Tene */ package org.HdrHistogram; import java.nio.ByteBuffer; import java.util.zip.DataFormatException; /** * <h3>A floating point values High Dynami...
8,516
54.666667
120
java
null
NearPMSW-main/baseline/logging/YCSB/HdrHistogram/src/main/java/org/HdrHistogram/Histogram.java
/** * Written by Gil Tene of Azul Systems, and released to the public domain, * as explained at http://creativecommons.org/publicdomain/zero/1.0/ * * @author Gil Tene */ package org.HdrHistogram; import java.io.IOException; import java.io.ObjectInputStream; import java.nio.ByteBuffer; import java.util.Arrays; im...
12,327
42.561837
119
java
null
NearPMSW-main/baseline/logging/YCSB/HdrHistogram/src/main/java/org/HdrHistogram/HistogramLogProcessor.java
/** * Written by Gil Tene of Azul Systems, and released to the public domain, * as explained at http://creativecommons.org/publicdomain/zero/1.0/ * * @author Gil Tene */ package org.HdrHistogram; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.PrintStream; import java.util.*...
30,037
54.936685
167
java
null
NearPMSW-main/baseline/logging/YCSB/HdrHistogram/src/main/java/org/HdrHistogram/ConcurrentDoubleHistogram.java
/** * Written by Gil Tene of Azul Systems, and released to the public domain, * as explained at http://creativecommons.org/publicdomain/zero/1.0/ * * @author Gil Tene */ package org.HdrHistogram; import java.nio.ByteBuffer; import java.util.zip.DataFormatException; /** * <h3>A floating point values High Dynami...
8,961
56.448718
120
java
null
NearPMSW-main/baseline/logging/YCSB/HdrHistogram/src/main/java/org/HdrHistogram/HistogramLogWriter.java
package org.HdrHistogram; import java.io.File; import java.io.FileNotFoundException; import java.io.OutputStream; import java.io.PrintStream; import java.nio.ByteBuffer; import java.util.Arrays; import java.util.Date; import java.util.Locale; import java.util.regex.Matcher; import java.util.regex.Pattern; import java....
10,432
41.583673
113
java
null
NearPMSW-main/baseline/logging/YCSB/HdrHistogram/src/main/java/org/HdrHistogram/AllValuesIterator.java
/** * Written by Gil Tene of Azul Systems, and released to the public domain, * as explained at http://creativecommons.org/publicdomain/zero/1.0/ * * @author Gil Tene */ package org.HdrHistogram; import java.util.ConcurrentModificationException; import java.util.Iterator; /** * Used for iterating through histo...
1,787
28.8
116
java
null
NearPMSW-main/baseline/logging/YCSB/HdrHistogram/src/main/java/org/HdrHistogram/LogarithmicIterator.java
/** * Written by Gil Tene of Azul Systems, and released to the public domain, * as explained at http://creativecommons.org/publicdomain/zero/1.0/ * * @author Gil Tene */ package org.HdrHistogram; import java.util.Iterator; /** * Used for iterating through histogram values in logarithmically increasing levels. ...
3,600
42.914634
125
java
null
NearPMSW-main/baseline/logging/YCSB/HdrHistogram/src/main/java/org/HdrHistogram/ZigZagEncoding.java
/** * Written by Gil Tene of Azul Systems, and released to the public domain, * as explained at http://creativecommons.org/publicdomain/zero/1.0/ * * @author Gil Tene */ package org.HdrHistogram; import java.nio.ByteBuffer; /** * This class provides encoding and decoding methods for writing and reading * ZigZ...
7,056
37.774725
84
java
null
NearPMSW-main/baseline/logging/YCSB/HdrHistogram/src/main/java/org/HdrHistogram/packedarray/AbstractPackedArrayContext.java
package org.HdrHistogram.packedarray; import java.io.Serializable; import java.util.Iterator; import java.util.NoSuchElementException; /** * A packed-value, sparse array context used for storing 64 bit signed values. * <p> * An array context is optimised for tracking sparsely set (as in mostly zeros) values that t...
53,321
47.298913
120
java
null
NearPMSW-main/baseline/logging/YCSB/HdrHistogram/src/main/java/org/HdrHistogram/packedarray/ResizeException.java
package org.HdrHistogram.packedarray; class ResizeException extends Exception { private final int newSize; ResizeException(final int newSize) { this.newSize = newSize; } int getNewSize() { return newSize; } }
248
16.785714
41
java
null
NearPMSW-main/baseline/logging/YCSB/HdrHistogram/src/main/java/org/HdrHistogram/packedarray/ConcurrentPackedArrayContext.java
package org.HdrHistogram.packedarray; import java.util.concurrent.atomic.AtomicIntegerFieldUpdater; import java.util.concurrent.atomic.AtomicLongArray; class ConcurrentPackedArrayContext extends PackedArrayContext { ConcurrentPackedArrayContext(final int virtualLength, final int...
3,964
30.72
118
java
null
NearPMSW-main/baseline/logging/YCSB/HdrHistogram/src/main/java/org/HdrHistogram/packedarray/AbstractPackedLongArray.java
package org.HdrHistogram.packedarray; import java.io.Serializable; import java.util.Iterator; import java.util.NoSuchElementException; /** * A Packed array of signed 64 bit values, and supports {@link #get get()}, {@link #set set()}, * {@link #add add()} and {@link #increment increment()} operations on the logical ...
14,675
35.058968
112
java
null
NearPMSW-main/baseline/logging/YCSB/HdrHistogram/src/main/java/org/HdrHistogram/packedarray/PackedArrayRecorder.java
/** * Written by Gil Tene of Azul Systems, and released to the public domain, * as explained at http://creativecommons.org/publicdomain/zero/1.0/ * * @author Gil Tene */ package org.HdrHistogram.packedarray; import org.HdrHistogram.*; import java.util.concurrent.atomic.AtomicLong; /** * Records increments and...
14,419
47.552189
118
java
null
NearPMSW-main/baseline/logging/YCSB/HdrHistogram/src/main/java/org/HdrHistogram/packedarray/IterationValue.java
package org.HdrHistogram.packedarray; /** * An iteration value representing the index iterated to, and the value found at that index */ public class IterationValue { IterationValue() { } void set(final int index, final long value) { this.index = index; this.value = value; } /** ...
666
18.617647
91
java
null
NearPMSW-main/baseline/logging/YCSB/HdrHistogram/src/main/java/org/HdrHistogram/packedarray/PackedArraySingleWriterRecorder.java
/** * Written by Gil Tene of Azul Systems, and released to the public domain, * as explained at http://creativecommons.org/publicdomain/zero/1.0/ * * @author Gil Tene */ package org.HdrHistogram.packedarray; import org.HdrHistogram.SingleWriterRecorder; import org.HdrHistogram.WriterReaderPhaser; import java.ut...
14,804
48.51505
129
java
null
NearPMSW-main/baseline/logging/YCSB/HdrHistogram/src/main/java/org/HdrHistogram/packedarray/PackedArrayContext.java
package org.HdrHistogram.packedarray; import java.util.Arrays; /** * A non-concurrent array context. No atomics used. */ class PackedArrayContext extends AbstractPackedArrayContext { PackedArrayContext(final int virtualLength, final int initialPhysicalLength, final...
3,304
26.541667
112
java
null
NearPMSW-main/baseline/logging/YCSB/HdrHistogram/src/main/java/org/HdrHistogram/packedarray/PackedLongArray.java
package org.HdrHistogram.packedarray; /** * A Packed array of signed 64 bit values, and supports {@link #get get()}, {@link #set set()}, * {@link #add add()} and {@link #increment increment()} operations on the logical contents of the array. */ public class PackedLongArray extends AbstractPackedLongArray { Pac...
2,792
36.743243
118
java
null
NearPMSW-main/baseline/logging/YCSB/HdrHistogram/src/main/java/org/HdrHistogram/packedarray/ConcurrentPackedLongArray.java
package org.HdrHistogram.packedarray; import org.HdrHistogram.WriterReaderPhaser; import java.io.IOException; import java.io.ObjectInputStream; /** * A Packed array of signed 64 bit values that supports {@link #get get()}, {@link #set set()}, {@link #add add()} and * {@link #increment increment()} operations the l...
6,572
37.664706
120
java
null
NearPMSW-main/baseline/logging/YCSB/HdrHistogram/HdrHistogram-benchmarks/src/main/java/org/HdrHistogram/SkinnyHistogram.java
/** * Written by Gil Tene of Azul Systems, and released to the public domain, * as explained at http://creativecommons.org/publicdomain/zero/1.0/ * * @author Gil Tene */ package org.HdrHistogram; import java.nio.ByteBuffer; import java.util.ArrayList; import java.util.zip.Deflater; /** * This is a Java port of...
6,631
36.897143
112
java
null
NearPMSW-main/baseline/logging/YCSB/HdrHistogram/HdrHistogram-benchmarks/src/main/java/bench/HdrHistogramEncodingBench.java
/** * Written by Gil Tene of Azul Systems, and released to the public domain, * as explained at http://creativecommons.org/publicdomain/zero/1.0/ * * @author Gil Tene */ package bench; import org.HdrHistogram.*; import org.openjdk.jmh.annotations.*; import java.nio.ByteBuffer; import java.util.concurrent.TimeUn...
2,333
28.923077
99
java
null
NearPMSW-main/baseline/logging/YCSB/HdrHistogram/HdrHistogram-benchmarks/src/main/java/bench/HistogramData.java
/** * Written by Gil Tene of Azul Systems, and released to the public domain, * as explained at http://creativecommons.org/publicdomain/zero/1.0/ * * @author Gil Tene */ package bench; import org.HdrHistogram.*; import java.io.InputStream; import java.nio.ByteBuffer; import java.util.ArrayList; import java.util...
16,918
56.547619
109
java
null
NearPMSW-main/baseline/logging/YCSB/HdrHistogram/HdrHistogram-benchmarks/src/main/java/bench/HdrHistogramRecordingBench.java
/** * Written by Gil Tene of Azul Systems, and released to the public domain, * as explained at http://creativecommons.org/publicdomain/zero/1.0/ * * @author Gil Tene */ package bench; import org.HdrHistogram.*; import org.HdrHistogram.AbstractHistogram; import org.HdrHistogram.Recorder; import org.openjdk.jmh.a...
4,046
32.725
123
java
null
NearPMSW-main/baseline/logging/YCSB/arangodb/src/main/java/site/ycsb/db/arangodb/package-info.java
/** * Copyright (c) 2017 YCSB contributors. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); you * may not use this file except in compliance with the License. You * may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by...
773
32.652174
73
java
null
NearPMSW-main/baseline/logging/YCSB/arangodb/src/main/java/site/ycsb/db/arangodb/ArangoDBClient.java
/** * Copyright (c) 2017 YCSB contributors. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); you * may not use this file except in compliance with the License. You * may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by...
15,726
35.405093
114
java
null
NearPMSW-main/baseline/logging/YCSB/cloudspanner/src/main/java/site/ycsb/db/cloudspanner/package-info.java
/* * Copyright (c) 2017 YCSB contributors. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); you * may not use this file except in compliance with the License. You * may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by ...
801
33.869565
77
java
null
NearPMSW-main/baseline/logging/YCSB/cloudspanner/src/main/java/site/ycsb/db/cloudspanner/CloudSpannerClient.java
/** * Copyright (c) 2017 YCSB contributors. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); you * may not use this file except in compliance with the License. You * may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by...
14,857
36.145
117
java
null
NearPMSW-main/baseline/logging/YCSB/ignite/src/test/java/site/ycsb/db/ignite/IgniteClientTestBase.java
/** * Copyright (c) 2013-2018 YCSB contributors. All rights reserved. * <p> * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * <p> * http://www.apache.org/licenses/LICENSE-2.0 * <p> * U...
2,236
25.630952
111
java
null
NearPMSW-main/baseline/logging/YCSB/ignite/src/test/java/site/ycsb/db/ignite/IgniteClientTest.java
/** * Copyright (c) 2018 YCSB contributors All rights reserved. * <p> * Licensed under the Apache License, Version 2.0 (the "License"); you * may not use this file except in compliance with the License. You * may obtain a copy of the License at * <p> * http://www.apache.org/licenses/LICENSE-2.0 * <p> * Unless ...
7,651
35.966184
114
java
null
NearPMSW-main/baseline/logging/YCSB/ignite/src/test/java/site/ycsb/db/ignite/IgniteSqlClientTest.java
/** * Copyright (c) 2018 YCSB contributors All rights reserved. * <p> * Licensed under the Apache License, Version 2.0 (the "License"); you * may not use this file except in compliance with the License. You * may obtain a copy of the License at * <p> * http://www.apache.org/licenses/LICENSE-2.0 * <p> * Unless ...
11,331
35.204473
113
java
null
NearPMSW-main/baseline/logging/YCSB/ignite/src/main/java/site/ycsb/db/ignite/package-info.java
/* * Copyright (c) 2014, Yahoo!, Inc. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); you * may not use this file except in compliance with the License. You * may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by appli...
788
31.875
71
java
null
NearPMSW-main/baseline/logging/YCSB/ignite/src/main/java/site/ycsb/db/ignite/IgniteAbstractClient.java
/** * Copyright (c) 2013-2018 YCSB contributors. All rights reserved. * <p> * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * <p> * http://www.apache.org/licenses/LICENSE-2.0 * <p> * U...
5,765
31.761364
107
java
null
NearPMSW-main/baseline/logging/YCSB/ignite/src/main/java/site/ycsb/db/ignite/IgniteClient.java
/** * Copyright (c) 2013-2018 YCSB contributors. All rights reserved. * <p> * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * <p> * http://www.apache.org/licenses/LICENSE-2.0 * <p> * U...
6,725
28.116883
95
java
null
NearPMSW-main/baseline/logging/YCSB/ignite/src/main/java/site/ycsb/db/ignite/IgniteSqlClient.java
/** * Copyright (c) 2013-2018 YCSB contributors. All rights reserved. * <p> * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * <p> * http://www.apache.org/licenses/LICENSE-2.0 * <p> * U...
8,437
29.243728
113
java
null
NearPMSW-main/baseline/logging/YCSB/couchbase2/src/main/java/site/ycsb/db/couchbase2/package-info.java
/* * Copyright (c) 2015 - 2016 YCSB contributors. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); you * may not use this file except in compliance with the License. You * may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless requi...
794
33.565217
86
java
null
NearPMSW-main/baseline/logging/YCSB/couchbase2/src/main/java/site/ycsb/db/couchbase2/Couchbase2Client.java
/** * Copyright (c) 2016 Yahoo! Inc. All rights reserved. * <p> * Licensed under the Apache License, Version 2.0 (the "License"); you * may not use this file except in compliance with the License. You * may obtain a copy of the License at * <p> * http://www.apache.org/licenses/LICENSE-2.0 * <p> * Unless requir...
35,589
36.821467
115
java
null
NearPMSW-main/baseline/logging/YCSB/riak/src/test/java/site/ycsb/db/riak/RiakKVClientTest.java
/** * Copyright (c) 2016 YCSB contributors All rights reserved. * Copyright 2014 Basho Technologies, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you * may not use this file except in compliance with the License. You * may obtain a copy of the License at * * http://www.apache.org/lic...
10,509
38.660377
119
java
null
NearPMSW-main/baseline/logging/YCSB/riak/src/main/java/site/ycsb/db/riak/package-info.java
/** * Copyright (c) 2016 YCSB contributors All rights reserved. * Copyright 2014 Basho Technologies, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you * may not use this file except in compliance with the License. You * may obtain a copy of the License at * * http://www.apache.org/lic...
827
33.5
87
java
null
NearPMSW-main/baseline/logging/YCSB/riak/src/main/java/site/ycsb/db/riak/RiakKVClient.java
/** * Copyright (c) 2016 YCSB contributors All rights reserved. * Copyright 2014 Basho Technologies, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you * may not use this file except in compliance with the License. You * may obtain a copy of the License at * * http://www.apache.org/lic...
23,996
39.263423
120
java
null
NearPMSW-main/baseline/logging/YCSB/riak/src/main/java/site/ycsb/db/riak/RiakUtils.java
/** * Copyright (c) 2016 YCSB contributors All rights reserved. * Copyright 2014 Basho Technologies, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you * may not use this file except in compliance with the License. You * may obtain a copy of the License at * * http://www.apache.org/lic...
6,643
34.153439
119
java
null
NearPMSW-main/baseline/logging/YCSB/infinispan/src/main/java/site/ycsb/db/package-info.java
/* * Copyright (c) 2015-2016 YCSB Contributors. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); you * may not use this file except in compliance with the License. You * may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless require...
767
32.391304
72
java
null
NearPMSW-main/baseline/logging/YCSB/infinispan/src/main/java/site/ycsb/db/RemoteCacheManagerHolder.java
/** * Copyright (c) 2015-2016 YCSB contributors. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); you * may not use this file except in compliance with the License. You * may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless requir...
1,407
28.333333
71
java
null
NearPMSW-main/baseline/logging/YCSB/infinispan/src/main/java/site/ycsb/db/InfinispanClient.java
/** * Copyright (c) 2012-2016 YCSB contributors. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); you * may not use this file except in compliance with the License. You * may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless requir...
4,646
29.175325
109
java
null
NearPMSW-main/baseline/logging/YCSB/infinispan/src/main/java/site/ycsb/db/InfinispanRemoteClient.java
/** * Copyright (c) 2015-2016 YCSB contributors. All rights reserved. * <p> * Licensed under the Apache License, Version 2.0 (the "License"); you * may not use this file except in compliance with the License. You * may obtain a copy of the License at * <p> * http://www.apache.org/licenses/LICENSE-2.0 * <p> * U...
4,164
28.75
108
java
null
NearPMSW-main/baseline/logging/YCSB/rocksdb/src/test/java/site/ycsb/db/rocksdb/RocksDBClientTest.java
/* * Copyright (c) 2018 YCSB contributors. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); you * may not use this file except in compliance with the License. You * may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by ...
4,146
32.443548
102
java
null
NearPMSW-main/baseline/logging/YCSB/rocksdb/src/test/java/site/ycsb/db/rocksdb/RocksDBOptionsFileTest.java
/* * Copyright (c) 2019 YCSB contributors. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); you * may not use this file except in compliance with the License. You * may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by ...
2,398
30.565789
106
java
null
NearPMSW-main/baseline/logging/YCSB/rocksdb/src/main/java/site/ycsb/db/rocksdb/package-info.java
/* * Copyright (c) 2018 YCSB contributors. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); you * may not use this file except in compliance with the License. You * may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by ...
772
32.608696
74
java
null
NearPMSW-main/baseline/logging/YCSB/rocksdb/src/main/java/site/ycsb/db/rocksdb/RocksDBClient.java
/* * Copyright (c) 2018 - 2019 YCSB contributors. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); you * may not use this file except in compliance with the License. You * may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless requi...
15,353
31.807692
119
java
null
NearPMSW-main/baseline/logging/YCSB/memcached/src/main/java/site/ycsb/db/package-info.java
/** * Copyright (c) 2015 YCSB contributors. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); you * may not use this file except in compliance with the License. You * may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by...
720
31.772727
70
java
null
NearPMSW-main/baseline/logging/YCSB/memcached/src/main/java/site/ycsb/db/MemcachedClient.java
/** * Copyright (c) 2014-2015 YCSB contributors. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); you * may not use this file except in compliance with the License. You * may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless requir...
10,775
34.447368
100
java
null
NearPMSW-main/baseline/logging/YCSB/elasticsearch/src/test/java/site/ycsb/db/ElasticsearchClientTest.java
/** * Copyright (c) 2012-2017 YCSB contributors. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); you * may not use this file except in compliance with the License. You * may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless requir...
4,761
30.328947
95
java
null
NearPMSW-main/baseline/logging/YCSB/elasticsearch/src/main/java/site/ycsb/db/package-info.java
/* * Copyright (c) 2014, Yahoo!, Inc. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); you * may not use this file except in compliance with the License. You * may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by appli...
787
31.833333
77
java
null
NearPMSW-main/baseline/logging/YCSB/elasticsearch/src/main/java/site/ycsb/db/ElasticsearchClient.java
/** * Copyright (c) 2012 YCSB contributors. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); you * may not use this file except in compliance with the License. You * may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by...
13,255
34.730458
116
java
null
NearPMSW-main/baseline/logging/YCSB/nosqldb/src/main/java/site/ycsb/db/package-info.java
/* * Copyright (c) 2014, Yahoo!, Inc. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by appli...
814
34.434783
80
java
null
NearPMSW-main/baseline/logging/YCSB/nosqldb/src/main/java/site/ycsb/db/NoSqlDbClient.java
/** * Copyright (c) 2012 YCSB contributors. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); you * may not use this file except in compliance with the License. You * may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by...
7,466
29.108871
102
java
null
NearPMSW-main/baseline/logging/YCSB2/scylla/src/test/java/site/ycsb/db/scylla/ScyllaCQLClientTest.java
/* * Copyright (c) 2020 YCSB contributors. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by ...
7,630
30.533058
98
java
null
NearPMSW-main/baseline/logging/YCSB2/scylla/src/main/java/site/ycsb/db/scylla/package-info.java
/* * Copyright (c) 2020 YCSB contributors. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); you * may not use this file except in compliance with the License. You * may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by ...
779
31.5
70
java
null
NearPMSW-main/baseline/logging/YCSB2/scylla/src/main/java/site/ycsb/db/scylla/ScyllaCQLClient.java
/* * Copyright (c) 2020 YCSB contributors. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by ...
22,304
33.315385
119
java
null
NearPMSW-main/baseline/logging/YCSB2/zookeeper/src/test/java/site/ycsb/db/zookeeper/ZKClientTest.java
/** * Copyright (c) 2020 YCSB contributors. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); you * may not use this file except in compliance with the License. You * may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
4,549
27.797468
82
java
null
NearPMSW-main/baseline/logging/YCSB2/zookeeper/src/main/java/site/ycsb/db/zookeeper/package-info.java
/* * Copyright (c) 2020 YCSB contributors. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); you * may not use this file except in compliance with the License. You * may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by ...
778
32.869565
78
java
null
NearPMSW-main/baseline/logging/YCSB2/zookeeper/src/main/java/site/ycsb/db/zookeeper/ZKClient.java
/** * Copyright (c) 2020 YCSB contributors. All rights reserved. * <p> * Licensed under the Apache License, Version 2.0 (the "License"); you * may not use this file except in compliance with the License. You * may obtain a copy of the License at * <p> * http://www.apache.org/licenses/LICENSE-2.0 * <p> * Unless...
7,198
31.282511
98
java
null
NearPMSW-main/baseline/logging/YCSB2/couchbase/src/main/java/site/ycsb/db/package-info.java
/* * Copyright (c) 2015 - 2016 YCSB contributors. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); you * may not use this file except in compliance with the License. You * may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless requi...
771
32.565217
74
java
null
NearPMSW-main/baseline/logging/YCSB2/couchbase/src/main/java/site/ycsb/db/CouchbaseClient.java
/** * Copyright (c) 2013 - 2016 YCSB contributors. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); you * may not use this file except in compliance with the License. You * may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless requ...
11,866
32.148045
115
java
null
NearPMSW-main/baseline/logging/YCSB2/hbase2/src/test/java/site/ycsb/db/hbase2/HBaseClient2Test.java
/** * Licensed under the Apache License, Version 2.0 (the "License"); you * may not use this file except in compliance with the License. You * may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed ...
11,470
34.513932
102
java
null
NearPMSW-main/baseline/logging/YCSB2/hbase2/src/main/java/site/ycsb/db/hbase2/package-info.java
/* * Copyright (c) 2014, Yahoo!, Inc. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); you * may not use this file except in compliance with the License. You * may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by appli...
795
32.166667
70
java
null
NearPMSW-main/baseline/logging/YCSB2/hbase2/src/main/java/site/ycsb/db/hbase2/HBaseClient2.java
/** * Licensed under the Apache License, Version 2.0 (the "License"); you * may not use this file except in compliance with the License. You * may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed ...
19,193
32.732865
114
java
null
NearPMSW-main/baseline/logging/YCSB2/dynamodb/src/main/java/site/ycsb/db/package-info.java
/* * Copyright 2015-2016 YCSB Contributors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); you * may not use this file except in compliance with the License. You * may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by...
771
32.565217
80
java
null
NearPMSW-main/baseline/logging/YCSB2/dynamodb/src/main/java/site/ycsb/db/DynamoDBClient.java
/* * Copyright 2012 Amazon.com, Inc. or its affiliates. All Rights Reserved. * Copyright 2015-2016 YCSB Contributors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at *...
12,595
34.184358
117
java
null
NearPMSW-main/baseline/logging/YCSB2/core/src/test/java/site/ycsb/TestNumericByteIterator.java
/** * Copyright (c) 2017 YCSB contributors. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); you * may not use this file except in compliance with the License. You * may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by...
3,935
32.355932
70
java
null
NearPMSW-main/baseline/logging/YCSB2/core/src/test/java/site/ycsb/TestStatus.java
/** * Copyright (c) 2016 YCSB contributors. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); you * may not use this file except in compliance with the License. You * may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by...
1,318
30.404762
70
java
null
NearPMSW-main/baseline/logging/YCSB2/core/src/test/java/site/ycsb/TestUtils.java
/** * Copyright (c) 2016 YCSB contributors. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); you * may not use this file except in compliance with the License. You * may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required b...
5,606
37.40411
81
java
null
NearPMSW-main/baseline/logging/YCSB2/core/src/test/java/site/ycsb/TestByteIterator.java
/** * Copyright (c) 2012 YCSB contributors. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); you * may not use this file except in compliance with the License. You * may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by...
1,283
31.1
70
java
null
NearPMSW-main/baseline/logging/YCSB2/core/src/test/java/site/ycsb/measurements/exporter/TestMeasurementsExporter.java
/** * Copyright (c) 2015 Yahoo! Inc. All rights reserved. * <p> * Licensed under the Apache License, Version 2.0 (the "License"); you * may not use this file except in compliance with the License. You * may obtain a copy of the License at * <p> * http://www.apache.org/licenses/LICENSE-2.0 * <p> * Unless requir...
2,394
37.629032
86
java
null
NearPMSW-main/baseline/logging/YCSB2/core/src/test/java/site/ycsb/workloads/TestCoreWorkload.java
/** * Copyright (c) 2016 YCSB contributors. All rights reserved. ...
4,257
59.828571
186
java
null
NearPMSW-main/baseline/logging/YCSB2/core/src/test/java/site/ycsb/workloads/TestTimeSeriesWorkload.java
/** * Copyright (c) 2017 YCSB contributors All rights reserved. * <p> * Licensed under the Apache License, Version 2.0 (the "License"); you * may not use this file except in compliance with the License. You * may obtain a copy of the License at * <p> * http://www.apache.org/licenses/LICENSE-2.0 * <p> * Unless ...
21,195
35.734835
113
java
null
NearPMSW-main/baseline/logging/YCSB2/core/src/test/java/site/ycsb/generator/TestUnixEpochTimestampGenerator.java
/** * Copyright (c) 2016 YCSB contributors. All rights reserved. ...
7,813
62.528455
186
java
null
NearPMSW-main/baseline/logging/YCSB2/core/src/test/java/site/ycsb/generator/TestZipfianGenerator.java
/** * Copyright (c) 2010 Yahoo! Inc. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); you * may not use this file except in compliance with the License. You * may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applic...
1,150
27.775
70
java
null
NearPMSW-main/baseline/logging/YCSB2/core/src/test/java/site/ycsb/generator/AcknowledgedCounterGeneratorTest.java
/** * Copyright (c) 2015-2017 YCSB contributors. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); you * may not use this file except in compliance with the License. You * may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless requir...
1,835
28.612903
70
java
null
NearPMSW-main/baseline/logging/YCSB2/core/src/test/java/site/ycsb/generator/TestIncrementingPrintableStringGenerator.java
/** * Copyright (c) 2016 YCSB contributors. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); you * may not use this file except in compliance with the License. You * may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required b...
4,188
30.977099
70
java
null
NearPMSW-main/baseline/logging/YCSB2/core/src/test/java/site/ycsb/generator/TestRandomDiscreteTimestampGenerator.java
/** * Copyright (c) 2017 YCSB contributors. All rights reserved. * <p> * Licensed under the Apache License, Version 2.0 (the "License"); you * may not use this file except in compliance with the License. You * may obtain a copy of the License at * <p> * http://www.apache.org/licenses/LICENSE-2.0 * <p> * Unless...
2,582
32.986842
84
java
null
NearPMSW-main/baseline/logging/YCSB2/core/src/main/java/site/ycsb/UnknownDBException.java
/** * Copyright (c) 2010-2016 Yahoo! Inc., 2017 YCSB contributors All rights reserved. * <p> * Licensed under the Apache License, Version 2.0 (the "License"); you * may not use this file except in compliance with the License. You * may obtain a copy of the License at * <p> * http://www.apache.org/licenses/LICENS...
1,185
24.782609
83
java
null
NearPMSW-main/baseline/logging/YCSB2/core/src/main/java/site/ycsb/DBFactory.java
/** * Copyright (c) 2010-2016 Yahoo! Inc., 2017 YCSB contributors All rights reserved. * <p> * Licensed under the Apache License, Version 2.0 (the "License"); you * may not use this file except in compliance with the License. You * may obtain a copy of the License at * <p> * http://www.apache.org/licenses/LICENS...
1,397
25.884615
111
java
null
NearPMSW-main/baseline/logging/YCSB2/core/src/main/java/site/ycsb/TerminatorThread.java
/** * Copyright (c) 2010-2016 Yahoo! Inc., 2017 YCSB contributors All rights reserved. * <p> * Licensed under the Apache License, Version 2.0 (the "License"); you * may not use this file except in compliance with the License. You * may obtain a copy of the License at * <p> * http://www.apache.org/licenses/LICENS...
2,383
33.550725
99
java
null
NearPMSW-main/baseline/logging/YCSB2/core/src/main/java/site/ycsb/package-info.java
/* * Copyright (c) 2015 - 2017 YCSB contributors. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); you * may not use this file except in compliance with the License. You * may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless requi...
719
30.304348
70
java
null
NearPMSW-main/baseline/logging/YCSB2/core/src/main/java/site/ycsb/ByteArrayByteIterator.java
/** * Copyright (c) 2010-2016 Yahoo! Inc., 2017 YCSB contributors All rights reserved. * <p> * Licensed under the Apache License, Version 2.0 (the "License"); you * may not use this file except in compliance with the License. You * may obtain a copy of the License at * <p> * http://www.apache.org/licenses/LICENS...
1,726
22.337838
83
java
null
NearPMSW-main/baseline/logging/YCSB2/core/src/main/java/site/ycsb/GoodBadUglyDB.java
/** * Copyright (c) 2010 Yahoo! Inc. All rights reserved. * <p> * Licensed under the Apache License, Version 2.0 (the "License"); you * may not use this file except in compliance with the License. You * may obtain a copy of the License at * <p> * http://www.apache.org/licenses/LICENSE-2.0 * <p> * Unless requir...
5,612
33.648148
116
java
null
NearPMSW-main/baseline/logging/YCSB2/core/src/main/java/site/ycsb/NumericByteIterator.java
/** * Copyright (c) 2017 YCSB contributors. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); you * may not use this file except in compliance with the License. You * may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by...
2,002
24.35443
79
java
null
NearPMSW-main/baseline/logging/YCSB2/core/src/main/java/site/ycsb/Status.java
/** * Copyright (c) 2010-2016 Yahoo! Inc., 2017 YCSB contributors All rights reserved. * <p> * Licensed under the Apache License, Version 2.0 (the "License"); you * may not use this file except in compliance with the License. You * may obtain a copy of the License at * <p> * http://www.apache.org/licenses/LICENS...
3,541
30.90991
105
java
null
NearPMSW-main/baseline/logging/YCSB2/core/src/main/java/site/ycsb/ByteIterator.java
/** * Copyright (c) 2010-2016 Yahoo! Inc., 2017 YCSB contributors All rights reserved. * <p> * Licensed under the Apache License, Version 2.0 (the "License"); you * may not use this file except in compliance with the License. You * may obtain a copy of the License at * <p> * http://www.apache.org/licenses/LICENS...
3,407
31.150943
86
java
null
NearPMSW-main/baseline/logging/YCSB2/core/src/main/java/site/ycsb/Utils.java
/** * Copyright (c) 2010 Yahoo! Inc., 2016 YCSB contributors. All rights reserved. * <p> * Licensed under the Apache License, Version 2.0 (the "License"); you * may not use this file except in compliance with the License. You * may obtain a copy of the License at * <p> * http://www.apache.org/licenses/LICENSE-2....
7,671
31.927039
85
java
null
NearPMSW-main/baseline/logging/YCSB2/core/src/main/java/site/ycsb/Workload.java
/** * Copyright (c) 2010-2016 Yahoo! Inc., 2017 YCSB contributors All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); you * may not use this file except in compliance with the License. You * may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 *...
5,488
43.626016
110
java
null
NearPMSW-main/baseline/logging/YCSB2/core/src/main/java/site/ycsb/StatusThread.java
/** * Copyright (c) 2010-2016 Yahoo! Inc., 2017 YCSB contributors All rights reserved. * <p> * Licensed under the Apache License, Version 2.0 (the "License"); you * may not use this file except in compliance with the License. You * may obtain a copy of the License at * <p> * http://www.apache.org/licenses/LICENS...
9,635
30.184466
108
java
null
NearPMSW-main/baseline/logging/YCSB2/core/src/main/java/site/ycsb/BasicTSDB.java
/** * Copyright (c) 2017 YCSB contributors All rights reserved. * <p> * Licensed under the Apache License, Version 2.0 (the "License"); you * may not use this file except in compliance with the License. You * may obtain a copy of the License at * <p> * http://www.apache.org/licenses/LICENSE-2.0 * <p> * Unless ...
9,106
32.358974
102
java
null
NearPMSW-main/baseline/logging/YCSB2/core/src/main/java/site/ycsb/RandomByteIterator.java
/** * Copyright (c) 2010-2016 Yahoo! Inc., 2017 YCSB contributors All rights reserved. * <p> * Licensed under the Apache License, Version 2.0 (the "License"); you * may not use this file except in compliance with the License. You * may obtain a copy of the License at * <p> * http://www.apache.org/licenses/LICENS...
3,004
24.252101
86
java