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/airpal/src/main/java/com/airbnb/airpal | Create_ds/airpal/src/main/java/com/airbnb/airpal/modules/AirpalModule.java | package com.airbnb.airpal.modules;
import com.airbnb.airlift.http.client.ForQueryInfoClient;
import com.airbnb.airpal.AirpalConfiguration;
import com.airbnb.airpal.api.output.PersistentJobOutputFactory;
import com.airbnb.airpal.api.output.builders.OutputBuilderFactory;
import com.airbnb.airpal.api.output.persistors.CS... | 7,400 |
0 | Create_ds/airpal/src/main/java/com/airbnb/airpal | Create_ds/airpal/src/main/java/com/airbnb/airpal/sql/DbType.java | package com.airbnb.airpal.sql;
public enum DbType {
MySQL,
H2,
Default
}
| 7,401 |
0 | Create_ds/airpal/src/main/java/com/airbnb/airpal | Create_ds/airpal/src/main/java/com/airbnb/airpal/sql/Util.java | package com.airbnb.airpal.sql;
import com.airbnb.airpal.presto.Table;
import com.google.common.base.Joiner;
import com.google.common.collect.Iterables;
import com.google.common.collect.Lists;
import java.util.HashSet;
import java.util.Set;
import static java.lang.String.format;
public class Util
{
private stati... | 7,402 |
0 | Create_ds/airpal/src/main/java/com/airbnb/airpal/sql | Create_ds/airpal/src/main/java/com/airbnb/airpal/sql/jdbi/UUIDArgument.java | package com.airbnb.airpal.sql.jdbi;
import org.skife.jdbi.v2.StatementContext;
import org.skife.jdbi.v2.tweak.Argument;
import java.sql.PreparedStatement;
import java.sql.SQLException;
import java.util.UUID;
public class UUIDArgument
implements Argument
{
private final UUID uuid;
public UUIDArgument... | 7,403 |
0 | Create_ds/airpal/src/main/java/com/airbnb/airpal/sql | Create_ds/airpal/src/main/java/com/airbnb/airpal/sql/jdbi/URIArgument.java | package com.airbnb.airpal.sql.jdbi;
import org.skife.jdbi.v2.StatementContext;
import org.skife.jdbi.v2.tweak.Argument;
import java.net.URI;
import java.sql.PreparedStatement;
import java.sql.SQLException;
public class URIArgument implements Argument
{
private final URI uri;
public URIArgument(URI uri)
... | 7,404 |
0 | Create_ds/airpal/src/main/java/com/airbnb/airpal/sql | Create_ds/airpal/src/main/java/com/airbnb/airpal/sql/jdbi/URIArgumentFactory.java | package com.airbnb.airpal.sql.jdbi;
import org.skife.jdbi.v2.StatementContext;
import org.skife.jdbi.v2.tweak.Argument;
import org.skife.jdbi.v2.tweak.ArgumentFactory;
import java.net.URI;
public class URIArgumentFactory implements ArgumentFactory<URI>
{
@Override
public boolean accepts(Class<?> expectedType... | 7,405 |
0 | Create_ds/airpal/src/main/java/com/airbnb/airpal/sql | Create_ds/airpal/src/main/java/com/airbnb/airpal/sql/jdbi/UUIDArgumentFactory.java | package com.airbnb.airpal.sql.jdbi;
import org.skife.jdbi.v2.StatementContext;
import org.skife.jdbi.v2.tweak.Argument;
import org.skife.jdbi.v2.tweak.ArgumentFactory;
import java.util.UUID;
public class UUIDArgumentFactory implements ArgumentFactory<UUID>
{
@Override
public boolean accepts(Class<?> expected... | 7,406 |
0 | Create_ds/airpal/src/main/java/com/airbnb/airpal/sql | Create_ds/airpal/src/main/java/com/airbnb/airpal/sql/jdbi/QueryStoreMapper.java | package com.airbnb.airpal.sql.jdbi;
import com.airbnb.airpal.api.queries.FeaturedQuery;
import com.airbnb.airpal.api.queries.SavedQuery;
import com.airbnb.airpal.api.queries.UserSavedQuery;
import com.fasterxml.jackson.databind.ObjectMapper;
import lombok.extern.slf4j.Slf4j;
import org.skife.jdbi.v2.StatementContext;
... | 7,407 |
0 | Create_ds/airpal/src/main/java/com/airbnb/airpal/sql | Create_ds/airpal/src/main/java/com/airbnb/airpal/sql/dao/JobTableDAO.java | package com.airbnb.airpal.sql.dao;
import com.airbnb.airpal.sql.beans.JobTableRow;
import org.skife.jdbi.v2.sqlobject.BindBean;
import org.skife.jdbi.v2.sqlobject.SqlBatch;
public interface JobTableDAO
{
@SqlBatch(
"INSERT INTO job_tables (job_id, table_id) " +
"VALUES (:jobId, :ta... | 7,408 |
0 | Create_ds/airpal/src/main/java/com/airbnb/airpal/sql | Create_ds/airpal/src/main/java/com/airbnb/airpal/sql/dao/TableDAO.java | package com.airbnb.airpal.sql.dao;
import com.airbnb.airpal.presto.Table;
import com.airbnb.airpal.sql.Util;
import com.airbnb.airpal.sql.beans.TableRow;
import com.hubspot.rosetta.jdbi.RosettaBinder;
import lombok.extern.slf4j.Slf4j;
import org.skife.jdbi.v2.Handle;
import org.skife.jdbi.v2.sqlobject.GetGeneratedKeys... | 7,409 |
0 | Create_ds/airpal/src/main/java/com/airbnb/airpal/sql | Create_ds/airpal/src/main/java/com/airbnb/airpal/sql/dao/JobOutputDAO.java | package com.airbnb.airpal.sql.dao;
import com.airbnb.airpal.api.output.PersistentJobOutput;
import org.skife.jdbi.v2.sqlobject.Bind;
import org.skife.jdbi.v2.sqlobject.BindBean;
import org.skife.jdbi.v2.sqlobject.GetGeneratedKeys;
import org.skife.jdbi.v2.sqlobject.SqlUpdate;
public interface JobOutputDAO
{
@SqlU... | 7,410 |
0 | Create_ds/airpal/src/main/java/com/airbnb/airpal/sql | Create_ds/airpal/src/main/java/com/airbnb/airpal/sql/dao/JobDAO.java | package com.airbnb.airpal.sql.dao;
import com.airbnb.airpal.api.Job;
import com.hubspot.rosetta.jdbi.RosettaBinder;
import org.skife.jdbi.v2.sqlobject.GetGeneratedKeys;
import org.skife.jdbi.v2.sqlobject.SqlUpdate;
public interface JobDAO
{
@SqlUpdate(
"INSERT INTO jobs (query, user, uuid, queryStats,... | 7,411 |
0 | Create_ds/airpal/src/main/java/com/airbnb/airpal/sql | Create_ds/airpal/src/main/java/com/airbnb/airpal/sql/beans/JobUsageCountRow.java | package com.airbnb.airpal.sql.beans;
import com.airbnb.airpal.presto.Table;
import lombok.Data;
import org.skife.jdbi.v2.FoldController;
import org.skife.jdbi.v2.Folder3;
import org.skife.jdbi.v2.StatementContext;
import java.sql.SQLException;
import java.util.Map;
@Data
public class JobUsageCountRow
{
private l... | 7,412 |
0 | Create_ds/airpal/src/main/java/com/airbnb/airpal/sql | Create_ds/airpal/src/main/java/com/airbnb/airpal/sql/beans/JobTableOutputJoinRow.java | package com.airbnb.airpal.sql.beans;
import com.airbnb.airpal.api.Job;
import com.airbnb.airpal.api.JobState;
import com.airbnb.airpal.api.output.PersistentJobOutput;
import com.airbnb.airpal.api.output.PersistentJobOutputFactory;
import com.airbnb.airpal.presto.Table;
import com.facebook.presto.client.Column;
import ... | 7,413 |
0 | Create_ds/airpal/src/main/java/com/airbnb/airpal/sql | Create_ds/airpal/src/main/java/com/airbnb/airpal/sql/beans/TableRow.java | package com.airbnb.airpal.sql.beans;
import com.airbnb.airpal.presto.Table;
import com.facebook.presto.client.Column;
import com.fasterxml.jackson.core.type.TypeReference;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.google.common.base.Function;
import lombok.AllArgsConstructor;
import lombok.Data;
i... | 7,414 |
0 | Create_ds/airpal/src/main/java/com/airbnb/airpal/sql | Create_ds/airpal/src/main/java/com/airbnb/airpal/sql/beans/JobTableRow.java | package com.airbnb.airpal.sql.beans;
import lombok.AllArgsConstructor;
import lombok.Data;
@Data
@AllArgsConstructor
public class JobTableRow
{
private long id;
private long jobId;
private long tableId;
}
| 7,415 |
0 | Create_ds/airpal/src/main/java/com/airbnb/airlift/http | Create_ds/airpal/src/main/java/com/airbnb/airlift/http/client/ForQueryInfoClient.java | package com.airbnb.airlift.http.client;
import javax.inject.Qualifier;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.ElementType.PARAMETER;
impor... | 7,416 |
0 | Create_ds/airpal/src/main/java/com/airbnb | Create_ds/airpal/src/main/java/com/airbnb/shiro/AllowAllUser.java | package com.airbnb.shiro;
import com.airbnb.airpal.core.AirpalUser;
import lombok.Data;
import org.joda.time.Duration;
import java.io.Serializable;
import java.util.Set;
@Data
public class AllowAllUser
implements AirpalUser, Serializable
{
private static final long serialVersionUID = 2138145047434723791L... | 7,417 |
0 | Create_ds/airpal/src/main/java/com/airbnb | Create_ds/airpal/src/main/java/com/airbnb/shiro/AllowAllToken.java | package com.airbnb.shiro;
import com.google.common.base.Charsets;
import com.google.common.collect.Sets;
import com.google.common.hash.Funnel;
import com.google.common.hash.Hashing;
import com.google.common.hash.PrimitiveSink;
import lombok.Getter;
import org.apache.shiro.authc.HostAuthenticationToken;
import org.apac... | 7,418 |
0 | Create_ds/airpal/src/main/java/com/airbnb | Create_ds/airpal/src/main/java/com/airbnb/shiro/AllowAllRealm.java | package com.airbnb.shiro;
import com.google.common.base.Strings;
import com.google.common.collect.Sets;
import lombok.Setter;
import org.apache.shiro.authc.AuthenticationException;
import org.apache.shiro.authc.AuthenticationInfo;
import org.apache.shiro.authc.AuthenticationToken;
import org.apache.shiro.authc.SimpleA... | 7,419 |
0 | Create_ds/airpal/src/main/java/com/airbnb | Create_ds/airpal/src/main/java/com/airbnb/shiro/UserGroup.java | package com.airbnb.shiro;
import com.google.common.collect.ImmutableSet;
import lombok.Getter;
import lombok.Setter;
import org.apache.shiro.authz.Permission;
import org.apache.shiro.authz.permission.WildcardPermission;
import org.joda.time.Duration;
import java.util.Collection;
import java.util.Collections;
import j... | 7,420 |
0 | Create_ds/airpal/src/main/java/com/airbnb | Create_ds/airpal/src/main/java/com/airbnb/shiro/ExampleLDAPRealm.java | package com.airbnb.shiro;
import com.google.common.collect.ImmutableSet;
import com.google.common.collect.Sets;
import lombok.Setter;
import lombok.extern.slf4j.Slf4j;
import org.apache.shiro.authc.SimpleAuthenticationInfo;
import org.apache.shiro.authc.AuthenticationToken;
import org.apache.shiro.authc.Authentication... | 7,421 |
0 | Create_ds/airpal/src/main/java/com/airbnb | Create_ds/airpal/src/main/java/com/airbnb/shiro/SessionListenerLogger.java | package com.airbnb.shiro;
import lombok.extern.slf4j.Slf4j;
import org.apache.shiro.session.Session;
import org.apache.shiro.session.SessionListenerAdapter;
@Slf4j
public class SessionListenerLogger extends SessionListenerAdapter
{
@Override
public void onStart(Session session)
{
log.warn("Saw STA... | 7,422 |
0 | Create_ds/airpal/src/main/java/com/airbnb/shiro | Create_ds/airpal/src/main/java/com/airbnb/shiro/filter/AllowAllFilter.java | package com.airbnb.shiro.filter;
import com.airbnb.shiro.AllowAllToken;
import com.airbnb.shiro.UserGroup;
import com.google.common.collect.ImmutableSet;
import lombok.Setter;
import lombok.extern.slf4j.Slf4j;
import org.apache.shiro.SecurityUtils;
import org.apache.shiro.authc.AuthenticationToken;
import org.apache.s... | 7,423 |
0 | Create_ds/amazon-neptune-csv-to-rdf-converter/src/test/java/software/amazon/neptune | Create_ds/amazon-neptune-csv-to-rdf-converter/src/test/java/software/amazon/neptune/csv2rdf/Csv2RdfConfigTest.java | /*
* Copyright 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://www.apache.org/licenses/LICENSE-2.0
*
* or in the "... | 7,424 |
0 | Create_ds/amazon-neptune-csv-to-rdf-converter/src/test/java/software/amazon/neptune | Create_ds/amazon-neptune-csv-to-rdf-converter/src/test/java/software/amazon/neptune/csv2rdf/NeptunePropertyGraphElementTest.java | /*
* Copyright 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://www.apache.org/licenses/LICENSE-2.0
*
* or in the "... | 7,425 |
0 | Create_ds/amazon-neptune-csv-to-rdf-converter/src/test/java/software/amazon/neptune | Create_ds/amazon-neptune-csv-to-rdf-converter/src/test/java/software/amazon/neptune/csv2rdf/NeptuneCsvHeaderTest.java | /*
* Copyright 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://www.apache.org/licenses/LICENSE-2.0
*
* or in the "... | 7,426 |
0 | Create_ds/amazon-neptune-csv-to-rdf-converter/src/test/java/software/amazon/neptune | Create_ds/amazon-neptune-csv-to-rdf-converter/src/test/java/software/amazon/neptune/csv2rdf/PropertyGraph2RdfMappingTest.java | /*
* Copyright 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://www.apache.org/licenses/LICENSE-2.0
*
* or in the "... | 7,427 |
0 | Create_ds/amazon-neptune-csv-to-rdf-converter/src/test/java/software/amazon/neptune | Create_ds/amazon-neptune-csv-to-rdf-converter/src/test/java/software/amazon/neptune/csv2rdf/UriPostTransformerTest.java | /*
* Copyright 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://www.apache.org/licenses/LICENSE-2.0
*
* or in the "... | 7,428 |
0 | Create_ds/amazon-neptune-csv-to-rdf-converter/src/test/java/software/amazon/neptune | Create_ds/amazon-neptune-csv-to-rdf-converter/src/test/java/software/amazon/neptune/csv2rdf/Csv2RdfLogOutputTest.java | /*
* Copyright 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://www.apache.org/licenses/LICENSE-2.0
*
* or in the "... | 7,429 |
0 | Create_ds/amazon-neptune-csv-to-rdf-converter/src/test/java/software/amazon/neptune | Create_ds/amazon-neptune-csv-to-rdf-converter/src/test/java/software/amazon/neptune/csv2rdf/UriPostTransformationTest.java | /*
* Copyright 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://www.apache.org/licenses/LICENSE-2.0
*
* or in the "... | 7,430 |
0 | Create_ds/amazon-neptune-csv-to-rdf-converter/src/test/java/software/amazon/neptune | Create_ds/amazon-neptune-csv-to-rdf-converter/src/test/java/software/amazon/neptune/csv2rdf/Csv2RdfTest.java | /*
* Copyright 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://www.apache.org/licenses/LICENSE-2.0
*
* or in the "... | 7,431 |
0 | Create_ds/amazon-neptune-csv-to-rdf-converter/src/test/java/software/amazon/neptune | Create_ds/amazon-neptune-csv-to-rdf-converter/src/test/java/software/amazon/neptune/csv2rdf/NeptuneCsvUserDefinedColumnTest.java | /*
* Copyright 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://www.apache.org/licenses/LICENSE-2.0
*
* or in the "... | 7,432 |
0 | Create_ds/amazon-neptune-csv-to-rdf-converter/src/test/java/software/amazon/neptune | Create_ds/amazon-neptune-csv-to-rdf-converter/src/test/java/software/amazon/neptune/csv2rdf/PropertGraph2RdfMapperTest.java | /*
* Copyright 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://www.apache.org/licenses/LICENSE-2.0
*
* or in the "... | 7,433 |
0 | Create_ds/amazon-neptune-csv-to-rdf-converter/src/test/java/software/amazon/neptune | Create_ds/amazon-neptune-csv-to-rdf-converter/src/test/java/software/amazon/neptune/csv2rdf/Csv2RdfIntegrationTest.java | /*
* Copyright 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://www.apache.org/licenses/LICENSE-2.0
*
* or in the "... | 7,434 |
0 | Create_ds/amazon-neptune-csv-to-rdf-converter/src/test/java/software/amazon/neptune | Create_ds/amazon-neptune-csv-to-rdf-converter/src/test/java/software/amazon/neptune/csv2rdf/PropertyGraph2RdfConverterTest.java | /*
* Copyright 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://www.apache.org/licenses/LICENSE-2.0
*
* or in the "... | 7,435 |
0 | Create_ds/amazon-neptune-csv-to-rdf-converter/src/test/java/software/amazon/neptune | Create_ds/amazon-neptune-csv-to-rdf-converter/src/test/java/software/amazon/neptune/csv2rdf/NeptuneCsvInputParserTest.java | /*
* Copyright 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://www.apache.org/licenses/LICENSE-2.0
*
* or in the "... | 7,436 |
0 | Create_ds/amazon-neptune-csv-to-rdf-converter/src/main/java/software/amazon/neptune | Create_ds/amazon-neptune-csv-to-rdf-converter/src/main/java/software/amazon/neptune/csv2rdf/UriPostTransformer.java | /*
* Copyright 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://www.apache.org/licenses/LICENSE-2.0
*
* or in the "... | 7,437 |
0 | Create_ds/amazon-neptune-csv-to-rdf-converter/src/main/java/software/amazon/neptune | Create_ds/amazon-neptune-csv-to-rdf-converter/src/main/java/software/amazon/neptune/csv2rdf/NeptuneCsvInputParser.java | /*
* Copyright 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://www.apache.org/licenses/LICENSE-2.0
*
* or in the "... | 7,438 |
0 | Create_ds/amazon-neptune-csv-to-rdf-converter/src/main/java/software/amazon/neptune | Create_ds/amazon-neptune-csv-to-rdf-converter/src/main/java/software/amazon/neptune/csv2rdf/Csv2RdfException.java | /*
* Copyright 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://www.apache.org/licenses/LICENSE-2.0
*
* or in the "... | 7,439 |
0 | Create_ds/amazon-neptune-csv-to-rdf-converter/src/main/java/software/amazon/neptune | Create_ds/amazon-neptune-csv-to-rdf-converter/src/main/java/software/amazon/neptune/csv2rdf/NeptuneCsvUserDefinedColumn.java | /*
* Copyright 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://www.apache.org/licenses/LICENSE-2.0
*
* or in the "... | 7,440 |
0 | Create_ds/amazon-neptune-csv-to-rdf-converter/src/main/java/software/amazon/neptune | Create_ds/amazon-neptune-csv-to-rdf-converter/src/main/java/software/amazon/neptune/csv2rdf/Csv2Rdf.java | /*
* Copyright 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://www.apache.org/licenses/LICENSE-2.0
*
* or in the "... | 7,441 |
0 | Create_ds/amazon-neptune-csv-to-rdf-converter/src/main/java/software/amazon/neptune | Create_ds/amazon-neptune-csv-to-rdf-converter/src/main/java/software/amazon/neptune/csv2rdf/UriPostTransformation.java | /*
* Copyright 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://www.apache.org/licenses/LICENSE-2.0
*
* or in the "... | 7,442 |
0 | Create_ds/amazon-neptune-csv-to-rdf-converter/src/main/java/software/amazon/neptune | Create_ds/amazon-neptune-csv-to-rdf-converter/src/main/java/software/amazon/neptune/csv2rdf/NeptuneCsvHeader.java | /*
* Copyright 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://www.apache.org/licenses/LICENSE-2.0
*
* or in the "... | 7,443 |
0 | Create_ds/amazon-neptune-csv-to-rdf-converter/src/main/java/software/amazon/neptune | Create_ds/amazon-neptune-csv-to-rdf-converter/src/main/java/software/amazon/neptune/csv2rdf/PropertyGraph2RdfMapper.java | /*
* Copyright 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://www.apache.org/licenses/LICENSE-2.0
*
* or in the "... | 7,444 |
0 | Create_ds/amazon-neptune-csv-to-rdf-converter/src/main/java/software/amazon/neptune | Create_ds/amazon-neptune-csv-to-rdf-converter/src/main/java/software/amazon/neptune/csv2rdf/PropertyGraph2RdfConverter.java | /*
* Copyright 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://www.apache.org/licenses/LICENSE-2.0
*
* or in the "... | 7,445 |
0 | Create_ds/amazon-neptune-csv-to-rdf-converter/src/main/java/software/amazon/neptune | Create_ds/amazon-neptune-csv-to-rdf-converter/src/main/java/software/amazon/neptune/csv2rdf/NeptunePropertyGraphElement.java | /*
* Copyright 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://www.apache.org/licenses/LICENSE-2.0
*
* or in the "... | 7,446 |
0 | Create_ds/amazon-neptune-csv-to-rdf-converter/src/main/java/software/amazon/neptune | Create_ds/amazon-neptune-csv-to-rdf-converter/src/main/java/software/amazon/neptune/csv2rdf/PropertyGraph2RdfMapping.java | /*
* Copyright 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://www.apache.org/licenses/LICENSE-2.0
*
* or in the "... | 7,447 |
0 | Create_ds/neptune-gremlin-client/neptune-endpoints-info-lambda/src/main/java/software/amazon | Create_ds/neptune-gremlin-client/neptune-endpoints-info-lambda/src/main/java/software/amazon/lambda/NeptuneEndpointsInfoLambda.java | /*
Copyright 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://www.apache.org/licenses/LICENSE-2.0
or in the "license" file accompanying ... | 7,448 |
0 | Create_ds/neptune-gremlin-client/gremlin-client/src/test/java/org/apache/tinkerpop/gremlin | Create_ds/neptune-gremlin-client/gremlin-client/src/test/java/org/apache/tinkerpop/gremlin/driver/EndpointCollectionTest.java | package org.apache.tinkerpop.gremlin.driver;
import org.junit.Test;
import java.util.Arrays;
import static org.junit.Assert.*;
import static org.mockito.Mockito.mock;
public class EndpointCollectionTest {
@Test
public void shouldEnrichEndpointsUsingFilter() {
Endpoint endpoint1 = new DatabaseEndpo... | 7,449 |
0 | Create_ds/neptune-gremlin-client/gremlin-client/src/test/java/org/apache/tinkerpop/gremlin | Create_ds/neptune-gremlin-client/gremlin-client/src/test/java/org/apache/tinkerpop/gremlin/driver/ConnectionAttemptManagerTest.java | /*
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
Permission is hereby granted, free of charge, to any person obtaining a copy of this
software and associated documentation files (the "Software"), to deal in the Software
without restriction, including without limitation the rights to use, copy, mod... | 7,450 |
0 | Create_ds/neptune-gremlin-client/gremlin-client/src/test/java/org/apache/tinkerpop/gremlin | Create_ds/neptune-gremlin-client/gremlin-client/src/test/java/org/apache/tinkerpop/gremlin/driver/EndpointClientCollectionTest.java | package org.apache.tinkerpop.gremlin.driver;
import org.junit.Test;
import java.util.Arrays;
import java.util.List;
import static org.junit.Assert.*;
import static org.mockito.Mockito.mock;
public class EndpointClientCollectionTest {
@Test
public void shouldIdentifySurvivingEndpointClients(){
Datab... | 7,451 |
0 | Create_ds/neptune-gremlin-client/gremlin-client/src/test/java/org/apache/tinkerpop/gremlin | Create_ds/neptune-gremlin-client/gremlin-client/src/test/java/org/apache/tinkerpop/gremlin/driver/EndpointClientTest.java | package org.apache.tinkerpop.gremlin.driver;
import org.junit.Test;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import static org.junit.Assert.*;
import static org.mockito.Mockito.mock;
public class EndpointClientTest {
@Test
public void shouldCreateListOfEndpointClientsForEndpoin... | 7,452 |
0 | Create_ds/neptune-gremlin-client/gremlin-client/src/test/java/org/apache/tinkerpop/gremlin | Create_ds/neptune-gremlin-client/gremlin-client/src/test/java/org/apache/tinkerpop/gremlin/driver/EmptyEndpointFilterTest.java | package org.apache.tinkerpop.gremlin.driver;
import org.junit.Test;
import java.util.Arrays;
import static org.junit.Assert.*;
public class EmptyEndpointFilterTest {
@Test
public void shouldEnsureThatEndpointsWithNullAddressAreNotAccepted(){
Endpoint endpoint1 = new DatabaseEndpoint().withAddress(... | 7,453 |
0 | Create_ds/neptune-gremlin-client/gremlin-client/src/test/java/org/apache/tinkerpop/gremlin | Create_ds/neptune-gremlin-client/gremlin-client/src/test/java/org/apache/tinkerpop/gremlin/driver/ClientClusterCollectionTest.java | package org.apache.tinkerpop.gremlin.driver;
import org.junit.Test;
import java.util.Arrays;
import java.util.Map;
import java.util.function.Function;
import static org.junit.Assert.*;
import static org.mockito.Mockito.*;
public class ClientClusterCollectionTest {
@Test
public void shouldCreateClustersForE... | 7,454 |
0 | Create_ds/neptune-gremlin-client/gremlin-client/src/test/java/org/apache/tinkerpop/gremlin | Create_ds/neptune-gremlin-client/gremlin-client/src/test/java/org/apache/tinkerpop/gremlin/driver/RefreshEventTaskTest.java | /*
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
Permission is hereby granted, free of charge, to any person obtaining a copy of this
software and associated documentation files (the "Software"), to deal in the Software
without restriction, including without limitation the rights to use, copy, mod... | 7,455 |
0 | Create_ds/neptune-gremlin-client/gremlin-client/src/test/java/software/amazon/neptune | Create_ds/neptune-gremlin-client/gremlin-client/src/test/java/software/amazon/neptune/cluster/NeptuneClusterMetadataTest.java | /*
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
Permission is hereby granted, free of charge, to any person obtaining a copy of this
software and associated documentation files (the "Software"), to deal in the Software
without restriction, including without limitation the rights to use, copy, mod... | 7,456 |
0 | Create_ds/neptune-gremlin-client/gremlin-client/src/test/java/software/amazon/neptune | Create_ds/neptune-gremlin-client/gremlin-client/src/test/java/software/amazon/neptune/cluster/IamAuthConfigTest.java | /*
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
Permission is hereby granted, free of charge, to any person obtaining a copy of this
software and associated documentation files (the "Software"), to deal in the Software
without restriction, including without limitation the rights to use, copy, mod... | 7,457 |
0 | Create_ds/neptune-gremlin-client/gremlin-client/src/test/java/software/amazon/neptune | Create_ds/neptune-gremlin-client/gremlin-client/src/test/java/software/amazon/neptune/cluster/NeptuneInstanceMetadataTest.java | /*
Copyright 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://www.apache.org/licenses/LICENSE-2.0
or in the "license" file accompanying ... | 7,458 |
0 | Create_ds/neptune-gremlin-client/gremlin-client/src/test/java/software/amazon/neptune | Create_ds/neptune-gremlin-client/gremlin-client/src/test/java/software/amazon/neptune/cluster/SuspendedEndpointsTest.java | /*
Copyright 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://www.apache.org/licenses/LICENSE-2.0
or in the "license" file accompanying ... | 7,459 |
0 | Create_ds/neptune-gremlin-client/gremlin-client/src/test/java/software/amazon | Create_ds/neptune-gremlin-client/gremlin-client/src/test/java/software/amazon/utils/CollectionUtilsTest.java | /*
Copyright 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://www.apache.org/licenses/LICENSE-2.0
or in the "license" file accompanying ... | 7,460 |
0 | Create_ds/neptune-gremlin-client/gremlin-client/src/main/java/org/apache/tinkerpop/gremlin | Create_ds/neptune-gremlin-client/gremlin-client/src/main/java/org/apache/tinkerpop/gremlin/driver/ClusterContext.java | /*
Copyright 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://www.apache.org/licenses/LICENSE-2.0
or in the "license" file accompanying ... | 7,461 |
0 | Create_ds/neptune-gremlin-client/gremlin-client/src/main/java/org/apache/tinkerpop/gremlin | Create_ds/neptune-gremlin-client/gremlin-client/src/main/java/org/apache/tinkerpop/gremlin/driver/EndpointsUnavailableException.java | /*
Copyright 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://www.apache.org/licenses/LICENSE-2.0
or in the "license" file accompanying ... | 7,462 |
0 | Create_ds/neptune-gremlin-client/gremlin-client/src/main/java/org/apache/tinkerpop/gremlin | Create_ds/neptune-gremlin-client/gremlin-client/src/main/java/org/apache/tinkerpop/gremlin/driver/EagerRefreshContext.java | /*
Copyright 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://www.apache.org/licenses/LICENSE-2.0
or in the "license" file accompanying ... | 7,463 |
0 | Create_ds/neptune-gremlin-client/gremlin-client/src/main/java/org/apache/tinkerpop/gremlin | Create_ds/neptune-gremlin-client/gremlin-client/src/main/java/org/apache/tinkerpop/gremlin/driver/MetricsHandler.java | /*
Copyright 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://www.apache.org/licenses/LICENSE-2.0
or in the "license" file accompanying ... | 7,464 |
0 | Create_ds/neptune-gremlin-client/gremlin-client/src/main/java/org/apache/tinkerpop/gremlin | Create_ds/neptune-gremlin-client/gremlin-client/src/main/java/org/apache/tinkerpop/gremlin/driver/ClusterFactory.java | /*
Copyright 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://www.apache.org/licenses/LICENSE-2.0
or in the "license" file accompanying ... | 7,465 |
0 | Create_ds/neptune-gremlin-client/gremlin-client/src/main/java/org/apache/tinkerpop/gremlin | Create_ds/neptune-gremlin-client/gremlin-client/src/main/java/org/apache/tinkerpop/gremlin/driver/MetricsConfig.java | /*
Copyright 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://www.apache.org/licenses/LICENSE-2.0
or in the "license" file accompanying ... | 7,466 |
0 | Create_ds/neptune-gremlin-client/gremlin-client/src/main/java/org/apache/tinkerpop/gremlin | Create_ds/neptune-gremlin-client/gremlin-client/src/main/java/org/apache/tinkerpop/gremlin/driver/ConnectionMetrics.java | /*
Copyright 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://www.apache.org/licenses/LICENSE-2.0
or in the "license" file accompanying ... | 7,467 |
0 | Create_ds/neptune-gremlin-client/gremlin-client/src/main/java/org/apache/tinkerpop/gremlin | Create_ds/neptune-gremlin-client/gremlin-client/src/main/java/org/apache/tinkerpop/gremlin/driver/GremlinCluster.java | /*
Copyright 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://www.apache.org/licenses/LICENSE-2.0
or in the "license" file accompanying ... | 7,468 |
0 | Create_ds/neptune-gremlin-client/gremlin-client/src/main/java/org/apache/tinkerpop/gremlin | Create_ds/neptune-gremlin-client/gremlin-client/src/main/java/org/apache/tinkerpop/gremlin/driver/ConnectionAttemptManager.java | /*
Copyright 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://www.apache.org/licenses/LICENSE-2.0
or in the "license" file accompanying ... | 7,469 |
0 | Create_ds/neptune-gremlin-client/gremlin-client/src/main/java/org/apache/tinkerpop/gremlin | Create_ds/neptune-gremlin-client/gremlin-client/src/main/java/org/apache/tinkerpop/gremlin/driver/EndpointConnectionMetrics.java | /*
Copyright 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://www.apache.org/licenses/LICENSE-2.0
or in the "license" file accompanying ... | 7,470 |
0 | Create_ds/neptune-gremlin-client/gremlin-client/src/main/java/org/apache/tinkerpop/gremlin | Create_ds/neptune-gremlin-client/gremlin-client/src/main/java/org/apache/tinkerpop/gremlin/driver/GremlinClusterBuilder.java | /*
Copyright 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://www.apache.org/licenses/LICENSE-2.0
or in the "license" file accompanying ... | 7,471 |
0 | Create_ds/neptune-gremlin-client/gremlin-client/src/main/java/org/apache/tinkerpop/gremlin | Create_ds/neptune-gremlin-client/gremlin-client/src/main/java/org/apache/tinkerpop/gremlin/driver/EmptyEndpointFilter.java | /*
Copyright 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://www.apache.org/licenses/LICENSE-2.0
or in the "license" file accompanying ... | 7,472 |
0 | Create_ds/neptune-gremlin-client/gremlin-client/src/main/java/org/apache/tinkerpop/gremlin | Create_ds/neptune-gremlin-client/gremlin-client/src/main/java/org/apache/tinkerpop/gremlin/driver/DatabaseEndpoint.java | /*
Copyright 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://www.apache.org/licenses/LICENSE-2.0
or in the "license" file accompanying ... | 7,473 |
0 | Create_ds/neptune-gremlin-client/gremlin-client/src/main/java/org/apache/tinkerpop/gremlin | Create_ds/neptune-gremlin-client/gremlin-client/src/main/java/org/apache/tinkerpop/gremlin/driver/MetricsHandlerCollection.java | /*
Copyright 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://www.apache.org/licenses/LICENSE-2.0
or in the "license" file accompanying ... | 7,474 |
0 | Create_ds/neptune-gremlin-client/gremlin-client/src/main/java/org/apache/tinkerpop/gremlin | Create_ds/neptune-gremlin-client/gremlin-client/src/main/java/org/apache/tinkerpop/gremlin/driver/EndpointStrategies.java | /*
Copyright 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://www.apache.org/licenses/LICENSE-2.0
or in the "license" file accompanying ... | 7,475 |
0 | Create_ds/neptune-gremlin-client/gremlin-client/src/main/java/org/apache/tinkerpop/gremlin | Create_ds/neptune-gremlin-client/gremlin-client/src/main/java/org/apache/tinkerpop/gremlin/driver/EndpointFilter.java | /*
Copyright 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://www.apache.org/licenses/LICENSE-2.0
or in the "license" file accompanying ... | 7,476 |
0 | Create_ds/neptune-gremlin-client/gremlin-client/src/main/java/org/apache/tinkerpop/gremlin | Create_ds/neptune-gremlin-client/gremlin-client/src/main/java/org/apache/tinkerpop/gremlin/driver/ClientClusterCollection.java | /*
Copyright 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://www.apache.org/licenses/LICENSE-2.0
or in the "license" file accompanying ... | 7,477 |
0 | Create_ds/neptune-gremlin-client/gremlin-client/src/main/java/org/apache/tinkerpop/gremlin | Create_ds/neptune-gremlin-client/gremlin-client/src/main/java/org/apache/tinkerpop/gremlin/driver/RequestMetricsCollector.java | /*
Copyright 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://www.apache.org/licenses/LICENSE-2.0
or in the "license" file accompanying ... | 7,478 |
0 | Create_ds/neptune-gremlin-client/gremlin-client/src/main/java/org/apache/tinkerpop/gremlin | Create_ds/neptune-gremlin-client/gremlin-client/src/main/java/org/apache/tinkerpop/gremlin/driver/AcquireConnectionConfig.java | /*
Copyright 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://www.apache.org/licenses/LICENSE-2.0
or in the "license" file accompanying ... | 7,479 |
0 | Create_ds/neptune-gremlin-client/gremlin-client/src/main/java/org/apache/tinkerpop/gremlin | Create_ds/neptune-gremlin-client/gremlin-client/src/main/java/org/apache/tinkerpop/gremlin/driver/ChooseEndpointStrategy.java | /*
Copyright 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://www.apache.org/licenses/LICENSE-2.0
or in the "license" file accompanying ... | 7,480 |
0 | Create_ds/neptune-gremlin-client/gremlin-client/src/main/java/org/apache/tinkerpop/gremlin | Create_ds/neptune-gremlin-client/gremlin-client/src/main/java/org/apache/tinkerpop/gremlin/driver/RefreshTask.java | /*
Copyright 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://www.apache.org/licenses/LICENSE-2.0
or in the "license" file accompanying ... | 7,481 |
0 | Create_ds/neptune-gremlin-client/gremlin-client/src/main/java/org/apache/tinkerpop/gremlin | Create_ds/neptune-gremlin-client/gremlin-client/src/main/java/org/apache/tinkerpop/gremlin/driver/EndpointClient.java | /*
Copyright 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://www.apache.org/licenses/LICENSE-2.0
or in the "license" file accompanying ... | 7,482 |
0 | Create_ds/neptune-gremlin-client/gremlin-client/src/main/java/org/apache/tinkerpop/gremlin | Create_ds/neptune-gremlin-client/gremlin-client/src/main/java/org/apache/tinkerpop/gremlin/driver/EndpointRequestMetrics.java | /*
Copyright 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://www.apache.org/licenses/LICENSE-2.0
or in the "license" file accompanying ... | 7,483 |
0 | Create_ds/neptune-gremlin-client/gremlin-client/src/main/java/org/apache/tinkerpop/gremlin | Create_ds/neptune-gremlin-client/gremlin-client/src/main/java/org/apache/tinkerpop/gremlin/driver/OnEagerRefresh.java | /*
Copyright 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://www.apache.org/licenses/LICENSE-2.0
or in the "license" file accompanying ... | 7,484 |
0 | Create_ds/neptune-gremlin-client/gremlin-client/src/main/java/org/apache/tinkerpop/gremlin | Create_ds/neptune-gremlin-client/gremlin-client/src/main/java/org/apache/tinkerpop/gremlin/driver/ConnectionMetricsCollector.java | /*
Copyright 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://www.apache.org/licenses/LICENSE-2.0
or in the "license" file accompanying ... | 7,485 |
0 | Create_ds/neptune-gremlin-client/gremlin-client/src/main/java/org/apache/tinkerpop/gremlin | Create_ds/neptune-gremlin-client/gremlin-client/src/main/java/org/apache/tinkerpop/gremlin/driver/ApprovalResult.java | /*
Copyright 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://www.apache.org/licenses/LICENSE-2.0
or in the "license" file accompanying ... | 7,486 |
0 | Create_ds/neptune-gremlin-client/gremlin-client/src/main/java/org/apache/tinkerpop/gremlin | Create_ds/neptune-gremlin-client/gremlin-client/src/main/java/org/apache/tinkerpop/gremlin/driver/Endpoint.java | /*
Copyright 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://www.apache.org/licenses/LICENSE-2.0
or in the "license" file accompanying ... | 7,487 |
0 | Create_ds/neptune-gremlin-client/gremlin-client/src/main/java/org/apache/tinkerpop/gremlin | Create_ds/neptune-gremlin-client/gremlin-client/src/main/java/org/apache/tinkerpop/gremlin/driver/ErrorMetric.java | /*
Copyright 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://www.apache.org/licenses/LICENSE-2.0
or in the "license" file accompanying ... | 7,488 |
0 | Create_ds/neptune-gremlin-client/gremlin-client/src/main/java/org/apache/tinkerpop/gremlin | Create_ds/neptune-gremlin-client/gremlin-client/src/main/java/org/apache/tinkerpop/gremlin/driver/MetricsLogger.java | /*
Copyright 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://www.apache.org/licenses/LICENSE-2.0
or in the "license" file accompanying ... | 7,489 |
0 | Create_ds/neptune-gremlin-client/gremlin-client/src/main/java/org/apache/tinkerpop/gremlin | Create_ds/neptune-gremlin-client/gremlin-client/src/main/java/org/apache/tinkerpop/gremlin/driver/TopologyAwareBuilderConfigurator.java | /*
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
Permission is hereby granted, free of charge, to any person obtaining a copy of this
software and associated documentation files (the "Software"), to deal in the Software
without restriction, including without limitation the rights to use, copy, mod... | 7,490 |
0 | Create_ds/neptune-gremlin-client/gremlin-client/src/main/java/org/apache/tinkerpop/gremlin | Create_ds/neptune-gremlin-client/gremlin-client/src/main/java/org/apache/tinkerpop/gremlin/driver/EndpointClientCollection.java | /*
Copyright 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://www.apache.org/licenses/LICENSE-2.0
or in the "license" file accompanying ... | 7,491 |
0 | Create_ds/neptune-gremlin-client/gremlin-client/src/main/java/org/apache/tinkerpop/gremlin | Create_ds/neptune-gremlin-client/gremlin-client/src/main/java/org/apache/tinkerpop/gremlin/driver/Refreshable.java | /*
Copyright 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://www.apache.org/licenses/LICENSE-2.0
or in the "license" file accompanying ... | 7,492 |
0 | Create_ds/neptune-gremlin-client/gremlin-client/src/main/java/org/apache/tinkerpop/gremlin | Create_ds/neptune-gremlin-client/gremlin-client/src/main/java/org/apache/tinkerpop/gremlin/driver/EndpointCollection.java | /*
Copyright 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://www.apache.org/licenses/LICENSE-2.0
or in the "license" file accompanying ... | 7,493 |
0 | Create_ds/neptune-gremlin-client/gremlin-client/src/main/java/org/apache/tinkerpop/gremlin | Create_ds/neptune-gremlin-client/gremlin-client/src/main/java/org/apache/tinkerpop/gremlin/driver/GremlinClient.java | /*
Copyright 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://www.apache.org/licenses/LICENSE-2.0
or in the "license" file accompanying ... | 7,494 |
0 | Create_ds/neptune-gremlin-client/gremlin-client/src/main/java/org/apache/tinkerpop/gremlin | Create_ds/neptune-gremlin-client/gremlin-client/src/main/java/org/apache/tinkerpop/gremlin/driver/RequestMetrics.java | /*
Copyright 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://www.apache.org/licenses/LICENSE-2.0
or in the "license" file accompanying ... | 7,495 |
0 | Create_ds/neptune-gremlin-client/gremlin-client/src/main/java/software/amazon/neptune | Create_ds/neptune-gremlin-client/gremlin-client/src/main/java/software/amazon/neptune/cluster/ClusterEndpointsFetchStrategy.java | /*
Copyright 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://www.apache.org/licenses/LICENSE-2.0
or in the "license" file accompanying ... | 7,496 |
0 | Create_ds/neptune-gremlin-client/gremlin-client/src/main/java/software/amazon/neptune | Create_ds/neptune-gremlin-client/gremlin-client/src/main/java/software/amazon/neptune/cluster/OnNewClusterMetadata.java | /*
Copyright 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://www.apache.org/licenses/LICENSE-2.0
or in the "license" file accompanying ... | 7,497 |
0 | Create_ds/neptune-gremlin-client/gremlin-client/src/main/java/software/amazon/neptune | Create_ds/neptune-gremlin-client/gremlin-client/src/main/java/software/amazon/neptune/cluster/NeptuneGremlinClusterBuilder.java | /*
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
Permission is hereby granted, free of charge, to any person obtaining a copy of this
software and associated documentation files (the "Software"), to deal in the Software
without restriction, including without limitation the rights to use, copy, mod... | 7,498 |
0 | Create_ds/neptune-gremlin-client/gremlin-client/src/main/java/software/amazon/neptune | Create_ds/neptune-gremlin-client/gremlin-client/src/main/java/software/amazon/neptune/cluster/CommonClusterEndpointsFetchStrategy.java | /*
Copyright 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://www.apache.org/licenses/LICENSE-2.0
or in the "license" file accompanying ... | 7,499 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.