index
int64
0
0
repo_id
stringlengths
9
205
file_path
stringlengths
31
246
content
stringlengths
1
12.2M
__index_level_0__
int64
0
10k
0
Create_ds/astyanax/astyanax-test/src/test/java/com/netflix/astyanax
Create_ds/astyanax/astyanax-test/src/test/java/com/netflix/astyanax/thrift/CqlTest.java
package com.netflix.astyanax.thrift; import java.util.Iterator; import java.util.Map; import java.util.UUID; import java.util.Map.Entry; import junit.framework.Assert; import com.netflix.astyanax.shaded.org.apache.cassandra.db.marshal.UTF8Type; import org.junit.AfterClass; import org.junit.BeforeClass; import org.ju...
7,000
0
Create_ds/astyanax/astyanax-test/src/test/java/com/netflix/astyanax
Create_ds/astyanax/astyanax-test/src/test/java/com/netflix/astyanax/thrift/QueueTest.java
package com.netflix.astyanax.thrift; import java.util.Collection; import java.util.List; import java.util.Map; import java.util.concurrent.ConcurrentMap; import java.util.concurrent.ExecutorService; import java.util.concurrent.Executors; import java.util.concurrent.TimeUnit; import java.util.concurrent.atomic.AtomicLo...
7,001
0
Create_ds/astyanax/astyanax-test/src/test/java/com/netflix/astyanax
Create_ds/astyanax/astyanax-test/src/test/java/com/netflix/astyanax/thrift/HelloWorldFunction.java
package com.netflix.astyanax.thrift; import com.google.common.base.Function; import com.netflix.astyanax.recipes.queue.MessageContext; public class HelloWorldFunction implements Function<MessageContext, Boolean>{ private final static long startTime = System.currentTimeMillis(); @Override public Boolean ...
7,002
0
Create_ds/astyanax/astyanax-test/src/test/java/com/netflix/astyanax
Create_ds/astyanax/astyanax-test/src/test/java/com/netflix/astyanax/thrift/ThriftKeyspaceAllRowsTest.java
package com.netflix.astyanax.thrift; import com.google.common.collect.ImmutableMap; import com.netflix.astyanax.AstyanaxContext; import com.netflix.astyanax.ExceptionCallback; import com.netflix.astyanax.Keyspace; import com.netflix.astyanax.MutationBatch; import com.netflix.astyanax.RowCallback; import com.netflix.as...
7,003
0
Create_ds/astyanax/astyanax-test/src/test/java/com/netflix/astyanax
Create_ds/astyanax/astyanax-test/src/test/java/com/netflix/astyanax/thrift/MockCompositeType.java
package com.netflix.astyanax.thrift; import com.netflix.astyanax.annotations.Component; public class MockCompositeType { @Component private String stringPart; @Component private Integer intPart; @Component private Integer intPart2; @Component private boolean boolPart; @Componen...
7,004
0
Create_ds/astyanax/astyanax-test/src/test/java/com/netflix/astyanax
Create_ds/astyanax/astyanax-test/src/test/java/com/netflix/astyanax/thrift/ThriftKeyspaceImplTest.java
package com.netflix.astyanax.thrift; import java.io.IOException; import java.io.PrintWriter; import java.io.Serializable; import java.io.StringReader; import java.nio.ByteBuffer; import java.util.ArrayList; import java.util.Arrays; import java.util.Collection; import java.util.Iterator; import java.util.List; import j...
7,005
0
Create_ds/astyanax/astyanax-test/src/test/java/com/netflix/astyanax
Create_ds/astyanax/astyanax-test/src/test/java/com/netflix/astyanax/thrift/ThriftClusterImplTest.java
package com.netflix.astyanax.thrift; import java.util.Properties; import org.junit.AfterClass; import org.junit.Assert; import org.junit.BeforeClass; import org.junit.Test; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import com.netflix.astyanax.AstyanaxContext; import com.netflix.astyanax.Cluster; impor...
7,006
0
Create_ds/astyanax/astyanax-test/src/test/java/com/netflix/astyanax
Create_ds/astyanax/astyanax-test/src/test/java/com/netflix/astyanax/serializers/SerializersTest.java
package com.netflix.astyanax.serializers; import java.lang.reflect.Field; import java.math.BigDecimal; import java.math.BigInteger; import java.nio.ByteBuffer; import java.util.Date; import java.util.UUID; import junit.framework.Assert; import com.netflix.astyanax.shaded.org.apache.cassandra.db.marshal.AbstractType;...
7,007
0
Create_ds/astyanax/astyanax-test/src/test/java/com/netflix/astyanax
Create_ds/astyanax/astyanax-test/src/test/java/com/netflix/astyanax/serializers/AnnotatedCompositeSerializerTest.java
package com.netflix.astyanax.serializers; import com.google.common.base.Strings; import com.netflix.astyanax.annotations.Component; import org.junit.Test; import java.nio.ByteBuffer; import java.util.Date; /** * Created with IntelliJ IDEA. * User: omar * Date: 3/4/13 * Time: 5:22 PM * To change this template us...
7,008
0
Create_ds/astyanax/astyanax-test/src/test/java/com/netflix/astyanax
Create_ds/astyanax/astyanax-test/src/test/java/com/netflix/astyanax/serializers/SerializerPackageImplTest.java
package com.netflix.astyanax.serializers; import java.nio.ByteBuffer; import junit.framework.Assert; import org.junit.Test; public class SerializerPackageImplTest { @Test public void test() { SerializerPackageImpl serializers = new SerializerPackageImpl(); try { serializers.setColumnType("CompositeType(UTF...
7,009
0
Create_ds/astyanax/astyanax-test/src/test/java/com/netflix/astyanax
Create_ds/astyanax/astyanax-test/src/test/java/com/netflix/astyanax/recipes/ReverseIndexQueryTest.java
package com.netflix.astyanax.recipes; import java.nio.ByteBuffer; import java.util.Arrays; import java.util.HashMap; import java.util.Map; import java.util.concurrent.atomic.AtomicLong; import junit.framework.Assert; import org.junit.AfterClass; import org.junit.BeforeClass; import org.junit.Test; import org.slf4j.L...
7,010
0
Create_ds/astyanax/astyanax-test/src/test/java/com/netflix/astyanax
Create_ds/astyanax/astyanax-test/src/test/java/com/netflix/astyanax/recipes/MiscUnitTest.java
package com.netflix.astyanax.recipes; import com.google.common.base.Function; import com.google.common.base.Stopwatch; import com.google.common.collect.ImmutableMap; import com.google.common.collect.Maps; import com.netflix.astyanax.AstyanaxContext; import com.netflix.astyanax.ColumnListMutation; import com.netflix.as...
7,011
0
Create_ds/astyanax/astyanax-test/src/test/java/com/netflix/astyanax
Create_ds/astyanax/astyanax-test/src/test/java/com/netflix/astyanax/recipes/UniquenessConstraintTest.java
package com.netflix.astyanax.recipes; import java.util.HashMap; import java.util.Map; import junit.framework.Assert; import org.junit.AfterClass; import org.junit.BeforeClass; import org.junit.Ignore; import org.junit.Test; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import com.netflix.astyanax.Astyana...
7,012
0
Create_ds/astyanax/astyanax-test/src/test/java/com/netflix/astyanax
Create_ds/astyanax/astyanax-test/src/test/java/com/netflix/astyanax/recipes/ChunkedObjectRecipeTest.java
package com.netflix.astyanax.recipes; import java.io.ByteArrayInputStream; import java.io.ByteArrayOutputStream; import junit.framework.Assert; import org.junit.AfterClass; import org.junit.BeforeClass; import org.junit.Test; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import com.google.common.collect....
7,013
0
Create_ds/astyanax/astyanax-test/src/test/java/com/netflix/astyanax
Create_ds/astyanax/astyanax-test/src/test/java/com/netflix/astyanax/recipes/LockRecipeTest.java
package com.netflix.astyanax.recipes; import java.util.concurrent.TimeUnit; import com.netflix.astyanax.test.EmbeddedCassandra; import junit.framework.Assert; import org.junit.AfterClass; import org.junit.BeforeClass; import org.junit.Ignore; import org.junit.Test; import com.google.common.collect.ImmutableMap; imp...
7,014
0
Create_ds/astyanax/astyanax-test/src/test/java/com/netflix/astyanax
Create_ds/astyanax/astyanax-test/src/test/java/com/netflix/astyanax/model/DynamicCompositeTest.java
package com.netflix.astyanax.model; import java.nio.ByteBuffer; import java.util.UUID; import org.junit.Test; import com.netflix.astyanax.serializers.AbstractSerializer; import com.netflix.astyanax.serializers.AsciiSerializer; import com.netflix.astyanax.serializers.BytesArraySerializer; import com.netflix.astyanax...
7,015
0
Create_ds/astyanax/astyanax-test/src/test/java/com/netflix/astyanax
Create_ds/astyanax/astyanax-test/src/test/java/com/netflix/astyanax/model/CompositeTest.java
package com.netflix.astyanax.model; import java.nio.ByteBuffer; import java.util.UUID; import java.util.concurrent.TimeUnit; import org.junit.Test; import org.apache.commons.lang.StringUtils; import com.netflix.astyanax.serializers.ByteBufferOutputStream; import junit.framework.Assert; import static org.junit.As...
7,016
0
Create_ds/astyanax/astyanax-test/src/test/java/com/netflix/astyanax/connectionpool
Create_ds/astyanax/astyanax-test/src/test/java/com/netflix/astyanax/connectionpool/impl/RoundRobinConnectionPoolImplTest.java
/******************************************************************************* * Copyright 2011 Netflix * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/...
7,017
0
Create_ds/astyanax/astyanax-test/src/test/java/com/netflix/astyanax/connectionpool
Create_ds/astyanax/astyanax-test/src/test/java/com/netflix/astyanax/connectionpool/impl/StressSimpleHostConnectionPoolImpl.java
/******************************************************************************* * Copyright 2011 Netflix * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/...
7,018
0
Create_ds/astyanax/astyanax-test/src/test/java/com/netflix/astyanax/connectionpool
Create_ds/astyanax/astyanax-test/src/test/java/com/netflix/astyanax/connectionpool/impl/Stress.java
/******************************************************************************* * Copyright 2011 Netflix * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/...
7,019
0
Create_ds/astyanax/astyanax-test/src/test/java/com/netflix/astyanax/connectionpool
Create_ds/astyanax/astyanax-test/src/test/java/com/netflix/astyanax/connectionpool/impl/SimpleHostConnectionPoolTest.java
package com.netflix.astyanax.connectionpool.impl; import junit.framework.Assert; import org.junit.Ignore; import org.junit.Test; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import com.netflix.astyanax.connectionpool.Connection; import com.netflix.astyanax.connectionpool.ConnectionPoolConfiguration; impo...
7,020
0
Create_ds/astyanax/astyanax-test/src/test/java/com/netflix/astyanax/connectionpool
Create_ds/astyanax/astyanax-test/src/test/java/com/netflix/astyanax/connectionpool/impl/BagConnectionPoolImplTest.java
package com.netflix.astyanax.connectionpool.impl; import com.netflix.astyanax.connectionpool.ConnectionPool; import com.netflix.astyanax.connectionpool.ConnectionContext; import com.netflix.astyanax.connectionpool.ConnectionPoolConfiguration; import com.netflix.astyanax.connectionpool.Host; import com.netflix.astyanax...
7,021
0
Create_ds/astyanax/astyanax-test/src/test/java/com/netflix/astyanax/connectionpool
Create_ds/astyanax/astyanax-test/src/test/java/com/netflix/astyanax/connectionpool/impl/HostConnectionPoolPartitionTest.java
package com.netflix.astyanax.connectionpool.impl; import java.math.BigInteger; import java.util.Arrays; import java.util.Collection; import java.util.List; import java.util.Map; import junit.framework.Assert; import org.junit.Test; import com.google.common.collect.Lists; import com.google.common.collect.Maps; impor...
7,022
0
Create_ds/astyanax/astyanax-test/src/test/java/com/netflix/astyanax/connectionpool
Create_ds/astyanax/astyanax-test/src/test/java/com/netflix/astyanax/connectionpool/impl/TokenAwareConnectionPoolTest.java
package com.netflix.astyanax.connectionpool.impl; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertNotNull; import java.math.BigInteger; import java.util.List; import org.junit.Test; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import com.netflix.astyanax.connectionpool....
7,023
0
Create_ds/astyanax/astyanax-test/src/test/java/com/netflix/astyanax/connectionpool
Create_ds/astyanax/astyanax-test/src/test/java/com/netflix/astyanax/connectionpool/impl/RingDescribeNodeAutoDiscoveryImplTest.java
/******************************************************************************* * Copyright 2011 Netflix * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/...
7,024
0
Create_ds/astyanax/astyanax-test/src/test/java/com/netflix/astyanax/connectionpool
Create_ds/astyanax/astyanax-test/src/test/java/com/netflix/astyanax/connectionpool/impl/BaseConnectionPoolTest.java
/******************************************************************************* * Copyright 2011 Netflix * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/...
7,025
0
Create_ds/astyanax/astyanax-test/src/test/java/com/netflix/astyanax
Create_ds/astyanax/astyanax-test/src/test/java/com/netflix/astyanax/query/PreparedQueryTests.java
package com.netflix.astyanax.query; import static org.junit.Assert.*; import java.nio.ByteBuffer; import java.util.LinkedList; import java.util.List; import org.junit.Test; import com.google.common.util.concurrent.ListenableFuture; import com.netflix.astyanax.connectionpool.OperationResult; import com.netflix.astya...
7,026
0
Create_ds/astyanax/astyanax-test/src/main/java/com/netflix/astyanax
Create_ds/astyanax/astyanax-test/src/main/java/com/netflix/astyanax/test/EmbeddedCassandra.java
/******************************************************************************* * Copyright 2011 Netflix * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/li...
7,027
0
Create_ds/astyanax/astyanax-test/src/main/java/com/netflix/astyanax/cql
Create_ds/astyanax/astyanax-test/src/main/java/com/netflix/astyanax/cql/test/ColumnTimestampAndTTLTests.java
/** * Copyright 2013 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed ...
7,028
0
Create_ds/astyanax/astyanax-test/src/main/java/com/netflix/astyanax/cql
Create_ds/astyanax/astyanax-test/src/main/java/com/netflix/astyanax/cql/test/RowCopierTests.java
/** * Copyright 2013 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed ...
7,029
0
Create_ds/astyanax/astyanax-test/src/main/java/com/netflix/astyanax/cql
Create_ds/astyanax/astyanax-test/src/main/java/com/netflix/astyanax/cql/test/SerializerPackageTests.java
/** * Copyright 2013 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed ...
7,030
0
Create_ds/astyanax/astyanax-test/src/main/java/com/netflix/astyanax/cql
Create_ds/astyanax/astyanax-test/src/main/java/com/netflix/astyanax/cql/test/CounterColumnTests.java
/** * Copyright 2013 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed ...
7,031
0
Create_ds/astyanax/astyanax-test/src/main/java/com/netflix/astyanax/cql
Create_ds/astyanax/astyanax-test/src/main/java/com/netflix/astyanax/cql/test/RingDescribeTests.java
/** * Copyright 2013 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed ...
7,032
0
Create_ds/astyanax/astyanax-test/src/main/java/com/netflix/astyanax/cql
Create_ds/astyanax/astyanax-test/src/main/java/com/netflix/astyanax/cql/test/SingleColumnMutationTests.java
/** * Copyright 2013 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed ...
7,033
0
Create_ds/astyanax/astyanax-test/src/main/java/com/netflix/astyanax/cql
Create_ds/astyanax/astyanax-test/src/main/java/com/netflix/astyanax/cql/test/TimeUUIDTests.java
/** * Copyright 2013 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed ...
7,034
0
Create_ds/astyanax/astyanax-test/src/main/java/com/netflix/astyanax/cql
Create_ds/astyanax/astyanax-test/src/main/java/com/netflix/astyanax/cql/test/RowSliceRowRangeQueryTests.java
/** * Copyright 2013 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed ...
7,035
0
Create_ds/astyanax/astyanax-test/src/main/java/com/netflix/astyanax/cql
Create_ds/astyanax/astyanax-test/src/main/java/com/netflix/astyanax/cql/test/RowUniquenessConstraintTest.java
/** * Copyright 2013 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed ...
7,036
0
Create_ds/astyanax/astyanax-test/src/main/java/com/netflix/astyanax/cql
Create_ds/astyanax/astyanax-test/src/main/java/com/netflix/astyanax/cql/test/KeyspaceTests.java
/** * Copyright 2013 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed ...
7,037
0
Create_ds/astyanax/astyanax-test/src/main/java/com/netflix/astyanax/cql
Create_ds/astyanax/astyanax-test/src/main/java/com/netflix/astyanax/cql/test/StaticColumnFamilyTests.java
/** * Copyright 2013 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed ...
7,038
0
Create_ds/astyanax/astyanax-test/src/main/java/com/netflix/astyanax/cql
Create_ds/astyanax/astyanax-test/src/main/java/com/netflix/astyanax/cql/test/ColumnCountQueryTests.java
/** * Copyright 2013 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed ...
7,039
0
Create_ds/astyanax/astyanax-test/src/main/java/com/netflix/astyanax/cql
Create_ds/astyanax/astyanax-test/src/main/java/com/netflix/astyanax/cql/test/CompositeColumnTests.java
/** * Copyright 2013 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed ...
7,040
0
Create_ds/astyanax/astyanax-test/src/main/java/com/netflix/astyanax/cql
Create_ds/astyanax/astyanax-test/src/main/java/com/netflix/astyanax/cql/test/SchemaTests.java
/** * Copyright 2013 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed ...
7,041
0
Create_ds/astyanax/astyanax-test/src/main/java/com/netflix/astyanax/cql
Create_ds/astyanax/astyanax-test/src/main/java/com/netflix/astyanax/cql/test/SingleRowColumnPaginationTests.java
/** * Copyright 2013 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed ...
7,042
0
Create_ds/astyanax/astyanax-test/src/main/java/com/netflix/astyanax/cql
Create_ds/astyanax/astyanax-test/src/main/java/com/netflix/astyanax/cql/test/CFStandardTests.java
/** * Copyright 2013 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed ...
7,043
0
Create_ds/astyanax/astyanax-test/src/main/java/com/netflix/astyanax/cql
Create_ds/astyanax/astyanax-test/src/main/java/com/netflix/astyanax/cql/test/SingleRowColumnRangeQueryTests.java
/** * Copyright 2013 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed ...
7,044
0
Create_ds/astyanax/astyanax-test/src/main/java/com/netflix/astyanax/cql
Create_ds/astyanax/astyanax-test/src/main/java/com/netflix/astyanax/cql/test/MockCompositeTypeTests.java
/** * Copyright 2013 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed ...
7,045
0
Create_ds/astyanax/astyanax-test/src/main/java/com/netflix/astyanax/cql
Create_ds/astyanax/astyanax-test/src/main/java/com/netflix/astyanax/cql/test/AllRowsQueryTest.java
/** * Copyright 2013 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed ...
7,046
0
Create_ds/astyanax/astyanax-test/src/main/java/com/netflix/astyanax/cql
Create_ds/astyanax/astyanax-test/src/main/java/com/netflix/astyanax/cql/test/SingleRowQueryTests.java
/** * Copyright 2013 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed ...
7,047
0
Create_ds/astyanax/astyanax-test/src/main/java/com/netflix/astyanax/cql
Create_ds/astyanax/astyanax-test/src/main/java/com/netflix/astyanax/cql/test/ClickStreamTests.java
/** * Copyright 2013 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed ...
7,048
0
Create_ds/astyanax/astyanax-test/src/main/java/com/netflix/astyanax/cql
Create_ds/astyanax/astyanax-test/src/main/java/com/netflix/astyanax/cql/test/CompositeKeyTests.java
/** * Copyright 2013 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed ...
7,049
0
Create_ds/astyanax/astyanax-test/src/main/java/com/netflix/astyanax/cql
Create_ds/astyanax/astyanax-test/src/main/java/com/netflix/astyanax/cql/test/PreparedStatementTests.java
/** * Copyright 2013 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed ...
7,050
0
Create_ds/astyanax/astyanax-test/src/main/java/com/netflix/astyanax/cql
Create_ds/astyanax/astyanax-test/src/main/java/com/netflix/astyanax/cql/test/DirectCqlTests.java
/** * Copyright 2013 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed ...
7,051
0
Create_ds/astyanax/astyanax-test/src/main/java/com/netflix/astyanax/cql
Create_ds/astyanax/astyanax-test/src/main/java/com/netflix/astyanax/cql/test/LongColumnPaginationTests.java
/** * Copyright 2013 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed ...
7,052
0
Create_ds/astyanax/astyanax-test/src/main/java/com/netflix/astyanax/cql/test
Create_ds/astyanax/astyanax-test/src/main/java/com/netflix/astyanax/cql/test/entitymapper/EntityMapperTests.java
/** * Copyright 2013 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed ...
7,053
0
Create_ds/astyanax/astyanax-test/src/main/java/com/netflix/astyanax/cql/test
Create_ds/astyanax/astyanax-test/src/main/java/com/netflix/astyanax/cql/test/utils/TestUtils.java
/** * Copyright 2013 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed ...
7,054
0
Create_ds/astyanax/astyanax-test/src/main/java/com/netflix/astyanax/cql/test
Create_ds/astyanax/astyanax-test/src/main/java/com/netflix/astyanax/cql/test/utils/AstyanaxContextFactory.java
/** * Copyright 2013 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed ...
7,055
0
Create_ds/astyanax/astyanax-test/src/main/java/com/netflix/astyanax/cql/test
Create_ds/astyanax/astyanax-test/src/main/java/com/netflix/astyanax/cql/test/utils/ClusterConfiguration.java
/** * Copyright 2013 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed ...
7,056
0
Create_ds/astyanax/astyanax-test/src/main/java/com/netflix/astyanax/cql/test
Create_ds/astyanax/astyanax-test/src/main/java/com/netflix/astyanax/cql/test/utils/ReadTests.java
/** * Copyright 2013 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed ...
7,057
0
Create_ds/astyanax/astyanax-test/src/main/java/com/netflix/astyanax/cql/test
Create_ds/astyanax/astyanax-test/src/main/java/com/netflix/astyanax/cql/test/recipes/ChunkedObjectStoreTest.java
/** * Copyright 2013 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed ...
7,058
0
Create_ds/astyanax/astyanax-test/src/main/java/com/netflix/astyanax/cql/test
Create_ds/astyanax/astyanax-test/src/main/java/com/netflix/astyanax/cql/test/recipes/ColumnPrefixDistributedLockTest.java
/** * Copyright 2013 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed ...
7,059
0
Create_ds/astyanax/astyanax-test/src/main/java/com/netflix/astyanax/cql/test
Create_ds/astyanax/astyanax-test/src/main/java/com/netflix/astyanax/cql/test/recipes/AllRowsReaderTest.java
/** * Copyright 2013 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed ...
7,060
0
Create_ds/astyanax/astyanax-test/src/main/java/com/netflix/astyanax/cql/test
Create_ds/astyanax/astyanax-test/src/main/java/com/netflix/astyanax/cql/test/recipes/ColumnPrefixUniquenessConstraintTest.java
/** * Copyright 2013 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed ...
7,061
0
Create_ds/astyanax/astyanax-core/src/main/java/com/netflix
Create_ds/astyanax/astyanax-core/src/main/java/com/netflix/astyanax/Execution.java
/******************************************************************************* * Copyright 2011 Netflix * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/li...
7,062
0
Create_ds/astyanax/astyanax-core/src/main/java/com/netflix
Create_ds/astyanax/astyanax-core/src/main/java/com/netflix/astyanax/AuthenticationCredentials.java
/** * Copyright 2013 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed ...
7,063
0
Create_ds/astyanax/astyanax-core/src/main/java/com/netflix
Create_ds/astyanax/astyanax-core/src/main/java/com/netflix/astyanax/Clock.java
/******************************************************************************* * Copyright 2011 Netflix * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/...
7,064
0
Create_ds/astyanax/astyanax-core/src/main/java/com/netflix
Create_ds/astyanax/astyanax-core/src/main/java/com/netflix/astyanax/ExceptionCallback.java
/** * Copyright 2013 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed ...
7,065
0
Create_ds/astyanax/astyanax-core/src/main/java/com/netflix/astyanax
Create_ds/astyanax/astyanax-core/src/main/java/com/netflix/astyanax/impl/FilteringHostSupplier.java
/******************************************************************************* * Copyright 2011 Netflix * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/...
7,066
0
Create_ds/astyanax/astyanax-core/src/main/java/com/netflix/astyanax
Create_ds/astyanax/astyanax-core/src/main/java/com/netflix/astyanax/tracing/OperationTracer.java
/** * Copyright 2013 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed ...
7,067
0
Create_ds/astyanax/astyanax-core/src/main/java/com/netflix/astyanax
Create_ds/astyanax/astyanax-core/src/main/java/com/netflix/astyanax/tracing/AstyanaxContext.java
/** * Copyright 2013 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed ...
7,068
0
Create_ds/astyanax/astyanax-core/src/main/java/com/netflix/astyanax
Create_ds/astyanax/astyanax-core/src/main/java/com/netflix/astyanax/test/TestHostConnectionPool.java
/******************************************************************************* * Copyright 2011 Netflix * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/...
7,069
0
Create_ds/astyanax/astyanax-core/src/main/java/com/netflix/astyanax
Create_ds/astyanax/astyanax-core/src/main/java/com/netflix/astyanax/test/TestClient.java
/******************************************************************************* * Copyright 2011 Netflix * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/...
7,070
0
Create_ds/astyanax/astyanax-core/src/main/java/com/netflix/astyanax
Create_ds/astyanax/astyanax-core/src/main/java/com/netflix/astyanax/test/TestHostType.java
/******************************************************************************* * Copyright 2011 Netflix * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/...
7,071
0
Create_ds/astyanax/astyanax-core/src/main/java/com/netflix/astyanax
Create_ds/astyanax/astyanax-core/src/main/java/com/netflix/astyanax/test/TestCompositeType2.java
/******************************************************************************* * Copyright 2011 Netflix * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/...
7,072
0
Create_ds/astyanax/astyanax-core/src/main/java/com/netflix/astyanax
Create_ds/astyanax/astyanax-core/src/main/java/com/netflix/astyanax/test/SessionEvent.java
/******************************************************************************* * Copyright 2011 Netflix * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/...
7,073
0
Create_ds/astyanax/astyanax-core/src/main/java/com/netflix/astyanax
Create_ds/astyanax/astyanax-core/src/main/java/com/netflix/astyanax/test/TestTokenRange.java
/******************************************************************************* * Copyright 2011 Netflix * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/...
7,074
0
Create_ds/astyanax/astyanax-core/src/main/java/com/netflix/astyanax
Create_ds/astyanax/astyanax-core/src/main/java/com/netflix/astyanax/test/TestDriver.java
/** * Copyright 2013 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed ...
7,075
0
Create_ds/astyanax/astyanax-core/src/main/java/com/netflix/astyanax
Create_ds/astyanax/astyanax-core/src/main/java/com/netflix/astyanax/test/ProbabalisticFunction.java
/** * Copyright 2013 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed ...
7,076
0
Create_ds/astyanax/astyanax-core/src/main/java/com/netflix/astyanax
Create_ds/astyanax/astyanax-core/src/main/java/com/netflix/astyanax/test/TestConnectionPool.java
/******************************************************************************* * Copyright 2011 Netflix * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/...
7,077
0
Create_ds/astyanax/astyanax-core/src/main/java/com/netflix/astyanax
Create_ds/astyanax/astyanax-core/src/main/java/com/netflix/astyanax/test/TestCompositeType.java
/******************************************************************************* * Copyright 2011 Netflix * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/...
7,078
0
Create_ds/astyanax/astyanax-core/src/main/java/com/netflix/astyanax
Create_ds/astyanax/astyanax-core/src/main/java/com/netflix/astyanax/test/IncreasingRateSupplier.java
/** * Copyright 2013 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed ...
7,079
0
Create_ds/astyanax/astyanax-core/src/main/java/com/netflix/astyanax
Create_ds/astyanax/astyanax-core/src/main/java/com/netflix/astyanax/test/TestConnectionFactory.java
/******************************************************************************* * Copyright 2011 Netflix * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/...
7,080
0
Create_ds/astyanax/astyanax-core/src/main/java/com/netflix/astyanax
Create_ds/astyanax/astyanax-core/src/main/java/com/netflix/astyanax/test/TestOperation.java
/******************************************************************************* * Copyright 2011 Netflix * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/...
7,081
0
Create_ds/astyanax/astyanax-core/src/main/java/com/netflix/astyanax
Create_ds/astyanax/astyanax-core/src/main/java/com/netflix/astyanax/retry/SleepingRetryPolicy.java
/******************************************************************************* * Copyright 2011 Netflix * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/...
7,082
0
Create_ds/astyanax/astyanax-core/src/main/java/com/netflix/astyanax
Create_ds/astyanax/astyanax-core/src/main/java/com/netflix/astyanax/retry/RunOnce.java
/******************************************************************************* * Copyright 2011 Netflix * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/...
7,083
0
Create_ds/astyanax/astyanax-core/src/main/java/com/netflix/astyanax
Create_ds/astyanax/astyanax-core/src/main/java/com/netflix/astyanax/retry/RetryPolicy.java
/******************************************************************************* * Copyright 2011 Netflix * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/...
7,084
0
Create_ds/astyanax/astyanax-core/src/main/java/com/netflix/astyanax
Create_ds/astyanax/astyanax-core/src/main/java/com/netflix/astyanax/retry/RetryNTimes.java
/******************************************************************************* * Copyright 2011 Netflix * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/...
7,085
0
Create_ds/astyanax/astyanax-core/src/main/java/com/netflix/astyanax
Create_ds/astyanax/astyanax-core/src/main/java/com/netflix/astyanax/retry/ExponentialBackoff.java
/******************************************************************************* * Copyright 2011 Netflix * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/...
7,086
0
Create_ds/astyanax/astyanax-core/src/main/java/com/netflix/astyanax
Create_ds/astyanax/astyanax-core/src/main/java/com/netflix/astyanax/retry/ConstantBackoff.java
/******************************************************************************* * Copyright 2011 Netflix * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/...
7,087
0
Create_ds/astyanax/astyanax-core/src/main/java/com/netflix/astyanax
Create_ds/astyanax/astyanax-core/src/main/java/com/netflix/astyanax/retry/IndefiniteRetry.java
/** * Copyright 2013 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed ...
7,088
0
Create_ds/astyanax/astyanax-core/src/main/java/com/netflix/astyanax
Create_ds/astyanax/astyanax-core/src/main/java/com/netflix/astyanax/retry/BoundedExponentialBackoff.java
/******************************************************************************* * Copyright 2011 Netflix * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/...
7,089
0
Create_ds/astyanax/astyanax-core/src/main/java/com/netflix/astyanax
Create_ds/astyanax/astyanax-core/src/main/java/com/netflix/astyanax/retry/RunOnceRetryPolicyFactory.java
/** * Copyright 2013 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed ...
7,090
0
Create_ds/astyanax/astyanax-core/src/main/java/com/netflix/astyanax
Create_ds/astyanax/astyanax-core/src/main/java/com/netflix/astyanax/util/BlockingConcurrentWindowCounter.java
/******************************************************************************* * Copyright 2011 Netflix * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/...
7,091
0
Create_ds/astyanax/astyanax-core/src/main/java/com/netflix/astyanax
Create_ds/astyanax/astyanax-core/src/main/java/com/netflix/astyanax/util/TokenGenerator.java
/******************************************************************************* * Copyright 2011 Netflix * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/...
7,092
0
Create_ds/astyanax/astyanax-core/src/main/java/com/netflix/astyanax
Create_ds/astyanax/astyanax-core/src/main/java/com/netflix/astyanax/util/TimeUUIDUtils.java
/******************************************************************************* * Copyright 2011 Netflix * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/...
7,093
0
Create_ds/astyanax/astyanax-core/src/main/java/com/netflix/astyanax
Create_ds/astyanax/astyanax-core/src/main/java/com/netflix/astyanax/util/Callables.java
/******************************************************************************* * Copyright 2011 Netflix * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/...
7,094
0
Create_ds/astyanax/astyanax-core/src/main/java/com/netflix/astyanax
Create_ds/astyanax/astyanax-core/src/main/java/com/netflix/astyanax/util/BarrierCallableDecorator.java
/******************************************************************************* * Copyright 2011 Netflix * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/...
7,095
0
Create_ds/astyanax/astyanax-core/src/main/java/com/netflix/astyanax
Create_ds/astyanax/astyanax-core/src/main/java/com/netflix/astyanax/partitioner/Partitioner.java
/** * Copyright 2013 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed ...
7,096
0
Create_ds/astyanax/astyanax-core/src/main/java/com/netflix/astyanax
Create_ds/astyanax/astyanax-core/src/main/java/com/netflix/astyanax/shallows/EmptyOperationFilterFactory.java
/******************************************************************************* * Copyright 2011 Netflix * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/...
7,097
0
Create_ds/astyanax/astyanax-core/src/main/java/com/netflix/astyanax
Create_ds/astyanax/astyanax-core/src/main/java/com/netflix/astyanax/shallows/EmptyNodeDiscoveryImpl.java
/******************************************************************************* * Copyright 2011 Netflix * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/...
7,098
0
Create_ds/astyanax/astyanax-core/src/main/java/com/netflix/astyanax
Create_ds/astyanax/astyanax-core/src/main/java/com/netflix/astyanax/shallows/EmptyConnectionPoolMonitor.java
/******************************************************************************* * Copyright 2011 Netflix * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/...
7,099