index
int64
0
0
repo_id
stringlengths
26
205
file_path
stringlengths
51
246
content
stringlengths
8
433k
__index_level_0__
int64
0
10k
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/write
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/write/objectmapper/MemoizedList.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,000
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/write
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/write/objectmapper/HollowInline.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,001
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/write/objectmapper
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/write/objectmapper/flatrecords/HollowSchemaIdentifierMapper.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,002
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/write/objectmapper
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/write/objectmapper/flatrecords/FlatRecordWriter.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,003
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/write/objectmapper
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/write/objectmapper/flatrecords/FlatRecordReader.java
package com.netflix.hollow.core.write.objectmapper.flatrecords; import com.netflix.hollow.core.memory.encoding.VarInt; import com.netflix.hollow.core.memory.encoding.ZigZag; import com.netflix.hollow.core.schema.HollowObjectSchema; import com.netflix.hollow.core.schema.HollowSchema; import com.netflix.hollow.core.writ...
9,004
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/write/objectmapper
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/write/objectmapper/flatrecords/FlatRecordDumper.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,005
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/write/objectmapper
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/write/objectmapper/flatrecords/FlatRecordExtractor.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,006
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/write/objectmapper
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/write/objectmapper/flatrecords/FlatRecord.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,007
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/memory/FreeOrdinalTracker.java
/* * Copyright 2016-2021 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,008
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/memory/VariableLengthData.java
package com.netflix.hollow.core.memory; import com.netflix.hollow.core.read.HollowBlobInput; import java.io.IOException; /** * Conceptually this can be thought of as a single byte array or buffer of undefined length. It will grow automatically * when a byte is written to an index greater than the currently allocat...
9,009
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/memory/VariableLengthDataFactory.java
package com.netflix.hollow.core.memory; import com.netflix.hollow.core.memory.pool.ArraySegmentRecycler; import java.util.logging.Logger; public class VariableLengthDataFactory { private static final Logger LOG = Logger.getLogger(VariableLengthDataFactory.class.getName()); public static VariableLengthData g...
9,010
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/memory/MemoryMode.java
package com.netflix.hollow.core.memory; public enum MemoryMode { ON_HEAP, // eager load into main memory, on JVM heap SHARED_MEMORY_LAZY; // map to virtual memory and lazy load into main memory, off heap // SHARED_MEMORY_EAGER // (in future) map to virtual memory and eager load into ma...
9,011
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/memory/ThreadSafeBitSet.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,012
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/memory/ByteData.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,013
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/memory/FixedLengthData.java
package com.netflix.hollow.core.memory; import com.netflix.hollow.core.memory.encoding.VarInt; import com.netflix.hollow.core.read.HollowBlobInput; import java.io.IOException; /** * <p> * Each record in Hollow begins with a fixed-length number of bits. At the lowest level, these bits are held in * {@code Fixe...
9,014
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/memory/FixedLengthDataFactory.java
package com.netflix.hollow.core.memory; import com.netflix.hollow.core.memory.encoding.EncodedLongBuffer; import com.netflix.hollow.core.memory.encoding.FixedLengthElementArray; import com.netflix.hollow.core.memory.pool.ArraySegmentRecycler; import com.netflix.hollow.core.read.HollowBlobInput; import java.io.IOExcept...
9,015
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/memory/SegmentedByteArray.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,016
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/memory/ByteArrayOrdinalMap.java
/* * Copyright 2016-2021 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,017
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/memory/HollowUnsafeHandle.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,018
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/memory/ArrayByteData.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,019
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/memory/ByteDataArray.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,020
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/memory/SegmentedLongArray.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,021
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/memory/EncodedByteBuffer.java
/* * Copyright 2016-2020 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,022
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/memory
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/memory/encoding/FixedLengthMultipleOccurrenceElementArray.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,023
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/memory
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/memory/encoding/ZigZag.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,024
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/memory
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/memory/encoding/EncodedLongBuffer.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,025
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/memory
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/memory/encoding/BlobByteBuffer.java
package com.netflix.hollow.core.memory.encoding; import static java.nio.channels.FileChannel.MapMode.READ_ONLY; import java.io.IOException; import java.nio.BufferUnderflowException; import java.nio.ByteBuffer; import java.nio.ByteOrder; import java.nio.MappedByteBuffer; import java.nio.channels.FileChannel; /** * <...
9,026
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/memory
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/memory/encoding/GapEncodedVariableLengthIntegerReader.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,027
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/memory
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/memory/encoding/FixedLengthElementArray.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,028
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/memory
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/memory/encoding/HashCodes.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,029
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/memory
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/memory/encoding/VarInt.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,030
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/memory
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/memory/pool/RecyclingRecycler.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,031
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/memory
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/memory/pool/WastefulRecycler.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,032
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/memory
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/memory/pool/ArraySegmentRecycler.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,033
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/util/IOUtils.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,034
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/util/BitSetIterator.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,035
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/util/HollowObjectHashCodeFinder.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,036
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/util/AllHollowRecordCollection.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,037
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/util/SimultaneousExecutor.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,038
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/util/Threads.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,039
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/util/LongList.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,040
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/util/Versions.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,041
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/util/IntMap.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,042
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/util/HollowWriteStateCreator.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,043
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/util/IntList.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,044
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/util/StateEngineRoundTripper.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,045
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/util/RemovedOrdinalIterator.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,046
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/util/DefaultHashCodeFinder.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,047
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/util/HollowRecordCollection.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,048
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read/HollowReadFieldUtils.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,049
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read/HollowBlobInput.java
package com.netflix.hollow.core.read; import static com.netflix.hollow.core.memory.MemoryMode.ON_HEAP; import static com.netflix.hollow.core.memory.MemoryMode.SHARED_MEMORY_LAZY; import static com.netflix.hollow.core.memory.encoding.BlobByteBuffer.MAX_SINGLE_BUFFER_CAPACITY; import com.netflix.hollow.api.consumer.Hol...
9,050
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read/OptionalBlobPartInput.java
/* * Copyright 2021 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by appli...
9,051
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read/dataaccess/HollowTypeDataAccess.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,052
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read/dataaccess/HollowListTypeDataAccess.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,053
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read/dataaccess/HollowDataAccess.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,054
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read/dataaccess/HollowSetTypeDataAccess.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,055
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read/dataaccess/HollowMapTypeDataAccess.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,056
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read/dataaccess/HollowObjectTypeDataAccess.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,057
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read/dataaccess/HollowCollectionTypeDataAccess.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,058
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read/dataaccess
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read/dataaccess/proxy/HollowListProxyDataAccess.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,059
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read/dataaccess
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read/dataaccess/proxy/HollowObjectProxyDataAccess.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,060
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read/dataaccess
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read/dataaccess/proxy/HollowSetProxyDataAccess.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,061
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read/dataaccess
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read/dataaccess/proxy/HollowProxyDataAccess.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,062
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read/dataaccess
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read/dataaccess/proxy/HollowTypeProxyDataAccess.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,063
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read/dataaccess
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read/dataaccess/proxy/HollowMapProxyDataAccess.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,064
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read/dataaccess
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read/dataaccess/missing/HollowSetMissingDataAccess.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,065
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read/dataaccess
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read/dataaccess/missing/HollowMapMissingDataAccess.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,066
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read/dataaccess
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read/dataaccess/missing/HollowListMissingDataAccess.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,067
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read/dataaccess
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read/dataaccess/missing/HollowObjectMissingDataAccess.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,068
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read/dataaccess
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read/dataaccess/disabled/HollowObjectDisabledDataAccess.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,069
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read/dataaccess
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read/dataaccess/disabled/HollowMapDisabledDataAccess.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,070
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read/dataaccess
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read/dataaccess/disabled/HollowDisabledDataAccess.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,071
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read/dataaccess
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read/dataaccess/disabled/HollowSetDisabledDataAccess.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,072
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read/dataaccess
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read/dataaccess/disabled/HollowListDisabledDataAccess.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,073
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read/missing/MissingDataHandler.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,074
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read/missing/DefaultMissingDataHandler.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,075
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read/iterator/HollowSetOrdinalIterator.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,076
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read/iterator/EmptyOrdinalIterator.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,077
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read/iterator/HollowListOrdinalIterator.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,078
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read/iterator/HollowMapEntryOrdinalIteratorImpl.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,079
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read/iterator/EmptyMapOrdinalIterator.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,080
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read/iterator/HollowOrdinalIterator.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,081
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read/iterator/HollowMapEntryOrdinalIterator.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,082
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read/filter/TypeFilter.java
package com.netflix.hollow.core.read.filter; import static com.netflix.hollow.core.read.filter.TypeActions.newTypeActions; import static com.netflix.hollow.core.read.filter.TypeFilter.Builder.Action.exclude; import static com.netflix.hollow.core.read.filter.TypeFilter.Builder.Action.excludeRecursive; import static com...
9,083
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read/filter/HollowFilterConfig.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,084
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read/engine/HollowCollectionTypeReadState.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,085
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read/engine/PopulatedOrdinalListener.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,086
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read/engine/HollowReadStateEngine.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,087
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read/engine/HollowTypeReadState.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,088
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read/engine/HollowBlobHeaderReader.java
/* * Copyright 2016-2021 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,089
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read/engine/SnapshotPopulatedOrdinalsReader.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,090
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read/engine/HollowBlobReader.java
/* * Copyright 2016-2021 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,091
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read/engine/SetMapKeyHasher.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,092
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read/engine/HollowTypeStateListener.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,093
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read/engine
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read/engine/map/HollowMapTypeReadState.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,094
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read/engine
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read/engine/map/HollowMapDeltaHistoricalStateCreator.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,095
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read/engine
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read/engine/map/HollowMapDeltaApplicator.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,096
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read/engine
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read/engine/map/HollowMapTypeReadStateShard.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,097
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read/engine
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read/engine/map/HollowMapTypeDataElements.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,098
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read/engine
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/core/read/engine/map/PotentialMatchHollowMapEntryOrdinalIteratorImpl.java
/* * Copyright 2016-2019 Netflix, 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/licenses/LICENSE-2.0 * * Unless required by ...
9,099