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/suro/suro-core/src/main/java/com/netflix/suro/routing | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing/filter/TimeUtil.java | package com.netflix.suro.routing.filter;
import org.joda.time.format.DateTimeFormat;
import org.joda.time.format.DateTimeFormatter;
public class TimeUtil {
/**
* Converts the given time format string to a {@link org.joda.time.format.DateTimeFormatter} instance.
*
* @param formatName A name used to identify th... | 1,500 |
0 | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing/filter/PathExistsMessageFilter.java | package com.netflix.suro.routing.filter;
import org.apache.commons.jxpath.JXPathContext;
import org.apache.commons.jxpath.Pointer;
import org.apache.commons.jxpath.ri.model.beans.NullPointer;
public class PathExistsMessageFilter extends BaseMessageFilter {
private String xpath;
public PathExistsMessageFilter(Stri... | 1,501 |
0 | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing/filter/OrMessageFilter.java | package com.netflix.suro.routing.filter;
import com.google.common.base.Predicate;
import com.google.common.base.Predicates;
public class OrMessageFilter extends BaseMessageFilter {
final private Predicate<Object> orPredicate;
public OrMessageFilter(MessageFilter... filters) {
this.orPredicate = Predicate... | 1,502 |
0 | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing/filter/AlwaysFalseMessageFilter.java | package com.netflix.suro.routing.filter;
final public class AlwaysFalseMessageFilter extends BaseMessageFilter {
// There's no point of creating multiple instance of this class
private AlwaysFalseMessageFilter(){
setOriginalDslString("false");
}
@Override
public boolean apply(Object input) {
... | 1,503 |
0 | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing/filter/MessageFilter.java | package com.netflix.suro.routing.filter;
import com.google.common.base.Predicate;
/**
* A contract for filtering events. These filters can be applied/defined both at the publisher and subscriber level.<p/>
* It is recommended to use a filter language as specified in {@link com.netflix.suro.routing.filter.lang} whic... | 1,504 |
0 | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing/filter/NullValuePredicate.java | package com.netflix.suro.routing.filter;
/**
* This predicate returns true if its input is null. That is, it identifies
* null object.
*
*/
final public class NullValuePredicate implements ValuePredicate{
private static final byte KEY = 0x00;
private NullValuePredicate(){}
@Override
public boolean... | 1,505 |
0 | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing/filter/TimeMillisValuePredicate.java | package com.netflix.suro.routing.filter;
import org.joda.time.format.DateTimeFormatter;
import javax.annotation.Nullable;
public class TimeMillisValuePredicate implements ValuePredicate<Long> {
private String timeFormat;
private String value;
private String fnName;
private NumericValuePredicate longPredicate;... | 1,506 |
0 | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing/filter/StringValuePredicate.java | package com.netflix.suro.routing.filter;
import com.google.common.base.Objects;
import javax.annotation.Nullable;
public class StringValuePredicate implements ValuePredicate<String> {
private String value;
public StringValuePredicate(@Nullable String value){
this.value = value;
}
@Override
public boole... | 1,507 |
0 | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing/filter/PathValuePredicate.java | package com.netflix.suro.routing.filter;
import com.google.common.base.Objects;
import org.apache.commons.jxpath.JXPathContext;
import javax.annotation.Nullable;
public class PathValuePredicate implements ValuePredicate<String> {
private String valueXpath;
private String inputXpath;
public PathValuePredicate(... | 1,508 |
0 | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing/filter | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing/filter/lang/FilterLanguageSupport.java | package com.netflix.suro.routing.filter.lang;
import com.netflix.suro.routing.filter.MessageFilter;
/**
* General contract for any filter language which relates to a methodology of converting a language expression to a
* valid {@link com.netflix.suro.routing.filter.MessageFilter} instance consumable by {@link com.n... | 1,509 |
0 | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing/filter | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing/filter/lang/MessageFilterParser.java | // $ANTLR 3.4 MessageFilter.g 2012-08-22 11:55:58
package com.netflix.suro.routing.filter.lang;
import org.antlr.runtime.*;
import org.antlr.runtime.tree.*;
@SuppressWarnings({"all", "warnings", "unchecked"})
public class MessageFilterParser extends Parser {
public static final String[] tokenNames = new String... | 1,510 |
0 | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing/filter | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing/filter/lang/BetweenTimeMillisTreeNode.java | package com.netflix.suro.routing.filter.lang;
import com.netflix.suro.routing.filter.*;
import org.antlr.runtime.Token;
import org.antlr.runtime.tree.Tree;
public class BetweenTimeMillisTreeNode extends MessageFilterBaseTreeNode implements MessageFilterTranslatable {
@Override
public MessageFilter translate() {
... | 1,511 |
0 | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing/filter | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing/filter/lang/NullValueTreeNode.java | package com.netflix.suro.routing.filter.lang;
import org.antlr.runtime.Token;
import org.antlr.runtime.tree.Tree;
public class NullValueTreeNode extends MessageFilterBaseTreeNode implements ValueTreeNode {
@Override
public Object getValue() {
return null;
}
public NullValueTreeNode(Token t) {
super(t);
... | 1,512 |
0 | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing/filter | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing/filter/lang/TreeNodeUtil.java | package com.netflix.suro.routing.filter.lang;
import org.antlr.runtime.tree.Tree;
class TreeNodeUtil {
private TreeNodeUtil(){}
public static String getXPath(Tree pathNode) {
ValueTreeNode xpathNode = (ValueTreeNode)pathNode;
return (String)xpathNode.getValue();
}
}
| 1,513 |
0 | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing/filter | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing/filter/lang/UnexpectedTokenException.java | package com.netflix.suro.routing.filter.lang;
import com.google.common.base.Joiner;
import org.antlr.runtime.tree.Tree;
public class UnexpectedTokenException extends RuntimeException {
private Tree unexpected;
private String[] expected;
private Joiner joiner = Joiner.on(" or ");
public UnexpectedTokenException(Tr... | 1,514 |
0 | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing/filter | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing/filter/lang/NumericInTreeNode.java | package com.netflix.suro.routing.filter.lang;
import com.google.common.base.Function;
import com.google.common.collect.Lists;
import com.netflix.suro.routing.filter.MessageFilter;
import com.netflix.suro.routing.filter.MessageFilters;
import com.netflix.suro.routing.filter.NumericValuePredicate;
import com.netflix.sur... | 1,515 |
0 | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing/filter | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing/filter/lang/BetweenTimeStringTreeNode.java | package com.netflix.suro.routing.filter.lang;
import com.netflix.suro.routing.filter.*;
import org.antlr.runtime.Token;
import org.antlr.runtime.tree.Tree;
public class BetweenTimeStringTreeNode extends MessageFilterBaseTreeNode implements MessageFilterTranslatable {
@Override
public MessageFilter translate() {
... | 1,516 |
0 | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing/filter | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing/filter/lang/InvalidFilterException.java | package com.netflix.suro.routing.filter.lang;
/**
* A generic exception representing an invalid filter expression.
*
* @author Nitesh Kant (nkant@netflix.com)
*/
public class InvalidFilterException extends Exception {
private static final long serialVersionUID = -5878696854757828678L;
private Object filt... | 1,517 |
0 | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing/filter | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing/filter/lang/TimeMillisValueTreeNode.java | package com.netflix.suro.routing.filter.lang;
import org.antlr.runtime.Token;
import org.antlr.runtime.tree.Tree;
public class TimeMillisValueTreeNode extends MessageFilterBaseTreeNode implements ValueTreeNode {
@Override
public String getValue() {
return (String)((ValueTreeNode)getChild(1)).getValue();
}
pu... | 1,518 |
0 | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing/filter | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing/filter/lang/NullTreeNode.java | package com.netflix.suro.routing.filter.lang;
import com.netflix.suro.routing.filter.NullValuePredicate;
import com.netflix.suro.routing.filter.PathValueMessageFilter;
import com.netflix.suro.routing.filter.MessageFilter;
import org.antlr.runtime.Token;
import org.antlr.runtime.tree.Tree;
import static com.netflix.su... | 1,519 |
0 | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing/filter | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing/filter/lang/ValueTreeNode.java | package com.netflix.suro.routing.filter.lang;
public interface ValueTreeNode {
public Object getValue();
}
| 1,520 |
0 | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing/filter | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing/filter/lang/XPathTreeNode.java | package com.netflix.suro.routing.filter.lang;
import org.antlr.runtime.Token;
import org.antlr.runtime.tree.Tree;
public class XPathTreeNode extends MessageFilterBaseTreeNode implements ValueTreeNode {
@Override
public Object getValue() {
return getChild(0).getText();
}
public XPathTreeNode(Token t) {
super... | 1,521 |
0 | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing/filter | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing/filter/lang/StringInTreeNode.java | package com.netflix.suro.routing.filter.lang;
import com.google.common.base.Function;
import com.google.common.collect.Lists;
import com.netflix.suro.routing.filter.MessageFilters;
import com.netflix.suro.routing.filter.MessageFilter;
import com.netflix.suro.routing.filter.PathValueMessageFilter;
import com.netflix.su... | 1,522 |
0 | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing/filter | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing/filter/lang/MessageFilterParsingException.java | package com.netflix.suro.routing.filter.lang;
public class MessageFilterParsingException extends RuntimeException {
public MessageFilterParsingException(String msg, Throwable cause){
super(msg, cause);
}
}
| 1,523 |
0 | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing/filter | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing/filter/lang/MatchesTreeNode.java | package com.netflix.suro.routing.filter.lang;
import com.netflix.suro.routing.filter.PathValueMessageFilter;
import com.netflix.suro.routing.filter.RegexValuePredicate;
import com.netflix.suro.routing.filter.MessageFilter;
import org.antlr.runtime.Token;
import org.antlr.runtime.tree.Tree;
import static com.netflix.s... | 1,524 |
0 | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing/filter | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing/filter/lang/NotEqualsTreeNode.java | package com.netflix.suro.routing.filter.lang;
import com.netflix.suro.routing.filter.MessageFilters;
import com.netflix.suro.routing.filter.MessageFilter;
import org.antlr.runtime.Token;
import org.antlr.runtime.tree.Tree;
public class NotEqualsTreeNode extends EqualityComparisonBaseTreeNode implements MessageFilter... | 1,525 |
0 | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing/filter | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing/filter/lang/EqualsTreeNode.java | package com.netflix.suro.routing.filter.lang;
import com.netflix.suro.routing.filter.MessageFilter;
import org.antlr.runtime.Token;
import org.antlr.runtime.tree.Tree;
public class EqualsTreeNode extends EqualityComparisonBaseTreeNode implements MessageFilterTranslatable {
@Override
public MessageFilter translate(... | 1,526 |
0 | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing/filter | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing/filter/lang/TimeStringValueTreeNode.java | package com.netflix.suro.routing.filter.lang;
import org.antlr.runtime.Token;
import org.antlr.runtime.tree.Tree;
public class TimeStringValueTreeNode extends MessageFilterBaseTreeNode implements ValueTreeNode {
@Override
public String getValue() {
return (String)((ValueTreeNode)getChild(2)).getValue();
}
pu... | 1,527 |
0 | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing/filter | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing/filter/lang/NotTreeNode.java | package com.netflix.suro.routing.filter.lang;
import com.netflix.suro.routing.filter.MessageFilters;
import com.netflix.suro.routing.filter.MessageFilter;
import org.antlr.runtime.Token;
import org.antlr.runtime.tree.Tree;
public class NotTreeNode extends MessageFilterBaseTreeNode implements MessageFilterTranslatable... | 1,528 |
0 | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing/filter | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing/filter/lang/EqualityComparisonBaseTreeNode.java | package com.netflix.suro.routing.filter.lang;
import com.netflix.suro.routing.filter.*;
import org.antlr.runtime.Token;
import org.antlr.runtime.tree.Tree;
import static com.netflix.suro.routing.filter.lang.MessageFilterParser.*;
import static com.netflix.suro.routing.filter.lang.TreeNodeUtil.getXPath;
public abstra... | 1,529 |
0 | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing/filter | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing/filter/lang/StringTreeNode.java | package com.netflix.suro.routing.filter.lang;
import org.antlr.runtime.Token;
import org.antlr.runtime.tree.Tree;
public class StringTreeNode extends MessageFilterBaseTreeNode implements ValueTreeNode {
@Override
public String getValue() {
return getText();
}
public StringTreeNode(Token t) {
super(t);
}
... | 1,530 |
0 | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing/filter | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing/filter/lang/TrueValueTreeNode.java | package com.netflix.suro.routing.filter.lang;
import com.netflix.suro.routing.filter.MessageFilters;
import com.netflix.suro.routing.filter.MessageFilter;
import org.antlr.runtime.Token;
import org.antlr.runtime.tree.Tree;
public class TrueValueTreeNode extends MessageFilterBaseTreeNode implements MessageFilterTransl... | 1,531 |
0 | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing/filter | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing/filter/lang/MessageFilterTranslatable.java | package com.netflix.suro.routing.filter.lang;
import com.netflix.suro.routing.filter.MessageFilter;
public interface MessageFilterTranslatable {
public MessageFilter translate();
}
| 1,532 |
0 | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing/filter | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing/filter/lang/BetweenTreeNode.java | package com.netflix.suro.routing.filter.lang;
import com.netflix.suro.routing.filter.*;
import org.antlr.runtime.Token;
import org.antlr.runtime.tree.Tree;
public class BetweenTreeNode extends MessageFilterBaseTreeNode implements MessageFilterTranslatable {
@Override
public MessageFilter translate() {
ValueTree... | 1,533 |
0 | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing/filter | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing/filter/lang/MessageFilterBaseTreeNode.java | package com.netflix.suro.routing.filter.lang;
import org.antlr.runtime.Token;
import org.antlr.runtime.tree.CommonTree;
public abstract class MessageFilterBaseTreeNode extends CommonTree {
public MessageFilterBaseTreeNode(Token t) {
super(t);
}
public MessageFilterBaseTreeNode(MessageFilterBaseTreeNode node) {... | 1,534 |
0 | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing/filter | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing/filter/lang/MessageFilterLexer.java | // $ANTLR 3.4 MessageFilter.g 2012-08-22 11:55:59
package com.netflix.suro.routing.filter.lang;
import org.antlr.runtime.*;
@SuppressWarnings({"all", "warnings", "unchecked"})
public class MessageFilterLexer extends Lexer {
public static final int EOF=-1;
public static final int T__33=33;
public static ... | 1,535 |
0 | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing/filter | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing/filter/lang/NumberTreeNode.java | package com.netflix.suro.routing.filter.lang;
import org.antlr.runtime.Token;
import org.antlr.runtime.tree.Tree;
public class NumberTreeNode extends MessageFilterBaseTreeNode implements ValueTreeNode {
@Override
public Number getValue() {
return Double.valueOf(getText());
}
public NumberTreeNode(Token t) {
... | 1,536 |
0 | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing/filter | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing/filter/lang/AndTreeNode.java | package com.netflix.suro.routing.filter.lang;
import com.google.common.base.Function;
import com.google.common.collect.Lists;
import com.netflix.suro.routing.filter.MessageFilters;
import com.netflix.suro.routing.filter.MessageFilter;
import org.antlr.runtime.Token;
import org.antlr.runtime.tree.Tree;
public class A... | 1,537 |
0 | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing/filter | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing/filter/lang/ComparableTreeNode.java | package com.netflix.suro.routing.filter.lang;
import com.netflix.suro.routing.filter.*;
import org.antlr.runtime.Token;
import org.antlr.runtime.tree.Tree;
import static com.netflix.suro.routing.filter.lang.TreeNodeUtil.getXPath;
import static com.netflix.suro.routing.filter.lang.MessageFilterParser.*;
public class ... | 1,538 |
0 | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing/filter | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing/filter/lang/OrTreeNode.java | package com.netflix.suro.routing.filter.lang;
import com.google.common.base.Function;
import com.google.common.collect.Lists;
import com.netflix.suro.routing.filter.MessageFilters;
import com.netflix.suro.routing.filter.MessageFilter;
import org.antlr.runtime.Token;
import org.antlr.runtime.tree.CommonTree;
import org... | 1,539 |
0 | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing/filter | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing/filter/lang/FalseValueTreeNode.java | package com.netflix.suro.routing.filter.lang;
import com.netflix.suro.routing.filter.MessageFilters;
import com.netflix.suro.routing.filter.MessageFilter;
import org.antlr.runtime.Token;
import org.antlr.runtime.tree.Tree;
public class FalseValueTreeNode extends MessageFilterBaseTreeNode implements ValueTreeNode, Mes... | 1,540 |
0 | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing/filter | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/routing/filter/lang/ExistsTreeNode.java | package com.netflix.suro.routing.filter.lang;
import com.netflix.suro.routing.filter.PathExistsMessageFilter;
import com.netflix.suro.routing.filter.MessageFilter;
import org.antlr.runtime.Token;
import org.antlr.runtime.tree.Tree;
import static com.netflix.suro.routing.filter.lang.TreeNodeUtil.getXPath;
public clas... | 1,541 |
0 | Create_ds/suro/suro-core/src/main/java/com/netflix/suro | Create_ds/suro/suro-core/src/main/java/com/netflix/suro/jackson/DefaultObjectMapper.java | /*
* Copyright 2013 Netflix, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in 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 ... | 1,542 |
0 | Create_ds/suro/suro-kafka-consumer/src/test/java/com/netflix/suro/input | Create_ds/suro/suro-kafka-consumer/src/test/java/com/netflix/suro/input/kafka/TestKafkaConsumer.java | package com.netflix.suro.input.kafka;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.google.common.collect.ImmutableMap;
import com.netflix.suro.input.SuroInput;
import com.netflix.suro.jackson.DefaultObjectMapper;
import com.netflix.suro.message.MessageContainer;
import com.netflix.suro.routing.Messag... | 1,543 |
0 | Create_ds/suro/suro-kafka-consumer/src/test/java/com/netflix/suro/sink | Create_ds/suro/suro-kafka-consumer/src/test/java/com/netflix/suro/sink/kafka/ZkExternalResource.java | package com.netflix.suro.sink.kafka;
import org.I0Itec.zkclient.ZkClient;
import org.I0Itec.zkclient.exception.ZkMarshallingError;
import org.I0Itec.zkclient.serialize.ZkSerializer;
import org.apache.curator.test.TestingServer;
import org.junit.rules.ExternalResource;
import org.junit.rules.TemporaryFolder;
import ja... | 1,544 |
0 | Create_ds/suro/suro-kafka-consumer/src/test/java/com/netflix/suro/sink | Create_ds/suro/suro-kafka-consumer/src/test/java/com/netflix/suro/sink/kafka/KafkaServerExternalResource.java | package com.netflix.suro.sink.kafka;
import com.google.common.collect.Lists;
import kafka.server.KafkaConfig;
import kafka.server.KafkaServer;
import org.apache.commons.lang.StringUtils;
import org.junit.rules.ExternalResource;
import org.junit.rules.TemporaryFolder;
import java.io.IOException;
import java.net.Server... | 1,545 |
0 | Create_ds/suro/suro-kafka-consumer/src/main/java/com/netflix/suro/input | Create_ds/suro/suro-kafka-consumer/src/main/java/com/netflix/suro/input/kafka/KafkaConsumer.java | package com.netflix.suro.input.kafka;
import com.fasterxml.jackson.annotation.JacksonInject;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.google.common.base.Preconditions;
import com.google.comm... | 1,546 |
0 | Create_ds/sagemaker-sparkml-serving-container/src/test/java/com/amazonaws/sagemaker | Create_ds/sagemaker-sparkml-serving-container/src/test/java/com/amazonaws/sagemaker/dto/JsonlinesStandardOutputTest.java | /*
* Copyright 2010-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in ... | 1,547 |
0 | Create_ds/sagemaker-sparkml-serving-container/src/test/java/com/amazonaws/sagemaker | Create_ds/sagemaker-sparkml-serving-container/src/test/java/com/amazonaws/sagemaker/dto/SageMakerRequestObjectTest.java | /*
* Copyright 2010-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in ... | 1,548 |
0 | Create_ds/sagemaker-sparkml-serving-container/src/test/java/com/amazonaws/sagemaker | Create_ds/sagemaker-sparkml-serving-container/src/test/java/com/amazonaws/sagemaker/dto/JsonlinesTextOutputTest.java | /*
* Copyright 2010-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in ... | 1,549 |
0 | Create_ds/sagemaker-sparkml-serving-container/src/test/java/com/amazonaws/sagemaker | Create_ds/sagemaker-sparkml-serving-container/src/test/java/com/amazonaws/sagemaker/dto/DataSchemaTest.java | /*
* Copyright 2010-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in ... | 1,550 |
0 | Create_ds/sagemaker-sparkml-serving-container/src/test/java/com/amazonaws/sagemaker | Create_ds/sagemaker-sparkml-serving-container/src/test/java/com/amazonaws/sagemaker/dto/ColumnSchemaTest.java | /*
* Copyright 2010-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in ... | 1,551 |
0 | Create_ds/sagemaker-sparkml-serving-container/src/test/java/com/amazonaws/sagemaker | Create_ds/sagemaker-sparkml-serving-container/src/test/java/com/amazonaws/sagemaker/dto/BatchExecutionParameterTest.java | /*
* Copyright 2010-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in ... | 1,552 |
0 | Create_ds/sagemaker-sparkml-serving-container/src/test/java/com/amazonaws/sagemaker | Create_ds/sagemaker-sparkml-serving-container/src/test/java/com/amazonaws/sagemaker/dto/SageMakerRequestListObjectTest.java | /*
* Copyright 2010-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in ... | 1,553 |
0 | Create_ds/sagemaker-sparkml-serving-container/src/test/java/com/amazonaws/sagemaker | Create_ds/sagemaker-sparkml-serving-container/src/test/java/com/amazonaws/sagemaker/configuration/ContextLoaderTest.java | /*
* Copyright 2010-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in ... | 1,554 |
0 | Create_ds/sagemaker-sparkml-serving-container/src/test/java/com/amazonaws/sagemaker | Create_ds/sagemaker-sparkml-serving-container/src/test/java/com/amazonaws/sagemaker/configuration/BeanConfigurationTest.java | /*
* Copyright 2010-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in ... | 1,555 |
0 | Create_ds/sagemaker-sparkml-serving-container/src/test/java/com/amazonaws/sagemaker | Create_ds/sagemaker-sparkml-serving-container/src/test/java/com/amazonaws/sagemaker/utils/SystemUtilsTest.java | /*
* Copyright 2010-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in ... | 1,556 |
0 | Create_ds/sagemaker-sparkml-serving-container/src/test/java/com/amazonaws/sagemaker | Create_ds/sagemaker-sparkml-serving-container/src/test/java/com/amazonaws/sagemaker/controller/ServingControllerTest.java | /*
* Copyright 2010-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in ... | 1,557 |
0 | Create_ds/sagemaker-sparkml-serving-container/src/test/java/com/amazonaws/sagemaker | Create_ds/sagemaker-sparkml-serving-container/src/test/java/com/amazonaws/sagemaker/type/BasicDataTypeTest.java | /*
* Copyright 2010-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in ... | 1,558 |
0 | Create_ds/sagemaker-sparkml-serving-container/src/test/java/com/amazonaws/sagemaker | Create_ds/sagemaker-sparkml-serving-container/src/test/java/com/amazonaws/sagemaker/type/AdditionalMediaTypeTest.java | /*
* Copyright 2010-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in ... | 1,559 |
0 | Create_ds/sagemaker-sparkml-serving-container/src/test/java/com/amazonaws/sagemaker | Create_ds/sagemaker-sparkml-serving-container/src/test/java/com/amazonaws/sagemaker/type/DataStructureTypeTest.java | /*
* Copyright 2010-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in ... | 1,560 |
0 | Create_ds/sagemaker-sparkml-serving-container/src/test/java/com/amazonaws/sagemaker | Create_ds/sagemaker-sparkml-serving-container/src/test/java/com/amazonaws/sagemaker/helper/DataConversionHelperTest.java | /*
* Copyright 2010-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in ... | 1,561 |
0 | Create_ds/sagemaker-sparkml-serving-container/src/test/java/com/amazonaws/sagemaker | Create_ds/sagemaker-sparkml-serving-container/src/test/java/com/amazonaws/sagemaker/helper/ResponseHelperTest.java | /*
* Copyright 2010-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in ... | 1,562 |
0 | Create_ds/sagemaker-sparkml-serving-container/src/main/java/com/amazonaws | Create_ds/sagemaker-sparkml-serving-container/src/main/java/com/amazonaws/sagemaker/App.java | /*
* Copyright 2010-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in ... | 1,563 |
0 | Create_ds/sagemaker-sparkml-serving-container/src/main/java/com/amazonaws/sagemaker | Create_ds/sagemaker-sparkml-serving-container/src/main/java/com/amazonaws/sagemaker/dto/SageMakerRequestListObject.java | /*
* Copyright 2010-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in ... | 1,564 |
0 | Create_ds/sagemaker-sparkml-serving-container/src/main/java/com/amazonaws/sagemaker | Create_ds/sagemaker-sparkml-serving-container/src/main/java/com/amazonaws/sagemaker/dto/ColumnSchema.java | /*
* Copyright 2010-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in ... | 1,565 |
0 | Create_ds/sagemaker-sparkml-serving-container/src/main/java/com/amazonaws/sagemaker | Create_ds/sagemaker-sparkml-serving-container/src/main/java/com/amazonaws/sagemaker/dto/SageMakerRequestObject.java | /*
* Copyright 2010-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in ... | 1,566 |
0 | Create_ds/sagemaker-sparkml-serving-container/src/main/java/com/amazonaws/sagemaker | Create_ds/sagemaker-sparkml-serving-container/src/main/java/com/amazonaws/sagemaker/dto/DataSchema.java | /*
* Copyright 2010-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in ... | 1,567 |
0 | Create_ds/sagemaker-sparkml-serving-container/src/main/java/com/amazonaws/sagemaker | Create_ds/sagemaker-sparkml-serving-container/src/main/java/com/amazonaws/sagemaker/dto/JsonlinesTextOutput.java | /*
* Copyright 2010-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in ... | 1,568 |
0 | Create_ds/sagemaker-sparkml-serving-container/src/main/java/com/amazonaws/sagemaker | Create_ds/sagemaker-sparkml-serving-container/src/main/java/com/amazonaws/sagemaker/dto/BatchExecutionParameter.java | /*
* Copyright 2010-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in ... | 1,569 |
0 | Create_ds/sagemaker-sparkml-serving-container/src/main/java/com/amazonaws/sagemaker | Create_ds/sagemaker-sparkml-serving-container/src/main/java/com/amazonaws/sagemaker/dto/JsonlinesStandardOutput.java | /*
* Copyright 2010-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in ... | 1,570 |
0 | Create_ds/sagemaker-sparkml-serving-container/src/main/java/com/amazonaws/sagemaker | Create_ds/sagemaker-sparkml-serving-container/src/main/java/com/amazonaws/sagemaker/configuration/BeanConfiguration.java | /*
* Copyright 2010-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in ... | 1,571 |
0 | Create_ds/sagemaker-sparkml-serving-container/src/main/java/com/amazonaws/sagemaker | Create_ds/sagemaker-sparkml-serving-container/src/main/java/com/amazonaws/sagemaker/utils/SystemUtils.java | /*
* Copyright 2010-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in ... | 1,572 |
0 | Create_ds/sagemaker-sparkml-serving-container/src/main/java/com/amazonaws/sagemaker | Create_ds/sagemaker-sparkml-serving-container/src/main/java/com/amazonaws/sagemaker/utils/ScalaUtils.java | /*
* Copyright 2010-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in ... | 1,573 |
0 | Create_ds/sagemaker-sparkml-serving-container/src/main/java/com/amazonaws/sagemaker | Create_ds/sagemaker-sparkml-serving-container/src/main/java/com/amazonaws/sagemaker/controller/ServingController.java | /*
* Copyright 2010-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in ... | 1,574 |
0 | Create_ds/sagemaker-sparkml-serving-container/src/main/java/com/amazonaws/sagemaker | Create_ds/sagemaker-sparkml-serving-container/src/main/java/com/amazonaws/sagemaker/type/DataStructureType.java | /*
* Copyright 2010-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in ... | 1,575 |
0 | Create_ds/sagemaker-sparkml-serving-container/src/main/java/com/amazonaws/sagemaker | Create_ds/sagemaker-sparkml-serving-container/src/main/java/com/amazonaws/sagemaker/type/BasicDataType.java | /*
* Copyright 2010-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in ... | 1,576 |
0 | Create_ds/sagemaker-sparkml-serving-container/src/main/java/com/amazonaws/sagemaker | Create_ds/sagemaker-sparkml-serving-container/src/main/java/com/amazonaws/sagemaker/type/AdditionalMediaType.java | /*
* Copyright 2010-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in ... | 1,577 |
0 | Create_ds/sagemaker-sparkml-serving-container/src/main/java/com/amazonaws/sagemaker | Create_ds/sagemaker-sparkml-serving-container/src/main/java/com/amazonaws/sagemaker/helper/ResponseHelper.java | /*
* Copyright 2010-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in ... | 1,578 |
0 | Create_ds/sagemaker-sparkml-serving-container/src/main/java/com/amazonaws/sagemaker | Create_ds/sagemaker-sparkml-serving-container/src/main/java/com/amazonaws/sagemaker/helper/DataConversionHelper.java | /*
* Copyright 2010-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in ... | 1,579 |
0 | Create_ds/netflix-graph/src/test/java/com/netflix | Create_ds/netflix-graph/src/test/java/com/netflix/nfgraph/NFGraphTest.java | /*
* Copyright 2013 Netflix, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by appli... | 1,580 |
0 | Create_ds/netflix-graph/src/test/java/com/netflix | Create_ds/netflix-graph/src/test/java/com/netflix/nfgraph/NFGraphMemoryPoolTest.java | package com.netflix.nfgraph;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.util.Random;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
import com.netflix.nfgraph.compressed.NFCompressedGraph;
import com.netflix.nfgraph.uti... | 1,581 |
0 | Create_ds/netflix-graph/src/test/java/com/netflix | Create_ds/netflix-graph/src/test/java/com/netflix/nfgraph/RandomizedGraphBuilder.java | package com.netflix.nfgraph;
import static com.netflix.nfgraph.OrdinalIterator.NO_MORE_ORDINALS;
import static com.netflix.nfgraph.spec.NFPropertySpec.COMPACT;
import static com.netflix.nfgraph.spec.NFPropertySpec.GLOBAL;
import static com.netflix.nfgraph.spec.NFPropertySpec.HASH;
import static com.netflix.nfgraph.spe... | 1,582 |
0 | Create_ds/netflix-graph/src/test/java/com/netflix/nfgraph | Create_ds/netflix-graph/src/test/java/com/netflix/nfgraph/serializer/NFCompressedGraphPointersSerializerTest.java | /*
* Copyright 2014-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 ... | 1,583 |
0 | Create_ds/netflix-graph/src/test/java/com/netflix/nfgraph | Create_ds/netflix-graph/src/test/java/com/netflix/nfgraph/util/OrdinalMapTest.java | /*
* Copyright 2013 Netflix, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by appli... | 1,584 |
0 | Create_ds/netflix-graph/src/test/java/com/netflix/nfgraph | Create_ds/netflix-graph/src/test/java/com/netflix/nfgraph/spec/NFPropertySpecTest.java | /*
* Copyright 2013 Netflix, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by appli... | 1,585 |
0 | Create_ds/netflix-graph/src/test/java/com/netflix/nfgraph | Create_ds/netflix-graph/src/test/java/com/netflix/nfgraph/compressed/HashSetTest.java | /*
* Copyright 2013 Netflix, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by appli... | 1,586 |
0 | Create_ds/netflix-graph/src/test/java/com/netflix/nfgraph | Create_ds/netflix-graph/src/test/java/com/netflix/nfgraph/compressed/NFCompressedGraphTest.java | package com.netflix.nfgraph.compressed;
import static com.netflix.nfgraph.OrdinalIterator.NO_MORE_ORDINALS;
import static com.netflix.nfgraph.spec.NFPropertySpec.GLOBAL;
import static com.netflix.nfgraph.spec.NFPropertySpec.MULTIPLE;
import static com.netflix.nfgraph.spec.NFPropertySpec.SINGLE;
import static org.junit... | 1,587 |
0 | Create_ds/netflix-graph/src/test/java/com/netflix/nfgraph | Create_ds/netflix-graph/src/test/java/com/netflix/nfgraph/compressed/EncodedConnectionSetTest.java | /*
* Copyright 2013 Netflix, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by appli... | 1,588 |
0 | Create_ds/netflix-graph/src/test/java/com/netflix/nfgraph | Create_ds/netflix-graph/src/test/java/com/netflix/nfgraph/compressed/BitSetTest.java | /*
* Copyright 2013 Netflix, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by appli... | 1,589 |
0 | Create_ds/netflix-graph/src/test/java/com/netflix/nfgraph | Create_ds/netflix-graph/src/test/java/com/netflix/nfgraph/compressed/CompactSetTest.java | /*
* Copyright 2013 Netflix, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by appli... | 1,590 |
0 | Create_ds/netflix-graph/src/test/java/com/netflix/nfgraph | Create_ds/netflix-graph/src/test/java/com/netflix/nfgraph/compressed/NFCompressedGraphIntPointersTest.java | /*
* Copyright 2014 Netflix, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by appli... | 1,591 |
0 | Create_ds/netflix-graph/src/test/java/com/netflix/nfgraph | Create_ds/netflix-graph/src/test/java/com/netflix/nfgraph/compressed/VIntTest.java | /*
* Copyright 2013 Netflix, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by appli... | 1,592 |
0 | Create_ds/netflix-graph/src/test/java/com/netflix/nfgraph | Create_ds/netflix-graph/src/test/java/com/netflix/nfgraph/build/NFBuildGraphOrdinalIteratorTest.java | package com.netflix.nfgraph.build;
import static com.netflix.nfgraph.OrdinalIterator.NO_MORE_ORDINALS;
import static org.junit.Assert.assertEquals;
import org.junit.Before;
import org.junit.Test;
import com.netflix.nfgraph.OrdinalIterator;
public class NFBuildGraphOrdinalIteratorTest {
private NFBuildGraphOrdi... | 1,593 |
0 | Create_ds/netflix-graph/src/main/java/com/netflix | Create_ds/netflix-graph/src/main/java/com/netflix/nfgraph/NFGraphModelHolder.java | /*
* Copyright 2013 Netflix, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by appli... | 1,594 |
0 | Create_ds/netflix-graph/src/main/java/com/netflix | Create_ds/netflix-graph/src/main/java/com/netflix/nfgraph/OrdinalIterator.java | /*
* Copyright 2013 Netflix, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by appli... | 1,595 |
0 | Create_ds/netflix-graph/src/main/java/com/netflix | Create_ds/netflix-graph/src/main/java/com/netflix/nfgraph/OrdinalSet.java | /*
* Copyright 2013 Netflix, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by appli... | 1,596 |
0 | Create_ds/netflix-graph/src/main/java/com/netflix | Create_ds/netflix-graph/src/main/java/com/netflix/nfgraph/NFGraph.java | /*
* Copyright 2013 Netflix, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by appli... | 1,597 |
0 | Create_ds/netflix-graph/src/main/java/com/netflix/nfgraph | Create_ds/netflix-graph/src/main/java/com/netflix/nfgraph/serializer/NFCompressedGraphPointersDeserializer.java | /*
* Copyright 2014-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 ... | 1,598 |
0 | Create_ds/netflix-graph/src/main/java/com/netflix/nfgraph | Create_ds/netflix-graph/src/main/java/com/netflix/nfgraph/serializer/NFCompressedGraphDeserializer.java | /*
* Copyright 2013-2017 Netflix, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by ... | 1,599 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.