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/fabricator/fabricator-core/src/main/java/com/netflix
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix/fabricator/PropertyBinderFactory.java
package com.netflix.fabricator; import java.lang.reflect.Method; /** * Abstraction for a factory to created bindings for specific types. * There should be one of these for each argument type. Ex. String, Integer, ... * * @author elandau * */ public interface PropertyBinderFactory { public PropertyBinder ...
2,100
0
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix/fabricator/PropertyInfo.java
package com.netflix.fabricator; /** * Encapsulate a representation of a property and different method variations * for setting it. * * I. Primitive type * prefix.${id}.field1=boolean|number|string|list|... withField1(String value) * ...
2,101
0
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix/fabricator/Fabricator.java
package com.netflix.fabricator; import java.util.Map; import java.util.Properties; import com.google.common.annotations.Beta; import com.google.common.collect.Maps; import com.netflix.fabricator.component.ComponentFactory; import com.netflix.fabricator.component.ComponentManager; import com.netflix.fabricator.compone...
2,102
0
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix/fabricator/TypeConfigurationResolver.java
package com.netflix.fabricator; /** * API for resolving the ComponentConfigurationResolver for a specified type * A concrete TypeConfigurationResolver will normally encapsulate an entire * configuration file that holds configurations for multiple components of * varying types. * * @see PropertiesTypeConfigurat...
2,103
0
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix/fabricator/PropertyBinder.java
package com.netflix.fabricator; /** * I. Primitive type * prefix.${id}.field1=boolean|number|string|list|... withField1(String value) * withField1(Supplier<String> value) * ...
2,104
0
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix/fabricator/BindingComponentFactory.java
package com.netflix.fabricator; import com.google.common.base.CaseFormat; import com.google.common.base.Preconditions; import com.google.common.collect.Maps; import com.google.inject.Inject; import com.netflix.fabricator.component.ComponentFactory; import org.apache.commons.lang.StringUtils; import org.slf4j.Logger; i...
2,105
0
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix/fabricator/ComponentConfigurationResolver.java
package com.netflix.fabricator; import java.util.Map; /** * The ComponentConfigurationResolver encapsulates the configuration naming convention * for a specific type of components. The resolver returns the ComponentConfiguration * for an id of it's type using whatever naming convension it chooses. * * @author ...
2,106
0
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix/fabricator/PropertyBinderResolver.java
package com.netflix.fabricator; import java.lang.reflect.Method; public interface PropertyBinderResolver { PropertyBinder get(Method method); }
2,107
0
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix/fabricator/ConfigurationNode.java
package com.netflix.fabricator; import java.util.Set; import com.netflix.fabricator.supplier.ListenableSupplier; public interface ConfigurationNode { /** * Provide the unique key for the component specified in the configuration. * Can be null for components that are not to be cached or when accessing ...
2,108
0
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix/fabricator
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix/fabricator/util/Executors2.java
package com.netflix.fabricator.util; import java.util.concurrent.ArrayBlockingQueue; import java.util.concurrent.BlockingQueue; import java.util.concurrent.Executor; import java.util.concurrent.RejectedExecutionHandler; import java.util.concurrent.ThreadFactory; import java.util.concurrent.ThreadPoolExecutor; import j...
2,109
0
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix/fabricator
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix/fabricator/util/UnstoppableStopwatch.java
package com.netflix.fabricator.util; import com.google.common.base.Stopwatch; import java.util.concurrent.TimeUnit; public class UnstoppableStopwatch { private final Stopwatch sw; public UnstoppableStopwatch() { sw = Stopwatch.createStarted(); } public long elapsed(TimeUnit units) {...
2,110
0
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix/fabricator
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix/fabricator/component/ComponentFactory.java
package com.netflix.fabricator.component; import java.util.Map; import com.netflix.fabricator.ConfigurationNode; import com.netflix.fabricator.PropertyInfo; import com.netflix.fabricator.component.exception.ComponentAlreadyExistsException; import com.netflix.fabricator.component.exception.ComponentCreationException; ...
2,111
0
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix/fabricator
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix/fabricator/component/SynchronizedComponentManager.java
package com.netflix.fabricator.component; import com.google.common.base.Preconditions; import com.google.common.collect.ImmutableSet; import com.google.common.collect.Maps; import com.google.inject.Inject; import com.netflix.fabricator.ComponentConfigurationResolver; import com.netflix.fabricator.ComponentType; import...
2,112
0
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix/fabricator
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix/fabricator/component/ComponentManager.java
package com.netflix.fabricator.component; import java.util.Collection; import com.netflix.fabricator.ConfigurationNode; import com.netflix.fabricator.component.exception.ComponentAlreadyExistsException; import com.netflix.fabricator.component.exception.ComponentCreationException; /** * The ComponentManager is meant...
2,113
0
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix/fabricator
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix/fabricator/component/BaseComponentRefreshService.java
package com.netflix.fabricator.component; import java.util.Map; import java.util.Map.Entry; import java.util.concurrent.ScheduledExecutorService; import java.util.concurrent.ScheduledFuture; import java.util.concurrent.TimeUnit; import javax.annotation.PostConstruct; import javax.annotation.PreDestroy; import javax.i...
2,114
0
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix/fabricator/component
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix/fabricator/component/bind/StringBinderFactory.java
package com.netflix.fabricator.component.bind; import java.lang.reflect.Method; import com.netflix.fabricator.ConfigurationNode; import com.netflix.fabricator.PropertyBinder; import com.netflix.fabricator.PropertyBinderFactory; public class StringBinderFactory implements PropertyBinderFactory { private final sta...
2,115
0
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix/fabricator/component
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix/fabricator/component/bind/DynamicDoubleBinderFactory.java
package com.netflix.fabricator.component.bind; import java.lang.reflect.Method; import java.lang.reflect.ParameterizedType; import com.google.common.base.Supplier; import com.netflix.fabricator.ConfigurationNode; import com.netflix.fabricator.PropertyBinder; import com.netflix.fabricator.PropertyBinderFactory; import...
2,116
0
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix/fabricator/component
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix/fabricator/component/bind/ClassBinderFactory.java
package com.netflix.fabricator.component.bind; import java.lang.reflect.Method; import com.netflix.fabricator.ConfigurationNode; import com.netflix.fabricator.PropertyBinder; import com.netflix.fabricator.PropertyBinderFactory; public class ClassBinderFactory implements PropertyBinderFactory { private final stat...
2,117
0
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix/fabricator/component
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix/fabricator/component/bind/SimplePropertyBinderFactoryResolver.java
package com.netflix.fabricator.component.bind; import java.lang.reflect.Method; import java.util.List; import org.apache.commons.lang.StringUtils; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import com.google.common.base.CaseFormat; import com.google.common.collect.Lists; import com.google.inject.Inject...
2,118
0
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix/fabricator/component
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix/fabricator/component/bind/EnumBinderFactory.java
package com.netflix.fabricator.component.bind; import java.lang.reflect.Method; import com.netflix.fabricator.ConfigurationNode; import com.netflix.fabricator.PropertyBinder; import com.netflix.fabricator.PropertyBinderFactory; public class EnumBinderFactory implements PropertyBinderFactory { private final stati...
2,119
0
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix/fabricator/component
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix/fabricator/component/bind/DynamicIntegerBinderFactory.java
package com.netflix.fabricator.component.bind; import java.lang.reflect.Method; import java.lang.reflect.ParameterizedType; import com.google.common.base.Supplier; import com.netflix.fabricator.ConfigurationNode; import com.netflix.fabricator.PropertyBinder; import com.netflix.fabricator.PropertyBinderFactory; import...
2,120
0
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix/fabricator/component
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix/fabricator/component/bind/DynamicBooleanBinderFactory.java
package com.netflix.fabricator.component.bind; import java.lang.reflect.Method; import java.lang.reflect.ParameterizedType; import com.google.common.base.Supplier; import com.netflix.fabricator.ConfigurationNode; import com.netflix.fabricator.PropertyBinder; import com.netflix.fabricator.PropertyBinderFactory; import...
2,121
0
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix/fabricator/component
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix/fabricator/component/bind/PropertiesBinderFactory.java
package com.netflix.fabricator.component.bind; import java.lang.reflect.Method; import java.util.Properties; import com.netflix.fabricator.ConfigurationNode; import com.netflix.fabricator.PropertyBinder; import com.netflix.fabricator.PropertyBinderFactory; public class PropertiesBinderFactory implements PropertyBind...
2,122
0
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix/fabricator/component
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix/fabricator/component/bind/DynamicLongBinderFactory.java
package com.netflix.fabricator.component.bind; import java.lang.reflect.Method; import java.lang.reflect.ParameterizedType; import com.google.common.base.Supplier; import com.netflix.fabricator.ConfigurationNode; import com.netflix.fabricator.PropertyBinder; import com.netflix.fabricator.PropertyBinderFactory; import...
2,123
0
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix/fabricator/component
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix/fabricator/component/bind/LongBinderFactory.java
package com.netflix.fabricator.component.bind; import java.lang.reflect.Method; import com.netflix.fabricator.ConfigurationNode; import com.netflix.fabricator.PropertyBinder; import com.netflix.fabricator.PropertyBinderFactory; public class LongBinderFactory implements PropertyBinderFactory { private final stati...
2,124
0
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix/fabricator/component
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix/fabricator/component/bind/BooleanBinderFactory.java
package com.netflix.fabricator.component.bind; import java.lang.reflect.Method; import com.netflix.fabricator.ConfigurationNode; import com.netflix.fabricator.PropertyBinder; import com.netflix.fabricator.PropertyBinderFactory; public class BooleanBinderFactory implements PropertyBinderFactory { private final st...
2,125
0
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix/fabricator/component
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix/fabricator/component/bind/DynamicStringBinderFactory.java
package com.netflix.fabricator.component.bind; import java.lang.reflect.Method; import java.lang.reflect.ParameterizedType; import com.google.common.base.Supplier; import com.netflix.fabricator.ConfigurationNode; import com.netflix.fabricator.PropertyBinder; import com.netflix.fabricator.PropertyBinderFactory; import...
2,126
0
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix/fabricator/component
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix/fabricator/component/bind/DoubleBinderFactory.java
package com.netflix.fabricator.component.bind; import java.lang.reflect.Method; import com.netflix.fabricator.ConfigurationNode; import com.netflix.fabricator.PropertyBinder; import com.netflix.fabricator.PropertyBinderFactory; public class DoubleBinderFactory implements PropertyBinderFactory { private final sta...
2,127
0
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix/fabricator/component
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix/fabricator/component/bind/IntegerBinderFactory.java
package com.netflix.fabricator.component.bind; import java.lang.reflect.Method; import com.netflix.fabricator.ConfigurationNode; import com.netflix.fabricator.PropertyBinder; import com.netflix.fabricator.PropertyBinderFactory; public class IntegerBinderFactory implements PropertyBinderFactory { private final s...
2,128
0
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix/fabricator/component
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix/fabricator/component/exception/ComponentNotFoundException.java
package com.netflix.fabricator.component.exception; public class ComponentNotFoundException extends Exception { private static final long serialVersionUID = 5358538299200779367L; public ComponentNotFoundException(String message, Throwable t) { super(message, t); } }
2,129
0
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix/fabricator/component
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix/fabricator/component/exception/ComponentCreationException.java
package com.netflix.fabricator.component.exception; public class ComponentCreationException extends Exception { private static final long serialVersionUID = 7847902103334820478L; public ComponentCreationException(String message) { super(message); } public ComponentCreationException(String messa...
2,130
0
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix/fabricator/component
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix/fabricator/component/exception/ComponentAlreadyExistsException.java
package com.netflix.fabricator.component.exception; public class ComponentAlreadyExistsException extends Exception { private static final long serialVersionUID = -5928460848593945925L; public ComponentAlreadyExistsException(String message) { super(message); } }
2,131
0
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix/fabricator
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix/fabricator/annotations/Default.java
package com.netflix.fabricator.annotations; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; import com.google.inject.BindingAnnotation; @BindingAnnotation @Target({ElementType.FIELD, ElementType.PARAMETER...
2,132
0
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix/fabricator
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix/fabricator/annotations/Type.java
package com.netflix.fabricator.annotations; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * Annotation specifying an interface type and it's type name in configuration files * * @author elandau ...
2,133
0
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix/fabricator
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix/fabricator/annotations/TypeImplementation.java
package com.netflix.fabricator.annotations; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * Annotation specifying a specific subtype. * This is the value used to determine which instance to allocat...
2,134
0
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix/fabricator
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix/fabricator/properties/PropertiesTypeConfigurationResolver.java
package com.netflix.fabricator.properties; import java.util.Map; import java.util.Properties; import javax.inject.Inject; import org.apache.commons.lang.StringUtils; import com.fasterxml.jackson.databind.JsonNode; import com.fasterxml.jackson.databind.ObjectMapper; import com.google.common.base.Joiner; import com.g...
2,135
0
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix/fabricator
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix/fabricator/properties/AbstractPropertiesComponentConfiguration.java
package com.netflix.fabricator.properties; import com.netflix.fabricator.ConfigurationNode; /** * Base source for 'properties' driven configuration where each 'child' * is namespaced by a property prefix * * @author elandau * */ public abstract class AbstractPropertiesComponentConfiguration implements Configu...
2,136
0
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix/fabricator
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix/fabricator/properties/PropertiesComponentConfiguration.java
package com.netflix.fabricator.properties; import com.google.common.base.Function; import com.google.common.base.Joiner; import com.google.common.base.Supplier; import com.netflix.fabricator.ConfigurationNode; import com.netflix.fabricator.supplier.ListenableSupplier; import org.slf4j.Logger; import org.slf4j.LoggerF...
2,137
0
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix/fabricator
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix/fabricator/properties/PropertiesConfigurationModule.java
package com.netflix.fabricator.properties; import java.util.Properties; import com.google.inject.AbstractModule; import com.google.inject.multibindings.MapBinder; import com.netflix.fabricator.ComponentConfigurationResolver; import com.netflix.fabricator.TypeConfigurationResolver; public class PropertiesConfiguratio...
2,138
0
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix/fabricator
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix/fabricator/supplier/SupplierWithDefault.java
package com.netflix.fabricator.supplier; import com.google.common.base.Function; import com.google.common.base.Supplier; import com.google.common.base.Suppliers; import com.netflix.fabricator.supplier.ListenableSupplier; /** * Implementation of a ListenableSupplier that gets it's value from an optional * Listenable...
2,139
0
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix/fabricator
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix/fabricator/supplier/ListenableSupplier.java
package com.netflix.fabricator.supplier; import com.google.common.base.Function; import com.google.common.base.Supplier; /** * Extension to the supplier interface to allow for a notification * callback whenever the value changes. Note that the function * may be called in response to get() or from an underlying up...
2,140
0
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix/fabricator
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix/fabricator/doc/OutputStreamConfigDocumenter.java
package com.netflix.fabricator.doc; import java.util.Map.Entry; import javax.annotation.PostConstruct; import com.google.inject.Binding; import com.google.inject.Inject; import com.google.inject.Injector; import com.google.inject.Key; import com.google.inject.Singleton; import com.google.inject.multibindings.MapBind...
2,141
0
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix/fabricator
Create_ds/fabricator/fabricator-core/src/main/java/com/netflix/fabricator/jackson/JacksonComponentConfiguration.java
package com.netflix.fabricator.jackson; import java.util.Properties; import java.util.Set; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import com.fasterxml.jackson.databind.JsonNode; import com.google.common.base.Function; import com.google.common.base.Preconditions; import com.google.common.base.Suppli...
2,142
0
Create_ds/fabricator/fabricator-guice/src/test/java/com/netflix/fabricator
Create_ds/fabricator/fabricator-guice/src/test/java/com/netflix/fabricator/component/TestBindings.java
package com.netflix.fabricator.component; import java.util.Properties; import org.junit.Assert; import org.junit.Test; import com.google.inject.Guice; import com.google.inject.Injector; import com.google.inject.Key; import com.google.inject.TypeLiteral; import com.netflix.fabricator.annotations.Type; import com.netf...
2,143
0
Create_ds/fabricator/fabricator-guice/src/test/java/com/netflix/fabricator
Create_ds/fabricator/fabricator-guice/src/test/java/com/netflix/fabricator/component/TestLifecycle.java
package com.netflix.fabricator.component; import java.util.Properties; import org.junit.Assert; import org.junit.Test; import com.google.inject.Guice; import com.google.inject.Injector; import com.google.inject.Key; import com.google.inject.TypeLiteral; import com.netflix.fabricator.component.exception.ComponentAlre...
2,144
0
Create_ds/fabricator/fabricator-guice/src/test/java/com/netflix/fabricator
Create_ds/fabricator/fabricator-guice/src/test/java/com/netflix/fabricator/component/NoImplementationTest.java
package com.netflix.fabricator.component; import java.util.Properties; import org.junit.Assert; import org.junit.Test; import com.google.inject.Guice; import com.google.inject.Injector; import com.google.inject.Key; import com.google.inject.TypeLiteral; import com.netflix.fabricator.annotations.Type; import com.netf...
2,145
0
Create_ds/fabricator/fabricator-guice/src/test/java/com/netflix/fabricator
Create_ds/fabricator/fabricator-guice/src/test/java/com/netflix/fabricator/component/SimpleComponent.java
package com.netflix.fabricator.component; import java.util.Properties; import javax.annotation.PostConstruct; import javax.annotation.PreDestroy; import com.netflix.fabricator.annotations.Type; @Type("simple") public class SimpleComponent { public static class Builder { private String str = null; ...
2,146
0
Create_ds/fabricator/fabricator-guice/src/test/java/com/netflix/fabricator
Create_ds/fabricator/fabricator-guice/src/test/java/com/netflix/fabricator/component/TestJsonValue.java
package com.netflix.fabricator.component; import java.util.Properties; import org.junit.Assert; import org.junit.Test; import com.google.inject.Guice; import com.google.inject.Injector; import com.google.inject.Key; import com.google.inject.TypeLiteral; import com.netflix.fabricator.annotations.Type; import com.netf...
2,147
0
Create_ds/fabricator/fabricator-guice/src/main/java/com/netflix/fabricator
Create_ds/fabricator/fabricator-guice/src/main/java/com/netflix/fabricator/guice/GuiceBindingComponentFactoryProvider.java
package com.netflix.fabricator.guice; import java.lang.reflect.Method; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import com.google.inject.Inject; import com.google.inject.Injector; import com.google.inject.spi.BindingTargetVisitor; import com.google.inject.spi.ProviderInstanceBinding; import com.googl...
2,148
0
Create_ds/fabricator/fabricator-guice/src/main/java/com/netflix/fabricator
Create_ds/fabricator/fabricator-guice/src/main/java/com/netflix/fabricator/guice/ComponentModuleBuilder.java
package com.netflix.fabricator.guice; import java.lang.reflect.Modifier; import java.util.Map; import java.util.Map.Entry; import java.util.Set; import com.google.common.base.Preconditions; import com.google.common.collect.Maps; import com.google.common.collect.Sets; import com.google.inject.AbstractModule; import co...
2,149
0
Create_ds/fabricator/fabricator-guice/src/main/java/com/netflix/fabricator
Create_ds/fabricator/fabricator-guice/src/main/java/com/netflix/fabricator/guice/NamedInstanceProvider.java
package com.netflix.fabricator.guice; import com.google.inject.Inject; import com.google.inject.Injector; import com.google.inject.Key; import com.google.inject.TypeLiteral; import com.google.inject.spi.BindingTargetVisitor; import com.google.inject.spi.ProviderInstanceBinding; import com.google.inject.spi.ProviderWit...
2,150
0
Create_ds/fabricator/fabricator-guice/src/main/java/com/netflix/fabricator
Create_ds/fabricator/fabricator-guice/src/main/java/com/netflix/fabricator/guice/ComponentFactoryFactoryProvider.java
package com.netflix.fabricator.guice; import com.google.inject.Inject; import com.google.inject.Injector; import com.google.inject.spi.BindingTargetVisitor; import com.google.inject.spi.ProviderInstanceBinding; import com.google.inject.spi.ProviderWithExtensionVisitor; import com.google.inject.spi.Toolable; import com...
2,151
0
Create_ds/fabricator/fabricator-guice/src/main/java/com/netflix/fabricator
Create_ds/fabricator/fabricator-guice/src/main/java/com/netflix/fabricator/guice/SettableInjector.java
package com.netflix.fabricator.guice; import java.lang.annotation.Annotation; import java.util.List; import java.util.Map; import java.util.Set; import com.google.inject.Binding; import com.google.inject.Injector; import com.google.inject.Key; import com.google.inject.MembersInjector; import com.google.inject.Module;...
2,152
0
Create_ds/fabricator/fabricator-guice/src/main/java/com/netflix/fabricator/guice
Create_ds/fabricator/fabricator-guice/src/main/java/com/netflix/fabricator/guice/mapping/EmbeddedComponentFactoryBinding.java
package com.netflix.fabricator.guice.mapping; import com.google.inject.Binding; import com.google.inject.Injector; import com.google.inject.Key; import com.google.inject.util.Types; import com.netflix.fabricator.ConfigurationNode; import com.netflix.fabricator.component.ComponentFactory; import java.lang.reflect.Meth...
2,153
0
Create_ds/fabricator/fabricator-guice/src/main/java/com/netflix/fabricator/guice
Create_ds/fabricator/fabricator-guice/src/main/java/com/netflix/fabricator/guice/mapping/PropertyInjectionStrategy.java
package com.netflix.fabricator.guice.mapping; import com.netflix.fabricator.ConfigurationNode; /** * Created by hyuan on 1/16/14. */ public interface PropertyInjectionStrategy { PropertyInjectionStrategy addStrategy(BindingReslove concretePropertyInjectionImpl); boolean execute(String name, Object targetObj...
2,154
0
Create_ds/fabricator/fabricator-guice/src/main/java/com/netflix/fabricator/guice
Create_ds/fabricator/fabricator-guice/src/main/java/com/netflix/fabricator/guice/mapping/CompositeNoExistingBinding.java
package com.netflix.fabricator.guice.mapping; import com.google.common.base.Preconditions; import com.google.inject.Injector; import com.netflix.fabricator.BindingComponentFactory; import com.netflix.fabricator.ConfigurationNode; import java.lang.reflect.Method; /** * Created by hyuan on 1/17/14. */ public class C...
2,155
0
Create_ds/fabricator/fabricator-guice/src/main/java/com/netflix/fabricator/guice
Create_ds/fabricator/fabricator-guice/src/main/java/com/netflix/fabricator/guice/mapping/PropertyInjection.java
package com.netflix.fabricator.guice.mapping; import com.google.common.base.Preconditions; import com.google.common.collect.Lists; import com.google.inject.Injector; import com.netflix.fabricator.ConfigurationNode; import java.lang.reflect.Method; import java.util.List; /** * Created by hyuan on 1/16/14. */ public...
2,156
0
Create_ds/fabricator/fabricator-guice/src/main/java/com/netflix/fabricator/guice
Create_ds/fabricator/fabricator-guice/src/main/java/com/netflix/fabricator/guice/mapping/NamedBinding.java
package com.netflix.fabricator.guice.mapping; import com.google.inject.Binding; import com.google.inject.Injector; import com.google.inject.Key; import com.google.inject.name.Names; import com.netflix.fabricator.ConfigurationNode; import java.lang.reflect.Method; import java.lang.reflect.Type; /** * Look for a name...
2,157
0
Create_ds/fabricator/fabricator-guice/src/main/java/com/netflix/fabricator/guice
Create_ds/fabricator/fabricator-guice/src/main/java/com/netflix/fabricator/guice/mapping/EmbeddedComponentManagerBinding.java
package com.netflix.fabricator.guice.mapping; import java.lang.reflect.Method; import com.google.inject.Binding; import com.google.inject.Injector; import com.google.inject.Key; import com.google.inject.TypeLiteral; import com.google.inject.util.Types; import com.netflix.fabricator.ConfigurationNode; import com.netfl...
2,158
0
Create_ds/fabricator/fabricator-guice/src/main/java/com/netflix/fabricator/guice
Create_ds/fabricator/fabricator-guice/src/main/java/com/netflix/fabricator/guice/mapping/ComponentFactoryBinding.java
package com.netflix.fabricator.guice.mapping; import java.lang.reflect.Method; import java.lang.reflect.ParameterizedType; import java.util.Map; import com.google.inject.Binding; import com.google.inject.Injector; import com.google.inject.Key; import com.google.inject.Provider; import com.google.inject.TypeLiteral; i...
2,159
0
Create_ds/fabricator/fabricator-guice/src/main/java/com/netflix/fabricator/guice
Create_ds/fabricator/fabricator-guice/src/main/java/com/netflix/fabricator/guice/mapping/BindingReslove.java
package com.netflix.fabricator.guice.mapping; import com.google.inject.Injector; import com.netflix.fabricator.ConfigurationNode; import java.lang.reflect.Method; /** * Created by hyuan on 1/16/14. */ public interface BindingReslove { boolean execute(String name, Object obj, ConfigurationNode config, Class<?> ...
2,160
0
Create_ds/fabricator/fabricator-guice/src/main/java/com/netflix/fabricator/guice
Create_ds/fabricator/fabricator-guice/src/main/java/com/netflix/fabricator/guice/mapping/EmbeddedMapToComponentFactoryBinding.java
package com.netflix.fabricator.guice.mapping; import com.google.inject.Binding; import com.google.inject.Injector; import com.google.inject.Key; import com.google.inject.TypeLiteral; import com.google.inject.util.Types; import com.netflix.fabricator.ConfigurationNode; import com.netflix.fabricator.component.ComponentF...
2,161
0
Create_ds/fabricator/fabricator-guice/src/main/java/com/netflix/fabricator/guice
Create_ds/fabricator/fabricator-guice/src/main/java/com/netflix/fabricator/guice/mapping/NamedMapBinding.java
package com.netflix.fabricator.guice.mapping; import com.google.inject.Binding; import com.google.inject.Injector; import com.google.inject.Key; import com.google.inject.TypeLiteral; import com.google.inject.util.Types; import com.netflix.fabricator.ConfigurationNode; import java.lang.reflect.Method; import java.util...
2,162
0
Create_ds/fabricator/fabricator-guice/src/main/java/com/netflix/fabricator/guice
Create_ds/fabricator/fabricator-guice/src/main/java/com/netflix/fabricator/guice/mapping/NamedComponentManagerBinding.java
package com.netflix.fabricator.guice.mapping; import com.google.inject.Binding; import com.google.inject.Injector; import com.google.inject.Key; import com.google.inject.TypeLiteral; import com.google.inject.util.Types; import com.netflix.fabricator.ConfigurationNode; import com.netflix.fabricator.component.ComponentM...
2,163
0
Create_ds/runtime-health/health-api/src/test/java/com/netflix/runtime/health
Create_ds/runtime-health/health-api/src/test/java/com/netflix/runtime/health/api/HealthBuilderTest.java
/** * Copyright 2016 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in 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 ...
2,164
0
Create_ds/runtime-health/health-api/src/test/java/com/netflix/runtime/health
Create_ds/runtime-health/health-api/src/test/java/com/netflix/runtime/health/api/IndicatorMatchersTest.java
/** * Copyright 2016 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in 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 ...
2,165
0
Create_ds/runtime-health/health-api/src/main/java/com/netflix/runtime/health
Create_ds/runtime-health/health-api/src/main/java/com/netflix/runtime/health/api/HealthIndicatorCallback.java
/** * Copyright 2016 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in 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 ...
2,166
0
Create_ds/runtime-health/health-api/src/main/java/com/netflix/runtime/health
Create_ds/runtime-health/health-api/src/main/java/com/netflix/runtime/health/api/IndicatorMatchers.java
/** * Copyright 2016 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in 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 ...
2,167
0
Create_ds/runtime-health/health-api/src/main/java/com/netflix/runtime/health
Create_ds/runtime-health/health-api/src/main/java/com/netflix/runtime/health/api/HealthCheckAggregator.java
/** * Copyright 2016 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in 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 ...
2,168
0
Create_ds/runtime-health/health-api/src/main/java/com/netflix/runtime/health
Create_ds/runtime-health/health-api/src/main/java/com/netflix/runtime/health/api/IndicatorMatcher.java
/** * Copyright 2016 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in 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 ...
2,169
0
Create_ds/runtime-health/health-api/src/main/java/com/netflix/runtime/health
Create_ds/runtime-health/health-api/src/main/java/com/netflix/runtime/health/api/HealthCheckStatus.java
/** * Copyright 2016 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in 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 ...
2,170
0
Create_ds/runtime-health/health-api/src/main/java/com/netflix/runtime/health
Create_ds/runtime-health/health-api/src/main/java/com/netflix/runtime/health/api/Health.java
/** * Copyright 2016 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in 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 ...
2,171
0
Create_ds/runtime-health/health-api/src/main/java/com/netflix/runtime/health
Create_ds/runtime-health/health-api/src/main/java/com/netflix/runtime/health/api/HealthIndicator.java
/** * Copyright 2016 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in 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 ...
2,172
0
Create_ds/runtime-health/health-guice/src/test/java/com/netflix/runtime/health
Create_ds/runtime-health/health-guice/src/test/java/com/netflix/runtime/health/guice/HealthModuleTest.java
/** * Copyright 2016 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in 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 ...
2,173
0
Create_ds/runtime-health/health-guice/src/main/java/com/netflix/runtime/health
Create_ds/runtime-health/health-guice/src/main/java/com/netflix/runtime/health/guice/HealthModule.java
/** * Copyright 2016 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in 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 ...
2,174
0
Create_ds/runtime-health/health-guice/src/main/java/com/netflix/runtime/health
Create_ds/runtime-health/health-guice/src/main/java/com/netflix/runtime/health/guice/HealthAggregatorConfiguration.java
/** * Copyright 2016 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in 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 ...
2,175
0
Create_ds/runtime-health/health-integrations/src/test/java/com/netflix/runtime/health
Create_ds/runtime-health/health-integrations/src/test/java/com/netflix/runtime/health/eureka/EurekaHealthStatusBridgeModuleTest.java
/** * Copyright 2016 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in 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 ...
2,176
0
Create_ds/runtime-health/health-integrations/src/test/java/com/netflix/runtime/health
Create_ds/runtime-health/health-integrations/src/test/java/com/netflix/runtime/health/status/ArchaiusHealthStatusFilterModuleTest.java
/** * Copyright 2016 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in 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 ...
2,177
0
Create_ds/runtime-health/health-integrations/src/main/java/com/netflix/runtime/health
Create_ds/runtime-health/health-integrations/src/main/java/com/netflix/runtime/health/servlet/HealthStatusServlet.java
/** * Copyright 2016 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in 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 ...
2,178
0
Create_ds/runtime-health/health-integrations/src/main/java/com/netflix/runtime/health
Create_ds/runtime-health/health-integrations/src/main/java/com/netflix/runtime/health/eureka/EurekaStatusChangeEvent.java
package com.netflix.runtime.health.eureka; import com.netflix.appinfo.InstanceInfo.InstanceStatus; import com.netflix.discovery.StatusChangeEvent; import com.netflix.governator.event.ApplicationEvent; public class EurekaStatusChangeEvent extends StatusChangeEvent implements ApplicationEvent { public EurekaStatusC...
2,179
0
Create_ds/runtime-health/health-integrations/src/main/java/com/netflix/runtime/health
Create_ds/runtime-health/health-integrations/src/main/java/com/netflix/runtime/health/eureka/HealthAggregatorEurekaHealthCheckHandler.java
package com.netflix.runtime.health.eureka; import com.netflix.appinfo.HealthCheckHandler; import com.netflix.appinfo.InstanceInfo.InstanceStatus; import com.netflix.runtime.health.api.HealthCheckAggregator; import com.netflix.runtime.health.api.HealthCheckStatus; import com.netflix.runtime.health.api.IndicatorMatcher;...
2,180
0
Create_ds/runtime-health/health-integrations/src/main/java/com/netflix/runtime/health
Create_ds/runtime-health/health-integrations/src/main/java/com/netflix/runtime/health/eureka/EurekaHealthStatusBridgeModule.java
/** * Copyright 2016 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in 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 ...
2,181
0
Create_ds/runtime-health/health-integrations/src/main/java/com/netflix/runtime/health
Create_ds/runtime-health/health-integrations/src/main/java/com/netflix/runtime/health/status/HealthStatusInclusionConfiguration.java
/** * Copyright 2016 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in 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 ...
2,182
0
Create_ds/runtime-health/health-integrations/src/main/java/com/netflix/runtime/health
Create_ds/runtime-health/health-integrations/src/main/java/com/netflix/runtime/health/status/ArchaiusHealthStatusFilterModule.java
/** * Copyright 2016 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in 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 ...
2,183
0
Create_ds/runtime-health/health-core/src/test/java/com/netflix/runtime/health
Create_ds/runtime-health/health-core/src/test/java/com/netflix/runtime/health/core/SimpleHealthCheckAggregatorMetricsTest.java
/** * Copyright 2016 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in 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 ...
2,184
0
Create_ds/runtime-health/health-core/src/test/java/com/netflix/runtime/health
Create_ds/runtime-health/health-core/src/test/java/com/netflix/runtime/health/core/SimpleHealthCheckAggregatorTest.java
/** * Copyright 2016 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in 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 ...
2,185
0
Create_ds/runtime-health/health-core/src/test/java/com/netflix/runtime/health
Create_ds/runtime-health/health-core/src/test/java/com/netflix/runtime/health/core/SimpleHealthCheckAggregatorEventsTest.java
/** * Copyright 2016 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in 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 ...
2,186
0
Create_ds/runtime-health/health-core/src/test/java/com/netflix/runtime/health/core
Create_ds/runtime-health/health-core/src/test/java/com/netflix/runtime/health/core/caching/DefaultCachingHealthCheckAggregatorTest.java
/** * Copyright 2016 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in 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 ...
2,187
0
Create_ds/runtime-health/health-core/src/test/java/com/netflix/runtime/health/core
Create_ds/runtime-health/health-core/src/test/java/com/netflix/runtime/health/core/caching/CachingHealthIndicatorTest.java
/** * Copyright 2016 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in w...
2,188
0
Create_ds/runtime-health/health-core/src/main/java/com/netflix/runtime/health
Create_ds/runtime-health/health-core/src/main/java/com/netflix/runtime/health/core/HealthCheckStatusChangedEvent.java
/** * Copyright 2016 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in 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 ...
2,189
0
Create_ds/runtime-health/health-core/src/main/java/com/netflix/runtime/health
Create_ds/runtime-health/health-core/src/main/java/com/netflix/runtime/health/core/SimpleHealthCheckAggregator.java
/** * Copyright 2016 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in 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 ...
2,190
0
Create_ds/runtime-health/health-core/src/main/java/com/netflix/runtime/health/core
Create_ds/runtime-health/health-core/src/main/java/com/netflix/runtime/health/core/caching/CachingHealthIndicator.java
/** * Copyright 2016 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in w...
2,191
0
Create_ds/runtime-health/health-core/src/main/java/com/netflix/runtime/health/core
Create_ds/runtime-health/health-core/src/main/java/com/netflix/runtime/health/core/caching/DefaultCachingHealthCheckAggregator.java
/** * Copyright 2016 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in 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 ...
2,192
0
Create_ds/PigPen/pigpen-parquet/src/main/java/pigpen
Create_ds/PigPen/pigpen-parquet/src/main/java/pigpen/parquet/PigPenParquetWriteSupport.java
/* * * Copyright 2015 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by ap...
2,193
0
Create_ds/PigPen/pigpen-cascading/src/main/java/pigpen
Create_ds/PigPen/pigpen-cascading/src/main/java/pigpen/cascading/OperationUtil.java
/* * * Copyright 2015 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by ap...
2,194
0
Create_ds/PigPen/pigpen-cascading/src/main/java/pigpen
Create_ds/PigPen/pigpen-cascading/src/main/java/pigpen/cascading/InduceSentinelNils.java
/* * * Copyright 2015 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by ap...
2,195
0
Create_ds/PigPen/pigpen-cascading/src/main/java/pigpen
Create_ds/PigPen/pigpen-cascading/src/main/java/pigpen/cascading/SingleIterationSeq.java
/* * * Copyright 2015 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by ap...
2,196
0
Create_ds/PigPen/pigpen-cascading/src/main/java/pigpen
Create_ds/PigPen/pigpen-cascading/src/main/java/pigpen/cascading/PigPenFunction.java
/* * * Copyright 2015 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by ap...
2,197
0
Create_ds/PigPen/pigpen-cascading/src/main/java/pigpen
Create_ds/PigPen/pigpen-cascading/src/main/java/pigpen/cascading/RankBuffer.java
/* * * Copyright 2015 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by ap...
2,198
0
Create_ds/PigPen/pigpen-cascading/src/main/java/pigpen
Create_ds/PigPen/pigpen-cascading/src/main/java/pigpen/cascading/GroupBuffer.java
/* * * Copyright 2015 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by ap...
2,199