index
int64
0
0
repo_id
stringlengths
9
205
file_path
stringlengths
31
246
content
stringlengths
1
12.2M
__index_level_0__
int64
0
10k
0
Create_ds/RxGroups/rxgroups/src/main/java/com/airbnb
Create_ds/RxGroups/rxgroups/src/main/java/com/airbnb/rxgroups/Utils.java
package com.airbnb.rxgroups; import io.reactivex.Observer; final class Utils { static String getObserverTag(Observer<?> observer) { if (observer instanceof TaggedObserver) { String definedTag = ((TaggedObserver) observer).getTag(); if (definedTag != null) { return definedTag; } } ...
1,700
0
Create_ds/RxGroups/rxgroups/src/main/java/com/airbnb
Create_ds/RxGroups/rxgroups/src/main/java/com/airbnb/rxgroups/BaseObservableResubscriber.java
package com.airbnb.rxgroups; public class BaseObservableResubscriber { protected void setTag(AutoResubscribingObserver target, String tag) { target.setTag(tag); } protected void setTag(AutoTaggableObserver target, String tag) { target.setTag(tag); } }
1,701
0
Create_ds/RxGroups/rxgroups/src/main/java/com/airbnb
Create_ds/RxGroups/rxgroups/src/main/java/com/airbnb/rxgroups/TaggedObserver.java
package com.airbnb.rxgroups; import io.reactivex.Observer; /** * An {@link Observer} which as a string "tag" which * uniquely identifies this Observer. */ public interface TaggedObserver<T> extends Observer<T> { /** * @return A string which uniquely identifies this Observer. In order to use * {@link Obse...
1,702
0
Create_ds/RxGroups/rxgroups/src/main/java/com/airbnb
Create_ds/RxGroups/rxgroups/src/main/java/com/airbnb/rxgroups/ObservableManager.java
/* * Copyright (C) 2016 Airbnb, 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 applicable law or agreed to...
1,703
0
Create_ds/RxGroups/rxgroups/src/main/java/com/airbnb
Create_ds/RxGroups/rxgroups/src/main/java/com/airbnb/rxgroups/ObservableGroup.java
/* * Copyright (C) 2016 Airbnb, 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 applicable law or agreed to...
1,704
0
Create_ds/RxGroups/rxgroups/src/main/java/com/airbnb
Create_ds/RxGroups/rxgroups/src/main/java/com/airbnb/rxgroups/SourceSubscription.java
/* * Copyright (C) 2016 Airbnb, 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 applicable law or agreed to...
1,705
0
Create_ds/RxGroups/rxgroups/src/main/java/com/airbnb
Create_ds/RxGroups/rxgroups/src/main/java/com/airbnb/rxgroups/NonResubscribableTag.java
package com.airbnb.rxgroups; import java.util.regex.Matcher; import java.util.regex.Pattern; /** * Creates a tag of the form NonResubscribableTag_className#hashcode. */ class NonResubscribableTag { private static final String IDENTIFIER = NonResubscribableTag.class.getSimpleName(); private static final Pattern...
1,706
0
Create_ds/RxGroups/rxgroups/src/main/java/com/airbnb
Create_ds/RxGroups/rxgroups/src/main/java/com/airbnb/rxgroups/ManagedObservable.java
/* * Copyright (C) 2016 Airbnb, 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 applicable law or agreed to...
1,707
0
Create_ds/RxGroups/rxgroups/src/main/java/com/airbnb/rxgroups
Create_ds/RxGroups/rxgroups/src/main/java/com/airbnb/rxgroups/processor/ProcessorHelper.java
package com.airbnb.rxgroups.processor; public class ProcessorHelper { public static final String GENERATED_CLASS_NAME_SUFFIX = "_ObservableResubscriber"; }
1,708
0
Create_ds/RxGroups/rxgroups-processor/src/main/java/com/airbnb/rxgroups
Create_ds/RxGroups/rxgroups-processor/src/main/java/com/airbnb/rxgroups/processor/ProcessorUtils.java
package com.airbnb.rxgroups.processor; import com.airbnb.rxgroups.AutoResubscribingObserver; import com.airbnb.rxgroups.AutoTaggableObserver; import com.airbnb.rxgroups.TaggedObserver; import javax.lang.model.element.Element; import javax.lang.model.type.TypeMirror; import javax.lang.model.util.Elements; import java...
1,709
0
Create_ds/RxGroups/rxgroups-processor/src/main/java/com/airbnb/rxgroups
Create_ds/RxGroups/rxgroups-processor/src/main/java/com/airbnb/rxgroups/processor/ResubscriptionProcessor.java
package com.airbnb.rxgroups.processor; import com.airbnb.rxgroups.AutoResubscribe; import com.airbnb.rxgroups.AutoResubscribingObserver; import com.airbnb.rxgroups.AutoTag; import com.airbnb.rxgroups.AutoTaggableObserver; import com.airbnb.rxgroups.BaseObservableResubscriber; import com.airbnb.rxgroups.ObservableGroup...
1,710
0
Create_ds/RxGroups/rxgroups-android/src/test/java/com/airbnb
Create_ds/RxGroups/rxgroups-android/src/test/java/com/airbnb/rxgroups/GroupLifecycleManagerTest.java
package com.airbnb.rxgroups; import android.app.Activity; import android.os.Build; import android.os.Bundle; import com.airbnb.rxgroups.android.BuildConfig; import org.junit.Test; import org.junit.runner.RunWith; import org.mockito.Matchers; import org.robolectric.RobolectricGradleTestRunner; import org.robolectric....
1,711
0
Create_ds/RxGroups/rxgroups-android/src/main/java/com/airbnb
Create_ds/RxGroups/rxgroups-android/src/main/java/com/airbnb/rxgroups/GroupLifecycleManager.java
/* * Copyright (C) 2016 Airbnb, 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 applicable law or agreed to...
1,712
0
Create_ds/RxGroups/rxgroups-annotation-test/src/test
Create_ds/RxGroups/rxgroups-annotation-test/src/test/resources/PlainObserver_Fail_AutoTag.java
package test; import com.airbnb.rxgroups.AutoTag; import io.reactivex.Observer; public class PlainObserver_Fail_AutoTag { @AutoTag public Observer<Object> taggedObserver = new Observer<Object>() { @Override public void onCompleted() { } @Override public void onError(Throwable e) { } @Ove...
1,713
0
Create_ds/RxGroups/rxgroups-annotation-test/src/test
Create_ds/RxGroups/rxgroups-annotation-test/src/test/resources/AutoResubscribingObserver_Pass_All.java
package test; import com.airbnb.rxgroups.AutoResubscribe; import com.airbnb.rxgroups.AutoTag; import com.airbnb.rxgroups.AutoResubscribingObserver; public class AutoResubscribingObserver_Pass_All { @AutoResubscribe AutoResubscribingObserver<Object> observer = new AutoResubscribingObserver<Object>() { }; @AutoT...
1,714
0
Create_ds/RxGroups/rxgroups-annotation-test/src/test
Create_ds/RxGroups/rxgroups-annotation-test/src/test/resources/TaggedObserver_Pass_AutoResubscribe.java
package test; import com.airbnb.rxgroups.AutoResubscribe; import com.airbnb.rxgroups.TaggedObserver; import io.reactivex.disposables.Disposable; public class TaggedObserver_Pass_AutoResubscribe { @AutoResubscribe public TaggedObserver<Object> taggedObserver = new TaggedObserver<Object>() { @Override public S...
1,715
0
Create_ds/RxGroups/rxgroups-annotation-test/src/test
Create_ds/RxGroups/rxgroups-annotation-test/src/test/resources/AutoResubscribingObserver_Fail_Private_AutoTag.java
package test; import com.airbnb.rxgroups.AutoTag; import com.airbnb.rxgroups.AutoResubscribingObserver; public class AutoResubscribingObserver_Fail_Private_AutoTag { @AutoTag private AutoResubscribingObserver<Object> observer = new AutoResubscribingObserver<Object>() { }; }
1,716
0
Create_ds/RxGroups/rxgroups-annotation-test/src/test
Create_ds/RxGroups/rxgroups-annotation-test/src/test/resources/TaggedObserver_Fail_AutoTag.java
package test; import com.airbnb.rxgroups.AutoTag; import com.airbnb.rxgroups.TaggedObserver; public class TaggedObserver_Fail_AutoTag { @AutoTag public TaggedObserver<Object> taggedObserver = new TaggedObserver<Object>() { @Override public String getTag() { return "stableTag"; } ...
1,717
0
Create_ds/RxGroups/rxgroups-annotation-test/src/test
Create_ds/RxGroups/rxgroups-annotation-test/src/test/resources/PlainObserver_Fail_AutoResubscribe.java
package test; import com.airbnb.rxgroups.AutoResubscribe; import io.reactivex.Observer; public class PlainObserver_Fail_AutoResubscribe { @AutoResubscribe public Observer<Object> taggedObserver = new Observer<Object>() { @Override public void onCompleted() { } @Override public void onError(Throwa...
1,718
0
Create_ds/RxGroups/rxgroups-annotation-test/src/test
Create_ds/RxGroups/rxgroups-annotation-test/src/test/resources/AutoResubscribingObserver_Fail_Private.java
package test; import com.airbnb.rxgroups.AutoResubscribe; import com.airbnb.rxgroups.AutoResubscribingObserver; public class AutoResubscribingObserver_Fail_Private { @AutoResubscribe private AutoResubscribingObserver<Object> observer = new AutoResubscribingObserver<Object>() { }; }
1,719
0
Create_ds/RxGroups/rxgroups-annotation-test/src/test
Create_ds/RxGroups/rxgroups-annotation-test/src/test/resources/AutoResubscribingObserver_Fail_NonStatic.java
package test; import com.airbnb.rxgroups.AutoResubscribe; import com.airbnb.rxgroups.AutoResubscribingObserver; public class AutoResubscribingObserver_Fail_NonStatic { class Inner { @AutoResubscribe private AutoResubscribingObserver<Object> observer = new AutoResubscribingObserver<Object>() { }; } }
1,720
0
Create_ds/RxGroups/rxgroups-annotation-test/src/test
Create_ds/RxGroups/rxgroups-annotation-test/src/test/resources/AutoTaggableObserver_Pass_All.java
package test; import com.airbnb.rxgroups.AutoResubscribe; import com.airbnb.rxgroups.AutoTag; import com.airbnb.rxgroups.AutoTaggableObserverImpl; public class AutoTaggableObserver_Pass_All { @AutoResubscribe public AutoTaggableObserverImpl<Object> resubscribeObserver = new AutoTaggableObserverImpl<Object>(); ...
1,721
0
Create_ds/RxGroups/rxgroups-annotation-test/src/test
Create_ds/RxGroups/rxgroups-annotation-test/src/test/resources/AutoTaggableObserver_Pass_All_CustomTag.java
package test; import com.airbnb.rxgroups.AutoResubscribe; import com.airbnb.rxgroups.AutoTag; import com.airbnb.rxgroups.AutoTaggableObserverImpl; public class AutoTaggableObserver_Pass_All_CustomTag { @AutoResubscribe(customTag = "tag1") public AutoTaggableObserverImpl<Object> resubscribeObserver = new AutoTagga...
1,722
0
Create_ds/RxGroups/rxgroups-annotation-test/src/test/java/com/airbnb
Create_ds/RxGroups/rxgroups-annotation-test/src/test/java/com/airbnb/rxgroups/AutoTaggableObserverImpl.java
package com.airbnb.rxgroups; import io.reactivex.annotations.NonNull; import io.reactivex.disposables.Disposable; public class AutoTaggableObserverImpl<T> implements AutoTaggableObserver<T> { @Override public void setTag(String tag) { } @Override public String getTag() { return null; } @Override publ...
1,723
0
Create_ds/RxGroups/rxgroups-annotation-test/src/test/java/com/airbnb
Create_ds/RxGroups/rxgroups-annotation-test/src/test/java/com/airbnb/rxgroups/ResubscriptionProcessorTest.java
package com.airbnb.rxgroups; import com.airbnb.rxgroups.processor.ResubscriptionProcessor; import com.google.common.truth.Truth; import com.google.testing.compile.JavaFileObjects; import com.google.testing.compile.JavaSourceSubjectFactory; import org.junit.Test; import javax.tools.JavaFileObject; public class Resub...
1,724
0
Create_ds/zuul/zuul-core/src/test/java/com/netflix/netty
Create_ds/zuul/zuul-core/src/test/java/com/netflix/netty/common/CloseOnIdleStateHandlerTest.java
/* * Copyright 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 a...
1,725
0
Create_ds/zuul/zuul-core/src/test/java/com/netflix/netty
Create_ds/zuul/zuul-core/src/test/java/com/netflix/netty/common/HttpServerLifecycleChannelHandlerTest.java
/* * Copyright 2021 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
1,726
0
Create_ds/zuul/zuul-core/src/test/java/com/netflix/netty
Create_ds/zuul/zuul-core/src/test/java/com/netflix/netty/common/SourceAddressChannelHandlerTest.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 a...
1,727
0
Create_ds/zuul/zuul-core/src/test/java/com/netflix/netty/common
Create_ds/zuul/zuul-core/src/test/java/com/netflix/netty/common/metrics/InstrumentedResourceLeakDetectorTest.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 a...
1,728
0
Create_ds/zuul/zuul-core/src/test/java/com/netflix/netty/common
Create_ds/zuul/zuul-core/src/test/java/com/netflix/netty/common/throttle/MaxInboundConnectionsHandlerTest.java
/* * Copyright 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 a...
1,729
0
Create_ds/zuul/zuul-core/src/test/java/com/netflix/netty/common
Create_ds/zuul/zuul-core/src/test/java/com/netflix/netty/common/proxyprotocol/StripUntrustedProxyHeadersHandlerTest.java
/* * Copyright 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 a...
1,730
0
Create_ds/zuul/zuul-core/src/test/java/com/netflix/netty/common
Create_ds/zuul/zuul-core/src/test/java/com/netflix/netty/common/proxyprotocol/ElbProxyProtocolChannelHandlerTest.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 a...
1,731
0
Create_ds/zuul/zuul-core/src/test/java/com/netflix/netty/common
Create_ds/zuul/zuul-core/src/test/java/com/netflix/netty/common/proxyprotocol/HAProxyMessageChannelHandlerTest.java
/* * Copyright 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 a...
1,732
0
Create_ds/zuul/zuul-core/src/test/java/com/netflix
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul/DynamicFilterLoaderTest.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 a...
1,733
0
Create_ds/zuul/zuul-core/src/test/java/com/netflix
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul/StaticFilterLoaderTest.java
/* * Copyright 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 a...
1,734
0
Create_ds/zuul/zuul-core/src/test/java/com/netflix
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul/FilterFileManagerTest.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 a...
1,735
0
Create_ds/zuul/zuul-core/src/test/java/com/netflix
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul/AttrsTest.java
/* * Copyright 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 a...
1,736
0
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul/filters/BaseFilterTest.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 a...
1,737
0
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul/filters
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul/filters/common/GZipResponseFilterTest.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 a...
1,738
0
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul/filters
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul/filters/endpoint/ProxyEndpointTest.java
/* * Copyright 2022 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 a...
1,739
0
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul/context/SessionContextTest.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 a...
1,740
0
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul/context/DebugTest.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 a...
1,741
0
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul/util/JsonUtilityTest.java
/* * Copyright 2018 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 a...
1,742
0
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul/util/HttpUtilsTest.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 a...
1,743
0
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul/util/VipUtilsTest.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 a...
1,744
0
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul/message/ZuulMessageImplTest.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 a...
1,745
0
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul/message/HeadersTest.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 a...
1,746
0
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul/message
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul/message/http/HttpQueryParamsTest.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 a...
1,747
0
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul/message
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul/message/http/HttpRequestMessageImplTest.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 a...
1,748
0
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul/message
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul/message/http/HttpResponseMessageImplTest.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 a...
1,749
0
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul/netty
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul/netty/insights/ServerStateHandlerTest.java
/* * Copyright 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 a...
1,750
0
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul/netty
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul/netty/ssl/OpenSslTest.java
/* * Copyright 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 a...
1,751
0
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul/netty
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul/netty/ssl/ClientSslContextFactoryTest.java
/* * Copyright 2018 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 a...
1,752
0
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul/netty
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul/netty/ssl/BaseSslContextFactoryTest.java
/* * Copyright 2022 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 a...
1,753
0
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul/netty
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul/netty/timeouts/OriginTimeoutManagerTest.java
/* * Copyright 2021 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
1,754
0
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul/netty
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul/netty/server/ClientResponseWriterTest.java
/* * Copyright 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 a...
1,755
0
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul/netty
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul/netty/server/ClientConnectionsShutdownTest.java
/* * Copyright 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 a...
1,756
0
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul/netty
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul/netty/server/ClientRequestReceiverTest.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 a...
1,757
0
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul/netty
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul/netty/server/BaseZuulChannelInitializerTest.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 a...
1,758
0
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul/netty
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul/netty/server/ServerTest.java
/* * Copyright 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 a...
1,759
0
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul/netty
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul/netty/server/SocketAddressPropertyTest.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 a...
1,760
0
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul/netty
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul/netty/server/IoUringTest.java
/* * Copyright 2022 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 a...
1,761
0
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul/netty/server
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul/netty/server/ssl/SslHandshakeInfoHandlerTest.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 a...
1,762
0
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul/netty/server
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul/netty/server/http2/Http2ContentLengthEnforcingHandlerTest.java
/* * Copyright 2021 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
1,763
0
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul/netty/server
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul/netty/server/http2/Http2OrHttpHandlerTest.java
/* * Copyright 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 a...
1,764
0
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul/netty/server
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul/netty/server/push/PushMessageSenderInitializerTest.java
/* * Copyright 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 a...
1,765
0
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul/netty/server
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul/netty/server/push/PushRegistrationHandlerTest.java
/* * Copyright 2022 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 a...
1,766
0
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul/netty/server
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul/netty/server/push/PushAuthHandlerTest.java
/* * Copyright 2022 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 a...
1,767
0
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul/netty/server
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul/netty/server/push/PushConnectionRegistryTest.java
/* * Copyright 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 a...
1,768
0
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul/netty
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul/netty/connectionpool/DefaultClientChannelManagerTest.java
/* * Copyright 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 a...
1,769
0
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul/netty
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul/netty/connectionpool/PerServerConnectionPoolTest.java
/* * Copyright 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 a...
1,770
0
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul/netty
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul/netty/filter/ZuulFilterChainRunnerTest.java
/* * Copyright 2022 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 a...
1,771
0
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul/netty
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul/netty/filter/ZuulEndPointRunnerTest.java
/* * Copyright 2022 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 a...
1,772
0
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul/passport/CurrentPassportTest.java
/* * Copyright 2018 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 a...
1,773
0
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul/monitoring/ConnCounterTest.java
/* * Copyright 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 a...
1,774
0
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul/monitoring/ConnTimerTest.java
/* * Copyright 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 a...
1,775
0
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul/origins/OriginNameTest.java
/* * Copyright 2021 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
1,776
0
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul/com/netflix/zuul/netty/server
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul/com/netflix/zuul/netty/server/push/PushConnectionTest.java
/* * Copyright 2018 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 a...
1,777
0
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul/stats/RouteStatusCodeMonitorTest.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 a...
1,778
0
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul/stats/StatsManagerTest.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 a...
1,779
0
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul/stats/ErrorStatsDataTest.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 a...
1,780
0
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul
Create_ds/zuul/zuul-core/src/test/java/com/netflix/zuul/stats/ErrorStatsManagerTest.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 a...
1,781
0
Create_ds/zuul/zuul-core/src/main/java/com/netflix
Create_ds/zuul/zuul-core/src/main/java/com/netflix/config/DynamicIntegerSetProperty.java
/* * Copyright 2018 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 a...
1,782
0
Create_ds/zuul/zuul-core/src/main/java/com/netflix
Create_ds/zuul/zuul-core/src/main/java/com/netflix/config/PatternListStringProperty.java
/* * Copyright 2018 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 a...
1,783
0
Create_ds/zuul/zuul-core/src/main/java/com/netflix/netty
Create_ds/zuul/zuul-core/src/main/java/com/netflix/netty/common/Http1ConnectionCloseHandler.java
/* * Copyright 2018 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 a...
1,784
0
Create_ds/zuul/zuul-core/src/main/java/com/netflix/netty
Create_ds/zuul/zuul-core/src/main/java/com/netflix/netty/common/ConnectionCloseType.java
/* * Copyright 2018 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 a...
1,785
0
Create_ds/zuul/zuul-core/src/main/java/com/netflix/netty
Create_ds/zuul/zuul-core/src/main/java/com/netflix/netty/common/HttpChannelFlags.java
/* * Copyright 2018 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 a...
1,786
0
Create_ds/zuul/zuul-core/src/main/java/com/netflix/netty
Create_ds/zuul/zuul-core/src/main/java/com/netflix/netty/common/HttpServerLifecycleChannelHandler.java
/* * Copyright 2018 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 a...
1,787
0
Create_ds/zuul/zuul-core/src/main/java/com/netflix/netty
Create_ds/zuul/zuul-core/src/main/java/com/netflix/netty/common/SwallowSomeHttp2ExceptionsHandler.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 a...
1,788
0
Create_ds/zuul/zuul-core/src/main/java/com/netflix/netty
Create_ds/zuul/zuul-core/src/main/java/com/netflix/netty/common/Http2ConnectionExpiryHandler.java
/* * Copyright 2018 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 a...
1,789
0
Create_ds/zuul/zuul-core/src/main/java/com/netflix/netty
Create_ds/zuul/zuul-core/src/main/java/com/netflix/netty/common/RequestResponseCompleteEvent.java
/* * Copyright 2018 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 a...
1,790
0
Create_ds/zuul/zuul-core/src/main/java/com/netflix/netty
Create_ds/zuul/zuul-core/src/main/java/com/netflix/netty/common/HttpClientLifecycleChannelHandler.java
/* * Copyright 2018 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 a...
1,791
0
Create_ds/zuul/zuul-core/src/main/java/com/netflix/netty
Create_ds/zuul/zuul-core/src/main/java/com/netflix/netty/common/HttpRequestReadTimeoutEvent.java
/* * Copyright 2018 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 a...
1,792
0
Create_ds/zuul/zuul-core/src/main/java/com/netflix/netty
Create_ds/zuul/zuul-core/src/main/java/com/netflix/netty/common/HttpLifecycleChannelHandler.java
/* * Copyright 2018 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 a...
1,793
0
Create_ds/zuul/zuul-core/src/main/java/com/netflix/netty
Create_ds/zuul/zuul-core/src/main/java/com/netflix/netty/common/HttpRequestReadTimeoutHandler.java
/* * Copyright 2018 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 a...
1,794
0
Create_ds/zuul/zuul-core/src/main/java/com/netflix/netty
Create_ds/zuul/zuul-core/src/main/java/com/netflix/netty/common/AbstrHttpConnectionExpiryHandler.java
/* * Copyright 2018 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 a...
1,795
0
Create_ds/zuul/zuul-core/src/main/java/com/netflix/netty
Create_ds/zuul/zuul-core/src/main/java/com/netflix/netty/common/SourceAddressChannelHandler.java
/* * Copyright 2018 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 a...
1,796
0
Create_ds/zuul/zuul-core/src/main/java/com/netflix/netty
Create_ds/zuul/zuul-core/src/main/java/com/netflix/netty/common/ConnectionCloseChannelAttributes.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 a...
1,797
0
Create_ds/zuul/zuul-core/src/main/java/com/netflix/netty
Create_ds/zuul/zuul-core/src/main/java/com/netflix/netty/common/SslExceptionsHandler.java
/* * Copyright 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 a...
1,798
0
Create_ds/zuul/zuul-core/src/main/java/com/netflix/netty
Create_ds/zuul/zuul-core/src/main/java/com/netflix/netty/common/CloseOnIdleStateHandler.java
/** * Copyright 2018 Netflix, Inc. * <p> * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * <p> * http://www.apache.org/licenses/LICENSE-2.0 * <p> * Unless required by applicable law or ag...
1,799