index int64 0 0 | repo_id stringlengths 26 205 | file_path stringlengths 51 246 | content stringlengths 8 433k | __index_level_0__ int64 0 10k |
|---|---|---|---|---|
0 | Create_ds/karyon/karyon2-core/src/main/java/netflix/karyon | Create_ds/karyon/karyon2-core/src/main/java/netflix/karyon/health/AlwaysHealthyHealthCheck.java | /*
* Copyright 2013 Netflix, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by a... | 3,300 |
0 | Create_ds/karyon/karyon2-admin-web/src/test/java/netflix | Create_ds/karyon/karyon2-admin-web/src/test/java/netflix/adminresources/WebAdminTest.java | /*
* Copyright 2013 Netflix, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by a... | 3,301 |
0 | Create_ds/karyon/karyon2-admin-web/src/test/java/netflix/adminresources | Create_ds/karyon/karyon2-admin-web/src/test/java/netflix/adminresources/tableview/PropsTableViewTest.java | package netflix.adminresources.tableview;
import com.google.gson.JsonArray;
import com.google.gson.JsonElement;
import org.junit.Test;
import java.util.List;
import static junit.framework.Assert.assertTrue;
public class PropsTableViewTest {
public static final String ALL_COLS_SEARCH_STR = "java";
public st... | 3,302 |
0 | Create_ds/karyon/karyon2-admin-web/src/main/java/netflix/adminresources | Create_ds/karyon/karyon2-admin-web/src/main/java/netflix/adminresources/tableview/TableViewResource.java | package netflix.adminresources.tableview;
import com.google.gson.JsonArray;
import java.util.List;
public interface TableViewResource {
List<String> getColumns();
TableViewResource setColumnSearchTerm(String column, String term);
TableViewResource setAllColumnsSearchTerm(String term);
TableViewRe... | 3,303 |
0 | Create_ds/karyon/karyon2-admin-web/src/main/java/netflix/adminresources | Create_ds/karyon/karyon2-admin-web/src/main/java/netflix/adminresources/tableview/PropsTableView.java | package netflix.adminresources.tableview;
import com.google.common.collect.Lists;
import com.google.gson.JsonArray;
import com.google.gson.JsonPrimitive;
import netflix.adminresources.resources.PropertiesHelper;
import netflix.adminresources.resources.model.Property;
import org.slf4j.Logger;
import org.slf4j.LoggerFa... | 3,304 |
0 | Create_ds/karyon/karyon2-admin-web/src/main/java/netflix/adminresources | Create_ds/karyon/karyon2-admin-web/src/main/java/netflix/adminresources/tableview/DataTableHelper.java | package netflix.adminresources.tableview;
import com.google.gson.JsonArray;
import com.google.gson.JsonObject;
import javax.ws.rs.core.MultivaluedMap;
public class DataTableHelper {
public static JsonObject buildOutput(TableViewResource tableViewResource, MultivaluedMap<String, String> queryParams) {
Js... | 3,305 |
0 | Create_ds/karyon/karyon2-admin-web/src/main/java/netflix/adminresources | Create_ds/karyon/karyon2-admin-web/src/main/java/netflix/adminresources/resources/EnvironmentResource.java | /*
* Copyright 2013 Netflix, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by a... | 3,306 |
0 | Create_ds/karyon/karyon2-admin-web/src/main/java/netflix/adminresources | Create_ds/karyon/karyon2-admin-web/src/main/java/netflix/adminresources/resources/PropertiesHelper.java | package netflix.adminresources.resources;
import com.netflix.config.ConfigurationManager;
import netflix.adminresources.resources.model.Property;
import org.apache.commons.configuration.AbstractConfiguration;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.util.*;
public class PropertiesHelper {... | 3,307 |
0 | Create_ds/karyon/karyon2-admin-web/src/main/java/netflix/adminresources | Create_ds/karyon/karyon2-admin-web/src/main/java/netflix/adminresources/resources/PropertiesResource.java | /*
* Copyright 2013 Netflix, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by a... | 3,308 |
0 | Create_ds/karyon/karyon2-admin-web/src/main/java/netflix/adminresources | Create_ds/karyon/karyon2-admin-web/src/main/java/netflix/adminresources/resources/PairResponse.java | /*
* Copyright 2013 Netflix, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by a... | 3,309 |
0 | Create_ds/karyon/karyon2-admin-web/src/main/java/netflix/adminresources | Create_ds/karyon/karyon2-admin-web/src/main/java/netflix/adminresources/resources/AllPropsResource.java | package netflix.adminresources.resources;
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import netflix.adminresources.resources.model.Property;
import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType;
import javax.ws.rs.core.Response;
import j... | 3,310 |
0 | Create_ds/karyon/karyon2-admin-web/src/main/java/netflix/adminresources | Create_ds/karyon/karyon2-admin-web/src/main/java/netflix/adminresources/resources/GuiceResource.java | package netflix.adminresources.resources;
import com.google.gson.GsonBuilder;
import com.google.inject.Inject;
import com.google.inject.Injector;
import com.netflix.governator.ProvisionMetrics;
import com.netflix.governator.ProvisionMetrics.Element;
import com.netflix.governator.ProvisionMetrics.Visitor;
import java.... | 3,311 |
0 | Create_ds/karyon/karyon2-admin-web/src/main/java/netflix/adminresources | Create_ds/karyon/karyon2-admin-web/src/main/java/netflix/adminresources/resources/JarsInfoResource.java | /*
* Copyright 2013 Netflix, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by a... | 3,312 |
0 | Create_ds/karyon/karyon2-admin-web/src/main/java/netflix/adminresources | Create_ds/karyon/karyon2-admin-web/src/main/java/netflix/adminresources/resources/JsonGrapher.java | package netflix.adminresources.resources;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.SerializationFeature;
import com.google.common.collect.Maps;
import com.google.inject.Inject;
import com.google.inject.Key;
import com.google.inject.grapher.BindingEdge;
import com.google... | 3,313 |
0 | Create_ds/karyon/karyon2-admin-web/src/main/java/netflix/adminresources | Create_ds/karyon/karyon2-admin-web/src/main/java/netflix/adminresources/resources/KaryonAdminResponse.java | /*
* Copyright 2013 Netflix, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by a... | 3,314 |
0 | Create_ds/karyon/karyon2-admin-web/src/main/java/netflix/adminresources | Create_ds/karyon/karyon2-admin-web/src/main/java/netflix/adminresources/resources/KaryonWebAdminModule.java | package netflix.adminresources.resources;
import netflix.adminresources.KaryonAdminModule;
public class KaryonWebAdminModule extends KaryonAdminModule {
@Override
protected void configure() {
super.configure();
}
}
| 3,315 |
0 | Create_ds/karyon/karyon2-admin-web/src/main/java/netflix/adminresources | Create_ds/karyon/karyon2-admin-web/src/main/java/netflix/adminresources/resources/MaskedResourceHelper.java | package netflix.adminresources.resources;
import com.google.common.annotations.VisibleForTesting;
import com.google.common.base.Splitter;
import com.netflix.config.DynamicPropertyFactory;
import java.util.HashSet;
import java.util.Set;
public class MaskedResourceHelper {
@VisibleForTesting
public static fina... | 3,316 |
0 | Create_ds/karyon/karyon2-admin-web/src/main/java/netflix/adminresources/resources | Create_ds/karyon/karyon2-admin-web/src/main/java/netflix/adminresources/resources/jmx/JMXResource.java | /*
* Copyright 2013 Netflix, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by a... | 3,317 |
0 | Create_ds/karyon/karyon2-admin-web/src/main/java/netflix/adminresources/resources | Create_ds/karyon/karyon2-admin-web/src/main/java/netflix/adminresources/resources/jmx/DynaTreeNode.java | package netflix.adminresources.resources.jmx;
import org.codehaus.jettison.json.JSONArray;
import org.codehaus.jettison.json.JSONException;
import org.codehaus.jettison.json.JSONObject;
import java.util.Map;
import java.util.TreeMap;
/**
* Represents a single node in a tree and simplifies adding children and
* ser... | 3,318 |
0 | Create_ds/karyon/karyon2-admin-web/src/main/java/netflix/adminresources/resources | Create_ds/karyon/karyon2-admin-web/src/main/java/netflix/adminresources/resources/jmx/JmxService.java | package netflix.adminresources.resources.jmx;
import com.google.common.collect.Lists;
import com.google.common.collect.Maps;
import org.apache.commons.lang.StringUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import javax.management.Attribute;
import javax.management.AttributeList;
import javax.manag... | 3,319 |
0 | Create_ds/karyon/karyon2-admin-web/src/main/java/netflix/adminresources/resources | Create_ds/karyon/karyon2-admin-web/src/main/java/netflix/adminresources/resources/model/PropertySource.java | package netflix.adminresources.resources.model;
public class PropertySource {
private String sourceName;
private String value;
public PropertySource() {
}
public PropertySource(String sourceName, String value) {
this.sourceName = sourceName;
this.value = value;
}
public S... | 3,320 |
0 | Create_ds/karyon/karyon2-admin-web/src/main/java/netflix/adminresources/resources | Create_ds/karyon/karyon2-admin-web/src/main/java/netflix/adminresources/resources/model/Property.java | package netflix.adminresources.resources.model;
import javax.xml.bind.annotation.XmlRootElement;
import java.util.List;
@XmlRootElement(name = "property")
public class Property {
private String name;
private String value;
private List<PropertySource> sources;
public Property(String name, String value... | 3,321 |
0 | Create_ds/karyon/karyon2-admin-web/src/main/java/netflix/adminresources | Create_ds/karyon/karyon2-admin-web/src/main/java/netflix/adminresources/pages/GuicePage.java | package netflix.adminresources.pages;
import com.google.inject.Module;
import java.util.Arrays;
import java.util.List;
import netflix.adminresources.AbstractAdminPageInfo;
import netflix.adminresources.AdminPage;
@AdminPage
public class GuicePage extends AbstractAdminPageInfo {
public static final String PAGE_... | 3,322 |
0 | Create_ds/karyon/karyon2-admin-web/src/main/java/netflix/adminresources | Create_ds/karyon/karyon2-admin-web/src/main/java/netflix/adminresources/pages/GuiceProvisionPage.java | package netflix.adminresources.pages;
import com.google.inject.Module;
import java.util.Arrays;
import java.util.List;
import netflix.adminresources.AbstractAdminPageInfo;
import netflix.adminresources.AdminPage;
@AdminPage
public class GuiceProvisionPage extends AbstractAdminPageInfo {
public static final Str... | 3,323 |
0 | Create_ds/karyon/karyon2-admin-web/src/main/java/netflix/adminresources | Create_ds/karyon/karyon2-admin-web/src/main/java/netflix/adminresources/pages/PropertiesPage.java | package netflix.adminresources.pages;
import netflix.adminresources.AbstractAdminPageInfo;
import netflix.adminresources.AdminPage;
@AdminPage
public class PropertiesPage extends AbstractAdminPageInfo {
public static final String PAGE_ID = "archprops";
public static final String NAME = "Archaius";
publ... | 3,324 |
0 | Create_ds/karyon/karyon2-admin-web/src/main/java/netflix/adminresources | Create_ds/karyon/karyon2-admin-web/src/main/java/netflix/adminresources/pages/EnvPage.java | package netflix.adminresources.pages;
import netflix.adminresources.AbstractAdminPageInfo;
import netflix.adminresources.AdminPage;
@AdminPage
public class EnvPage extends AbstractAdminPageInfo {
public static final String PAGE_ID = "env";
public static final String NAME = "Environment";
public EnvPage... | 3,325 |
0 | Create_ds/karyon/karyon2-admin-web/src/main/java/netflix/adminresources | Create_ds/karyon/karyon2-admin-web/src/main/java/netflix/adminresources/pages/JmxPage.java | package netflix.adminresources.pages;
import netflix.adminresources.AbstractAdminPageInfo;
import netflix.adminresources.AdminPage;
@AdminPage
public class JmxPage extends AbstractAdminPageInfo {
public static final String PAGE_ID = "jmx";
public static final String NAME = "JMX";
public JmxPage() {
... | 3,326 |
0 | Create_ds/karyon/karyon2-admin-web/src/main/java/netflix/adminresources | Create_ds/karyon/karyon2-admin-web/src/main/java/netflix/adminresources/pages/GuiceGraphPage.java | package netflix.adminresources.pages;
import com.google.inject.Module;
import java.util.Arrays;
import java.util.List;
import netflix.adminresources.AbstractAdminPageInfo;
import netflix.adminresources.AdminPage;
@AdminPage
public class GuiceGraphPage extends AbstractAdminPageInfo {
public static final String ... | 3,327 |
0 | Create_ds/karyon/karyon2-admin-web/src/main/java/netflix/adminresources | Create_ds/karyon/karyon2-admin-web/src/main/java/netflix/adminresources/pages/KaryonGrapherModule.java | package netflix.adminresources.pages;
import com.google.inject.AbstractModule;
import com.google.inject.grapher.NameFactory;
import com.google.inject.grapher.ShortNameFactory;
import com.google.inject.grapher.graphviz.PortIdFactory;
import com.google.inject.grapher.graphviz.PortIdFactoryImpl;
public class KaryonGraph... | 3,328 |
0 | Create_ds/karyon/karyon2-admin-web/src/main/java/netflix/adminresources | Create_ds/karyon/karyon2-admin-web/src/main/java/netflix/adminresources/pages/JarsPage.java | package netflix.adminresources.pages;
import netflix.adminresources.AbstractAdminPageInfo;
import netflix.adminresources.AdminPage;
@AdminPage
public class JarsPage extends AbstractAdminPageInfo {
public static final String PAGE_ID = "jars";
public static final String NAME = "Jars";
public JarsPage() {
... | 3,329 |
0 | Create_ds/karyon/karyon2-admin-web/src/main/java/netflix/adminresources | Create_ds/karyon/karyon2-admin-web/src/main/java/netflix/adminresources/pages/AdminPageResource.java | package netflix.adminresources.pages;
import com.google.inject.Inject;
import com.google.inject.Singleton;
import com.sun.jersey.api.view.Viewable;
import netflix.admin.AdminConfigImpl;
import netflix.admin.AdminContainerConfig;
import netflix.adminresources.AdminPageInfo;
import netflix.adminresources.AdminPageRegist... | 3,330 |
0 | Create_ds/karyon/karyon2-admin-web/src/main/java/com/google/inject | Create_ds/karyon/karyon2-admin-web/src/main/java/com/google/inject/grapher/KaryonAbstractInjectorGrapher.java | package com.google.inject.grapher;
import com.google.common.collect.Lists;
import com.google.common.collect.Maps;
import com.google.common.collect.Sets;
import com.google.inject.Binding;
import com.google.inject.ConfigurationException;
import com.google.inject.Injector;
import com.google.inject.Key;
import java.io.IO... | 3,331 |
0 | Create_ds/sagemaker-spark-container/test/resources/code/java/hello-java-spark/src/main/java/com/amazonaws/sagemaker/spark | Create_ds/sagemaker-spark-container/test/resources/code/java/hello-java-spark/src/main/java/com/amazonaws/sagemaker/spark/test/HelloJavaSparkApp.java | /*
* Copyright 2020 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 the "licen... | 3,332 |
0 | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples/helloworld/HelloWorldActivities.java | /**
* Copyright 2012-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 the "lic... | 3,333 |
0 | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples/helloworld/HelloWorldWorkflowImpl.java | /**
* Copyright 2012-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 the "lic... | 3,334 |
0 | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples/helloworld/ActivityHost.java | /**
* Copyright 2012-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 the "lic... | 3,335 |
0 | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples/helloworld/HelloWorldWorkflow.java | /**
* Copyright 2012-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 the "lic... | 3,336 |
0 | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples/helloworld/HelloWorldActivitiesImpl.java | /**
* Copyright 2012-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 the "lic... | 3,337 |
0 | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples/helloworld/WorkflowExecutionStarter.java | /**
* Copyright 2012-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 the "lic... | 3,338 |
0 | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples/helloworld/HelloWorldTest.java | /**
* Copyright 2012-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 the "lic... | 3,339 |
0 | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples/helloworld/WorkflowHost.java | /**
* Copyright 2012-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 the "lic... | 3,340 |
0 | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples/splitmerge/AverageCalculatorWorkflowImpl.java | /**
* Copyright 2012-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 the "lic... | 3,341 |
0 | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples/splitmerge/PartitionedAverageCalculatorImpl.java | /**
* Copyright 2012-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 the "lic... | 3,342 |
0 | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples/splitmerge/AverageCalculatorWorkflow.java | /**
* Copyright 2012-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 the "lic... | 3,343 |
0 | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples/splitmerge/SplitMergeConfigKeys.java | /**
* Copyright 2012-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 the "lic... | 3,344 |
0 | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples/splitmerge/PartitionedAverageCalculator.java | /**
* Copyright 2012-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 the "lic... | 3,345 |
0 | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples/splitmerge/AverageCalculatorActivitiesImpl.java | /**
* Copyright 2012-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 the "lic... | 3,346 |
0 | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples/splitmerge/ActivityHost.java | /**
* Copyright 2012-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 the "lic... | 3,347 |
0 | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples/splitmerge/AverageCalculatorActivities.java | /**
* Copyright 2012-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 the "lic... | 3,348 |
0 | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples/splitmerge/WorkflowExecutionStarter.java | /**
* Copyright 2012-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 the "lic... | 3,349 |
0 | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples/splitmerge/WorkflowHost.java | /**
* Copyright 2012-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 the "lic... | 3,350 |
0 | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples/componentversion/ComponentVersionWorkflowMaxAllowedHeavyImpl.java | /**
* Copyright 2012-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 the "lic... | 3,351 |
0 | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples/componentversion/ComponentVersionWorkerHostBase.java | /**
* Copyright 2012-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 the "lic... | 3,352 |
0 | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples/componentversion/ComponentVersionWorkflowImplBase.java | /**
* Copyright 2012-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 the "lic... | 3,353 |
0 | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples/componentversion/ComponentVersionWorkflowLightImpl.java | /**
* Copyright 2012-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 the "lic... | 3,354 |
0 | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples/componentversion/ComponentVersionWorkflow.java | /**
* Copyright 2012-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 the "lic... | 3,355 |
0 | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples/componentversion/ComponentVersionWorkflowHeavyImpl.java | /**
* Copyright 2012-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 the "lic... | 3,356 |
0 | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples/componentversion/ComponentVersionActivities.java | /**
* Copyright 2012-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 the "lic... | 3,357 |
0 | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples/componentversion/ComponentVersionWorkflowMaxAllowedLightImpl.java | /**
* Copyright 2012-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 the "lic... | 3,358 |
0 | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples/componentversion/ComponentVersionActivitiesImpl.java | /**
* Copyright 2012-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 the "lic... | 3,359 |
0 | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples/componentversion/ComponentVersionMaxAllowedLightWorkerHost.java | /**
* Copyright 2012-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 the "lic... | 3,360 |
0 | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples/componentversion/ComponentVersionMaxAllowedHeavyWorkerHost.java | /**
* Copyright 2012-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 the "lic... | 3,361 |
0 | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples/componentversion/ComponentVersionWorkflowStarter.java | /**
* Copyright 2012-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 the "lic... | 3,362 |
0 | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples/componentversion/ComponentVersionLightWorkerHost.java | /**
* Copyright 2012-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 the "lic... | 3,363 |
0 | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples/componentversion/ComponentVersionHeavyWorkerHost.java | /**
* Copyright 2012-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 the "lic... | 3,364 |
0 | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples/booking/BookingConfigKeys.java | /**
* Copyright 2012-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 the "lic... | 3,365 |
0 | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples/booking/BookingActivities.java | /**
* Copyright 2012-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 the "lic... | 3,366 |
0 | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples/booking/ActivityHost.java | /**
* Copyright 2012-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 the "lic... | 3,367 |
0 | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples/booking/BookingWorklfowTest.java | /**
* Copyright 2012-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 the "lic... | 3,368 |
0 | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples/booking/BookingWorkflowImpl.java | /**
* Copyright 2012-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 the "lic... | 3,369 |
0 | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples/booking/BookingWorkflow.java | /**
* Copyright 2012-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 the "lic... | 3,370 |
0 | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples/booking/WorkflowExecutionStarter.java | /**
* Copyright 2012-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 the "lic... | 3,371 |
0 | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples/booking/WorkflowHost.java | /**
* Copyright 2012-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 the "lic... | 3,372 |
0 | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples/booking/BookingActivitiesImpl.java | /**
* Copyright 2012-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 the "lic... | 3,373 |
0 | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples/periodicworkflow/PeriodicWorkflowOptions.java | /**
* Copyright 2012-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 the "lic... | 3,374 |
0 | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples/periodicworkflow/ErrorReportingActivitiesImpl.java | /**
* Copyright 2012-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 the "lic... | 3,375 |
0 | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples/periodicworkflow/PeriodicWorkflow.java | /**
* Copyright 2012-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 the "lic... | 3,376 |
0 | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples/periodicworkflow/PeriodicWorkflowActivities.java | /**
* Copyright 2012-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 the "lic... | 3,377 |
0 | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples/periodicworkflow/ActivityHost.java | /**
* Copyright 2012-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 the "lic... | 3,378 |
0 | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples/periodicworkflow/ErrorReportingActivities.java | /**
* Copyright 2012-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 the "lic... | 3,379 |
0 | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples/periodicworkflow/PeriodicWorkflowTest.java | /**
* Copyright 2012-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 the "lic... | 3,380 |
0 | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples/periodicworkflow/WorkflowExecutionStarter.java | /**
* Copyright 2012-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 the "lic... | 3,381 |
0 | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples/periodicworkflow/PeriodicWorkflowActivitiesImpl.java | /**
* Copyright 2012-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 the "lic... | 3,382 |
0 | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples/periodicworkflow/WorkflowHost.java | /**
* Copyright 2012-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 the "lic... | 3,383 |
0 | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples/periodicworkflow/PeriodicWorkflowImpl.java | /**
* Copyright 2012-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 the "lic... | 3,384 |
0 | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples/fileprocessing/FileProcessingActivitiesZipImpl.java | /**
* Copyright 2012-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 the "lic... | 3,385 |
0 | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples/fileprocessing/FileProcessingConfigKeys.java | /**
* Copyright 2012-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 the "lic... | 3,386 |
0 | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples/fileprocessing/FileProcessingActivities.java | /**
* Copyright 2012-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 the "lic... | 3,387 |
0 | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples/fileprocessing/ActivityHost.java | /**
* Copyright 2012-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 the "lic... | 3,388 |
0 | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples/fileprocessing/SimpleStoreActivitiesS3Impl.java | /**
* Copyright 2012-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 the "lic... | 3,389 |
0 | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples/fileprocessing/SimpleStoreActivities.java | /**
* Copyright 2012-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 the "lic... | 3,390 |
0 | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples/fileprocessing/FileProcessingWorkflowZipImpl.java | /**
* Copyright 2012-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 the "lic... | 3,391 |
0 | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples/fileprocessing/WorkflowExecutionStarter.java | /**
* Copyright 2012-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 the "lic... | 3,392 |
0 | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples/fileprocessing/FileProcessingWorkflow.java | /**
* Copyright 2012-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 the "lic... | 3,393 |
0 | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples/fileprocessing/WorkflowHost.java | /**
* Copyright 2012-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 the "lic... | 3,394 |
0 | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples/common/WorkflowExecutionReplayer.java | /**
* Copyright 2012-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 the "lic... | 3,395 |
0 | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples/common/WorkflowExecutionFlowThreadDumper.java | /**
* Copyright 2012-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 the "lic... | 3,396 |
0 | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples/common/RegistrationDefaults.java | /**
* Copyright 2012-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 the "lic... | 3,397 |
0 | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples/common/ConfigKeys.java | /**
* Copyright 2012-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 the "lic... | 3,398 |
0 | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples | Create_ds/aws-swf-flow-library/src/samples/AwsFlowFramework/src/com/amazonaws/services/simpleworkflow/flow/examples/common/WorkflowExecutionHistoryPrinter.java | /**
* Copyright 2012-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 the "lic... | 3,399 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.