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/EVCache/evcache-core/src/main/java/com/netflix/evcache
Create_ds/EVCache/evcache-core/src/main/java/com/netflix/evcache/pool/EVCacheNodeList.java
package com.netflix.evcache.pool; import java.io.IOException; import java.net.UnknownServiceException; import java.util.Map; public interface EVCacheNodeList { /** * Discover memcached instances suitable for our use from the Discovery * Service. * * * @param appName The EVCache app for...
800
0
Create_ds/EVCache/evcache-core/src/main/java/com/netflix/evcache
Create_ds/EVCache/evcache-core/src/main/java/com/netflix/evcache/pool/EVCacheNodeLocator.java
package com.netflix.evcache.pool; import java.util.ArrayList; import java.util.Collection; import java.util.Collections; import java.util.Iterator; import java.util.List; import java.util.Map; import java.util.TreeMap; import com.netflix.archaius.api.Property; import org.slf4j.Logger; import org.slf4j.LoggerFactory; ...
801
0
Create_ds/EVCache/evcache-core/src/main/java/com/netflix/evcache
Create_ds/EVCache/evcache-core/src/main/java/com/netflix/evcache/pool/EVCacheClientUtil.java
package com.netflix.evcache.pool; import java.util.concurrent.Future; import java.util.concurrent.TimeUnit; import com.netflix.evcache.EVCacheKey; import net.spy.memcached.transcoders.Transcoder; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import com.netflix.evcache.EVCacheLatch; import com.netflix.evca...
802
0
Create_ds/EVCache/evcache-core/src/main/java/com/netflix/evcache
Create_ds/EVCache/evcache-core/src/main/java/com/netflix/evcache/pool/EVCacheClient.java
package com.netflix.evcache.pool; import java.io.BufferedInputStream; import java.io.IOException; import java.io.PrintWriter; import java.net.InetSocketAddress; import java.net.Socket; import java.net.SocketAddress; import java.net.URLDecoder; import java.nio.charset.StandardCharsets; import java.util.AbstractMap.Simp...
803
0
Create_ds/EVCache/evcache-core/src/main/java/com/netflix/evcache
Create_ds/EVCache/evcache-core/src/main/java/com/netflix/evcache/pool/ServerGroup.java
package com.netflix.evcache.pool; public class ServerGroup implements Comparable<ServerGroup> { private final String zone; private final String name; public ServerGroup(String zone, String name) { super(); this.zone = zone; this.name = name; } public String getZone() { ...
804
0
Create_ds/EVCache/evcache-core/src/main/java/com/netflix/evcache
Create_ds/EVCache/evcache-core/src/main/java/com/netflix/evcache/pool/EVCacheServerGroupConfig.java
package com.netflix.evcache.pool; import java.net.InetSocketAddress; import java.util.Set; public class EVCacheServerGroupConfig { private final ServerGroup serverGroup; private final Set<InetSocketAddress> inetSocketAddress; public EVCacheServerGroupConfig(ServerGroup serverGroup, Set<InetSocketAddress>...
805
0
Create_ds/EVCache/evcache-core/src/main/java/com/netflix/evcache
Create_ds/EVCache/evcache-core/src/main/java/com/netflix/evcache/pool/EVCacheClientPoolMBean.java
package com.netflix.evcache.pool; import java.util.Map; public interface EVCacheClientPoolMBean { int getInstanceCount(); Map<String, String> getInstancesByZone(); Map<String, Integer> getInstanceCountByZone(); Map<String, String> getReadZones(); Map<String, Integer> getReadInstanceCountByZon...
806
0
Create_ds/EVCache/evcache-core/src/main/java/com/netflix/evcache
Create_ds/EVCache/evcache-core/src/main/java/com/netflix/evcache/pool/SimpleNodeListProvider.java
package com.netflix.evcache.pool; import java.io.IOException; import java.io.InputStreamReader; import java.net.InetAddress; import java.net.InetSocketAddress; import java.nio.charset.Charset; import java.time.Duration; import java.util.*; import java.util.concurrent.TimeUnit; import com.netflix.archaius.api.Property...
807
0
Create_ds/EVCache/evcache-core/src/main/java/com/netflix/evcache
Create_ds/EVCache/evcache-core/src/main/java/com/netflix/evcache/pool/EVCacheValue.java
package com.netflix.evcache.pool; import java.io.Serializable; import java.util.Arrays; public class EVCacheValue implements Serializable { /** * */ private static final long serialVersionUID = 3182483105524224448L; private final String key; private final byte[] value; private final in...
808
0
Create_ds/EVCache/evcache-core/src/main/java/com/netflix/evcache/pool
Create_ds/EVCache/evcache-core/src/main/java/com/netflix/evcache/pool/observer/EVCacheConnectionObserverMBean.java
package com.netflix.evcache.pool.observer; import java.net.SocketAddress; import java.util.Set; public interface EVCacheConnectionObserverMBean { int getActiveServerCount(); Set<SocketAddress> getActiveServerNames(); int getInActiveServerCount(); Set<SocketAddress> getInActiveServerNames(); l...
809
0
Create_ds/EVCache/evcache-core/src/main/java/com/netflix/evcache/pool
Create_ds/EVCache/evcache-core/src/main/java/com/netflix/evcache/pool/observer/EVCacheConnectionObserver.java
package com.netflix.evcache.pool.observer; import java.lang.management.ManagementFactory; import java.net.InetSocketAddress; import java.net.SocketAddress; import java.util.Collections; import java.util.Map; import java.util.Set; import java.util.concurrent.ConcurrentHashMap; import javax.management.MBeanServer; impo...
810
0
Create_ds/EVCache/evcache-core/src/main/java/com/netflix/evcache
Create_ds/EVCache/evcache-core/src/main/java/com/netflix/evcache/event/EVCacheEvent.java
package com.netflix.evcache.event; import java.util.ArrayList; import java.util.Collection; import java.util.Collections; import java.util.Date; import java.util.HashMap; import java.util.Map; import com.netflix.evcache.EVCache.Call; import com.netflix.evcache.metrics.EVCacheMetricsFactory; import com.netflix.evcache...
811
0
Create_ds/EVCache/evcache-core/src/main/java/com/netflix/evcache
Create_ds/EVCache/evcache-core/src/main/java/com/netflix/evcache/event/EVCacheEventListener.java
package com.netflix.evcache.event; import java.util.EventListener; import com.netflix.evcache.EVCacheException; public interface EVCacheEventListener extends EventListener { void onStart(EVCacheEvent e); void onComplete(EVCacheEvent e); void onError(EVCacheEvent e, Throwable t); boolean onThrottl...
812
0
Create_ds/EVCache/evcache-core/src/main/java/com/netflix/evcache/event
Create_ds/EVCache/evcache-core/src/main/java/com/netflix/evcache/event/throttle/ThrottleListener.java
package com.netflix.evcache.event.throttle; import java.util.Collections; import java.util.Map; import java.util.Set; import java.util.concurrent.ConcurrentHashMap; import javax.inject.Inject; import javax.inject.Singleton; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import com.netflix.archaius.api.Pro...
813
0
Create_ds/EVCache/evcache-core/src/main/java/com/netflix/evcache/event
Create_ds/EVCache/evcache-core/src/main/java/com/netflix/evcache/event/hotkey/HotKeyListener.java
package com.netflix.evcache.event.hotkey; import java.util.Collections; import java.util.Map; import java.util.Set; import java.util.concurrent.ConcurrentHashMap; import java.util.concurrent.TimeUnit; import javax.inject.Inject; import javax.inject.Singleton; import org.slf4j.Logger; import org.slf4j.LoggerFactory; ...
814
0
Create_ds/EVCache/evcacheproxy/src/main/java/com/netflix/evcache
Create_ds/EVCache/evcacheproxy/src/main/java/com/netflix/evcache/service/StartServer.java
package com.netflix.evcache.service; import java.util.HashMap; import java.util.Map; import javax.servlet.ServletContextEvent; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import com.google.inject.Injector; import com.google.inject.servlet.ServletModule; import com.netflix.evcache.EVCacheClientLibrary; ...
815
0
Create_ds/EVCache/evcacheproxy/src/main/java/com/netflix/evcache
Create_ds/EVCache/evcacheproxy/src/main/java/com/netflix/evcache/service/HealthCheckHandlerImpl.java
package com.netflix.evcache.service; import com.google.inject.Singleton; import com.netflix.server.base.BaseHealthCheckServlet; /** * Created by senugula on 03/22/15. */ @Singleton public class HealthCheckHandlerImpl extends BaseHealthCheckServlet { public int getStatus() { return 200; // TODO } }
816
0
Create_ds/EVCache/evcacheproxy/src/main/java/com/netflix/evcache
Create_ds/EVCache/evcacheproxy/src/main/java/com/netflix/evcache/service/EVCacheServiceModule.java
package com.netflix.evcache.service; import com.google.inject.AbstractModule; import com.netflix.appinfo.ApplicationInfoManager; import com.netflix.config.ConfigurationManager; import com.netflix.discovery.guice.EurekaModule; import com.netflix.evcache.EVCacheModule; import com.netflix.evcache.connection.ConnectionMod...
817
0
Create_ds/EVCache/evcacheproxy/src/main/java/com/netflix/evcache/service
Create_ds/EVCache/evcacheproxy/src/main/java/com/netflix/evcache/service/resources/EVCacheRESTService.java
package com.netflix.evcache.service.resources; import com.google.inject.Inject; import com.google.inject.Singleton; import com.netflix.evcache.EVCache; import com.netflix.evcache.EVCacheException; import com.netflix.evcache.EVCacheLatch; import com.netflix.evcache.EVCacheLatch.Policy; import com.netflix.evcache.servic...
818
0
Create_ds/EVCache/evcacheproxy/src/main/java/com/netflix/evcache/service
Create_ds/EVCache/evcacheproxy/src/main/java/com/netflix/evcache/service/transcoder/RESTServiceTranscoder.java
package com.netflix.evcache.service.transcoder; import net.spy.memcached.CachedData; import net.spy.memcached.transcoders.SerializingTranscoder; /** * Created by senugula on 6/23/16. */ public class RESTServiceTranscoder extends SerializingTranscoder { static final int COMPRESSED = 2; public RESTServiceTra...
819
0
Create_ds/EVCache/evcacheproxy/src/main/java/com/netflix/evcservice
Create_ds/EVCache/evcacheproxy/src/main/java/com/netflix/evcservice/service/StatusPage.java
package com.netflix.evcservice.service; import com.google.inject.Singleton; import java.io.PrintWriter; import com.netflix.server.base.BaseStatusPage; /** * Created by senugula on 03/22/15. */ @Singleton public class StatusPage extends BaseStatusPage { private static final long serialVersionUID = 1L; @Overrid...
820
0
Create_ds/EVCache/evcache-client/test/com/netflix/evcache
Create_ds/EVCache/evcache-client/test/com/netflix/evcache/test/DIBase.java
package com.netflix.evcache.test; import com.google.inject.Injector; import com.netflix.appinfo.ApplicationInfoManager; import com.netflix.archaius.config.MapConfig; import com.netflix.archaius.guice.ArchaiusModule; import com.netflix.discovery.guice.EurekaClientModule; import com.netflix.evcache.EVCache; import com....
821
0
Create_ds/EVCache/evcache-client/test/com/netflix/evcache
Create_ds/EVCache/evcache-client/test/com/netflix/evcache/test/EVCacheTestDI.java
package com.netflix.evcache.test; import static org.testng.Assert.assertNotNull; import static org.testng.Assert.assertTrue; import java.util.Map; import java.util.Properties; import java.util.*; import java.util.concurrent.Future; import java.util.concurrent.TimeUnit; import com.netflix.evcache.*; import com.netfl...
822
0
Create_ds/EVCache/evcache-client/src/main/java/com/netflix
Create_ds/EVCache/evcache-client/src/main/java/com/netflix/evcache/EVCacheModule.java
package com.netflix.evcache; import javax.annotation.PostConstruct; import javax.annotation.PreDestroy; import com.google.inject.*; import com.netflix.archaius.api.annotations.ConfigurationSource; import com.netflix.evcache.connection.DIConnectionModule; import com.netflix.evcache.connection.IConnectionBuilder; impor...
823
0
Create_ds/EVCache/evcache-client/src/main/java/com/netflix/evcache
Create_ds/EVCache/evcache-client/src/main/java/com/netflix/evcache/connection/DIConnectionFactoryBuilderProvider.java
package com.netflix.evcache.connection; import com.netflix.archaius.api.Property; import com.netflix.archaius.api.PropertyRepository; import com.netflix.discovery.EurekaClient; import com.netflix.evcache.pool.EVCacheClient; import com.netflix.evcache.util.EVCacheConfig; import net.spy.memcached.ConnectionFactory; im...
824
0
Create_ds/EVCache/evcache-client/src/main/java/com/netflix/evcache
Create_ds/EVCache/evcache-client/src/main/java/com/netflix/evcache/connection/DIConnectionModule.java
package com.netflix.evcache.connection; import com.google.inject.AbstractModule; import com.google.inject.Singleton; @Singleton public class DIConnectionModule extends AbstractModule { public DIConnectionModule() { } @Override protected void configure() { bind(IConnectionBuilder.class).toPro...
825
0
Create_ds/EVCache/evcache-client/src/main/java/com/netflix/evcache
Create_ds/EVCache/evcache-client/src/main/java/com/netflix/evcache/connection/DIAsciiConnectionFactory.java
package com.netflix.evcache.connection; import java.util.List; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import com.netflix.archaius.api.Property; import com.netflix.discovery.EurekaClient; import com.netflix.evcache.metrics.EVCacheMetricsFactory; import com.netflix.evcache.pool.DIEVCacheKetamaNodeLoc...
826
0
Create_ds/EVCache/evcache-client/src/main/java/com/netflix/evcache
Create_ds/EVCache/evcache-client/src/main/java/com/netflix/evcache/connection/DIConnectionFactory.java
package com.netflix.evcache.connection; import com.netflix.archaius.api.Property; import com.netflix.discovery.EurekaClient; import com.netflix.evcache.metrics.EVCacheMetricsFactory; import com.netflix.evcache.pool.DIEVCacheKetamaNodeLocatorConfiguration; import com.netflix.evcache.pool.EVCacheClient; import com.netfl...
827
0
Create_ds/EVCache/evcache-client/src/main/java/com/netflix/evcache
Create_ds/EVCache/evcache-client/src/main/java/com/netflix/evcache/version/VersionTracker.java
package com.netflix.evcache.version; import java.util.ArrayList; import java.util.List; import java.util.concurrent.TimeUnit; import java.util.concurrent.atomic.AtomicLong; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import com.netflix.evcache.metrics.EVCacheMetricsFactory; import com.netflix.evcache.po...
828
0
Create_ds/EVCache/evcache-client/src/main/java/com/netflix/evcache
Create_ds/EVCache/evcache-client/src/main/java/com/netflix/evcache/pool/DIEVCacheKetamaNodeLocatorConfiguration.java
package com.netflix.evcache.pool; import com.netflix.appinfo.InstanceInfo; import com.netflix.discovery.EurekaClient; import com.netflix.discovery.shared.Application; import net.spy.memcached.MemcachedNode; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import java.net.InetSocketAddress; import java.net.Soc...
829
0
Create_ds/EVCache/evcache-client/src/main/java/com/netflix/evcache/pool
Create_ds/EVCache/evcache-client/src/main/java/com/netflix/evcache/pool/eureka/EurekaNodeListProvider.java
package com.netflix.evcache.pool.eureka; import com.google.common.net.InetAddresses; import com.netflix.appinfo.AmazonInfo; import com.netflix.appinfo.ApplicationInfoManager; import com.netflix.appinfo.DataCenterInfo; import com.netflix.appinfo.InstanceInfo; import com.netflix.appinfo.InstanceInfo.InstanceStatus; impo...
830
0
Create_ds/EVCache/evcache-client/src/main/java/com/netflix/evcache/pool
Create_ds/EVCache/evcache-client/src/main/java/com/netflix/evcache/pool/eureka/DIEVCacheNodeListProvider.java
package com.netflix.evcache.pool.eureka; import javax.inject.Inject; import javax.inject.Provider; import com.netflix.archaius.api.PropertyRepository; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import com.netflix.appinfo.ApplicationInfoManager; import com.netflix.discovery.EurekaClient; import com.netf...
831
0
Create_ds/neptune-export/src/test/java/org/apache/tinkerpop/gremlin
Create_ds/neptune-export/src/test/java/org/apache/tinkerpop/gremlin/driver/LBAwareSigV4WebSocketChannelizerTest.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 ...
832
0
Create_ds/neptune-export/src/test/java/com/amazonaws/services
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/AbstractExportIntegrationTest.java
package com.amazonaws.services.neptune; import com.amazonaws.services.neptune.propertygraph.Label; import com.amazonaws.services.neptune.propertygraph.io.JsonResource; import com.amazonaws.services.neptune.propertygraph.schema.GraphElementSchemas; import com.amazonaws.services.neptune.propertygraph.schema.GraphElement...
833
0
Create_ds/neptune-export/src/test/java/com/amazonaws/services
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/CreatePgConfigIntegrationTest.java
package com.amazonaws.services.neptune; import com.amazonaws.services.neptune.export.NeptuneExportRunner; import org.junit.Test; import java.io.File; public class CreatePgConfigIntegrationTest extends AbstractExportIntegrationTest{ @Test public void testCreatePgConfig() { final String[] command = {"...
834
0
Create_ds/neptune-export/src/test/java/com/amazonaws/services
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/ExportPgFromQueriesIntegrationTest.java
package com.amazonaws.services.neptune; import com.amazonaws.services.neptune.export.NeptuneExportRunner; import com.amazonaws.services.neptune.propertygraph.io.JsonResource; import com.amazonaws.services.neptune.propertygraph.schema.GraphSchema; import org.junit.Test; import java.io.File; import java.io.IOException;...
835
0
Create_ds/neptune-export/src/test/java/com/amazonaws/services
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/ExportPgFromConfigIntegrationTest.java
package com.amazonaws.services.neptune; import com.amazonaws.services.neptune.export.NeptuneExportRunner; import org.junit.Test; import java.io.File; public class ExportPgFromConfigIntegrationTest extends AbstractExportIntegrationTest{ @Test public void testExportPgFromConfig() { final String[] comm...
836
0
Create_ds/neptune-export/src/test/java/com/amazonaws/services
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/ExportPgIntegrationTest.java
package com.amazonaws.services.neptune; import com.amazonaws.services.neptune.export.NeptuneExportRunner; import org.junit.Test; import java.io.File; public class ExportPgIntegrationTest extends AbstractExportIntegrationTest{ @Test public void testExportPgToCsv() { final String[] command = {"export...
837
0
Create_ds/neptune-export/src/test/java/com/amazonaws/services
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/ExportRdfIntegrationTest.java
package com.amazonaws.services.neptune; import com.amazonaws.services.neptune.export.NeptuneExportRunner; import org.eclipse.rdf4j.rio.RDFFormat; import org.eclipse.rdf4j.rio.RDFParser; import org.eclipse.rdf4j.rio.Rio; import org.eclipse.rdf4j.rio.helpers.StatementCollector; import org.junit.Test; import static org.j...
838
0
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/cluster/InstanceTypeTest.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 ...
839
0
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/cluster/GetLastEventIdTest.java
package com.amazonaws.services.neptune.cluster; import org.junit.Assert; import org.junit.Test; import static org.junit.Assert.*; public class GetLastEventIdTest { @Test public void shouldReturnIntegerMaxValueForEngineVersions1041AndBelow(){ String expectedValue = String.valueOf(Integer.MAX_VALUE);...
840
0
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/util/MapUtils.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 ...
841
0
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/util/AWSCredentialsUtilTest.java
package com.amazonaws.services.neptune.util; import com.amazonaws.auth.AWSCredentialsProvider; import com.amazonaws.auth.DefaultAWSCredentialsProviderChain; import com.amazonaws.services.securitytoken.model.AWSSecurityTokenServiceException; import org.junit.Before; import org.junit.Test; import org.junit.rules.Tempor...
842
0
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/util/TransferManagerWrapperTest.java
package com.amazonaws.services.neptune.util; import com.amazonaws.SdkClientException; import com.amazonaws.auth.AWSCredentialsProvider; import com.amazonaws.auth.AnonymousAWSCredentials; import org.junit.Test; import org.mockito.internal.verification.AtLeast; import static org.junit.Assert.assertNotNull; import stati...
843
0
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/util/SemicolonUtilsTest.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 ...
844
0
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/util/S3ObjectInfoTest.java
/* Copyright 2019 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 accompan...
845
0
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/io/RecordSplitterTest.java
package com.amazonaws.services.neptune.io; import com.amazonaws.services.neptune.profiles.neptune_ml.JsonFromResource; import com.fasterxml.jackson.databind.JsonNode; import com.fasterxml.jackson.databind.node.ArrayNode; import org.junit.Test; import java.io.IOException; import java.util.*; import static org.junit.A...
846
0
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/io/DirectoriesTest.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 ...
847
0
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/io/KinesisConfigTest.java
package com.amazonaws.services.neptune.io; import com.amazonaws.auth.AWSCredentialsProvider; import com.amazonaws.services.neptune.cli.AbstractTargetModule; import org.junit.Before; import org.junit.Test; import org.mockito.Mockito; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertNot...
848
0
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/propertygraph/EdgeLabelStrategyTest.java
package com.amazonaws.services.neptune.propertygraph; import com.amazonaws.services.neptune.propertygraph.io.result.PGEdgeResult; import org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversalSource; import org.apache.tinkerpop.gremlin.tinkergraph.structure.TinkerFactory; import org.junit.Test; import...
849
0
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/propertygraph/ExportStatsTest.java
package com.amazonaws.services.neptune.propertygraph; import com.amazonaws.services.neptune.propertygraph.schema.GraphSchema; import com.fasterxml.jackson.core.JsonProcessingException; import com.fasterxml.jackson.databind.ObjectMapper; import com.fasterxml.jackson.databind.node.JsonNodeFactory; import com.fasterxml.j...
850
0
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/propertygraph/RangeFactoryTest.java
/* Copyright 2019 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 accompan...
851
0
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/propertygraph/EdgesClientTest.java
package com.amazonaws.services.neptune.propertygraph; import com.amazonaws.services.neptune.export.FeatureToggles; import com.amazonaws.services.neptune.propertygraph.io.GraphElementHandler; import com.amazonaws.services.neptune.propertygraph.io.result.PGResult; import com.amazonaws.services.neptune.propertygraph.sche...
852
0
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/propertygraph/NeptuneGremlinClientTest.java
package com.amazonaws.services.neptune.propertygraph; import com.amazonaws.services.neptune.auth.HandshakeRequestConfig; import com.amazonaws.services.neptune.cluster.ConcurrencyConfig; import com.amazonaws.services.neptune.cluster.ConnectionConfig; import com.amazonaws.services.neptune.propertygraph.io.SerializationC...
853
0
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/propertygraph/LabelTest.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 ...
854
0
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/propertygraph/NodesClientTest.java
package com.amazonaws.services.neptune.propertygraph; import com.amazonaws.services.neptune.export.FeatureToggles; import com.amazonaws.services.neptune.propertygraph.io.GraphElementHandler; import com.amazonaws.services.neptune.propertygraph.io.result.PGResult; import com.amazonaws.services.neptune.propertygraph.sche...
855
0
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/propertygraph/NodeLabelStrategyTest.java
package com.amazonaws.services.neptune.propertygraph; import com.amazonaws.services.neptune.propertygraph.io.result.ExportPGNodeResult; import com.amazonaws.services.neptune.propertygraph.io.result.PGEdgeResult; import com.amazonaws.services.neptune.propertygraph.io.result.PGResult; import org.apache.tinkerpop.gremlin...
856
0
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/propertygraph/SpecifiedLabelsTest.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 ...
857
0
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/propertygraph/RangeTest.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 ...
858
0
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/propertygraph/AllLabelsTest.java
package com.amazonaws.services.neptune.propertygraph; import com.amazonaws.services.neptune.export.FeatureToggles; import com.amazonaws.services.neptune.propertygraph.io.result.ExportPGNodeResult; import com.amazonaws.services.neptune.propertygraph.io.result.PGResult; import com.amazonaws.services.neptune.propertygrap...
859
0
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/propertygraph
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/propertygraph/io/CsvPropertyGraphPrinterTest.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 ...
860
0
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/propertygraph
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/propertygraph/io/JsonPropertyGraphPrinterTest.java
/* Copyright 2019 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 accompan...
861
0
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/propertygraph
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/propertygraph/io/QueryTaskTest.java
package com.amazonaws.services.neptune.propertygraph.io; import com.amazonaws.services.neptune.io.Status; import com.amazonaws.services.neptune.io.StatusOutputFormat; import com.amazonaws.services.neptune.propertygraph.AllLabels; import com.amazonaws.services.neptune.propertygraph.EdgeLabelStrategy; import com.amazona...
862
0
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/propertygraph
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/propertygraph/io/EdgeWriterTest.java
package com.amazonaws.services.neptune.propertygraph.io; import com.amazonaws.services.neptune.export.FeatureToggles; import com.amazonaws.services.neptune.propertygraph.AllLabels; import com.amazonaws.services.neptune.propertygraph.EdgeLabelStrategy; import com.amazonaws.services.neptune.propertygraph.EdgesClient; im...
863
0
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/propertygraph
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/propertygraph/io/VariableRowCsvPropertyGraphPrinterTest.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 ...
864
0
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/propertygraph
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/propertygraph/io/NodeWriterTest.java
package com.amazonaws.services.neptune.propertygraph.io; import com.amazonaws.services.neptune.export.FeatureToggles; import com.amazonaws.services.neptune.propertygraph.AllLabels; import com.amazonaws.services.neptune.propertygraph.EdgeLabelStrategy; import com.amazonaws.services.neptune.propertygraph.EdgesClient; im...
865
0
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/propertygraph
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/propertygraph/io/PropertyGraphStringPrinter.java
package com.amazonaws.services.neptune.propertygraph.io; import com.amazonaws.services.neptune.propertygraph.schema.PropertySchema; import com.amazonaws.services.neptune.util.NotImplementedException; import java.io.IOException; import java.util.Collection; import java.util.List; import java.util.Map; class PropertyG...
866
0
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/propertygraph
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/propertygraph/io/QueriesEdgeResultTest.java
package com.amazonaws.services.neptune.propertygraph.io; import com.amazonaws.services.neptune.propertygraph.io.result.QueriesEdgeResult; import com.amazonaws.services.neptune.propertygraph.schema.GraphElementType; import org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversalSource; import org.apache....
867
0
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/propertygraph
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/propertygraph/io/QueriesNodeResultTest.java
package com.amazonaws.services.neptune.propertygraph.io; import com.amazonaws.services.neptune.propertygraph.io.result.QueriesNodeResult; import com.amazonaws.services.neptune.propertygraph.schema.GraphElementType; import org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversalSource; import org.apache....
868
0
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/propertygraph
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/propertygraph/schema/DataTypeTest.java
/* Copyright 2019 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 accompan...
869
0
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/propertygraph
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/propertygraph/schema/LabelSchemaTest.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 ...
870
0
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/propertygraph
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/propertygraph/schema/GraphElementSchemasTest.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 ...
871
0
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/propertygraph
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/propertygraph/schema/PropertySchemaTest.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 ...
872
0
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/profiles
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/profiles/incremental_export/StreamRecordsNotFoundExceptionParserTest.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 ...
873
0
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/profiles
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/profiles/neptune_ml/JsonFromResource.java
package com.amazonaws.services.neptune.profiles.neptune_ml; import com.fasterxml.jackson.databind.JsonNode; import com.fasterxml.jackson.databind.ObjectMapper; import java.io.File; import java.io.IOException; import java.util.Objects; public class JsonFromResource { public static JsonNode get(String filename, C...
874
0
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/profiles
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/profiles/neptune_ml/Output.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 ...
875
0
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/profiles/neptune_ml
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/profiles/neptune_ml/v1/PropertyGraphTrainingDataConfigWriterV1FeatureTest.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 ...
876
0
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/profiles/neptune_ml
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/profiles/neptune_ml/v1/PropertyGraphTrainingDataConfigWriterV1LabelTest.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 ...
877
0
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/profiles/neptune_ml
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/profiles/neptune_ml/v1/TrainingDataWriterConfigV1Test.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 ...
878
0
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/profiles/neptune_ml
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/profiles/neptune_ml/v1/PropertyGraphTrainingDataConfigWriterV1FeatureOverrideTests.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 ...
879
0
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/profiles/neptune_ml/v1
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/profiles/neptune_ml/v1/parsing/ParseBucketCountV1Test.java
package com.amazonaws.services.neptune.profiles.neptune_ml.v1.parsing; import com.amazonaws.services.neptune.profiles.neptune_ml.common.parsing.ParsingContext; import com.fasterxml.jackson.databind.node.JsonNodeFactory; import com.fasterxml.jackson.databind.node.ObjectNode; import org.junit.Test; import static org.ju...
880
0
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/profiles/neptune_ml
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/profiles/neptune_ml/v2/NoneFeatureTest.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 ...
881
0
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/profiles/neptune_ml
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/profiles/neptune_ml/v2/EdgeLabelTest.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 ...
882
0
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/profiles/neptune_ml
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/profiles/neptune_ml/v2/BucketNumericalFeatureTest.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 ...
883
0
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/profiles/neptune_ml
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/profiles/neptune_ml/v2/DatetimeFeatureTest.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 ...
884
0
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/profiles/neptune_ml
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/profiles/neptune_ml/v2/PropertyGraphTrainingDataConfigWriterV2FeatureTest.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 ...
885
0
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/profiles/neptune_ml
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/profiles/neptune_ml/v2/NumericalCategoryAndAutoFeatureOverrideTest.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 ...
886
0
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/profiles/neptune_ml
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/profiles/neptune_ml/v2/TextFastTextFeatureTest.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 ...
887
0
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/profiles/neptune_ml
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/profiles/neptune_ml/v2/TextWord2VecFeatureTest.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 ...
888
0
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/profiles/neptune_ml
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/profiles/neptune_ml/v2/NodeLabelTest.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 ...
889
0
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/profiles/neptune_ml
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/profiles/neptune_ml/v2/TextTfIdfTest.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 ...
890
0
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/profiles/neptune_ml
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/profiles/neptune_ml/v2/TextSbertFeatureTest.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 ...
891
0
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/profiles/neptune_ml/v2
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/profiles/neptune_ml/v2/config/TrainingDataWriterConfigV2Test.java
package com.amazonaws.services.neptune.profiles.neptune_ml.v2.config; import com.amazonaws.services.neptune.profiles.neptune_ml.NeptuneMLSourceDataModel; import com.amazonaws.services.neptune.profiles.neptune_ml.JsonFromResource; import com.fasterxml.jackson.databind.JsonNode; import org.junit.Test; import java.io.IO...
892
0
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/profiles/neptune_ml/v2
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/profiles/neptune_ml/v2/parsing/ParseTaskTypeV2Test.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 ...
893
0
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/profiles/neptune_ml/v2
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/profiles/neptune_ml/v2/parsing/ParseImputerTypeV2Test.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 ...
894
0
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/profiles/neptune_ml/common
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/profiles/neptune_ml/common/parsing/ParseNormTest.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 ...
895
0
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/profiles/neptune_ml/common
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/profiles/neptune_ml/common/parsing/ParseNodeTypeTest.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 ...
896
0
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/profiles/neptune_ml/common
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/profiles/neptune_ml/common/parsing/ParseRangeTest.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 ...
897
0
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/profiles/neptune_ml/common
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/profiles/neptune_ml/common/parsing/ParseEdgeTypeTest.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 ...
898
0
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune
Create_ds/neptune-export/src/test/java/com/amazonaws/services/neptune/export/ParamConverterTest.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 ...
899