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/mocca/mocca-okhttp/src/main/java/com/paypal/mocca
Create_ds/mocca/mocca-okhttp/src/main/java/com/paypal/mocca/client/MoccaOkHttpClient.java
package com.paypal.mocca.client; /** * Mocca OkHttp client. In order to use a OkHttp client with Mocca, * create a new instance of this class and pass it to Mocca builder. * <br> * See {@link com.paypal.mocca.client.MoccaClient.Builder.SyncBuilder#client(MoccaHttpClient)} for further information and code example. ...
7,400
0
Create_ds/mocca/mocca-jaxrs2/src/test/java/com/paypal/mocca
Create_ds/mocca/mocca-jaxrs2/src/test/java/com/paypal/mocca/client/BasicTest.java
package com.paypal.mocca.client; import org.testng.annotations.Test; import javax.ws.rs.client.ClientBuilder; @Test public class BasicTest extends BasicMoccaHttpClientTest { public BasicTest() { super(new MoccaJaxrsClient(ClientBuilder.newClient())); } }
7,401
0
Create_ds/mocca/mocca-jaxrs2/src/main/java/com/paypal/mocca
Create_ds/mocca/mocca-jaxrs2/src/main/java/com/paypal/mocca/client/MoccaJaxrsClient.java
package com.paypal.mocca.client; import feign.jaxrs2.JAXRSClient; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import javax.net.ssl.HostnameVerifier; import javax.net.ssl.SSLContext; import javax.ws.rs.client.Client; import javax.ws.rs.client.ClientBuilder; import javax.ws.rs.core.Configuration; import ja...
7,402
0
Create_ds/mocca/mocca-resilience4j/src/test/java/com/paypal/mocca
Create_ds/mocca/mocca-resilience4j/src/test/java/com/paypal/mocca/client/MoccaResilience4jTest.java
package com.paypal.mocca.client; import io.github.resilience4j.bulkhead.Bulkhead; import io.github.resilience4j.circuitbreaker.CircuitBreaker; import io.github.resilience4j.feign.FeignDecorators; import io.github.resilience4j.ratelimiter.RateLimiter; import io.github.resilience4j.retry.Retry; import org.mockito.Mockit...
7,403
0
Create_ds/mocca/mocca-resilience4j/src/main/java/com/paypal/mocca
Create_ds/mocca/mocca-resilience4j/src/main/java/com/paypal/mocca/client/MoccaResilience4jFeignDecorators.java
package com.paypal.mocca.client; import feign.FeignException; import feign.InvocationHandlerFactory; import feign.Target; import io.github.resilience4j.feign.FeignDecorator; import io.github.resilience4j.feign.FeignDecorators; import io.vavr.CheckedFunction1; import java.lang.reflect.Method; /** * This class allows...
7,404
0
Create_ds/mocca/mocca-resilience4j/src/main/java/com/paypal/mocca
Create_ds/mocca/mocca-resilience4j/src/main/java/com/paypal/mocca/client/MoccaResilience4j.java
package com.paypal.mocca.client; import io.github.resilience4j.bulkhead.Bulkhead; import io.github.resilience4j.circuitbreaker.CircuitBreaker; import io.github.resilience4j.feign.FeignDecorators; import io.github.resilience4j.feign.Resilience4jFeign; import io.github.resilience4j.ratelimiter.RateLimiter; import io.git...
7,405
0
Create_ds/mocca/mocca-http-client-tests/src/main/java/com/paypal/mocca
Create_ds/mocca/mocca-http-client-tests/src/main/java/com/paypal/mocca/client/BasicMoccaHttpClientTest.java
package com.paypal.mocca.client; import com.paypal.mocca.client.annotation.Query; import org.eclipse.jetty.server.Request; import org.eclipse.jetty.server.Server; import org.eclipse.jetty.server.handler.AbstractHandler; import org.testng.annotations.AfterClass; import org.testng.annotations.BeforeClass; import org.tes...
7,406
0
Create_ds/mocca/mocca-functional-tests/src/test/java/com/paypal/mocca
Create_ds/mocca/mocca-functional-tests/src/test/java/com/paypal/mocca/functional/BooksAppClient.java
package com.paypal.mocca.functional; import com.paypal.mocca.client.MoccaClient; import com.paypal.mocca.client.annotation.Mutation; import com.paypal.mocca.client.annotation.Query; import com.paypal.mocca.client.annotation.Var; import com.paypal.mocca.client.model.Author; import com.paypal.mocca.client.model.Book; i...
7,407
0
Create_ds/mocca/mocca-functional-tests/src/test/java/com/paypal/mocca
Create_ds/mocca/mocca-functional-tests/src/test/java/com/paypal/mocca/functional/AbstractFunctionalTests.java
package com.paypal.mocca.functional; import com.paypal.mocca.client.MoccaClient; import com.paypal.mocca.client.MoccaOkHttpClient; import com.paypal.mocca.server.GraphQLEndpoint; import okhttp3.OkHttpClient; import org.glassfish.jersey.jackson.JacksonFeature; import org.glassfish.jersey.server.ResourceConfig; import o...
7,408
0
Create_ds/mocca/mocca-functional-tests/src/test/java/com/paypal/mocca
Create_ds/mocca/mocca-functional-tests/src/test/java/com/paypal/mocca/functional/AsyncBooksAppClient.java
package com.paypal.mocca.functional; import com.paypal.mocca.client.MoccaClient; import com.paypal.mocca.client.annotation.Mutation; import com.paypal.mocca.client.annotation.Query; import com.paypal.mocca.client.annotation.Var; import com.paypal.mocca.client.model.Author; import com.paypal.mocca.client.model.Book; i...
7,409
0
Create_ds/mocca/mocca-functional-tests/src/test/java/com/paypal/mocca
Create_ds/mocca/mocca-functional-tests/src/test/java/com/paypal/mocca/functional/MoccaMutationTest.java
package com.paypal.mocca.functional; import com.paypal.mocca.client.model.Author; import com.paypal.mocca.client.model.Book; import org.testng.annotations.Test; import static org.testng.Assert.assertEquals; import static org.testng.Assert.assertNotNull; /** * Basic mutation tests */ public class MoccaMutationTest ...
7,410
0
Create_ds/mocca/mocca-functional-tests/src/test/java/com/paypal/mocca
Create_ds/mocca/mocca-functional-tests/src/test/java/com/paypal/mocca/functional/MoccaQueryTest.java
package com.paypal.mocca.functional; import com.paypal.mocca.client.MoccaAsyncApache5Client; import com.paypal.mocca.client.MoccaClient; import com.paypal.mocca.client.MoccaOkHttpClient; import com.paypal.mocca.client.MoccaExecutorHttpClient; import com.paypal.mocca.client.MoccaMicrometerCapability; import com.paypal....
7,411
0
Create_ds/mocca/mocca-functional-tests/src/main/java/com/paypal/mocca
Create_ds/mocca/mocca-functional-tests/src/main/java/com/paypal/mocca/repository/AuthorRepository.java
package com.paypal.mocca.repository; import com.paypal.mocca.model.Author; import java.util.HashMap; import java.util.Map; /** * Author repository which caches author data */ public class AuthorRepository { /** * Author map */ private static final Map<Integer, Author> AUTHOR_MAP = new HashMap<>()...
7,412
0
Create_ds/mocca/mocca-functional-tests/src/main/java/com/paypal/mocca
Create_ds/mocca/mocca-functional-tests/src/main/java/com/paypal/mocca/repository/BookRepository.java
package com.paypal.mocca.repository; import com.paypal.mocca.model.Book; import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.stream.Collectors; /** * Book repository which caches books data */ public class BookRepository { /** * Books store */ private static fi...
7,413
0
Create_ds/mocca/mocca-functional-tests/src/main/java/com/paypal/mocca
Create_ds/mocca/mocca-functional-tests/src/main/java/com/paypal/mocca/server/GraphQLRequestBody.java
package com.paypal.mocca.server; import java.util.Map; /** * Representation for GraphQL request body */ public class GraphQLRequestBody { /** * GraphQL Query */ private String query; /** * GraphQL Operation Name */ private String operationName; /** * GraphQL variables */ private Map<String, Objec...
7,414
0
Create_ds/mocca/mocca-functional-tests/src/main/java/com/paypal/mocca
Create_ds/mocca/mocca-functional-tests/src/main/java/com/paypal/mocca/server/GraphQLFactory.java
package com.paypal.mocca.server; import com.fasterxml.jackson.databind.ObjectMapper; import com.fasterxml.jackson.datatype.jdk8.Jdk8Module; import com.paypal.mocca.model.Author; import com.paypal.mocca.repository.AuthorRepository; import com.paypal.mocca.repository.BookRepository; import com.paypal.mocca.resolvers.Mut...
7,415
0
Create_ds/mocca/mocca-functional-tests/src/main/java/com/paypal/mocca
Create_ds/mocca/mocca-functional-tests/src/main/java/com/paypal/mocca/server/GraphQLEndpoint.java
package com.paypal.mocca.server; import com.fasterxml.jackson.core.JsonParseException; import com.fasterxml.jackson.core.type.TypeReference; import com.fasterxml.jackson.databind.JsonMappingException; import com.fasterxml.jackson.databind.ObjectMapper; import graphql.ExecutionInput; import graphql.ExecutionResult; imp...
7,416
0
Create_ds/mocca/mocca-functional-tests/src/main/java/com/paypal/mocca
Create_ds/mocca/mocca-functional-tests/src/main/java/com/paypal/mocca/resolvers/MutationResolver.java
package com.paypal.mocca.resolvers; import com.paypal.mocca.model.Author; import com.paypal.mocca.model.Book; import com.paypal.mocca.repository.AuthorRepository; import com.paypal.mocca.repository.BookRepository; /** * GraphQL mutation resolver for all mutations */ public class MutationResolver implements com.payp...
7,417
0
Create_ds/mocca/mocca-functional-tests/src/main/java/com/paypal/mocca
Create_ds/mocca/mocca-functional-tests/src/main/java/com/paypal/mocca/resolvers/QueryResolver.java
package com.paypal.mocca.resolvers; import com.paypal.mocca.model.Book; import com.paypal.mocca.repository.AuthorRepository; import com.paypal.mocca.repository.BookRepository; import java.util.List; /** * Query resolver for application */ public class QueryResolver implements com.paypal.mocca.api.QueryResolver { ...
7,418
0
Create_ds/mocca/mocca-hc5/src/test/java/com/paypal/mocca
Create_ds/mocca/mocca-hc5/src/test/java/com/paypal/mocca/client/BasicTest.java
package com.paypal.mocca.client; import org.apache.hc.client5.http.impl.classic.HttpClientBuilder; import org.testng.annotations.Test; @Test public class BasicTest extends BasicMoccaHttpClientTest { public BasicTest() { super(new MoccaApache5Client(HttpClientBuilder.create().build())); } }
7,419
0
Create_ds/mocca/mocca-hc5/src/main/java/com/paypal/mocca
Create_ds/mocca/mocca-hc5/src/main/java/com/paypal/mocca/client/MoccaApache5Client.java
package com.paypal.mocca.client; import feign.hc5.ApacheHttp5Client; import org.apache.hc.client5.http.classic.HttpClient; import org.apache.hc.client5.http.impl.classic.HttpClientBuilder; /** * Mocca Apache 5 HTTP client. In order to use a Apache 5 HTTP client with Mocca, * create a new instance of this class and ...
7,420
0
Create_ds/mocca/mocca-hc5/src/main/java/com/paypal/mocca
Create_ds/mocca/mocca-hc5/src/main/java/com/paypal/mocca/client/MoccaAsyncApache5Client.java
package com.paypal.mocca.client; import feign.hc5.AsyncApacheHttp5Client; import org.apache.hc.client5.http.impl.async.CloseableHttpAsyncClient; import org.apache.hc.client5.http.impl.async.HttpAsyncClients; import org.apache.hc.client5.http.protocol.HttpClientContext; /** * Mocca Async Apache 5 HTTP client. In orde...
7,421
0
Create_ds/mocca/mocca-micrometer/src/main/java/com/paypal/mocca
Create_ds/mocca/mocca-micrometer/src/main/java/com/paypal/mocca/client/MoccaMicrometerCapability.java
package com.paypal.mocca.client; import feign.micrometer.MicrometerCapability; import io.micrometer.core.instrument.Meter; import io.micrometer.core.instrument.MeterRegistry; import io.micrometer.core.instrument.config.MeterFilter; /** * Mocca supports Micrometer-based metrics, which primarily revolve around HTTP in...
7,422
0
Create_ds/mocca/mocca-http2/src/test/java/com/paypal/mocca
Create_ds/mocca/mocca-http2/src/test/java/com/paypal/mocca/client/BasicTest.java
package com.paypal.mocca.client; import org.testng.annotations.Test; import java.net.http.HttpClient; @Test public class BasicTest extends BasicMoccaHttpClientTest { public BasicTest() { super(new MoccaHttp2Client(HttpClient.newBuilder().build())); } }
7,423
0
Create_ds/mocca/mocca-http2/src/main/java/com/paypal/mocca
Create_ds/mocca/mocca-http2/src/main/java/com/paypal/mocca/client/MoccaHttp2Client.java
package com.paypal.mocca.client; import feign.http2client.Http2Client; import java.net.http.HttpClient; /** * Mocca Java 11 HTTP 2 client. In order to use a Java 11 HTTP 2 client with Mocca, * create a new instance of this class and pass it to Mocca builder. * <br> * See {@link com.paypal.mocca.client.MoccaClien...
7,424
0
Create_ds/mocca/mocca-google/src/test/java/com/paypal/mocca
Create_ds/mocca/mocca-google/src/test/java/com/paypal/mocca/client/BasicTest.java
package com.paypal.mocca.client; import com.google.api.client.http.javanet.NetHttpTransport; import org.testng.annotations.Test; @Test public class BasicTest extends BasicMoccaHttpClientTest { public BasicTest() { super(new MoccaGoogleHttpClient(new NetHttpTransport())); } }
7,425
0
Create_ds/mocca/mocca-google/src/main/java/com/paypal/mocca
Create_ds/mocca/mocca-google/src/main/java/com/paypal/mocca/client/MoccaGoogleHttpClient.java
package com.paypal.mocca.client; import com.google.api.client.http.HttpTransport; import com.google.api.client.http.javanet.NetHttpTransport; /** * Mocca Google HTTP client. In order to use a Google HTTP client with Mocca, * create a new instance of this class and pass it to Mocca builder. * <br> * See {@link com...
7,426
0
Create_ds/brooklyn-library/qa/src/test/projects/downstream-parent-test/src/main/java/com
Create_ds/brooklyn-library/qa/src/test/projects/downstream-parent-test/src/main/java/com/example/HelloEntity.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
7,427
0
Create_ds/brooklyn-library/qa/src/test/projects/downstream-parent-test/src/main/java/com
Create_ds/brooklyn-library/qa/src/test/projects/downstream-parent-test/src/main/java/com/example/HelloEntityImpl.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
7,428
0
Create_ds/brooklyn-library/qa/src/test/java/org/apache/brooklyn/qa
Create_ds/brooklyn-library/qa/src/test/java/org/apache/brooklyn/qa/longevity/MonitorUtilsTest.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
7,429
0
Create_ds/brooklyn-library/qa/src/test/java/org/apache/brooklyn/qa/longevity
Create_ds/brooklyn-library/qa/src/test/java/org/apache/brooklyn/qa/longevity/webcluster/SinusoidalLoadGenerator.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
7,430
0
Create_ds/brooklyn-library/qa/src/test/java/org/apache/brooklyn/qa/longevity
Create_ds/brooklyn-library/qa/src/test/java/org/apache/brooklyn/qa/longevity/webcluster/WebClusterApp.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
7,431
0
Create_ds/brooklyn-library/qa/src/test/java/org/apache/brooklyn/qa
Create_ds/brooklyn-library/qa/src/test/java/org/apache/brooklyn/qa/camp/JavaWebAppsIntegrationTest.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
7,432
0
Create_ds/brooklyn-library/qa/src/test/java/org/apache/brooklyn/qa
Create_ds/brooklyn-library/qa/src/test/java/org/apache/brooklyn/qa/camp/EnrichersSlightlySimplerYamlTest.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
7,433
0
Create_ds/brooklyn-library/qa/src/test/java/org/apache/brooklyn/qa
Create_ds/brooklyn-library/qa/src/test/java/org/apache/brooklyn/qa/camp/JavaWebAppsMatchingTest.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
7,434
0
Create_ds/brooklyn-library/qa/src/test/java/org/apache/brooklyn/qa
Create_ds/brooklyn-library/qa/src/test/java/org/apache/brooklyn/qa/camp/EntitiesYamlIntegrationTest.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
7,435
0
Create_ds/brooklyn-library/qa/src/test/java/org/apache/brooklyn/qa
Create_ds/brooklyn-library/qa/src/test/java/org/apache/brooklyn/qa/load/AbstractLoadTest.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
7,436
0
Create_ds/brooklyn-library/qa/src/test/java/org/apache/brooklyn/qa
Create_ds/brooklyn-library/qa/src/test/java/org/apache/brooklyn/qa/load/LoadWithoutPersistenceTest.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
7,437
0
Create_ds/brooklyn-library/qa/src/test/java/org/apache/brooklyn/qa
Create_ds/brooklyn-library/qa/src/test/java/org/apache/brooklyn/qa/load/LoadTest.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
7,438
0
Create_ds/brooklyn-library/qa/src/test/java/org/apache/brooklyn/qa
Create_ds/brooklyn-library/qa/src/test/java/org/apache/brooklyn/qa/load/LoadSanityTest.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
7,439
0
Create_ds/brooklyn-library/qa/src/test/java/org/apache/brooklyn/qa
Create_ds/brooklyn-library/qa/src/test/java/org/apache/brooklyn/qa/brooklynnode/SoftlayerObtainPrivateLiveTest.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
7,440
0
Create_ds/brooklyn-library/qa/src/test/java/org/apache/brooklyn/qa
Create_ds/brooklyn-library/qa/src/test/java/org/apache/brooklyn/qa/downstreamparent/DownstreamParentTest.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
7,441
0
Create_ds/brooklyn-library/qa/src/test/java/org/apache/brooklyn/qa
Create_ds/brooklyn-library/qa/src/test/java/org/apache/brooklyn/qa/nosql/RedisClusterViaRestIntegrationTest.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
7,442
0
Create_ds/brooklyn-library/qa/src/main/java/org/apache/brooklyn/qa
Create_ds/brooklyn-library/qa/src/main/java/org/apache/brooklyn/qa/longevity/MonitorUtils.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
7,443
0
Create_ds/brooklyn-library/qa/src/main/java/org/apache/brooklyn/qa
Create_ds/brooklyn-library/qa/src/main/java/org/apache/brooklyn/qa/longevity/MonitorListener.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
7,444
0
Create_ds/brooklyn-library/qa/src/main/java/org/apache/brooklyn/qa
Create_ds/brooklyn-library/qa/src/main/java/org/apache/brooklyn/qa/longevity/StatusRecorder.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
7,445
0
Create_ds/brooklyn-library/qa/src/main/java/org/apache/brooklyn/qa
Create_ds/brooklyn-library/qa/src/main/java/org/apache/brooklyn/qa/longevity/MonitorPrefs.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
7,446
0
Create_ds/brooklyn-library/qa/src/main/java/org/apache/brooklyn/qa
Create_ds/brooklyn-library/qa/src/main/java/org/apache/brooklyn/qa/longevity/Monitor.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
7,447
0
Create_ds/brooklyn-library/qa/src/main/java/org/apache/brooklyn/qa
Create_ds/brooklyn-library/qa/src/main/java/org/apache/brooklyn/qa/load/SimulatedExternalMonitor.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
7,448
0
Create_ds/brooklyn-library/qa/src/main/java/org/apache/brooklyn/qa
Create_ds/brooklyn-library/qa/src/main/java/org/apache/brooklyn/qa/load/SimulatedVanillaSoftwareProcessImpl.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
7,449
0
Create_ds/brooklyn-library/qa/src/main/java/org/apache/brooklyn/qa
Create_ds/brooklyn-library/qa/src/main/java/org/apache/brooklyn/qa/load/SimulatedExternalMonitorImpl.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
7,450
0
Create_ds/brooklyn-library/qa/src/main/java/org/apache/brooklyn/qa
Create_ds/brooklyn-library/qa/src/main/java/org/apache/brooklyn/qa/load/SimulatedJBoss7ServerImpl.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
7,451
0
Create_ds/brooklyn-library/qa/src/main/java/org/apache/brooklyn/qa
Create_ds/brooklyn-library/qa/src/main/java/org/apache/brooklyn/qa/load/SimulatedMySqlNodeImpl.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
7,452
0
Create_ds/brooklyn-library/qa/src/main/java/org/apache/brooklyn/qa
Create_ds/brooklyn-library/qa/src/main/java/org/apache/brooklyn/qa/load/SimulatedNginxControllerImpl.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
7,453
0
Create_ds/brooklyn-library/qa/src/main/java/org/apache/brooklyn/qa
Create_ds/brooklyn-library/qa/src/main/java/org/apache/brooklyn/qa/load/SimulatedTheeTierApp.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
7,454
0
Create_ds/brooklyn-library/software/database/src/test/java/org/apache/brooklyn/entity
Create_ds/brooklyn-library/software/database/src/test/java/org/apache/brooklyn/entity/database/VogellaExampleAccess.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
7,455
0
Create_ds/brooklyn-library/software/database/src/test/java/org/apache/brooklyn/entity/database
Create_ds/brooklyn-library/software/database/src/test/java/org/apache/brooklyn/entity/database/postgresql/PostgreSqDockerLiveTest.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
7,456
0
Create_ds/brooklyn-library/software/database/src/test/java/org/apache/brooklyn/entity/database
Create_ds/brooklyn-library/software/database/src/test/java/org/apache/brooklyn/entity/database/postgresql/PostgreSqlIntegrationTest.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
7,457
0
Create_ds/brooklyn-library/software/database/src/test/java/org/apache/brooklyn/entity/database
Create_ds/brooklyn-library/software/database/src/test/java/org/apache/brooklyn/entity/database/postgresql/PostgreSqlChefTest.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
7,458
0
Create_ds/brooklyn-library/software/database/src/test/java/org/apache/brooklyn/entity/database
Create_ds/brooklyn-library/software/database/src/test/java/org/apache/brooklyn/entity/database/postgresql/PostgreSqlInitializeDatabaseLiveTest.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
7,459
0
Create_ds/brooklyn-library/software/database/src/test/java/org/apache/brooklyn/entity/database
Create_ds/brooklyn-library/software/database/src/test/java/org/apache/brooklyn/entity/database/postgresql/PostgreSqlTest.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
7,460
0
Create_ds/brooklyn-library/software/database/src/test/java/org/apache/brooklyn/entity/database
Create_ds/brooklyn-library/software/database/src/test/java/org/apache/brooklyn/entity/database/postgresql/PostgreSqlRebindIntegrationTest.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
7,461
0
Create_ds/brooklyn-library/software/database/src/test/java/org/apache/brooklyn/entity/database
Create_ds/brooklyn-library/software/database/src/test/java/org/apache/brooklyn/entity/database/postgresql/PostgreSqlRackspaceLiveTest.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
7,462
0
Create_ds/brooklyn-library/software/database/src/test/java/org/apache/brooklyn/entity/database
Create_ds/brooklyn-library/software/database/src/test/java/org/apache/brooklyn/entity/database/postgresql/PostgreSqlRestartIntegrationTest.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
7,463
0
Create_ds/brooklyn-library/software/database/src/test/java/org/apache/brooklyn/entity/database
Create_ds/brooklyn-library/software/database/src/test/java/org/apache/brooklyn/entity/database/postgresql/PostgreSqlEc2LiveTest.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
7,464
0
Create_ds/brooklyn-library/software/database/src/test/java/org/apache/brooklyn/entity/database
Create_ds/brooklyn-library/software/database/src/test/java/org/apache/brooklyn/entity/database/postgresql/PostgreSqlGceLiveTest.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
7,465
0
Create_ds/brooklyn-library/software/database/src/test/java/org/apache/brooklyn/entity/database
Create_ds/brooklyn-library/software/database/src/test/java/org/apache/brooklyn/entity/database/mariadb/MariaDbLiveEc2Test.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
7,466
0
Create_ds/brooklyn-library/software/database/src/test/java/org/apache/brooklyn/entity/database
Create_ds/brooklyn-library/software/database/src/test/java/org/apache/brooklyn/entity/database/mariadb/MariaDbIntegrationTest.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
7,467
0
Create_ds/brooklyn-library/software/database/src/test/java/org/apache/brooklyn/entity/database
Create_ds/brooklyn-library/software/database/src/test/java/org/apache/brooklyn/entity/database/mariadb/MariaDbLiveRackspaceTest.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
7,468
0
Create_ds/brooklyn-library/software/database/src/test/java/org/apache/brooklyn/entity/database
Create_ds/brooklyn-library/software/database/src/test/java/org/apache/brooklyn/entity/database/crate/CrateNodeIntegrationTest.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
7,469
0
Create_ds/brooklyn-library/software/database/src/test/java/org/apache/brooklyn/entity/database
Create_ds/brooklyn-library/software/database/src/test/java/org/apache/brooklyn/entity/database/rubyrep/RubyRepEc2LiveTest.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
7,470
0
Create_ds/brooklyn-library/software/database/src/test/java/org/apache/brooklyn/entity/database
Create_ds/brooklyn-library/software/database/src/test/java/org/apache/brooklyn/entity/database/rubyrep/RubyRepIntegrationTest.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
7,471
0
Create_ds/brooklyn-library/software/database/src/test/java/org/apache/brooklyn/entity/database
Create_ds/brooklyn-library/software/database/src/test/java/org/apache/brooklyn/entity/database/rubyrep/RubyRepRackspaceLiveTest.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
7,472
0
Create_ds/brooklyn-library/software/database/src/test/java/org/apache/brooklyn/entity/database
Create_ds/brooklyn-library/software/database/src/test/java/org/apache/brooklyn/entity/database/mysql/MySqlLiveGceTest.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
7,473
0
Create_ds/brooklyn-library/software/database/src/test/java/org/apache/brooklyn/entity/database
Create_ds/brooklyn-library/software/database/src/test/java/org/apache/brooklyn/entity/database/mysql/MySqlIntegrationTest.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
7,474
0
Create_ds/brooklyn-library/software/database/src/test/java/org/apache/brooklyn/entity/database
Create_ds/brooklyn-library/software/database/src/test/java/org/apache/brooklyn/entity/database/mysql/MySqlLiveRackspaceTest.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
7,475
0
Create_ds/brooklyn-library/software/database/src/test/java/org/apache/brooklyn/entity/database
Create_ds/brooklyn-library/software/database/src/test/java/org/apache/brooklyn/entity/database/mysql/MySqlClusterIntegrationTest.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
7,476
0
Create_ds/brooklyn-library/software/database/src/test/java/org/apache/brooklyn/entity/database
Create_ds/brooklyn-library/software/database/src/test/java/org/apache/brooklyn/entity/database/mysql/MysqlDockerLiveTest.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
7,477
0
Create_ds/brooklyn-library/software/database/src/test/java/org/apache/brooklyn/entity/database
Create_ds/brooklyn-library/software/database/src/test/java/org/apache/brooklyn/entity/database/mysql/MySqlClusterTestHelper.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
7,478
0
Create_ds/brooklyn-library/software/database/src/test/java/org/apache/brooklyn/entity/database
Create_ds/brooklyn-library/software/database/src/test/java/org/apache/brooklyn/entity/database/mysql/MySqlClusterLiveEc2Test.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
7,479
0
Create_ds/brooklyn-library/software/database/src/test/java/org/apache/brooklyn/entity/database
Create_ds/brooklyn-library/software/database/src/test/java/org/apache/brooklyn/entity/database/mysql/MySqlClusterLiveSoftlayerTest.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
7,480
0
Create_ds/brooklyn-library/software/database/src/test/java/org/apache/brooklyn/entity/database
Create_ds/brooklyn-library/software/database/src/test/java/org/apache/brooklyn/entity/database/mysql/MySqlRestartIntegrationTest.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
7,481
0
Create_ds/brooklyn-library/software/database/src/test/java/org/apache/brooklyn/entity/database
Create_ds/brooklyn-library/software/database/src/test/java/org/apache/brooklyn/entity/database/mysql/MySqlLiveEc2Test.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
7,482
0
Create_ds/brooklyn-library/software/database/src/main/java/org/apache/brooklyn/entity
Create_ds/brooklyn-library/software/database/src/main/java/org/apache/brooklyn/entity/database/DatastoreMixins.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
7,483
0
Create_ds/brooklyn-library/software/database/src/main/java/org/apache/brooklyn/entity
Create_ds/brooklyn-library/software/database/src/main/java/org/apache/brooklyn/entity/database/DatabaseNode.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
7,484
0
Create_ds/brooklyn-library/software/database/src/main/java/org/apache/brooklyn/entity/database
Create_ds/brooklyn-library/software/database/src/main/java/org/apache/brooklyn/entity/database/postgresql/PostgreSqlSshDriver.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
7,485
0
Create_ds/brooklyn-library/software/database/src/main/java/org/apache/brooklyn/entity/database
Create_ds/brooklyn-library/software/database/src/main/java/org/apache/brooklyn/entity/database/postgresql/PostgreSqlNodeChefImplFromScratch.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
7,486
0
Create_ds/brooklyn-library/software/database/src/main/java/org/apache/brooklyn/entity/database
Create_ds/brooklyn-library/software/database/src/main/java/org/apache/brooklyn/entity/database/postgresql/PostgreSqlSpecs.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
7,487
0
Create_ds/brooklyn-library/software/database/src/main/java/org/apache/brooklyn/entity/database
Create_ds/brooklyn-library/software/database/src/main/java/org/apache/brooklyn/entity/database/postgresql/PostgreSqlDriver.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
7,488
0
Create_ds/brooklyn-library/software/database/src/main/java/org/apache/brooklyn/entity/database
Create_ds/brooklyn-library/software/database/src/main/java/org/apache/brooklyn/entity/database/postgresql/PostgreSqlNodeImpl.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
7,489
0
Create_ds/brooklyn-library/software/database/src/main/java/org/apache/brooklyn/entity/database
Create_ds/brooklyn-library/software/database/src/main/java/org/apache/brooklyn/entity/database/postgresql/PostgreSqlNode.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
7,490
0
Create_ds/brooklyn-library/software/database/src/main/java/org/apache/brooklyn/entity/database
Create_ds/brooklyn-library/software/database/src/main/java/org/apache/brooklyn/entity/database/mariadb/MariaDbSshDriver.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
7,491
0
Create_ds/brooklyn-library/software/database/src/main/java/org/apache/brooklyn/entity/database
Create_ds/brooklyn-library/software/database/src/main/java/org/apache/brooklyn/entity/database/mariadb/MariaDbDriver.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
7,492
0
Create_ds/brooklyn-library/software/database/src/main/java/org/apache/brooklyn/entity/database
Create_ds/brooklyn-library/software/database/src/main/java/org/apache/brooklyn/entity/database/mariadb/MariaDbNode.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
7,493
0
Create_ds/brooklyn-library/software/database/src/main/java/org/apache/brooklyn/entity/database
Create_ds/brooklyn-library/software/database/src/main/java/org/apache/brooklyn/entity/database/mariadb/MariaDbNodeImpl.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
7,494
0
Create_ds/brooklyn-library/software/database/src/main/java/org/apache/brooklyn/entity/database
Create_ds/brooklyn-library/software/database/src/main/java/org/apache/brooklyn/entity/database/crate/CrateNodeImpl.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
7,495
0
Create_ds/brooklyn-library/software/database/src/main/java/org/apache/brooklyn/entity/database
Create_ds/brooklyn-library/software/database/src/main/java/org/apache/brooklyn/entity/database/crate/CrateNodeDriver.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
7,496
0
Create_ds/brooklyn-library/software/database/src/main/java/org/apache/brooklyn/entity/database
Create_ds/brooklyn-library/software/database/src/main/java/org/apache/brooklyn/entity/database/crate/CrateNodeSshDriver.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
7,497
0
Create_ds/brooklyn-library/software/database/src/main/java/org/apache/brooklyn/entity/database
Create_ds/brooklyn-library/software/database/src/main/java/org/apache/brooklyn/entity/database/crate/CrateNode.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
7,498
0
Create_ds/brooklyn-library/software/database/src/main/java/org/apache/brooklyn/entity/database
Create_ds/brooklyn-library/software/database/src/main/java/org/apache/brooklyn/entity/database/rubyrep/RubyRepDriver.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
7,499