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/cxf-build-utils/xml2fastinfoset-plugin/src/main/java/org/apache/cxf/maven_plugin | Create_ds/cxf-build-utils/xml2fastinfoset-plugin/src/main/java/org/apache/cxf/maven_plugin/xml2fastinfoset/XML2FastInfosetCompilerMojo.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 m... | 7,600 |
0 | Create_ds/paypal-sample-merchant-server/.mvn | Create_ds/paypal-sample-merchant-server/.mvn/wrapper/MavenWrapperDownloader.java | /*
* Copyright 2007-present the original author or authors.
*
* 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... | 7,601 |
0 | Create_ds/paypal-sample-merchant-server/src/test/java/com/braintree | Create_ds/paypal-sample-merchant-server/src/test/java/com/braintree/braintreep4psamplemerchant/SampleMerchantApplicationTests.java | package com.braintree.braintreep4psamplemerchant;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.ActiveProfiles;
import org.springframework.test.context.junit4.SpringRunner;
@RunWith(SpringRunner.class)
@Spri... | 7,602 |
0 | Create_ds/paypal-sample-merchant-server/src/main/java/com/braintree | Create_ds/paypal-sample-merchant-server/src/main/java/com/braintree/braintreep4psamplemerchant/TokenUtil.java | package com.braintree.braintreep4psamplemerchant;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Component;
import java.util.Base64;
@Component
class TokenUtil {
private String clientIdUS;
priva... | 7,603 |
0 | Create_ds/paypal-sample-merchant-server/src/main/java/com/braintree | Create_ds/paypal-sample-merchant-server/src/main/java/com/braintree/braintreep4psamplemerchant/Order.java | package com.braintree.braintreep4psamplemerchant;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
@JsonIgnoreProperties(ignoreUnknown = true)
public class Order {
private String id;
private String status;
public String getId() {
return id;
}
public void setId(String id) {
... | 7,604 |
0 | Create_ds/paypal-sample-merchant-server/src/main/java/com/braintree | Create_ds/paypal-sample-merchant-server/src/main/java/com/braintree/braintreep4psamplemerchant/SampleMerchantApplication.java | package com.braintree.braintreep4psamplemerchant;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.Bean;
import org.springframework.web.client.RestTemplate;
@SpringBootApplication
public class SampleMe... | 7,605 |
0 | Create_ds/paypal-sample-merchant-server/src/main/java/com/braintree | Create_ds/paypal-sample-merchant-server/src/main/java/com/braintree/braintreep4psamplemerchant/ProcessOrderRequest.java | package com.braintree.braintreep4psamplemerchant;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.ObjectMapper;
@JsonIgnoreProperties(ignoreUnknown = true)
public class ProcessOrderRequest {
private St... | 7,606 |
0 | Create_ds/paypal-sample-merchant-server/src/main/java/com/braintree | Create_ds/paypal-sample-merchant-server/src/main/java/com/braintree/braintreep4psamplemerchant/OrdersV2Client.java | package com.braintree.braintreep4psamplemerchant;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.http.HttpEntity;
import org.springframework.http.HttpHeaders;
import org.springframework.http.MediaType;
import org.spri... | 7,607 |
0 | Create_ds/paypal-sample-merchant-server/src/main/java/com/braintree | Create_ds/paypal-sample-merchant-server/src/main/java/com/braintree/braintreep4psamplemerchant/PayPalTokenClient.java | package com.braintree.braintreep4psamplemerchant;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.http.HttpEntity;
import org.springframework.http.HttpHeaders;
import org.springframework.http.MediaType;
import org.spri... | 7,608 |
0 | Create_ds/paypal-sample-merchant-server/src/main/java/com/braintree | Create_ds/paypal-sample-merchant-server/src/main/java/com/braintree/braintreep4psamplemerchant/IdToken.java | package com.braintree.braintreep4psamplemerchant;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
@JsonIgnoreProperties(ignoreUnknown = true)
public class IdToken {
private String token;
@JsonProperty("id_token")
public String getToken(... | 7,609 |
0 | Create_ds/paypal-sample-merchant-server/src/main/java/com/braintree | Create_ds/paypal-sample-merchant-server/src/main/java/com/braintree/braintreep4psamplemerchant/RestController.java | package com.braintree.braintreep4psamplemerchant;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;
@org.springframework.web.bind.annotation.RestController
public class RestController {
private OrdersV2Client ordersV2Client;
private PayPalTokenCl... | 7,610 |
0 | Create_ds/paypal-sample-merchant-server/src/main/java/com/braintree | Create_ds/paypal-sample-merchant-server/src/main/java/com/braintree/braintreep4psamplemerchant/CreateOrderRequest.java | package com.braintree.braintreep4psamplemerchant;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.ObjectMapper;
import java.util.List;
@JsonIgnoreProper... | 7,611 |
0 | Create_ds/incubator-milagro-mfa-sdk-android/mpinsdk/src/androidTest/java/com/miracl/mpinsdk | Create_ds/incubator-milagro-mfa-sdk-android/mpinsdk/src/androidTest/java/com/miracl/mpinsdk/test/MPinSDKTest.java | package com.miracl.mpinsdk.test;
import android.test.InstrumentationTestCase;
import com.miracl.mpinsdk.MPinSDK;
import com.miracl.mpinsdk.model.Status;
import com.miracl.mpinsdk.model.User;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import java.util.HashMap;
import java.util.Iterator... | 7,612 |
0 | Create_ds/incubator-milagro-mfa-sdk-android/mpinsdk/src/main/java/com/miracl | Create_ds/incubator-milagro-mfa-sdk-android/mpinsdk/src/main/java/com/miracl/mpinsdk/MPinSDK.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 ... | 7,613 |
0 | Create_ds/incubator-milagro-mfa-sdk-android/mpinsdk/src/main/java/com/miracl/mpinsdk | Create_ds/incubator-milagro-mfa-sdk-android/mpinsdk/src/main/java/com/miracl/mpinsdk/net/HTTPConnector.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 ... | 7,614 |
0 | Create_ds/incubator-milagro-mfa-sdk-android/mpinsdk/src/main/java/com/miracl/mpinsdk | Create_ds/incubator-milagro-mfa-sdk-android/mpinsdk/src/main/java/com/miracl/mpinsdk/net/IHTTPRequest.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 ... | 7,615 |
0 | Create_ds/incubator-milagro-mfa-sdk-android/mpinsdk/src/main/java/com/miracl/mpinsdk | Create_ds/incubator-milagro-mfa-sdk-android/mpinsdk/src/main/java/com/miracl/mpinsdk/storage/Storage.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 ... | 7,616 |
0 | Create_ds/incubator-milagro-mfa-sdk-android/mpinsdk/src/main/java/com/miracl/mpinsdk | Create_ds/incubator-milagro-mfa-sdk-android/mpinsdk/src/main/java/com/miracl/mpinsdk/storage/IStorage.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 ... | 7,617 |
0 | Create_ds/incubator-milagro-mfa-sdk-android/mpinsdk/src/main/java/com/miracl/mpinsdk | Create_ds/incubator-milagro-mfa-sdk-android/mpinsdk/src/main/java/com/miracl/mpinsdk/model/Status.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 ... | 7,618 |
0 | Create_ds/incubator-milagro-mfa-sdk-android/mpinsdk/src/main/java/com/miracl/mpinsdk | Create_ds/incubator-milagro-mfa-sdk-android/mpinsdk/src/main/java/com/miracl/mpinsdk/model/ServiceDetails.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 ... | 7,619 |
0 | Create_ds/incubator-milagro-mfa-sdk-android/mpinsdk/src/main/java/com/miracl/mpinsdk | Create_ds/incubator-milagro-mfa-sdk-android/mpinsdk/src/main/java/com/miracl/mpinsdk/model/User.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 ... | 7,620 |
0 | Create_ds/incubator-milagro-mfa-sdk-android/mpinsdk/src/main/java/com/miracl/mpinsdk | Create_ds/incubator-milagro-mfa-sdk-android/mpinsdk/src/main/java/com/miracl/mpinsdk/model/OTP.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 ... | 7,621 |
0 | Create_ds/incubator-milagro-mfa-sdk-android/mpinsdk/src/main/java/com/miracl/mpinsdk | Create_ds/incubator-milagro-mfa-sdk-android/mpinsdk/src/main/java/com/miracl/mpinsdk/model/SessionDetails.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 ... | 7,622 |
0 | Create_ds/sagemaker-sparkml-serving-container/src/test/java/com/amazonaws/sagemaker | Create_ds/sagemaker-sparkml-serving-container/src/test/java/com/amazonaws/sagemaker/dto/JsonlinesStandardOutputTest.java | /*
* Copyright 2010-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in ... | 7,623 |
0 | Create_ds/sagemaker-sparkml-serving-container/src/test/java/com/amazonaws/sagemaker | Create_ds/sagemaker-sparkml-serving-container/src/test/java/com/amazonaws/sagemaker/dto/SageMakerRequestObjectTest.java | /*
* Copyright 2010-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in ... | 7,624 |
0 | Create_ds/sagemaker-sparkml-serving-container/src/test/java/com/amazonaws/sagemaker | Create_ds/sagemaker-sparkml-serving-container/src/test/java/com/amazonaws/sagemaker/dto/JsonlinesTextOutputTest.java | /*
* Copyright 2010-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in ... | 7,625 |
0 | Create_ds/sagemaker-sparkml-serving-container/src/test/java/com/amazonaws/sagemaker | Create_ds/sagemaker-sparkml-serving-container/src/test/java/com/amazonaws/sagemaker/dto/DataSchemaTest.java | /*
* Copyright 2010-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in ... | 7,626 |
0 | Create_ds/sagemaker-sparkml-serving-container/src/test/java/com/amazonaws/sagemaker | Create_ds/sagemaker-sparkml-serving-container/src/test/java/com/amazonaws/sagemaker/dto/ColumnSchemaTest.java | /*
* Copyright 2010-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in ... | 7,627 |
0 | Create_ds/sagemaker-sparkml-serving-container/src/test/java/com/amazonaws/sagemaker | Create_ds/sagemaker-sparkml-serving-container/src/test/java/com/amazonaws/sagemaker/dto/BatchExecutionParameterTest.java | /*
* Copyright 2010-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in ... | 7,628 |
0 | Create_ds/sagemaker-sparkml-serving-container/src/test/java/com/amazonaws/sagemaker | Create_ds/sagemaker-sparkml-serving-container/src/test/java/com/amazonaws/sagemaker/dto/SageMakerRequestListObjectTest.java | /*
* Copyright 2010-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in ... | 7,629 |
0 | Create_ds/sagemaker-sparkml-serving-container/src/test/java/com/amazonaws/sagemaker | Create_ds/sagemaker-sparkml-serving-container/src/test/java/com/amazonaws/sagemaker/configuration/ContextLoaderTest.java | /*
* Copyright 2010-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in ... | 7,630 |
0 | Create_ds/sagemaker-sparkml-serving-container/src/test/java/com/amazonaws/sagemaker | Create_ds/sagemaker-sparkml-serving-container/src/test/java/com/amazonaws/sagemaker/configuration/BeanConfigurationTest.java | /*
* Copyright 2010-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in ... | 7,631 |
0 | Create_ds/sagemaker-sparkml-serving-container/src/test/java/com/amazonaws/sagemaker | Create_ds/sagemaker-sparkml-serving-container/src/test/java/com/amazonaws/sagemaker/utils/SystemUtilsTest.java | /*
* Copyright 2010-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in ... | 7,632 |
0 | Create_ds/sagemaker-sparkml-serving-container/src/test/java/com/amazonaws/sagemaker | Create_ds/sagemaker-sparkml-serving-container/src/test/java/com/amazonaws/sagemaker/controller/ServingControllerTest.java | /*
* Copyright 2010-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in ... | 7,633 |
0 | Create_ds/sagemaker-sparkml-serving-container/src/test/java/com/amazonaws/sagemaker | Create_ds/sagemaker-sparkml-serving-container/src/test/java/com/amazonaws/sagemaker/type/BasicDataTypeTest.java | /*
* Copyright 2010-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in ... | 7,634 |
0 | Create_ds/sagemaker-sparkml-serving-container/src/test/java/com/amazonaws/sagemaker | Create_ds/sagemaker-sparkml-serving-container/src/test/java/com/amazonaws/sagemaker/type/AdditionalMediaTypeTest.java | /*
* Copyright 2010-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in ... | 7,635 |
0 | Create_ds/sagemaker-sparkml-serving-container/src/test/java/com/amazonaws/sagemaker | Create_ds/sagemaker-sparkml-serving-container/src/test/java/com/amazonaws/sagemaker/type/DataStructureTypeTest.java | /*
* Copyright 2010-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in ... | 7,636 |
0 | Create_ds/sagemaker-sparkml-serving-container/src/test/java/com/amazonaws/sagemaker | Create_ds/sagemaker-sparkml-serving-container/src/test/java/com/amazonaws/sagemaker/helper/DataConversionHelperTest.java | /*
* Copyright 2010-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in ... | 7,637 |
0 | Create_ds/sagemaker-sparkml-serving-container/src/test/java/com/amazonaws/sagemaker | Create_ds/sagemaker-sparkml-serving-container/src/test/java/com/amazonaws/sagemaker/helper/ResponseHelperTest.java | /*
* Copyright 2010-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in ... | 7,638 |
0 | Create_ds/sagemaker-sparkml-serving-container/src/main/java/com/amazonaws | Create_ds/sagemaker-sparkml-serving-container/src/main/java/com/amazonaws/sagemaker/App.java | /*
* Copyright 2010-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in ... | 7,639 |
0 | Create_ds/sagemaker-sparkml-serving-container/src/main/java/com/amazonaws/sagemaker | Create_ds/sagemaker-sparkml-serving-container/src/main/java/com/amazonaws/sagemaker/dto/SageMakerRequestListObject.java | /*
* Copyright 2010-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in ... | 7,640 |
0 | Create_ds/sagemaker-sparkml-serving-container/src/main/java/com/amazonaws/sagemaker | Create_ds/sagemaker-sparkml-serving-container/src/main/java/com/amazonaws/sagemaker/dto/ColumnSchema.java | /*
* Copyright 2010-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in ... | 7,641 |
0 | Create_ds/sagemaker-sparkml-serving-container/src/main/java/com/amazonaws/sagemaker | Create_ds/sagemaker-sparkml-serving-container/src/main/java/com/amazonaws/sagemaker/dto/SageMakerRequestObject.java | /*
* Copyright 2010-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in ... | 7,642 |
0 | Create_ds/sagemaker-sparkml-serving-container/src/main/java/com/amazonaws/sagemaker | Create_ds/sagemaker-sparkml-serving-container/src/main/java/com/amazonaws/sagemaker/dto/DataSchema.java | /*
* Copyright 2010-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in ... | 7,643 |
0 | Create_ds/sagemaker-sparkml-serving-container/src/main/java/com/amazonaws/sagemaker | Create_ds/sagemaker-sparkml-serving-container/src/main/java/com/amazonaws/sagemaker/dto/JsonlinesTextOutput.java | /*
* Copyright 2010-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in ... | 7,644 |
0 | Create_ds/sagemaker-sparkml-serving-container/src/main/java/com/amazonaws/sagemaker | Create_ds/sagemaker-sparkml-serving-container/src/main/java/com/amazonaws/sagemaker/dto/BatchExecutionParameter.java | /*
* Copyright 2010-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in ... | 7,645 |
0 | Create_ds/sagemaker-sparkml-serving-container/src/main/java/com/amazonaws/sagemaker | Create_ds/sagemaker-sparkml-serving-container/src/main/java/com/amazonaws/sagemaker/dto/JsonlinesStandardOutput.java | /*
* Copyright 2010-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in ... | 7,646 |
0 | Create_ds/sagemaker-sparkml-serving-container/src/main/java/com/amazonaws/sagemaker | Create_ds/sagemaker-sparkml-serving-container/src/main/java/com/amazonaws/sagemaker/configuration/BeanConfiguration.java | /*
* Copyright 2010-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in ... | 7,647 |
0 | Create_ds/sagemaker-sparkml-serving-container/src/main/java/com/amazonaws/sagemaker | Create_ds/sagemaker-sparkml-serving-container/src/main/java/com/amazonaws/sagemaker/utils/SystemUtils.java | /*
* Copyright 2010-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in ... | 7,648 |
0 | Create_ds/sagemaker-sparkml-serving-container/src/main/java/com/amazonaws/sagemaker | Create_ds/sagemaker-sparkml-serving-container/src/main/java/com/amazonaws/sagemaker/utils/ScalaUtils.java | /*
* Copyright 2010-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in ... | 7,649 |
0 | Create_ds/sagemaker-sparkml-serving-container/src/main/java/com/amazonaws/sagemaker | Create_ds/sagemaker-sparkml-serving-container/src/main/java/com/amazonaws/sagemaker/controller/ServingController.java | /*
* Copyright 2010-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in ... | 7,650 |
0 | Create_ds/sagemaker-sparkml-serving-container/src/main/java/com/amazonaws/sagemaker | Create_ds/sagemaker-sparkml-serving-container/src/main/java/com/amazonaws/sagemaker/type/DataStructureType.java | /*
* Copyright 2010-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in ... | 7,651 |
0 | Create_ds/sagemaker-sparkml-serving-container/src/main/java/com/amazonaws/sagemaker | Create_ds/sagemaker-sparkml-serving-container/src/main/java/com/amazonaws/sagemaker/type/BasicDataType.java | /*
* Copyright 2010-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in ... | 7,652 |
0 | Create_ds/sagemaker-sparkml-serving-container/src/main/java/com/amazonaws/sagemaker | Create_ds/sagemaker-sparkml-serving-container/src/main/java/com/amazonaws/sagemaker/type/AdditionalMediaType.java | /*
* Copyright 2010-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in ... | 7,653 |
0 | Create_ds/sagemaker-sparkml-serving-container/src/main/java/com/amazonaws/sagemaker | Create_ds/sagemaker-sparkml-serving-container/src/main/java/com/amazonaws/sagemaker/helper/ResponseHelper.java | /*
* Copyright 2010-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in ... | 7,654 |
0 | Create_ds/sagemaker-sparkml-serving-container/src/main/java/com/amazonaws/sagemaker | Create_ds/sagemaker-sparkml-serving-container/src/main/java/com/amazonaws/sagemaker/helper/DataConversionHelper.java | /*
* Copyright 2010-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in ... | 7,655 |
0 | Create_ds/jetpack/java/src/test/java/jetpack | Create_ds/jetpack/java/src/test/java/jetpack/ssl/VersionedFileResolverTest.java | package jetpack.ssl;
import java.io.File;
import java.io.FileNotFoundException;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.TemporaryFolder;
import static org.fest.assertions.api.Assertions.assertThat;
public class VersionedFileResolverTest {
@Rule public TemporaryFolder tempDir = new Temp... | 7,656 |
0 | Create_ds/jetpack/java/src/test/java/jetpack | Create_ds/jetpack/java/src/test/java/jetpack/ssl/ReloadingKeyManagerTest.java | package jetpack.ssl;
import com.google.common.io.Resources;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.security.cert.X509Certificate;
import java.util.NoSuchElementException;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.TemporaryFolde... | 7,657 |
0 | Create_ds/jetpack/java/src/main/java/jetpack | Create_ds/jetpack/java/src/main/java/jetpack/ssl/ReloadingSslContextFactory.java | package jetpack.ssl;
import com.google.common.base.Strings;
import com.google.common.io.Files;
import java.io.File;
import java.io.IOException;
import java.security.GeneralSecurityException;
import java.security.KeyStore;
import javax.net.ssl.KeyManager;
import javax.net.ssl.SSLContext;
import javax.net.ssl.TrustManag... | 7,658 |
0 | Create_ds/jetpack/java/src/main/java/jetpack | Create_ds/jetpack/java/src/main/java/jetpack/ssl/FileResolver.java | package jetpack.ssl;
import java.io.File;
import java.io.FileNotFoundException;
/** Simple interface to resolve {@link java.io.File}s. */
public interface FileResolver {
/**
* @return resolved File object.
* @throws java.io.FileNotFoundException when file not found.
*/
File resolve() throws FileNotFoundE... | 7,659 |
0 | Create_ds/jetpack/java/src/main/java/jetpack | Create_ds/jetpack/java/src/main/java/jetpack/ssl/VersionedFileResolver.java | package jetpack.ssl;
import com.google.common.collect.Lists;
import com.google.common.collect.Ordering;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FilenameFilter;
import java.util.List;
import static com.google.common.base.Preconditions.checkArgument;
import static java.lang.String.form... | 7,660 |
0 | Create_ds/jetpack/java/src/main/java/jetpack | Create_ds/jetpack/java/src/main/java/jetpack/ssl/ReloadingKeyManager.java | package jetpack.ssl;
import com.google.common.base.Predicate;
import com.google.common.base.Throwables;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.Iterables;
import com.google.common.collect.Iterators;
import com.google.common.collect.Lists;
import com.google.common.io.Closer;
imp... | 7,661 |
0 | Create_ds/jetpack/java/src/main/java/jetpack | Create_ds/jetpack/java/src/main/java/jetpack/filter/IgnoreUnknownHttpMethodsFilter.java | package jetpack.filter;
import java.io.IOException;
import javax.servlet.Filter;
import javax.servlet.FilterChain;
import javax.servlet.FilterConfig;
import javax.servlet.ServletException;
import javax.servlet.ServletRequest;
import javax.servlet.ServletResponse;
import javax.servlet.http.HttpServletRequest;
import ja... | 7,662 |
0 | Create_ds/jetpack/java/src/main/java/jetpack | Create_ds/jetpack/java/src/main/java/jetpack/filter/ValidUrlFilter.java | package jetpack.filter;
import java.io.IOException;
import java.util.regex.Pattern;
import javax.servlet.Filter;
import javax.servlet.FilterChain;
import javax.servlet.FilterConfig;
import javax.servlet.ServletException;
import javax.servlet.ServletRequest;
import javax.servlet.ServletResponse;
import javax.servlet.ht... | 7,663 |
0 | Create_ds/aries/transaction/transaction-testbundle/src/main/java/org/apache/aries/transaction | Create_ds/aries/transaction/transaction-testbundle/src/main/java/org/apache/aries/transaction/test/TestBean.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,664 |
0 | Create_ds/aries/transaction/transaction-testbundle/src/main/java/org/apache/aries/transaction | Create_ds/aries/transaction/transaction-testbundle/src/main/java/org/apache/aries/transaction/test/Counter.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,665 |
0 | Create_ds/aries/transaction/transaction-testbundle/src/main/java/org/apache/aries/transaction | Create_ds/aries/transaction/transaction-testbundle/src/main/java/org/apache/aries/transaction/test/RollbackOnBean.java | package org.apache.aries.transaction.test;
import java.sql.SQLException;
public interface RollbackOnBean {
void throwException(String name, int value) throws Exception;
void throwExceptionRollbackOnException(String name, int value) throws Exception;
void throwRuntimeExceptionRollbackOnException(String name, int... | 7,666 |
0 | Create_ds/aries/transaction/transaction-testbundle/src/main/java/org/apache/aries/transaction/test | Create_ds/aries/transaction/transaction-testbundle/src/main/java/org/apache/aries/transaction/test/impl/TestBeanImpl.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,667 |
0 | Create_ds/aries/transaction/transaction-testbundle/src/main/java/org/apache/aries/transaction/test | Create_ds/aries/transaction/transaction-testbundle/src/main/java/org/apache/aries/transaction/test/impl/NeverTestBeanImpl.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,668 |
0 | Create_ds/aries/transaction/transaction-testbundle/src/main/java/org/apache/aries/transaction/test | Create_ds/aries/transaction/transaction-testbundle/src/main/java/org/apache/aries/transaction/test/impl/NotSupportedTestBeanImpl.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,669 |
0 | Create_ds/aries/transaction/transaction-testbundle/src/main/java/org/apache/aries/transaction/test | Create_ds/aries/transaction/transaction-testbundle/src/main/java/org/apache/aries/transaction/test/impl/RollbackOnBeanImpl.java | package org.apache.aries.transaction.test.impl;
import org.apache.aries.transaction.test.RollbackOnBean;
import org.apache.aries.transaction.test.TestBean;
import javax.transaction.Transactional;
import java.sql.SQLException;
import static javax.transaction.Transactional.TxType;
public class RollbackOnBeanImpl impl... | 7,670 |
0 | Create_ds/aries/transaction/transaction-testbundle/src/main/java/org/apache/aries/transaction/test | Create_ds/aries/transaction/transaction-testbundle/src/main/java/org/apache/aries/transaction/test/impl/RequiresNewTestBeanImpl.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,671 |
0 | Create_ds/aries/transaction/transaction-testbundle/src/main/java/org/apache/aries/transaction/test | Create_ds/aries/transaction/transaction-testbundle/src/main/java/org/apache/aries/transaction/test/impl/RequiredTestBeanImpl.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,672 |
0 | Create_ds/aries/transaction/transaction-testbundle/src/main/java/org/apache/aries/transaction/test | Create_ds/aries/transaction/transaction-testbundle/src/main/java/org/apache/aries/transaction/test/impl/Connector.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,673 |
0 | Create_ds/aries/transaction/transaction-testbundle/src/main/java/org/apache/aries/transaction/test | Create_ds/aries/transaction/transaction-testbundle/src/main/java/org/apache/aries/transaction/test/impl/SupportsTestBeanImpl.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,674 |
0 | Create_ds/aries/transaction/transaction-testbundle/src/main/java/org/apache/aries/transaction/test | Create_ds/aries/transaction/transaction-testbundle/src/main/java/org/apache/aries/transaction/test/impl/MandatoryTestBeanImpl.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,675 |
0 | Create_ds/aries/transaction/transaction-jdbc/src/main/java/org/apache/aries/transaction | Create_ds/aries/transaction/transaction-jdbc/src/main/java/org/apache/aries/transaction/jdbc/RecoverableDataSource.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,676 |
0 | Create_ds/aries/transaction/transaction-jdbc/src/main/java/org/apache/aries/transaction | Create_ds/aries/transaction/transaction-jdbc/src/main/java/org/apache/aries/transaction/jdbc/RecoverableDataSourceMBean.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,677 |
0 | Create_ds/aries/transaction/transaction-jdbc/src/main/java/org/apache/aries/transaction/jdbc | Create_ds/aries/transaction/transaction-jdbc/src/main/java/org/apache/aries/transaction/jdbc/internal/ManagedDataSourceFactory.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,678 |
0 | Create_ds/aries/transaction/transaction-jdbc/src/main/java/org/apache/aries/transaction/jdbc | Create_ds/aries/transaction/transaction-jdbc/src/main/java/org/apache/aries/transaction/jdbc/internal/Recovery.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,679 |
0 | Create_ds/aries/transaction/transaction-jdbc/src/main/java/org/apache/aries/transaction/jdbc | Create_ds/aries/transaction/transaction-jdbc/src/main/java/org/apache/aries/transaction/jdbc/internal/XADataSourceMCFFactory.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,680 |
0 | Create_ds/aries/transaction/transaction-jdbc/src/main/java/org/apache/aries/transaction/jdbc | Create_ds/aries/transaction/transaction-jdbc/src/main/java/org/apache/aries/transaction/jdbc/internal/Reflections.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,681 |
0 | Create_ds/aries/transaction/transaction-jdbc/src/main/java/org/apache/aries/transaction/jdbc | Create_ds/aries/transaction/transaction-jdbc/src/main/java/org/apache/aries/transaction/jdbc/internal/Activator.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,682 |
0 | Create_ds/aries/transaction/transaction-jdbc/src/main/java/org/apache/aries/transaction/jdbc | Create_ds/aries/transaction/transaction-jdbc/src/main/java/org/apache/aries/transaction/jdbc/internal/AbstractMCFFactory.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,683 |
0 | Create_ds/aries/transaction/transaction-jdbc/src/main/java/org/apache/aries/transaction/jdbc | Create_ds/aries/transaction/transaction-jdbc/src/main/java/org/apache/aries/transaction/jdbc/internal/ConnectionManagerFactory.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,684 |
0 | Create_ds/aries/transaction/transaction-jdbc/src/main/java/org/apache/aries/transaction/jdbc | Create_ds/aries/transaction/transaction-jdbc/src/main/java/org/apache/aries/transaction/jdbc/internal/DataSourceMCFFactory.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,685 |
0 | Create_ds/aries/transaction/transaction-jdbc/src/main/java/org/apache/aries/transaction/jdbc | Create_ds/aries/transaction/transaction-jdbc/src/main/java/org/apache/aries/transaction/jdbc/internal/ValidatingGenericConnectionManager.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,686 |
0 | Create_ds/aries/transaction/transaction-jdbc/src/main/java/org/apache/aries/transaction/jdbc | Create_ds/aries/transaction/transaction-jdbc/src/main/java/org/apache/aries/transaction/jdbc/internal/ValidatingDelegatingManagedConnectionFactory.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,687 |
0 | Create_ds/aries/transaction/transaction-blueprint/src/test/java/org/apache/aries | Create_ds/aries/transaction/transaction-blueprint/src/test/java/org/apache/aries/transaction/DummyNamespaceHandlerRegistry.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,688 |
0 | Create_ds/aries/transaction/transaction-blueprint/src/test/java/org/apache/aries | Create_ds/aries/transaction/transaction-blueprint/src/test/java/org/apache/aries/transaction/AnnotationEnablingNameSpaceHandlerTest.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,689 |
0 | Create_ds/aries/transaction/transaction-blueprint/src/test/java/org/apache/aries | Create_ds/aries/transaction/transaction-blueprint/src/test/java/org/apache/aries/transaction/InterceptorTest.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,690 |
0 | Create_ds/aries/transaction/transaction-blueprint/src/test/java/org/apache/aries | Create_ds/aries/transaction/transaction-blueprint/src/test/java/org/apache/aries/transaction/ComponentTxDataTest.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,691 |
0 | Create_ds/aries/transaction/transaction-blueprint/src/test/java/org/apache/aries | Create_ds/aries/transaction/transaction-blueprint/src/test/java/org/apache/aries/transaction/DummyNamespaceHandlerSet.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,692 |
0 | Create_ds/aries/transaction/transaction-blueprint/src/test/java/org/apache/aries | Create_ds/aries/transaction/transaction-blueprint/src/test/java/org/apache/aries/transaction/BaseNameSpaceHandlerSetup.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,693 |
0 | Create_ds/aries/transaction/transaction-blueprint/src/test/java/org/apache/aries | Create_ds/aries/transaction/transaction-blueprint/src/test/java/org/apache/aries/transaction/TranStrategyTest.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,694 |
0 | Create_ds/aries/transaction/transaction-blueprint/src/test/java/org/apache/aries/transaction | Create_ds/aries/transaction/transaction-blueprint/src/test/java/org/apache/aries/transaction/pojo/OnRollbackPojo.java | package org.apache.aries.transaction.pojo;
import java.sql.BatchUpdateException;
import java.sql.SQLDataException;
import javax.transaction.Transactional;
@Transactional(rollbackOn = SQLDataException.class)
public class OnRollbackPojo {
@Transactional(rollbackOn = BatchUpdateException.class)
public void thr... | 7,695 |
0 | Create_ds/aries/transaction/transaction-blueprint/src/test/java/org/apache/aries/transaction | Create_ds/aries/transaction/transaction-blueprint/src/test/java/org/apache/aries/transaction/pojo/ExtendedPojo3.java | package org.apache.aries.transaction.pojo;
import javax.transaction.Transactional;
import javax.transaction.Transactional.TxType;
@Transactional(value=TxType.MANDATORY)
public class ExtendedPojo3 extends BaseClass {
@Override
public void defaultType(String test) {
super.defaultType(test);
}
}
| 7,696 |
0 | Create_ds/aries/transaction/transaction-blueprint/src/test/java/org/apache/aries/transaction | Create_ds/aries/transaction/transaction-blueprint/src/test/java/org/apache/aries/transaction/pojo/ExtendedPojo2.java | package org.apache.aries.transaction.pojo;
import javax.transaction.Transactional;
import javax.transaction.Transactional.TxType;
@Transactional(value=TxType.MANDATORY)
public class ExtendedPojo2 extends BaseClass {
@Override
public void defaultType(String test) {
}
@Transactional(value=TxType.SUPPO... | 7,697 |
0 | Create_ds/aries/transaction/transaction-blueprint/src/test/java/org/apache/aries/transaction | Create_ds/aries/transaction/transaction-blueprint/src/test/java/org/apache/aries/transaction/pojo/BadlyAnnotatedPojo2.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,698 |
0 | Create_ds/aries/transaction/transaction-blueprint/src/test/java/org/apache/aries/transaction | Create_ds/aries/transaction/transaction-blueprint/src/test/java/org/apache/aries/transaction/pojo/AnnotatedPojo.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,699 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.