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/test/java/com/netflix/hollow/test
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/test/generated/MovieHollowFactory.java
package com.netflix.hollow.test.generated; import com.netflix.hollow.api.custom.HollowTypeAPI; import com.netflix.hollow.api.objects.provider.HollowFactory; import com.netflix.hollow.core.read.dataaccess.HollowTypeDataAccess; @SuppressWarnings("all") public class MovieHollowFactory<T extends Movie> extends HollowFact...
8,800
0
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/test
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/test/generated/MovieDataAccessor.java
package com.netflix.hollow.test.generated; import com.netflix.hollow.api.consumer.HollowConsumer; import com.netflix.hollow.api.consumer.data.AbstractHollowDataAccessor; import com.netflix.hollow.core.index.key.PrimaryKey; import com.netflix.hollow.core.read.engine.HollowReadStateEngine; @SuppressWarnings("all") publ...
8,801
0
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/test
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/test/generated/AwardDelegateLookupImpl.java
package com.netflix.hollow.test.generated; import com.netflix.hollow.api.objects.delegate.HollowObjectAbstractDelegate; import com.netflix.hollow.core.read.dataaccess.HollowObjectTypeDataAccess; import com.netflix.hollow.core.schema.HollowObjectSchema; @SuppressWarnings("all") public class AwardDelegateLookupImpl ext...
8,802
0
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/test
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/test/generated/Award.java
package com.netflix.hollow.test.generated; import com.netflix.hollow.api.objects.HollowObject; @SuppressWarnings("all") public class Award extends HollowObject { public Award(AwardDelegate delegate, int ordinal) { super(delegate, ordinal); } public long getId() { return delegate().getId(...
8,803
0
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/test
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/test/generated/AwardsAPI.java
package com.netflix.hollow.test.generated; import com.netflix.hollow.api.consumer.HollowConsumerAPI; import com.netflix.hollow.api.custom.HollowAPI; import com.netflix.hollow.api.objects.provider.HollowFactory; import com.netflix.hollow.api.objects.provider.HollowObjectCacheProvider; import com.netflix.hollow.api.obje...
8,804
0
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/test
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/test/generated/MoviePrimaryKeyIndex.java
package com.netflix.hollow.test.generated; import com.netflix.hollow.api.consumer.HollowConsumer; import com.netflix.hollow.api.consumer.index.AbstractHollowUniqueKeyIndex; import com.netflix.hollow.api.consumer.index.HollowUniqueKeyIndex; import com.netflix.hollow.core.schema.HollowObjectSchema; /** * @deprecated s...
8,805
0
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/test
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/test/generated/AwardDelegateCachedImpl.java
package com.netflix.hollow.test.generated; import com.netflix.hollow.api.custom.HollowTypeAPI; import com.netflix.hollow.api.objects.delegate.HollowCachedDelegate; import com.netflix.hollow.api.objects.delegate.HollowObjectAbstractDelegate; import com.netflix.hollow.core.read.dataaccess.HollowObjectTypeDataAccess; imp...
8,806
0
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/test
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/test/generated/Movie.java
package com.netflix.hollow.test.generated; import com.netflix.hollow.api.consumer.HollowConsumer; import com.netflix.hollow.api.consumer.index.UniqueKeyIndex; import com.netflix.hollow.api.objects.HollowObject; import com.netflix.hollow.core.type.HString; @SuppressWarnings("all") public class Movie extends HollowObje...
8,807
0
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/test
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/test/generated/SetOfMovieHollowFactory.java
package com.netflix.hollow.test.generated; import com.netflix.hollow.api.custom.HollowTypeAPI; import com.netflix.hollow.api.objects.delegate.HollowSetCachedDelegate; import com.netflix.hollow.api.objects.provider.HollowFactory; import com.netflix.hollow.core.read.dataaccess.HollowTypeDataAccess; @SuppressWarnings("a...
8,808
0
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/test
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/test/model/Award.java
package com.netflix.hollow.test.model; import java.util.Set; public class Award { long id; Movie winner; Set<Movie> nominees; public Award(long id, Movie winner, Set<Movie> nominees) { this.id = id; this.winner = winner; this.nominees = nominees; } }
8,809
0
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/test
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/test/model/Movie.java
package com.netflix.hollow.test.model; import com.netflix.hollow.core.write.objectmapper.HollowPrimaryKey; @HollowPrimaryKey(fields = {"id"}) public class Movie { long id; String title; int year; public Movie(long id, String title, int year) { this.id = id; this.title = title; ...
8,810
0
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/metrics/HollowProducerMetricsTests.java
package com.netflix.hollow.api.metrics; import com.netflix.hollow.api.producer.HollowProducer; import com.netflix.hollow.api.producer.HollowProducerFakeListener; import com.netflix.hollow.api.producer.HollowProducerListener; import com.netflix.hollow.api.producer.fs.HollowInMemoryBlobStager; import com.netflix.hollow....
8,811
0
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/metrics/HollowMetricsCollectorTests.java
package com.netflix.hollow.api.metrics; import com.netflix.hollow.api.consumer.HollowConsumer; import com.netflix.hollow.api.producer.HollowProducer; import com.netflix.hollow.api.producer.fs.HollowInMemoryBlobStager; import com.netflix.hollow.test.InMemoryBlobStore; import org.junit.Assert; import org.junit.Before; i...
8,812
0
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/metrics/HollowConsumerMetricsTests.java
package com.netflix.hollow.api.metrics; import com.netflix.hollow.api.consumer.HollowConsumer; import com.netflix.hollow.api.producer.HollowProducer; import com.netflix.hollow.api.producer.fs.HollowInMemoryBlobStager; import com.netflix.hollow.test.InMemoryBlobStore; import org.junit.Assert; import org.junit.Before; i...
8,813
0
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/producer/HollowProducerTest.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 ...
8,814
0
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/producer/ProducerListenerSupportTest.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 ...
8,815
0
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/producer/HollowProduceIncrementalMultithreadingTest.java
package com.netflix.hollow.api.producer; import com.netflix.hollow.api.consumer.HollowConsumer; import com.netflix.hollow.api.objects.generic.GenericHollowObject; import com.netflix.hollow.api.producer.fs.HollowInMemoryBlobStager; import com.netflix.hollow.core.index.HollowPrimaryKeyIndex; import com.netflix.hollow.co...
8,816
0
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/producer/CustomProducerBuilderTest.java
package com.netflix.hollow.api.producer; import org.junit.Assert; import org.junit.Before; import org.junit.Test; // this test doesn't do much beyond making sure that a custom builder will // compile and ensure that HollowProducer.Builder is parameterized correctly // to allow custom builder methods to be interleaved...
8,817
0
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/producer/HollowProducerBlobStorageCleanerTest.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 ...
8,818
0
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/producer/WriteStateTest.java
package com.netflix.hollow.api.producer; import static org.junit.Assert.assertEquals; import static org.junit.Assert.fail; import static org.mockito.Mockito.verify; import static org.mockito.Mockito.when; import com.netflix.hollow.core.write.HollowWriteStateEngine; import com.netflix.hollow.core.write.objectmapper.Ho...
8,819
0
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/producer/HashCodeFinderTest.java
package com.netflix.hollow.api.producer; import com.netflix.hollow.api.producer.fs.HollowInMemoryBlobStager; import com.netflix.hollow.core.schema.HollowMapSchema; import com.netflix.hollow.core.util.HollowObjectHashCodeFinder; import com.netflix.hollow.core.write.objectmapper.HollowInline; import java.util.Collection...
8,820
0
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/producer/HollowProducerListenerTest.java
package com.netflix.hollow.api.producer; import com.netflix.hollow.api.producer.enforcer.SingleProducerEnforcer; import com.netflix.hollow.api.producer.fs.HollowInMemoryBlobStager; import com.netflix.hollow.api.producer.listener.AnnouncementListener; import com.netflix.hollow.api.producer.listener.CycleListener; impor...
8,821
0
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/producer/SchemaChangeTest.java
package com.netflix.hollow.api.producer; import com.netflix.hollow.api.consumer.HollowConsumer; import com.netflix.hollow.api.producer.fs.HollowInMemoryBlobStager; import com.netflix.hollow.core.HollowBlobHeader; import com.netflix.hollow.core.HollowStateEngine; import com.netflix.hollow.core.read.engine.HollowBlobHea...
8,822
0
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/producer/HollowProducerFakeListener.java
package com.netflix.hollow.api.producer; import java.util.concurrent.TimeUnit; public class HollowProducerFakeListener implements HollowProducerListener { public ProducerStatus getSuccessFakeStatus(long version) { return new ProducerStatus(Status.SUCCESS, null, version, null); } public ProducerS...
8,823
0
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/producer/HollowIncrementalProducerTest.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 ...
8,824
0
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/producer/HollowProducerIncrementalTest.java
/* * * Copyright 2017 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 ap...
8,825
0
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/producer/HollowIncrementalProducerMultithreadingTest.java
package com.netflix.hollow.api.producer; import com.netflix.hollow.api.consumer.HollowConsumer; import com.netflix.hollow.api.objects.generic.GenericHollowObject; import com.netflix.hollow.api.producer.fs.HollowInMemoryBlobStager; import com.netflix.hollow.core.index.HollowPrimaryKeyIndex; import com.netflix.hollow.co...
8,826
0
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/producer
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/producer/metrics/AbstractProducerMetricsListenerTest.java
package com.netflix.hollow.api.producer.metrics; import static org.mockito.Mockito.when; import com.netflix.hollow.api.producer.HollowProducer; import com.netflix.hollow.api.producer.Status; import com.netflix.hollow.api.producer.listener.CycleListener; import com.netflix.hollow.core.read.engine.HollowReadStateEngine...
8,827
0
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/producer
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/producer/enforcer/BasicSingleProducerEnforcerTest.java
package com.netflix.hollow.api.producer.enforcer; import java.util.concurrent.TimeUnit; import org.junit.Assert; import org.junit.Test; public class BasicSingleProducerEnforcerTest { @Test public void testEnableDisable() { BasicSingleProducerEnforcer se = new BasicSingleProducerEnforcer(); As...
8,828
0
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/producer
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/producer/validation/DuplicateDataDetectionValidatorTests.java
/* * Copyright 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 appli...
8,829
0
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/producer
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/producer/validation/RecordCountVarianceValidatorTests.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 ...
8,830
0
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/producer
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/producer/validation/ObjectModificationValidatorTest.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 ...
8,831
0
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/producer
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/producer/validation/HollowProducerValidationListenerTest.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 ...
8,832
0
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/producer
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/producer/validation/ProducerValidationTests.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 ...
8,833
0
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/objects
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/objects/provider/Util.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 ...
8,834
0
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/objects
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/objects/provider/HollowObjectCacheProviderTest.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 ...
8,835
0
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/objects
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/objects/delegate/HollowMapCachedDelegateTest.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 ...
8,836
0
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/codegen/AbstractHollowAPIGeneratorTest.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 ...
8,837
0
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/codegen/HollowCodeGenerationCompileUtil.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 ...
8,838
0
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/codegen/HollowPackageErgonomicsAPIGeneratorTest.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 ...
8,839
0
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/codegen/HollowPrimitiveTypesAPIGeneratorTest.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 ...
8,840
0
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/codegen/HollowPrimaryKeyAPIGeneratorTest.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 ...
8,841
0
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/codegen/ScalarFieldCodeGenTest.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 ...
8,842
0
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/codegen/HollowAPIGeneratorTest.java
package com.netflix.hollow.api.codegen; import org.junit.Test; public class HollowAPIGeneratorTest extends AbstractHollowAPIGeneratorTest { @Test public void generatesFileUsingDestinationPath() throws Exception { runGenerator("API", "com.netflix.hollow.example.api.generated", MyClass.class, b -> b); ...
8,843
0
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/codegen/HollowErgonomicAPIShortcutsTest.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 ...
8,844
0
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/codegen/HollowMapAPIGeneratorTest.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 ...
8,845
0
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/codegen/HollowDataAccessorAPIGeneratorTest.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 ...
8,846
0
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/codegen/HollowBooleanFieldErgonomicsAPIGeneratorTest.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 ...
8,847
0
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/codegen/ArgumentParserTest.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 ...
8,848
0
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/codegen
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/codegen/perfapi/HollowPerformanceAPIGeneratorTest.java
package com.netflix.hollow.api.codegen.perfapi; import com.netflix.hollow.api.codegen.AbstractHollowAPIGeneratorTest; import com.netflix.hollow.api.codegen.HollowCodeGenerationCompileUtil; import com.netflix.hollow.core.schema.SimpleHollowDataset; import java.io.File; import org.junit.Test; public class HollowPerform...
8,849
0
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/consumer/HollowProducerConsumerTests.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 ...
8,850
0
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/consumer/AbstractHollowHashIndexTests.java
package com.netflix.hollow.api.consumer; import com.netflix.hollow.api.consumer.index.AbstractHollowHashIndex; import com.netflix.hollow.api.custom.HollowAPI; import com.netflix.hollow.api.producer.HollowProducer; import com.netflix.hollow.api.producer.fs.HollowInMemoryBlobStager; import com.netflix.hollow.core.index....
8,851
0
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/consumer/CustomConsumerBuilderTest.java
package com.netflix.hollow.api.consumer; import static org.assertj.core.api.Assertions.assertThat; import static org.junit.Assert.fail; import com.netflix.hollow.api.client.HollowAPIFactory; import com.netflix.hollow.api.metrics.HollowConsumerMetrics; import com.netflix.hollow.api.metrics.HollowMetricsCollector; impo...
8,852
0
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/consumer/LocalBlobStoreTest.java
package com.netflix.hollow.api.consumer; import com.netflix.hollow.api.producer.HollowProducer; import com.netflix.hollow.api.producer.ProducerOptionalBlobPartConfig; import com.netflix.hollow.api.producer.fs.HollowInMemoryBlobStager; import java.io.File; import java.io.IOException; import java.nio.file.Files; import ...
8,853
0
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/consumer/HollowUpdatePlanTest.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 ...
8,854
0
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/consumer/HollowUpdatePlannerTest.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 ...
8,855
0
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/consumer/HollowRefreshListenerTests.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 ...
8,856
0
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/consumer/AbstractHollowUniqueKeyIndexTests.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 ...
8,857
0
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/consumer/FocusedShardHoleFillTest.java
package com.netflix.hollow.api.consumer; import com.netflix.hollow.api.producer.HollowProducer; import com.netflix.hollow.api.producer.HollowProducer.WriteState; import com.netflix.hollow.api.producer.fs.HollowInMemoryBlobStager; import com.netflix.hollow.core.read.engine.list.HollowListTypeReadState; import com.netfl...
8,858
0
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/consumer/FailedTransitionTest.java
package com.netflix.hollow.api.consumer; import com.netflix.hollow.api.producer.HollowProducer; import com.netflix.hollow.api.producer.fs.HollowInMemoryBlobStager; import java.io.IOException; import java.io.InputStream; import java.util.concurrent.atomic.AtomicBoolean; import java.util.function.BooleanSupplier; impor...
8,859
0
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/consumer/InMemoryAnnouncement.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 ...
8,860
0
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/consumer/FailedTransitionTrackerTest.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 ...
8,861
0
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/consumer/HollowConsumerBuilderTest.java
package com.netflix.hollow.api.consumer; import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertTrue; import com.netflix.hollow.api.consumer.index.HashIndex; import com.netflix.hollow.test.HollowWriteStateEngineBuilder; import com.netflix.hollow.test.consumer.TestBlobRetriever; import com.ne...
8,862
0
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/consumer
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/consumer/metrics/AbstractRefreshMetricsListenerTest.java
package com.netflix.hollow.api.consumer.metrics; import static com.netflix.hollow.core.HollowConstants.VERSION_NONE; import static com.netflix.hollow.core.HollowStateEngine.HEADER_TAG_METRIC_ANNOUNCEMENT; import static com.netflix.hollow.core.HollowStateEngine.HEADER_TAG_METRIC_CYCLE_START; import static org.junit.Ass...
8,863
0
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/consumer
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/consumer/index/HashIndexUpdatesTest.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 ...
8,864
0
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/consumer
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/consumer/index/UniqueKeyIndexTest.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 ...
8,865
0
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/consumer
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/consumer/index/HashIndexTest.java
package com.netflix.hollow.api.consumer.index; import static java.util.stream.Collectors.toList; import com.netflix.hollow.api.consumer.HollowConsumer; import com.netflix.hollow.api.objects.HollowObject; import com.netflix.hollow.api.objects.HollowRecord; import com.netflix.hollow.api.objects.delegate.HollowObjectDel...
8,866
0
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/consumer
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/consumer/index/UniqueKeyUpdatesTest.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 ...
8,867
0
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/consumer
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/consumer/index/DataModel.java
package com.netflix.hollow.api.consumer.index; import com.netflix.hollow.api.custom.HollowAPI; import com.netflix.hollow.api.objects.HollowList; import com.netflix.hollow.api.objects.HollowMap; import com.netflix.hollow.api.objects.HollowObject; import com.netflix.hollow.api.objects.HollowSet; import com.netflix.hollo...
8,868
0
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/consumer
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/consumer/fs/HollowFilesystemConsumerTest.java
package com.netflix.hollow.api.consumer.fs; import com.netflix.hollow.api.consumer.HollowConsumer; import com.netflix.hollow.api.objects.generic.GenericHollowObject; import com.netflix.hollow.api.producer.HollowProducer; import com.netflix.hollow.api.producer.fs.HollowFilesystemPublisher; import com.netflix.hollow.cor...
8,869
0
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/consumer
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/consumer/data/LongDataAccessorTest.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 ...
8,870
0
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/consumer
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/consumer/data/StringDataAccessorTest.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 ...
8,871
0
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/consumer
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/consumer/data/FloatDataAccessorTest.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 ...
8,872
0
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/consumer
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/consumer/data/AbstractPrimitiveTypeDataAccessorTest.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 ...
8,873
0
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/consumer
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/consumer/data/HollowDataAccessorTest.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 ...
8,874
0
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/consumer
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/consumer/data/IntegerDataAccessorTest.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 ...
8,875
0
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/consumer
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/consumer/data/BooleanDataAccessorTest.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 ...
8,876
0
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/consumer
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/consumer/data/DoubleDataAccessorTest.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 ...
8,877
0
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/consumer
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/consumer/data/PrimitiveTypeTestAPI.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 ...
8,878
0
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/client/HollowClientTest.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 ...
8,879
0
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api
Create_ds/hollow/hollow/src/test/java/com/netflix/hollow/api/client/HollowClientUpdaterTest.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 ...
8,880
0
Create_ds/hollow/hollow/src/main/java/com/netflix
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/Internal.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 ...
8,881
0
Create_ds/hollow/hollow/src/main/java/com/netflix
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/Hollow.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 ...
8,882
0
Create_ds/hollow/hollow/src/main/java/com/netflix
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/PublicSpi.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 ...
8,883
0
Create_ds/hollow/hollow/src/main/java/com/netflix
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/PublicApi.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 ...
8,884
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/tools
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/tools/split/HollowSplitterOrdinalRemapper.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 ...
8,885
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/tools
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/tools/split/HollowSplitterPrimaryKeyCopyDirector.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 ...
8,886
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/tools
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/tools/split/HollowSplitterCopyDirector.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 ...
8,887
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/tools
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/tools/split/HollowSplitterOrdinalCopyDirector.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 ...
8,888
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/tools
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/tools/split/HollowSplitterShardCopier.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 ...
8,889
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/tools
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/tools/split/HollowSplitter.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 ...
8,890
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/tools
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/tools/compact/HollowCompactor.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 ...
8,891
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/tools
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/tools/combine/HollowCombinerExcludeOrdinalsCopyDirector.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 ...
8,892
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/tools
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/tools/combine/IdentityOrdinalRemapper.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 ...
8,893
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/tools
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/tools/combine/HollowCombiner.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 ...
8,894
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/tools
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/tools/combine/HollowCombinerExcludePrimaryKeysCopyDirector.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 ...
8,895
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/tools
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/tools/combine/HollowCombinerCopyDirector.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 ...
8,896
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/tools
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/tools/combine/OrdinalRemapper.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 ...
8,897
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/tools
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/tools/combine/HollowCombinerIncludeOrdinalsCopyDirector.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 ...
8,898
0
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/tools
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/tools/combine/HollowCombinerIncludePrimaryKeysCopyDirector.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 ...
8,899