index int64 0 0 | repo_id stringlengths 9 205 | file_path stringlengths 31 246 | content stringlengths 1 12.2M | __index_level_0__ int64 0 10k |
|---|---|---|---|---|
0 | Create_ds/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... | 6,800 |
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... | 6,801 |
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) {
... | 6,802 |
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... | 6,803 |
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... | 6,804 |
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;... | 6,805 |
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... | 6,806 |
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(... | 6,807 |
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... | 6,808 |
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... | 6,809 |
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() {
... | 6,810 |
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);
... | 6,811 |
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();
}
}
| 6,812 |
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... | 6,813 |
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... | 6,814 |
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() {
... | 6,815 |
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... | 6,816 |
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... | 6,817 |
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... | 6,818 |
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();
}
| 6,819 |
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... | 6,820 |
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... | 6,821 |
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);
}
}
| 6,822 |
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... | 6,823 |
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... | 6,824 |
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(... | 6,825 |
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... | 6,826 |
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... | 6,827 |
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... | 6,828 |
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);
}
... | 6,829 |
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... | 6,830 |
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();
}
| 6,831 |
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... | 6,832 |
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) {... | 6,833 |
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 ... | 6,834 |
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) {
... | 6,835 |
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... | 6,836 |
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 ... | 6,837 |
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... | 6,838 |
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... | 6,839 |
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... | 6,840 |
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 ... | 6,841 |
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... | 6,842 |
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... | 6,843 |
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... | 6,844 |
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... | 6,845 |
0 | Create_ds/avro/lang/java/idl/src/test/java/org/apache/avro | Create_ds/avro/lang/java/idl/src/test/java/org/apache/avro/idl/TestLogicalTypes.java | /*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you ... | 6,846 |
0 | Create_ds/avro/lang/java/idl/src/test/java/org/apache/avro | Create_ds/avro/lang/java/idl/src/test/java/org/apache/avro/idl/IdlReaderTest.java | /*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you ... | 6,847 |
0 | Create_ds/avro/lang/java/idl/src/test/java/org/apache/avro | Create_ds/avro/lang/java/idl/src/test/java/org/apache/avro/idl/TestSchemas.java | /*
* Copyright 2017 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applic... | 6,848 |
0 | Create_ds/avro/lang/java/idl/src/test/java/org/apache/avro | Create_ds/avro/lang/java/idl/src/test/java/org/apache/avro/idl/TestReferenceAnnotationNotAllowed.java | /*
* Copyright 2015 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applic... | 6,849 |
0 | Create_ds/avro/lang/java/idl/src/test/java/org/apache/avro | Create_ds/avro/lang/java/idl/src/test/java/org/apache/avro/idl/TestSchemaResolver.java | /*
* Copyright 2017 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applic... | 6,850 |
0 | Create_ds/avro/lang/java/idl/src/test/java/org/apache/avro | Create_ds/avro/lang/java/idl/src/test/java/org/apache/avro/idl/TestCycle.java | /*
* Copyright 2015 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applic... | 6,851 |
0 | Create_ds/avro/lang/java/idl/src/main/java/org/apache/avro | Create_ds/avro/lang/java/idl/src/main/java/org/apache/avro/idl/ResolvingVisitor.java | /*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you ... | 6,852 |
0 | Create_ds/avro/lang/java/idl/src/main/java/org/apache/avro | Create_ds/avro/lang/java/idl/src/main/java/org/apache/avro/idl/IdlFile.java | /*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you ... | 6,853 |
0 | Create_ds/avro/lang/java/idl/src/main/java/org/apache/avro | Create_ds/avro/lang/java/idl/src/main/java/org/apache/avro/idl/IdlReader.java | /*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you ... | 6,854 |
0 | Create_ds/avro/lang/java/idl/src/main/java/org/apache/avro | Create_ds/avro/lang/java/idl/src/main/java/org/apache/avro/idl/SchemaVisitorAction.java | /*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you ... | 6,855 |
0 | Create_ds/avro/lang/java/idl/src/main/java/org/apache/avro | Create_ds/avro/lang/java/idl/src/main/java/org/apache/avro/idl/IsResolvedSchemaVisitor.java | /*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you ... | 6,856 |
0 | Create_ds/avro/lang/java/idl/src/main/java/org/apache/avro | Create_ds/avro/lang/java/idl/src/main/java/org/apache/avro/idl/Schemas.java | /*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you ... | 6,857 |
0 | Create_ds/avro/lang/java/idl/src/main/java/org/apache/avro | Create_ds/avro/lang/java/idl/src/main/java/org/apache/avro/idl/SchemaResolver.java | /*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you ... | 6,858 |
0 | Create_ds/avro/lang/java/idl/src/main/java/org/apache/avro | Create_ds/avro/lang/java/idl/src/main/java/org/apache/avro/idl/SchemaVisitor.java | /*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you ... | 6,859 |
0 | Create_ds/avro/lang/java/ipc-netty/src/test/java/org/apache/avro/ipc | Create_ds/avro/lang/java/ipc-netty/src/test/java/org/apache/avro/ipc/netty/TestNettyServerWithCallbacks.java | /*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you ... | 6,860 |
0 | Create_ds/avro/lang/java/ipc-netty/src/test/java/org/apache/avro/ipc | Create_ds/avro/lang/java/ipc-netty/src/test/java/org/apache/avro/ipc/netty/TestNettyTransceiverWhenFailsToConnect.java | /*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you ... | 6,861 |
0 | Create_ds/avro/lang/java/ipc-netty/src/test/java/org/apache/avro/ipc | Create_ds/avro/lang/java/ipc-netty/src/test/java/org/apache/avro/ipc/netty/TestNettyTransceiverWhenServerStops.java | /*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you ... | 6,862 |
0 | Create_ds/avro/lang/java/ipc-netty/src/test/java/org/apache/avro/ipc | Create_ds/avro/lang/java/ipc-netty/src/test/java/org/apache/avro/ipc/netty/TestNettyServerWithCompression.java | /*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you ... | 6,863 |
0 | Create_ds/avro/lang/java/ipc-netty/src/test/java/org/apache/avro/ipc | Create_ds/avro/lang/java/ipc-netty/src/test/java/org/apache/avro/ipc/netty/TestProtocolNetty.java | /*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you ... | 6,864 |
0 | Create_ds/avro/lang/java/ipc-netty/src/test/java/org/apache/avro/ipc | Create_ds/avro/lang/java/ipc-netty/src/test/java/org/apache/avro/ipc/netty/TestNettyServerConcurrentExecution.java | /*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you ... | 6,865 |
0 | Create_ds/avro/lang/java/ipc-netty/src/test/java/org/apache/avro/ipc | Create_ds/avro/lang/java/ipc-netty/src/test/java/org/apache/avro/ipc/netty/TestNettyServerWithSSL.java | /*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you ... | 6,866 |
0 | Create_ds/avro/lang/java/ipc-netty/src/test/java/org/apache/avro/ipc | Create_ds/avro/lang/java/ipc-netty/src/test/java/org/apache/avro/ipc/netty/TestNettyServer.java | /*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you ... | 6,867 |
0 | Create_ds/avro/lang/java/ipc-netty/src/main/java/org/apache/avro/ipc | Create_ds/avro/lang/java/ipc-netty/src/main/java/org/apache/avro/ipc/netty/NettyTransportCodec.java | /*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you ... | 6,868 |
0 | Create_ds/avro/lang/java/ipc-netty/src/main/java/org/apache/avro/ipc | Create_ds/avro/lang/java/ipc-netty/src/main/java/org/apache/avro/ipc/netty/NettyTransceiver.java | /*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you ... | 6,869 |
0 | Create_ds/avro/lang/java/ipc-netty/src/main/java/org/apache/avro/ipc | Create_ds/avro/lang/java/ipc-netty/src/main/java/org/apache/avro/ipc/netty/NettyServer.java | /*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you ... | 6,870 |
0 | Create_ds/avro/lang/java/tools/src/test/java/org/apache/avro | Create_ds/avro/lang/java/tools/src/test/java/org/apache/avro/tool/TestRpcReceiveAndSendTools.java | /*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you ... | 6,871 |
0 | Create_ds/avro/lang/java/tools/src/test/java/org/apache/avro | Create_ds/avro/lang/java/tools/src/test/java/org/apache/avro/tool/TestRecordCountTool.java | /*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you ... | 6,872 |
0 | Create_ds/avro/lang/java/tools/src/test/java/org/apache/avro | Create_ds/avro/lang/java/tools/src/test/java/org/apache/avro/tool/TestIdlTool.java | /*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you ... | 6,873 |
0 | Create_ds/avro/lang/java/tools/src/test/java/org/apache/avro | Create_ds/avro/lang/java/tools/src/test/java/org/apache/avro/tool/TestIdlToSchemataTool.java | /*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you ... | 6,874 |
0 | Create_ds/avro/lang/java/tools/src/test/java/org/apache/avro | Create_ds/avro/lang/java/tools/src/test/java/org/apache/avro/tool/TestMain.java | /*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you ... | 6,875 |
0 | Create_ds/avro/lang/java/tools/src/test/java/org/apache/avro | Create_ds/avro/lang/java/tools/src/test/java/org/apache/avro/tool/TestJsonToFromBinaryFragmentTools.java | /*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you ... | 6,876 |
0 | Create_ds/avro/lang/java/tools/src/test/java/org/apache/avro | Create_ds/avro/lang/java/tools/src/test/java/org/apache/avro/tool/TestRpcProtocolTool.java | /*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you ... | 6,877 |
0 | Create_ds/avro/lang/java/tools/src/test/java/org/apache/avro | Create_ds/avro/lang/java/tools/src/test/java/org/apache/avro/tool/TestConcatTool.java | /*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you ... | 6,878 |
0 | Create_ds/avro/lang/java/tools/src/test/java/org/apache/avro | Create_ds/avro/lang/java/tools/src/test/java/org/apache/avro/tool/TestDataFileTools.java | /*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you ... | 6,879 |
0 | Create_ds/avro/lang/java/tools/src/test/java/org/apache/avro | Create_ds/avro/lang/java/tools/src/test/java/org/apache/avro/tool/TestToTrevniTool.java | /*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you ... | 6,880 |
0 | Create_ds/avro/lang/java/tools/src/test/java/org/apache/avro | Create_ds/avro/lang/java/tools/src/test/java/org/apache/avro/tool/TestCatTool.java | /*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you ... | 6,881 |
0 | Create_ds/avro/lang/java/tools/src/test/java/org/apache/avro | Create_ds/avro/lang/java/tools/src/test/java/org/apache/avro/tool/TestTextFileTools.java | /*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you ... | 6,882 |
0 | Create_ds/avro/lang/java/tools/src/test/java/org/apache/avro | Create_ds/avro/lang/java/tools/src/test/java/org/apache/avro/tool/TestRecodecTool.java | /*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you ... | 6,883 |
0 | Create_ds/avro/lang/java/tools/src/test/java/org/apache/avro | Create_ds/avro/lang/java/tools/src/test/java/org/apache/avro/tool/TestSpecificCompilerTool.java | /*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you ... | 6,884 |
0 | Create_ds/avro/lang/java/tools/src/test/java/org/apache/avro | Create_ds/avro/lang/java/tools/src/test/java/org/apache/avro/tool/TestUtil.java | /*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you ... | 6,885 |
0 | Create_ds/avro/lang/java/tools/src/test/java/org/apache/avro | Create_ds/avro/lang/java/tools/src/test/java/org/apache/avro/tool/TestTetherTool.java | /*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you ... | 6,886 |
0 | Create_ds/avro/lang/java/tools/src/test/java/org/apache/avro | Create_ds/avro/lang/java/tools/src/test/java/org/apache/avro/tool/TestDataFileRepairTool.java | /*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you ... | 6,887 |
0 | Create_ds/avro/lang/java/tools/src/test/java/org/apache/avro | Create_ds/avro/lang/java/tools/src/test/java/org/apache/avro/tool/TestCreateRandomFileTool.java | /*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you ... | 6,888 |
0 | Create_ds/avro/lang/java/tools/src/test/compiler | Create_ds/avro/lang/java/tools/src/test/compiler/output-string/Position.java | /**
* Autogenerated by Avro
*
* DO NOT EDIT DIRECTLY
*/
package avro.examples.baseball;
@org.apache.avro.specific.AvroGenerated
public enum Position implements org.apache.avro.generic.GenericEnumSymbol<Position> {
P, C, B1, B2, B3, SS, LF, CF, RF, DH ;
public static final org.apache.avro.Schema SCHEMA$ = new o... | 6,889 |
0 | Create_ds/avro/lang/java/tools/src/test/compiler/output-string/avro/examples | Create_ds/avro/lang/java/tools/src/test/compiler/output-string/avro/examples/baseball/NullSafeAnnotationsFieldsTest.java | /**
* Autogenerated by Avro
*
* DO NOT EDIT DIRECTLY
*/
package avro.examples.baseball;
import org.apache.avro.generic.GenericArray;
import org.apache.avro.specific.SpecificData;
import org.apache.avro.util.Utf8;
import org.apache.avro.message.BinaryMessageEncoder;
import org.apache.avro.message.BinaryMessageDecod... | 6,890 |
0 | Create_ds/avro/lang/java/tools/src/test/compiler/output-string/avro/examples | Create_ds/avro/lang/java/tools/src/test/compiler/output-string/avro/examples/baseball/Position.java | /**
* Autogenerated by Avro
*
* DO NOT EDIT DIRECTLY
*/
package avro.examples.baseball;
@org.apache.avro.specific.AvroGenerated
public enum Position implements org.apache.avro.generic.GenericEnumSymbol<Position> {
P, C, B1, B2, B3, SS, LF, CF, RF, DH ;
public static final org.apache.avro.Schema SCHEMA$ = new o... | 6,891 |
0 | Create_ds/avro/lang/java/tools/src/test/compiler/output-string/avro/examples | Create_ds/avro/lang/java/tools/src/test/compiler/output-string/avro/examples/baseball/Player.java | /**
* Autogenerated by Avro
*
* DO NOT EDIT DIRECTLY
*/
package avro.examples.baseball;
import org.apache.avro.generic.GenericArray;
import org.apache.avro.specific.SpecificData;
import org.apache.avro.util.Utf8;
import org.apache.avro.message.BinaryMessageEncoder;
import org.apache.avro.message.BinaryMessageDecod... | 6,892 |
0 | Create_ds/avro/lang/java/tools/src/test/compiler/output-string/avro/examples | Create_ds/avro/lang/java/tools/src/test/compiler/output-string/avro/examples/baseball/Proto.java | /**
* Autogenerated by Avro
*
* DO NOT EDIT DIRECTLY
*/
package avro.examples.baseball;
/** This is protocol */
@org.apache.avro.specific.AvroGenerated
public interface Proto {
public static final org.apache.avro.Protocol PROTOCOL = org.apache.avro.Protocol.parse("{\"protocol\":\"Proto\",\"namespace\":\"avro.exa... | 6,893 |
0 | Create_ds/avro/lang/java/tools/src/test/compiler/output-string/avro/examples | Create_ds/avro/lang/java/tools/src/test/compiler/output-string/avro/examples/baseball/FieldTest.java | /**
* Autogenerated by Avro
*
* DO NOT EDIT DIRECTLY
*/
package avro.examples.baseball;
import org.apache.avro.generic.GenericArray;
import org.apache.avro.specific.SpecificData;
import org.apache.avro.util.Utf8;
import org.apache.avro.message.BinaryMessageEncoder;
import org.apache.avro.message.BinaryMessageDecod... | 6,894 |
0 | Create_ds/avro/lang/java/tools/src/test/compiler | Create_ds/avro/lang/java/tools/src/test/compiler/output/Position.java | /**
* Autogenerated by Avro
*
* DO NOT EDIT DIRECTLY
*/
package avro.examples.baseball;
@org.apache.avro.specific.AvroGenerated
public enum Position implements org.apache.avro.generic.GenericEnumSymbol<Position> {
P, C, B1, B2, B3, SS, LF, CF, RF, DH ;
public static final org.apache.avro.Schema SCHEMA$ = new o... | 6,895 |
0 | Create_ds/avro/lang/java/tools/src/test/compiler | Create_ds/avro/lang/java/tools/src/test/compiler/output/OptionalGettersAllFieldsTest.java | /**
* Autogenerated by Avro
*
* DO NOT EDIT DIRECTLY
*/
package avro.examples.baseball;
import org.apache.avro.generic.GenericArray;
import org.apache.avro.specific.SpecificData;
import org.apache.avro.util.Utf8;
import org.apache.avro.message.BinaryMessageEncoder;
import org.apache.avro.message.BinaryMessageDecod... | 6,896 |
0 | Create_ds/avro/lang/java/tools/src/test/compiler | Create_ds/avro/lang/java/tools/src/test/compiler/output/Player.java | /**
* Autogenerated by Avro
*
* DO NOT EDIT DIRECTLY
*/
package avro.examples.baseball;
import org.apache.avro.generic.GenericArray;
import org.apache.avro.specific.SpecificData;
import org.apache.avro.util.Utf8;
import org.apache.avro.message.BinaryMessageEncoder;
import org.apache.avro.message.BinaryMessageDecod... | 6,897 |
0 | Create_ds/avro/lang/java/tools/src/test/compiler | Create_ds/avro/lang/java/tools/src/test/compiler/output/AddExtraOptionalGettersTest.java | /**
* Autogenerated by Avro
*
* DO NOT EDIT DIRECTLY
*/
package avro.examples.baseball;
import org.apache.avro.generic.GenericArray;
import org.apache.avro.specific.SpecificData;
import org.apache.avro.util.Utf8;
import org.apache.avro.message.BinaryMessageEncoder;
import org.apache.avro.message.BinaryMessageDecod... | 6,898 |
0 | Create_ds/avro/lang/java/tools/src/test/compiler | Create_ds/avro/lang/java/tools/src/test/compiler/output/OptionalGettersNullableFieldsTest.java | /**
* Autogenerated by Avro
*
* DO NOT EDIT DIRECTLY
*/
package avro.examples.baseball;
import org.apache.avro.generic.GenericArray;
import org.apache.avro.specific.SpecificData;
import org.apache.avro.util.Utf8;
import org.apache.avro.message.BinaryMessageEncoder;
import org.apache.avro.message.BinaryMessageDecod... | 6,899 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.