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/api
Create_ds/hollow/hollow/src/main/java/com/netflix/hollow/api/client/HollowClientMemoryConfig.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,400
0
Create_ds/hollow/hollow-ui-tools/src/test/java/com/netflix/hollow
Create_ds/hollow/hollow-ui-tools/src/test/java/com/netflix/hollow/ui/HollowDiffUtilTest.java
package com.netflix.hollow.ui; import static com.netflix.hollow.ui.HollowDiffUtil.formatBytes; import org.junit.Assert; import org.junit.Test; public class HollowDiffUtilTest { @Test public void testFormatBytes() { sampleTesting(1,"B", -10, 2, 0, 2, 10); sampleTesting(Math.pow(2, 10),"KiB", ...
9,401
0
Create_ds/hollow/hollow-ui-tools/src/main/java/com/netflix/hollow
Create_ds/hollow/hollow-ui-tools/src/main/java/com/netflix/hollow/ui/UIServer.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,402
0
Create_ds/hollow/hollow-ui-tools/src/main/java/com/netflix/hollow
Create_ds/hollow/hollow-ui-tools/src/main/java/com/netflix/hollow/ui/HollowDiffUtil.java
package com.netflix.hollow.ui; import java.text.DecimalFormat; public class HollowDiffUtil { private static final String[] HEAP_SIZE_UNITS = new String[] { "B", "KiB", "MiB", "GiB", "TiB", "PiB", "EiB"}; public static String formatBytes(long sizeInBytes) { if (sizeInBytes==0) return "0 B"; S...
9,403
0
Create_ds/hollow/hollow-ui-tools/src/main/java/com/netflix/hollow
Create_ds/hollow/hollow-ui-tools/src/main/java/com/netflix/hollow/ui/HttpHandlerWithServletSupport.java
/* * Copyright 2016-2023 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,404
0
Create_ds/hollow/hollow-ui-tools/src/main/java/com/netflix/hollow
Create_ds/hollow/hollow-ui-tools/src/main/java/com/netflix/hollow/ui/HtmlEscapingWriter.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,405
0
Create_ds/hollow/hollow-ui-tools/src/main/java/com/netflix/hollow
Create_ds/hollow/hollow-ui-tools/src/main/java/com/netflix/hollow/ui/EscapingTool.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,406
0
Create_ds/hollow/hollow-ui-tools/src/main/java/com/netflix/hollow
Create_ds/hollow/hollow-ui-tools/src/main/java/com/netflix/hollow/ui/HollowUIRouter.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,407
0
Create_ds/hollow/hollow-ui-tools/src/main/java/com/netflix/hollow
Create_ds/hollow/hollow-ui-tools/src/main/java/com/netflix/hollow/ui/HollowUISession.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,408
0
Create_ds/hollow/hollow-ui-tools/src/main/java/com/netflix/hollow
Create_ds/hollow/hollow-ui-tools/src/main/java/com/netflix/hollow/ui/HollowUIWebServer.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,409
0
Create_ds/hollow/hollow-perf/src/main/java
Create_ds/hollow/hollow-perf/src/main/java/hollow/SegmentedLongArrayPlainPut.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,410
0
Create_ds/hollow/hollow-perf/src/main/java
Create_ds/hollow/hollow-perf/src/main/java/hollow/FixedLengthElementArrayPlainPut.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,411
0
Create_ds/hollow/hollow-perf/src/jmh/java/com/netflix/hollow/core/memory
Create_ds/hollow/hollow-perf/src/jmh/java/com/netflix/hollow/core/memory/encoding/HashCodesBenchmark.java
package com.netflix.hollow.core.memory.encoding; import java.util.concurrent.ThreadLocalRandom; import java.util.concurrent.TimeUnit; import org.openjdk.jmh.annotations.Benchmark; import org.openjdk.jmh.annotations.BenchmarkMode; import org.openjdk.jmh.annotations.Fork; import org.openjdk.jmh.annotations.Measurement; ...
9,412
0
Create_ds/hollow/hollow-perf/src/jmh/java/com/netflix/hollow/core/memory
Create_ds/hollow/hollow-perf/src/jmh/java/com/netflix/hollow/core/memory/encoding/CheckSumCollections.java
package com.netflix.hollow.core.memory.encoding; import static java.util.stream.Collectors.toList; import static java.util.stream.Collectors.toMap; import static java.util.stream.Collectors.toSet; import com.netflix.hollow.core.read.engine.HollowReadStateEngine; import com.netflix.hollow.core.read.engine.HollowTypeRe...
9,413
0
Create_ds/hollow/hollow-perf/src/jmh/java/com/netflix/hollow/core/memory
Create_ds/hollow/hollow-perf/src/jmh/java/com/netflix/hollow/core/memory/encoding/ReadWriteFixedLengthElementArrayTest.java
package com.netflix.hollow.core.memory.encoding; import com.netflix.hollow.core.memory.pool.WastefulRecycler; import hollow.FixedLengthElementArrayPlainPut; import java.util.concurrent.ThreadLocalRandom; import java.util.concurrent.TimeUnit; import org.openjdk.jmh.annotations.Benchmark; import org.openjdk.jmh.annotati...
9,414
0
Create_ds/hollow/hollow-perf/src/jmh/java/com/netflix/hollow/core/memory
Create_ds/hollow/hollow-perf/src/jmh/java/com/netflix/hollow/core/memory/encoding/OrdinalMapResize.java
package com.netflix.hollow.core.memory.encoding; import com.netflix.hollow.core.memory.ByteArrayOrdinalMap; import com.netflix.hollow.core.memory.ByteDataArray; import java.util.SplittableRandom; import java.util.concurrent.TimeUnit; import org.openjdk.jmh.annotations.Benchmark; import org.openjdk.jmh.annotations.Benc...
9,415
0
Create_ds/hollow/hollow-perf/src/jmh/java/com/netflix/hollow/core
Create_ds/hollow/hollow-perf/src/jmh/java/com/netflix/hollow/core/read/ReadWriteStateEngineTest.java
package com.netflix.hollow.core.read; import com.netflix.hollow.core.read.engine.HollowBlobReader; import com.netflix.hollow.core.read.engine.HollowReadStateEngine; import com.netflix.hollow.core.schema.HollowObjectSchema; import com.netflix.hollow.core.util.SimultaneousExecutor; import com.netflix.hollow.core.write.H...
9,416
0
Create_ds/hollow/hollow-perf/src/jmh/java/com/netflix/hollow/core/read/engine
Create_ds/hollow/hollow-perf/src/jmh/java/com/netflix/hollow/core/read/engine/object/HollowObjectTypeReadStateShardBenchmark.java
package com.netflix.hollow.core.read.engine.object; import com.netflix.hollow.core.read.dataaccess.HollowObjectTypeDataAccess; import com.netflix.hollow.core.read.engine.HollowReadStateEngine; import com.netflix.hollow.core.util.StateEngineRoundTripper; import com.netflix.hollow.core.write.HollowWriteStateEngine; impo...
9,417
0
Create_ds/hollow/hollow-perf/src/jmh/java/com/netflix/hollow/core/read/engine
Create_ds/hollow/hollow-perf/src/jmh/java/com/netflix/hollow/core/read/engine/object/HollowObjectTypeReadStateDeltaTransitionBenchmark.java
package com.netflix.hollow.core.read.engine.object; import com.netflix.hollow.core.read.dataaccess.HollowObjectTypeDataAccess; import com.netflix.hollow.core.read.engine.HollowReadStateEngine; import com.netflix.hollow.core.util.StateEngineRoundTripper; import com.netflix.hollow.core.write.HollowWriteStateEngine; imp...
9,418
0
Create_ds/hollow/hollow-perf/src/jmh/java/com/netflix/hollow/core
Create_ds/hollow/hollow-perf/src/jmh/java/com/netflix/hollow/core/index/HollowHashIndexBenchmark.java
package com.netflix.hollow.core.index; import org.openjdk.jmh.annotations.Benchmark; import org.openjdk.jmh.annotations.Param; import org.openjdk.jmh.runner.Runner; import org.openjdk.jmh.runner.RunnerException; import org.openjdk.jmh.runner.options.Options; import org.openjdk.jmh.runner.options.OptionsBuilder; import...
9,419
0
Create_ds/hollow/hollow-perf/src/jmh/java/com/netflix/hollow/core
Create_ds/hollow/hollow-perf/src/jmh/java/com/netflix/hollow/core/index/AbstractHollowIndexBenchmark.java
package com.netflix.hollow.core.index; import com.netflix.hollow.core.read.engine.HollowReadStateEngine; import com.netflix.hollow.core.util.StateEngineRoundTripper; import com.netflix.hollow.core.write.HollowWriteStateEngine; import com.netflix.hollow.core.write.objectmapper.HollowObjectMapper; import java.io.IOExcep...
9,420
0
Create_ds/hollow/hollow-perf/src/jmh/java/com/netflix/hollow/core/index
Create_ds/hollow/hollow-perf/src/jmh/java/com/netflix/hollow/core/index/key/HollowPrimaryKeyIndexBenchmark.java
package com.netflix.hollow.core.index.key; import com.netflix.hollow.core.index.AbstractHollowIndexBenchmark; import com.netflix.hollow.core.index.HollowPrimaryKeyIndex; import org.openjdk.jmh.annotations.Benchmark; import org.openjdk.jmh.runner.Runner; import org.openjdk.jmh.runner.RunnerException; import org.openjdk...
9,421
0
Create_ds/hollow/hollow-jsonadapter/src/test/java/com/netflix/hollow/jsonadapter
Create_ds/hollow/hollow-jsonadapter/src/test/java/com/netflix/hollow/jsonadapter/chunker/JsonArrayChunkerTest.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,422
0
Create_ds/hollow/hollow-jsonadapter/src/main/java/com/netflix/hollow
Create_ds/hollow/hollow-jsonadapter/src/main/java/com/netflix/hollow/jsonadapter/AbstractHollowJsonAdaptorTask.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,423
0
Create_ds/hollow/hollow-jsonadapter/src/main/java/com/netflix/hollow
Create_ds/hollow/hollow-jsonadapter/src/main/java/com/netflix/hollow/jsonadapter/HollowJsonAdapterPrimaryKeyFinder.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,424
0
Create_ds/hollow/hollow-jsonadapter/src/main/java/com/netflix/hollow
Create_ds/hollow/hollow-jsonadapter/src/main/java/com/netflix/hollow/jsonadapter/ObjectMappedFieldPath.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,425
0
Create_ds/hollow/hollow-jsonadapter/src/main/java/com/netflix/hollow
Create_ds/hollow/hollow-jsonadapter/src/main/java/com/netflix/hollow/jsonadapter/HollowJsonToFlatRecordTask.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,426
0
Create_ds/hollow/hollow-jsonadapter/src/main/java/com/netflix/hollow
Create_ds/hollow/hollow-jsonadapter/src/main/java/com/netflix/hollow/jsonadapter/ObjectFieldMapping.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,427
0
Create_ds/hollow/hollow-jsonadapter/src/main/java/com/netflix/hollow
Create_ds/hollow/hollow-jsonadapter/src/main/java/com/netflix/hollow/jsonadapter/HollowJsonAdapter.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,428
0
Create_ds/hollow/hollow-jsonadapter/src/main/java/com/netflix/hollow/jsonadapter
Create_ds/hollow/hollow-jsonadapter/src/main/java/com/netflix/hollow/jsonadapter/discover/HollowDiscoveredField.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,429
0
Create_ds/hollow/hollow-jsonadapter/src/main/java/com/netflix/hollow/jsonadapter
Create_ds/hollow/hollow-jsonadapter/src/main/java/com/netflix/hollow/jsonadapter/discover/SchemaSolidifier.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,430
0
Create_ds/hollow/hollow-jsonadapter/src/main/java/com/netflix/hollow/jsonadapter
Create_ds/hollow/hollow-jsonadapter/src/main/java/com/netflix/hollow/jsonadapter/discover/HollowSchemaNamer.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,431
0
Create_ds/hollow/hollow-jsonadapter/src/main/java/com/netflix/hollow/jsonadapter
Create_ds/hollow/hollow-jsonadapter/src/main/java/com/netflix/hollow/jsonadapter/discover/HollowDiscoveredSchema.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,432
0
Create_ds/hollow/hollow-jsonadapter/src/main/java/com/netflix/hollow/jsonadapter
Create_ds/hollow/hollow-jsonadapter/src/main/java/com/netflix/hollow/jsonadapter/discover/DiscoveredSchemaType.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,433
0
Create_ds/hollow/hollow-jsonadapter/src/main/java/com/netflix/hollow/jsonadapter
Create_ds/hollow/hollow-jsonadapter/src/main/java/com/netflix/hollow/jsonadapter/discover/HollowJsonAdapterSchemaDiscoverer.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,434
0
Create_ds/hollow/hollow-jsonadapter/src/main/java/com/netflix/hollow/jsonadapter
Create_ds/hollow/hollow-jsonadapter/src/main/java/com/netflix/hollow/jsonadapter/util/JsonUtil.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,435
0
Create_ds/hollow/hollow-jsonadapter/src/main/java/com/netflix/hollow/jsonadapter
Create_ds/hollow/hollow-jsonadapter/src/main/java/com/netflix/hollow/jsonadapter/field/FieldProcessor.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,436
0
Create_ds/hollow/hollow-jsonadapter/src/main/java/com/netflix/hollow/jsonadapter/field
Create_ds/hollow/hollow-jsonadapter/src/main/java/com/netflix/hollow/jsonadapter/field/impl/AbstractFieldProcessor.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,437
0
Create_ds/hollow/hollow-jsonadapter/src/main/java/com/netflix/hollow/jsonadapter
Create_ds/hollow/hollow-jsonadapter/src/main/java/com/netflix/hollow/jsonadapter/chunker/JsonArrayChunker.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,438
0
Create_ds/hollow/hollow-jsonadapter/src/main/java/com/netflix/hollow/jsonadapter
Create_ds/hollow/hollow-jsonadapter/src/main/java/com/netflix/hollow/jsonadapter/chunker/JsonArrayChunkReader.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,439
0
Create_ds/hollow/hollow-jsonadapter/src/main/java/com/netflix/hollow/jsonadapter
Create_ds/hollow/hollow-jsonadapter/src/main/java/com/netflix/hollow/jsonadapter/chunker/JsonArrayChunkerInputSegment.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,440
0
Create_ds/hollow/hollow-diff-ui/src/tools/java/com/netflix/hollow/diff
Create_ds/hollow/hollow-diff-ui/src/tools/java/com/netflix/hollow/diff/ui/DiffUITest.java
package com.netflix.hollow.diff.ui; import com.netflix.hollow.diffview.FakeHollowDiffGenerator; import com.netflix.hollow.tools.diff.HollowDiff; import org.junit.Test; public class DiffUITest { @Test public void test() throws Exception { HollowDiff testDiff = new FakeHollowDiffGenerator().createFakeD...
9,441
0
Create_ds/hollow/hollow-diff-ui/src/tools/java/com/netflix/hollow/diff
Create_ds/hollow/hollow-diff-ui/src/tools/java/com/netflix/hollow/diff/ui/HistoryUITest.java
package com.netflix.hollow.diff.ui; import com.netflix.hollow.core.read.HollowBlobInput; import com.netflix.hollow.core.read.engine.HollowBlobReader; import com.netflix.hollow.core.read.engine.HollowReadStateEngine; import com.netflix.hollow.core.read.engine.HollowTypeReadState; import com.netflix.hollow.core.read.eng...
9,442
0
Create_ds/hollow/hollow-diff-ui/src/test/java/com/netflix/hollow
Create_ds/hollow/hollow-diff-ui/src/test/java/com/netflix/hollow/diffview/HollowEffigyCollectionPairerTest.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,443
0
Create_ds/hollow/hollow-diff-ui/src/test/java/com/netflix/hollow
Create_ds/hollow/hollow-diff-ui/src/test/java/com/netflix/hollow/diffview/HollowHistoryUIServerTest.java
package com.netflix.hollow.diffview; import com.netflix.hollow.core.read.engine.HollowReadStateEngine; import com.netflix.hollow.history.ui.HollowHistoryUIServer; import com.netflix.hollow.tools.history.HollowHistory; import org.junit.Test; public class HollowHistoryUIServerTest { @Test public void test() thr...
9,444
0
Create_ds/hollow/hollow-diff-ui/src/test/java/com/netflix/hollow
Create_ds/hollow/hollow-diff-ui/src/test/java/com/netflix/hollow/diffview/HollowDiffUIServerTest.java
package com.netflix.hollow.diffview; import com.netflix.hollow.diff.ui.HollowDiffUIServer; import com.netflix.hollow.tools.diff.HollowDiff; import org.junit.Test; public class HollowDiffUIServerTest { @Test public void test() throws Exception { HollowDiff testDiff = new FakeHollowDiffGenerator().crea...
9,445
0
Create_ds/hollow/hollow-diff-ui/src/test/java/com/netflix/hollow
Create_ds/hollow/hollow-diff-ui/src/test/java/com/netflix/hollow/diffview/HollowHistoryUITest.java
package com.netflix.hollow.diffview; import static com.netflix.hollow.diffview.FakeHollowHistoryUtil.assertUiParity; import static org.junit.Assert.assertNotNull; import com.netflix.hollow.history.ui.HollowHistoryUI; import com.netflix.hollow.history.ui.jetty.HollowHistoryUIServer; import com.netflix.hollow.test.cons...
9,446
0
Create_ds/hollow/hollow-diff-ui/src/test/java/com/netflix/hollow
Create_ds/hollow/hollow-diff-ui/src/test/java/com/netflix/hollow/diffview/HollowEffigyDiffRecordTest.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,447
0
Create_ds/hollow/hollow-diff-ui/src/test/java/com/netflix/hollow
Create_ds/hollow/hollow-diff-ui/src/test/java/com/netflix/hollow/diffview/FakeHollowDiffGenerator.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,448
0
Create_ds/hollow/hollow-diff-ui/src/test/java/com/netflix/hollow
Create_ds/hollow/hollow-diff-ui/src/test/java/com/netflix/hollow/diffview/FakeHollowHistoryUtil.java
package com.netflix.hollow.diffview; import static org.junit.Assert.assertEquals; import com.netflix.hollow.core.schema.HollowObjectSchema; import com.netflix.hollow.core.write.HollowBlobWriter; import com.netflix.hollow.core.write.HollowObjectTypeWriteState; import com.netflix.hollow.core.write.HollowObjectWriteReco...
9,449
0
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/diff
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/diff/ui/DiffUIServer.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,450
0
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/diff
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/diff/ui/HollowDiffUI.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,451
0
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/diff
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/diff/ui/HollowDiffUIRouter.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,452
0
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/diff
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/diff/ui/HollowDiffUIServer.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,453
0
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/diff
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/diff/ui/DiffUIWebServer.java
package com.netflix.hollow.diff.ui; import com.netflix.hollow.tools.diff.HollowDiff; import com.netflix.hollow.ui.HollowUIWebServer; import com.netflix.hollow.ui.HttpHandlerWithServletSupport; class DiffUIWebServer extends HollowUIWebServer implements DiffUIServer { private final HollowDiffUIRouter router; p...
9,454
0
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/diff/ui
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/diff/ui/jetty/HollowDiffUIServer.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,455
0
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/diff/ui
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/diff/ui/model/HollowDiffUIBreadcrumbs.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,456
0
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/diff/ui
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/diff/ui/model/HollowHeaderEntry.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,457
0
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/diff/ui
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/diff/ui/model/HollowDiffOverviewTypeEntry.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,458
0
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/diff/ui
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/diff/ui/model/HollowUnmatchedObject.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,459
0
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/diff/ui
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/diff/ui/model/HollowObjectPairDiffScore.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,460
0
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/diff/ui
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/diff/ui/model/HollowFieldDiffScore.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,461
0
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/diff/ui
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/diff/ui/pages/DiffPage.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,462
0
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/diff/ui
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/diff/ui/pages/DiffObjectPage.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,463
0
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/diff/ui
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/diff/ui/pages/DiffOverviewPage.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,464
0
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/diff/ui
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/diff/ui/pages/DiffFieldPage.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,465
0
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/diff/ui
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/diff/ui/pages/DiffTypePage.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,466
0
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/history
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/history/ui/HollowHistoryRefreshListener.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,467
0
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/history
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/history/ui/HollowHistoryUI.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,468
0
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/history
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/history/ui/VersionTimestampConverter.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,469
0
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/history
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/history/ui/HollowHistoryUIServer.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,470
0
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/history/ui
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/history/ui/jetty/HollowHistoryUIServer.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,471
0
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/history/ui
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/history/ui/naming/HollowHistoryRecordNamer.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,472
0
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/history/ui
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/history/ui/model/HistoryStateTypeChanges.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,473
0
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/history/ui
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/history/ui/model/HistoryStateQueryMatches.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,474
0
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/history/ui
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/history/ui/model/HistoricalObjectChangeVersion.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,475
0
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/history/ui
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/history/ui/model/HistoryOverviewRow.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,476
0
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/history/ui
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/history/ui/model/RecordDiffTreeNode.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,477
0
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/history/ui
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/history/ui/model/RecordDiff.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,478
0
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/history/ui
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/history/ui/model/HistoryStateTypeChangeSummary.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,479
0
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/history/ui
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/history/ui/pages/HistoryStateTypePage.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,480
0
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/history/ui
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/history/ui/pages/HistoryOverviewPage.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,481
0
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/history/ui
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/history/ui/pages/HistoricalObjectDiffPage.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,482
0
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/history/ui
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/history/ui/pages/HistoryQueryPage.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,483
0
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/history/ui
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/history/ui/pages/HistoryPage.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,484
0
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/history/ui
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/history/ui/pages/HistoryStatePage.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,485
0
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/history/ui
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/history/ui/pages/HistoryStateTypeExpandGroupPage.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,486
0
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/diffview/DiffViewOutputGenerator.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,487
0
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/diffview/HollowHistoryViewProvider.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,488
0
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/diffview/HollowObjectView.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,489
0
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/diffview/HollowHistoryView.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,490
0
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/diffview/HollowDiffViewProvider.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,491
0
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/diffview/HollowDiffView.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,492
0
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/diffview/HollowDiffHtmlKickstarter.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,493
0
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/diffview/HollowDiffViewRow.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,494
0
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/diffview/HollowObjectViewProvider.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,495
0
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/diffview/HollowObjectDiffViewGenerator.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,496
0
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/diffview
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/diffview/effigy/HollowEffigyFactory.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,497
0
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/diffview
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/diffview/effigy/CustomHollowEffigyFactory.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,498
0
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/diffview
Create_ds/hollow/hollow-diff-ui/src/main/java/com/netflix/hollow/diffview/effigy/HollowRecordDiffUI.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,499