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/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse/codedeploy/CodeDeployPlugin.java | package com.amazonaws.eclipse.codedeploy;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.Status;
import org.eclipse.jface.resource.ImageRegistry;
import org.eclipse.ui.IStartup;
import org.eclipse.ui.plugin.AbstractUIPlugin;
import org.eclipse.ui.statushandlers.StatusManager;
import org.osgi.... | 7,100 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse/codedeploy/ServiceAPIUtils.java | package com.amazonaws.eclipse.codedeploy;
import java.util.Collections;
import java.util.Comparator;
import java.util.LinkedList;
import java.util.List;
import com.amazonaws.services.codedeploy.AmazonCodeDeploy;
import com.amazonaws.services.codedeploy.model.ApplicationInfo;
import com.amazonaws.services.codedeploy.m... | 7,101 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse/codedeploy | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse/codedeploy/appspec/PreferenceStoreConstants.java | package com.amazonaws.eclipse.codedeploy.appspec;
public class PreferenceStoreConstants {
public static final String P_CUSTOM_APPSPEC_TEMPLATE_LOCATIONS = "customAppspecTemplateLocations";
// TODO: what if the path itself contains these characters?
public static final String LOCATION_SEPARATOR = "||";
}
| 7,102 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse/codedeploy | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse/codedeploy/appspec/AppspecTemplateRegistry.java | package com.amazonaws.eclipse.codedeploy.appspec;
import static com.amazonaws.eclipse.codedeploy.appspec.PreferenceStoreConstants.LOCATION_SEPARATOR;
import static com.amazonaws.eclipse.codedeploy.appspec.PreferenceStoreConstants.P_CUSTOM_APPSPEC_TEMPLATE_LOCATIONS;
import java.io.File;
import java.net.URL;
import ja... | 7,103 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse/codedeploy/appspec | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse/codedeploy/appspec/util/JacksonUtils.java | package com.amazonaws.eclipse.codedeploy.appspec.util;
import com.fasterxml.jackson.databind.DeserializationFeature;
import com.fasterxml.jackson.databind.ObjectMapper;
public class JacksonUtils {
public static final ObjectMapper MAPPER = new ObjectMapper();
static {
MAPPER.disable(DeserializationF... | 7,104 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse/codedeploy/appspec | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse/codedeploy/appspec/model/AppspecTemplateMetadataModel.java | package com.amazonaws.eclipse.codedeploy.appspec.model;
import java.io.File;
import java.io.IOException;
import java.net.URL;
import java.util.List;
import org.eclipse.core.runtime.FileLocator;
import org.osgi.framework.Bundle;
import com.amazonaws.eclipse.codedeploy.CodeDeployPlugin;
import com.amazonaws.eclipse.co... | 7,105 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse/codedeploy/appspec | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse/codedeploy/appspec/model/AppspecTemplateParameter.java | package com.amazonaws.eclipse.codedeploy.appspec.model;
import java.util.regex.Pattern;
import java.util.regex.PatternSyntaxException;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;
public class AppspecTem... | 7,106 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse/codedeploy/deploy | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse/codedeploy/deploy/handler/DeployProjectToCodeDeployHandler.java | /*
* Copyright 2010-2012 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 "lice... | 7,107 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse/codedeploy/deploy | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse/codedeploy/deploy/progress/LifecycleEventDiagnosticsDialog.java | package com.amazonaws.eclipse.codedeploy.deploy.progress;
import org.eclipse.jface.dialogs.Dialog;
import org.eclipse.jface.dialogs.IDialogConstants;
import org.eclipse.swt.SWT;
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt.widgets.Composite;
import org.eclips... | 7,108 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse/codedeploy/deploy | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse/codedeploy/deploy/progress/DeploymentProgressTrackerDialog.java | package com.amazonaws.eclipse.codedeploy.deploy.progress;
import java.util.List;
import org.eclipse.jface.dialogs.Dialog;
import org.eclipse.jface.dialogs.IDialogConstants;
import org.eclipse.jface.dialogs.ProgressIndicator;
import org.eclipse.jface.resource.JFaceResources;
import org.eclipse.jface.viewers.ArrayConte... | 7,109 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse/codedeploy/deploy | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse/codedeploy/deploy/progress/InstanceSummaryDetailDialog.java | package com.amazonaws.eclipse.codedeploy.deploy.progress;
import org.eclipse.jface.dialogs.Dialog;
import org.eclipse.jface.dialogs.IDialogConstants;
import org.eclipse.jface.resource.JFaceResources;
import org.eclipse.swt.SWT;
import org.eclipse.swt.events.SelectionAdapter;
import org.eclipse.swt.events.SelectionEven... | 7,110 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse/codedeploy/deploy | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse/codedeploy/deploy/util/WTPWarUtils.java | /*
* Copyright 2010-2012 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 "lice... | 7,111 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse/codedeploy/deploy | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse/codedeploy/deploy/util/ZipUtils.java | package com.amazonaws.eclipse.codedeploy.deploy.util;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.zip.ZipEntry;
import java.util.zip.ZipOutputStream;
import org.apache.commons.io.IOUtils;
public class ZipUtils {
public stati... | 7,112 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse/codedeploy/deploy | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse/codedeploy/deploy/util/DeployUtils.java | package com.amazonaws.eclipse.codedeploy.deploy.util;
import java.io.File;
import java.io.IOException;
import java.util.Map;
import java.util.Map.Entry;
import java.util.UUID;
import org.apache.commons.io.FileUtils;
import org.eclipse.core.resources.IProject;
import org.eclipse.core.runtime.IProgressMonitor;
import o... | 7,113 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse/codedeploy/deploy | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse/codedeploy/deploy/wizard/DeployProjectToCodeDeployWizard.java | /*
* Copyright 2010-2012 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 "lice... | 7,114 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse/codedeploy/deploy/wizard | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse/codedeploy/deploy/wizard/page/WizardPageWithOnEnterHook.java | package com.amazonaws.eclipse.codedeploy.deploy.wizard.page;
import org.eclipse.jface.wizard.IWizardPage;
import org.eclipse.jface.wizard.WizardPage;
/**
* To emulate onEnter event for JFace wizard page.
* http://www.eclipse.org/forums/index.php/t/88927/
*/
abstract class WizardPageWithOnEnterHook extends WizardPa... | 7,115 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse/codedeploy/deploy/wizard | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse/codedeploy/deploy/wizard/page/DeploymentGroupSelectionPage.java | package com.amazonaws.eclipse.codedeploy.deploy.wizard.page;
import static com.amazonaws.eclipse.core.ui.wizards.WizardWidgetFactory.newCombo;
import static com.amazonaws.eclipse.core.ui.wizards.WizardWidgetFactory.newFillingLabel;
import static com.amazonaws.eclipse.core.ui.wizards.WizardWidgetFactory.newGroup;
impor... | 7,116 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse/codedeploy/deploy/wizard | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse/codedeploy/deploy/wizard/page/ImportAppspecTemplateMetadataDialog.java | package com.amazonaws.eclipse.codedeploy.deploy.wizard.page;
import java.io.File;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.Status;
import org.eclipse.core.runtime.jobs.Job;
import org.eclipse.jface.dialogs.Dialog;
import org.eclipse.jfa... | 7,117 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse/codedeploy/deploy/wizard | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse/codedeploy/deploy/wizard/page/AppspecTemplateSelectionPage.java | package com.amazonaws.eclipse.codedeploy.deploy.wizard.page;
import java.util.Collections;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import org.eclipse.core.databinding.AggregateValidationStatus;
import org.eclipse.core.databinding.observabl... | 7,118 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse/codedeploy/deploy/wizard | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse/codedeploy/deploy/wizard/page/DeploymentConfigurationPage.java | package com.amazonaws.eclipse.codedeploy.deploy.wizard.page;
import static com.amazonaws.eclipse.core.ui.wizards.WizardWidgetFactory.newCheckbox;
import static com.amazonaws.eclipse.core.ui.wizards.WizardWidgetFactory.newCombo;
import static com.amazonaws.eclipse.core.ui.wizards.WizardWidgetFactory.newGroup;
import st... | 7,119 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse/codedeploy/deploy/wizard | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse/codedeploy/deploy/wizard/page/AppspecTemplateConfigComposite.java | package com.amazonaws.eclipse.codedeploy.deploy.wizard.page;
import static com.amazonaws.eclipse.core.ui.wizards.WizardWidgetFactory.newControlDecoration;
import static com.amazonaws.eclipse.core.ui.wizards.WizardWidgetFactory.newFillingLabel;
import static com.amazonaws.eclipse.core.ui.wizards.WizardWidgetFactory.new... | 7,120 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse/codedeploy/deploy/wizard/page | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse/codedeploy/deploy/wizard/page/validator/GenericTemplateParameterValidator.java | package com.amazonaws.eclipse.codedeploy.deploy.wizard.page.validator;
import org.eclipse.core.databinding.validation.IValidator;
import org.eclipse.core.databinding.validation.ValidationStatus;
import org.eclipse.core.runtime.IStatus;
import com.amazonaws.eclipse.codedeploy.appspec.model.AppspecTemplateParameter;
im... | 7,121 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse/codedeploy/deploy/wizard/page | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse/codedeploy/deploy/wizard/page/validator/ServerHttpPortValidator.java | /*
* Copyright 2010-2012 Amazon Technologies, 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://aws.amazon.com/apache2.0
*
* This file is distributed on an "AS IS" ... | 7,122 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse/codedeploy/deploy/wizard/page | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse/codedeploy/deploy/wizard/page/validator/ContextPathValidator.java | /*
* Copyright 2010-2012 Amazon Technologies, 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://aws.amazon.com/apache2.0
*
* This file is distributed on an "AS IS" ... | 7,123 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse/codedeploy/deploy/wizard | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse/codedeploy/deploy/wizard/model/DeployProjectToCodeDeployWizardDataModel.java | package com.amazonaws.eclipse.codedeploy.deploy.wizard.model;
import java.util.Map;
import org.eclipse.core.resources.IProject;
import com.amazonaws.eclipse.codedeploy.appspec.model.AppspecTemplateMetadataModel;
import com.amazonaws.eclipse.core.regions.Region;
public class DeployProjectToCodeDeployWizardDataModel ... | 7,124 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse/codedeploy | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse/codedeploy/explorer/DeploymentGroupNode.java | package com.amazonaws.eclipse.codedeploy.explorer;
import com.amazonaws.services.codedeploy.model.DeploymentGroupInfo;
import com.amazonaws.services.codedeploy.model.DeploymentInfo;
public class DeploymentGroupNode {
private final DeploymentGroupInfo deploymentGroup;
private final DeploymentInfo mostRecentDe... | 7,125 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse/codedeploy | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse/codedeploy/explorer/DeploymentGroupNodeDecorator.java | /*
* Copyright 2011-2012 Amazon Technologies, 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://aws.amazon.com/apache2.0
*
* This file is distributed on an "AS IS" ... | 7,126 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse/codedeploy | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse/codedeploy/explorer/CodeDeployActionProvider.java | package com.amazonaws.eclipse.codedeploy.explorer;
import org.eclipse.jface.action.IMenuManager;
import org.eclipse.ui.navigator.CommonActionProvider;
public class CodeDeployActionProvider extends CommonActionProvider {
@Override
public void fillContextMenu(IMenuManager menu) {
}
}
| 7,127 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse/codedeploy | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse/codedeploy/explorer/CodeDeployLabelProvider.java | package com.amazonaws.eclipse.codedeploy.explorer;
import org.eclipse.jface.resource.ImageRegistry;
import org.eclipse.swt.graphics.Image;
import com.amazonaws.eclipse.codedeploy.CodeDeployPlugin;
import com.amazonaws.eclipse.codedeploy.explorer.image.CodeDeployExplorerImages;
import com.amazonaws.eclipse.explorer.Ex... | 7,128 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse/codedeploy | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse/codedeploy/explorer/CodeDeployRootElement.java | package com.amazonaws.eclipse.codedeploy.explorer;
/**
* Root element for CodeDeploy resources in the resource navigator.
*/
public class CodeDeployRootElement {
public static final CodeDeployRootElement ROOT_ELEMENT = new CodeDeployRootElement();
private CodeDeployRootElement() {}
}
| 7,129 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse/codedeploy | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse/codedeploy/explorer/CodeDeployContentProvider.java | package com.amazonaws.eclipse.codedeploy.explorer;
import java.util.Iterator;
import java.util.LinkedList;
import java.util.List;
import org.eclipse.jface.viewers.IOpenListener;
import org.eclipse.jface.viewers.OpenEvent;
import org.eclipse.jface.viewers.StructuredSelection;
import org.eclipse.jface.viewers.Viewer;
... | 7,130 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse/codedeploy/explorer | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse/codedeploy/explorer/image/CodeDeployExplorerImages.java | package com.amazonaws.eclipse.codedeploy.explorer.image;
import org.eclipse.jface.resource.ImageDescriptor;
import org.eclipse.jface.resource.ImageRegistry;
import org.eclipse.swt.widgets.Display;
import com.amazonaws.eclipse.codedeploy.CodeDeployPlugin;
public class CodeDeployExplorerImages {
public static fin... | 7,131 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse/codedeploy/explorer | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse/codedeploy/explorer/action/OpenDeploymentGroupEditorAction.java | /*
* Copyright 2011-2012 Amazon Technologies, 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://aws.amazon.com/apache2.0
*
* This file is distributed on an "AS IS" ... | 7,132 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse/codedeploy/explorer | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse/codedeploy/explorer/editor/DeploymentGroupEditorInput.java | /*
* Copyright 2011-2012 Amazon Technologies, 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://aws.amazon.com/apache2.0
*
* This file is distributed on an "AS IS" ... | 7,133 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse/codedeploy/explorer | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse/codedeploy/explorer/editor/DeploymentGroupEditor.java | /*
* Copyright 2011-2012 Amazon Technologies, 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://aws.amazon.com/apache2.0
*
* This file is distributed on an "AS IS" ... | 7,134 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse/codedeploy/explorer/editor | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse/codedeploy/explorer/editor/table/DeploymentsTableViewContentProvider.java | package com.amazonaws.eclipse.codedeploy.explorer.editor.table;
import org.eclipse.jface.viewers.ILazyTreePathContentProvider;
import org.eclipse.jface.viewers.TreePath;
import org.eclipse.jface.viewers.TreeViewer;
import org.eclipse.jface.viewers.Viewer;
class DeploymentsTableViewContentProvider implements ILazyTree... | 7,135 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse/codedeploy/explorer/editor | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse/codedeploy/explorer/editor/table/DeploymentsTableViewLabelProvider.java | package com.amazonaws.eclipse.codedeploy.explorer.editor.table;
import static com.amazonaws.eclipse.codedeploy.explorer.editor.table.DeploymentsTableView.DEPLOYMENT_ID_COL;
import static com.amazonaws.eclipse.codedeploy.explorer.editor.table.DeploymentsTableView.END_TIME_COL;
import static com.amazonaws.eclipse.codede... | 7,136 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse/codedeploy/explorer/editor | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse/codedeploy/explorer/editor/table/DeploymentsTableViewTreePathContentCache.java | package com.amazonaws.eclipse.codedeploy.explorer.editor.table;
import java.util.Collections;
import java.util.Comparator;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
import org.eclipse.jface.viewers.TreePath;
import com.amazonaws.eclipse.c... | 7,137 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse/codedeploy/explorer/editor | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse/codedeploy/explorer/editor/table/DeploymentsTableView.java | /*
* Copyright 2011-2012 Amazon Technologies, 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://aws.amazon.com/apache2.0
*
* This file is distributed on an "AS IS" ... | 7,138 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse/codedeploy/explorer/editor | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse/codedeploy/explorer/editor/table/TreePathContentProvider.java | package com.amazonaws.eclipse.codedeploy.explorer.editor.table;
import org.eclipse.jface.viewers.TreePath;
interface TreePathContentProvider {
Object[] getChildren(TreePath parent);
void refresh();
}
| 7,139 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse/codedeploy/explorer/editor | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.codedeploy/src/com/amazonaws/eclipse/codedeploy/explorer/editor/table/LoadingContentProvider.java | package com.amazonaws.eclipse.codedeploy.explorer.editor.table;
import org.eclipse.jface.viewers.TreePath;
class LoadingContentProvider implements TreePathContentProvider {
static final Object LOADING = new Object();
@Override
public Object[] getChildren(TreePath parent) {
if (parent.getSegmentC... | 7,140 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.dynamodb/src/com/amazonaws/eclipse | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.dynamodb/src/com/amazonaws/eclipse/dynamodb/AbstractAddNewAttributeDialog.java | /*
* Copyright 2013 Amazon Technologies, 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://aws.amazon.com/apache2.0
*
* This file is distributed on an "AS IS" BASIS... | 7,141 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.dynamodb/src/com/amazonaws/eclipse | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.dynamodb/src/com/amazonaws/eclipse/dynamodb/DynamoDBPlugin.java | /*
* Copyright 2013 Amazon Technologies, 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://aws.amazon.com/apache2.0
*
* This file is distributed on an "AS IS" BASIS... | 7,142 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.dynamodb/src/com/amazonaws/eclipse/dynamodb | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.dynamodb/src/com/amazonaws/eclipse/dynamodb/preferences/PreferenceInitializer.java | /*
* Copyright 2013 Amazon Technologies, 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://aws.amazon.com/apache2.0
*
* This file is distributed on an "AS IS" BASIS... | 7,143 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.dynamodb/src/com/amazonaws/eclipse/dynamodb | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.dynamodb/src/com/amazonaws/eclipse/dynamodb/preferences/TestToolPreferencePage.java | /*
* Copyright 2013 Amazon Technologies, 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://aws.amazon.com/apache2.0
*
* This file is distributed on an "AS IS" BASIS... | 7,144 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.dynamodb/src/com/amazonaws/eclipse/dynamodb | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.dynamodb/src/com/amazonaws/eclipse/dynamodb/testtool/StartTestToolPickVersionWizardPage.java | /*
* Copyright 2013 Amazon Technologies, 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://aws.amazon.com/apache2.0
*
* This file is distributed on an "AS IS" BASIS... | 7,145 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.dynamodb/src/com/amazonaws/eclipse/dynamodb | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.dynamodb/src/com/amazonaws/eclipse/dynamodb/testtool/TestToolManager.java | /*
* Copyright 2013 Amazon Technologies, 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://aws.amazon.com/apache2.0
*
* This file is distributed on an "AS IS" BASIS... | 7,146 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.dynamodb/src/com/amazonaws/eclipse/dynamodb | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.dynamodb/src/com/amazonaws/eclipse/dynamodb/testtool/TestToolProcess.java | /*
* Copyright 2013 Amazon Technologies, 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://aws.amazon.com/apache2.0
*
* This file is distributed on an "AS IS" BASIS... | 7,147 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.dynamodb/src/com/amazonaws/eclipse/dynamodb | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.dynamodb/src/com/amazonaws/eclipse/dynamodb/testtool/TestToolVersion.java | /*
* Copyright 2013 Amazon Technologies, 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://aws.amazon.com/apache2.0
*
* This file is distributed on an "AS IS" BASIS... | 7,148 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.dynamodb/src/com/amazonaws/eclipse/dynamodb | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.dynamodb/src/com/amazonaws/eclipse/dynamodb/testtool/StartTestToolConfigurationWizardPage.java | /*
* Copyright 2013 Amazon Technologies, 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://aws.amazon.com/apache2.0
*
* This file is distributed on an "AS IS" BASIS... | 7,149 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.dynamodb/src/com/amazonaws/eclipse/dynamodb | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.dynamodb/src/com/amazonaws/eclipse/dynamodb/testtool/StartTestToolWizard.java | /*
* Copyright 2013 Amazon Technologies, 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://aws.amazon.com/apache2.0
*
* This file is distributed on an "AS IS" BASIS... | 7,150 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.dynamodb/src/com/amazonaws/eclipse/dynamodb | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.dynamodb/src/com/amazonaws/eclipse/dynamodb/testtool/TestToolVersionTable.java | /*
* Copyright 2013 Amazon Technologies, 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://aws.amazon.com/apache2.0
*
* This file is distributed on an "AS IS" BASIS... | 7,151 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.dynamodb/src/com/amazonaws/eclipse/dynamodb | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.dynamodb/src/com/amazonaws/eclipse/dynamodb/editor/AttributeValueInputDialog.java | package com.amazonaws.eclipse.dynamodb.editor;
import java.util.Collections;
import java.util.HashMap;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import org.eclipse.jface.dialogs.MessageDialog;
import org.eclipse.jface.layout.GridDataFactory;
import org.eclipse.jface.layout.GridLayoutFa... | 7,152 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.dynamodb/src/com/amazonaws/eclipse/dynamodb | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.dynamodb/src/com/amazonaws/eclipse/dynamodb/editor/DynamoDBTableEditor.java | /*
* Copyright 2011-2012 Amazon Technologies, 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://aws.amazon.com/apache2.0
*
* This file is distributed on an "AS IS" ... | 7,153 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.dynamodb/src/com/amazonaws/eclipse/dynamodb | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.dynamodb/src/com/amazonaws/eclipse/dynamodb/editor/MultiValueAttributeEditorDialog.java | /*
* Copyright 2011-2012 Amazon Technologies, 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://aws.amazon.com/apache2.0
*
* This file is distributed on an "AS IS" ... | 7,154 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.dynamodb/src/com/amazonaws/eclipse/dynamodb | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.dynamodb/src/com/amazonaws/eclipse/dynamodb/editor/OpenTableEditorAction.java | /*
* Copyright 2011-2012 Amazon Technologies, 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://aws.amazon.com/apache2.0
*
* This file is distributed on an "AS IS" ... | 7,155 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.dynamodb/src/com/amazonaws/eclipse/dynamodb | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.dynamodb/src/com/amazonaws/eclipse/dynamodb/editor/ScanConditionRow.java | /*
* Copyright 2011-2012 Amazon Technologies, 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://aws.amazon.com/apache2.0
*
* This file is distributed on an "AS IS" ... | 7,156 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.dynamodb/src/com/amazonaws/eclipse/dynamodb | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.dynamodb/src/com/amazonaws/eclipse/dynamodb/editor/EditedItems.java | /*
* Copyright 2012 Amazon Technologies, 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://aws.amazon.com/apache2.0
*
* This file is distributed on an "AS IS" BASIS... | 7,157 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.dynamodb/src/com/amazonaws/eclipse/dynamodb | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.dynamodb/src/com/amazonaws/eclipse/dynamodb/editor/AttributeValueEditor.java | /*
* Copyright 2011-2012 Amazon Technologies, 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://aws.amazon.com/apache2.0
*
* This file is distributed on an "AS IS" ... | 7,158 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.dynamodb/src/com/amazonaws/eclipse/dynamodb | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.dynamodb/src/com/amazonaws/eclipse/dynamodb/editor/TableEditorInput.java | /*
* Copyright 2011-2012 Amazon Technologies, 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://aws.amazon.com/apache2.0
*
* This file is distributed on an "AS IS" ... | 7,159 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.dynamodb/src/com/amazonaws/eclipse/dynamodb | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.dynamodb/src/com/amazonaws/eclipse/dynamodb/editor/EditedItem.java | /*
* Copyright 2012 Amazon Technologies, 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://aws.amazon.com/apache2.0
*
* This file is distributed on an "AS IS" BASIS... | 7,160 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.dynamodb/src/com/amazonaws/eclipse/dynamodb | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.dynamodb/src/com/amazonaws/eclipse/dynamodb/editor/AttributeValueUtil.java | /*
* Copyright 2011-2012 Amazon Technologies, 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://aws.amazon.com/apache2.0
*
* This file is distributed on an "AS IS" ... | 7,161 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.dynamodb/src/com/amazonaws/eclipse/explorer | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.dynamodb/src/com/amazonaws/eclipse/explorer/dynamodb/CreateTablePageUtil.java | /*
* Copyright 2013 Amazon Technologies, 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://aws.amazon.com/apache2.0
*
* This file is distributed on an "AS IS" BASIS... | 7,162 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.dynamodb/src/com/amazonaws/eclipse/explorer | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.dynamodb/src/com/amazonaws/eclipse/explorer/dynamodb/CreateTableFirstPage.java | /*
* Copyright 2013 Amazon Technologies, 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://aws.amazon.com/apache2.0
*
* This file is distributed on an "AS IS" BASIS... | 7,163 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.dynamodb/src/com/amazonaws/eclipse/explorer | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.dynamodb/src/com/amazonaws/eclipse/explorer/dynamodb/DynamoDBContentProvider.java | package com.amazonaws.eclipse.explorer.dynamodb;
import java.util.LinkedList;
import java.util.List;
import org.eclipse.swt.widgets.Display;
import com.amazonaws.AmazonClientException;
import com.amazonaws.AmazonServiceException;
import com.amazonaws.eclipse.core.AwsToolkitCore;
import com.amazonaws.eclipse.core.reg... | 7,164 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.dynamodb/src/com/amazonaws/eclipse/explorer | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.dynamodb/src/com/amazonaws/eclipse/explorer/dynamodb/DynamoDBTableNode.java | /*
* Copyright 2011-2012 Amazon Technologies, 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://aws.amazon.com/apache2.0
*
* This file is distributed on an "AS IS" ... | 7,165 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.dynamodb/src/com/amazonaws/eclipse/explorer | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.dynamodb/src/com/amazonaws/eclipse/explorer/dynamodb/CreateTableWizard.java | /*
* Copyright 2012 Amazon Technologies, 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://aws.amazon.com/apache2.0
*
* This file is distributed on an "AS IS" BASIS... | 7,166 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.dynamodb/src/com/amazonaws/eclipse/explorer | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.dynamodb/src/com/amazonaws/eclipse/explorer/dynamodb/DynamoDBRootNode.java | /*
* Copyright 2011-2012 Amazon Technologies, 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://aws.amazon.com/apache2.0
*
* This file is distributed on an "AS IS" ... | 7,167 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.dynamodb/src/com/amazonaws/eclipse/explorer | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.dynamodb/src/com/amazonaws/eclipse/explorer/dynamodb/CreateTableDataModel.java | /*
* Copyright 2013 Amazon Technologies, 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://aws.amazon.com/apache2.0
*
* This file is distributed on an "AS IS" BASIS... | 7,168 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.dynamodb/src/com/amazonaws/eclipse/explorer | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.dynamodb/src/com/amazonaws/eclipse/explorer/dynamodb/DynamoDBTableNodeDecorator.java | /*
* Copyright 2011-2012 Amazon Technologies, 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://aws.amazon.com/apache2.0
*
* This file is distributed on an "AS IS" ... | 7,169 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.dynamodb/src/com/amazonaws/eclipse/explorer | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.dynamodb/src/com/amazonaws/eclipse/explorer/dynamodb/AddGSIDialog.java | /*
* Copyright 2013 Amazon Technologies, 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://aws.amazon.com/apache2.0
*
* This file is distributed on an "AS IS" BASIS... | 7,170 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.dynamodb/src/com/amazonaws/eclipse/explorer | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.dynamodb/src/com/amazonaws/eclipse/explorer/dynamodb/DynamoDBExplorerActionProvider.java | package com.amazonaws.eclipse.explorer.dynamodb;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.Status;
import org.eclipse.core.runtime.jobs.Job;
import org.eclipse.jface.action.Action;
import org.eclipse.jface.action.IMenuManager;
import org.... | 7,171 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.dynamodb/src/com/amazonaws/eclipse/explorer | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.dynamodb/src/com/amazonaws/eclipse/explorer/dynamodb/TablePropertiesDialog.java | /*
* Copyright 2012 Amazon Technologies, 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://aws.amazon.com/apache2.0
*
* This file is distributed on an "AS IS" BASIS... | 7,172 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.dynamodb/src/com/amazonaws/eclipse/explorer | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.dynamodb/src/com/amazonaws/eclipse/explorer/dynamodb/CreateTableSecondPage.java | /*
* Copyright 2013 Amazon Technologies, 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://aws.amazon.com/apache2.0
*
* This file is distributed on an "AS IS" BASIS... | 7,173 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.dynamodb/src/com/amazonaws/eclipse/explorer | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.dynamodb/src/com/amazonaws/eclipse/explorer/dynamodb/AddLSIDialog.java | /*
* Copyright 2013 Amazon Technologies, 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://aws.amazon.com/apache2.0
*
* This file is distributed on an "AS IS" BASIS... | 7,174 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.ec2/test/com/amazonaws/eclipse | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.ec2/test/com/amazonaws/eclipse/ec2/InstanceTypesParserTest.java | package com.amazonaws.eclipse.ec2;
import static org.junit.Assert.*;
import java.io.InputStream;
import java.util.List;
import org.junit.Test;
public class InstanceTypesParserTest {
/**
* Tests the InstanceType parser by loading the fallback instance type
* descriptions and making sure the loaded ins... | 7,175 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.ec2/test/com/amazonaws/eclipse | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.ec2/test/com/amazonaws/eclipse/ec2/AmiToolsVersionTest.java | /*
* Copyright 2008-2012 Amazon Technologies, 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://aws.amazon.com/apache2.0
*
* This file is distributed on an "AS IS" ... | 7,176 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.ec2/src/com/amazonaws/eclipse/explorer | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.ec2/src/com/amazonaws/eclipse/explorer/ec2/EC2ContentProvider.java | /*
* Copyright 2011-2012 Amazon Technologies, 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://aws.amazon.com/apache2.0
*
* This file is distributed on an "AS IS" ... | 7,177 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.ec2/src/com/amazonaws/eclipse/explorer | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.ec2/src/com/amazonaws/eclipse/explorer/ec2/EC2RootElement.java | /*
* Copyright 2011-2012 Amazon Technologies, 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://aws.amazon.com/apache2.0
*
* This file is distributed on an "AS IS" ... | 7,178 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.ec2/src/com/amazonaws/eclipse/explorer | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.ec2/src/com/amazonaws/eclipse/explorer/ec2/ExplorerSorter.java | package com.amazonaws.eclipse.explorer.ec2;
import org.eclipse.jface.viewers.Viewer;
import org.eclipse.jface.viewers.ViewerSorter;
import com.amazonaws.eclipse.explorer.ExplorerNode;
public class ExplorerSorter extends ViewerSorter {
@Override
public int compare(Viewer viewer, Object e1, Object e2) {
... | 7,179 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.ec2/src/com/amazonaws/eclipse/explorer | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.ec2/src/com/amazonaws/eclipse/explorer/ec2/EC2ExplorerNodes.java | /*
* Copyright 2011-2012 Amazon Technologies, 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://aws.amazon.com/apache2.0
*
* This file is distributed on an "AS IS" ... | 7,180 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.ec2/src/com/amazonaws/eclipse/explorer | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.ec2/src/com/amazonaws/eclipse/explorer/ec2/EC2LabelProvider.java | /*
* Copyright 2011-2012 Amazon Technologies, 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://aws.amazon.com/apache2.0
*
* This file is distributed on an "AS IS" ... | 7,181 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.ec2/src/com/amazonaws/eclipse/explorer | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.ec2/src/com/amazonaws/eclipse/explorer/ec2/OpenViewAction.java | /*
* Copyright 2011-2012 Amazon Technologies, 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://aws.amazon.com/apache2.0
*
* This file is distributed on an "AS IS" ... | 7,182 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.ec2/src/com/amazonaws/eclipse | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.ec2/src/com/amazonaws/eclipse/ec2/Ec2InstanceLauncher.java | /*
* Copyright 2008-2012 Amazon Technologies, 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://aws.amazon.com/apache2.0
*
* This file is distributed on an "AS IS" ... | 7,183 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.ec2/src/com/amazonaws/eclipse | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.ec2/src/com/amazonaws/eclipse/ec2/InstanceUtils.java | /*
* Copyright 2008-2012 Amazon Technologies, 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://aws.amazon.com/apache2.0
*
* This file is distributed on an "AS IS" ... | 7,184 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.ec2/src/com/amazonaws/eclipse | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.ec2/src/com/amazonaws/eclipse/ec2/TagFormatter.java | /*
* Copyright 2009-2012 Amazon Technologies, 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://aws.amazon.com/apache2.0
*
* This file is distributed on an "AS IS" ... | 7,185 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.ec2/src/com/amazonaws/eclipse | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.ec2/src/com/amazonaws/eclipse/ec2/Ec2Plugin.java | /*
* Copyright 2008-2012 Amazon Technologies, 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://aws.amazon.com/apache2.0
*
* This file is distributed on an "AS IS" ... | 7,186 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.ec2/src/com/amazonaws/eclipse | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.ec2/src/com/amazonaws/eclipse/ec2/RemoteFileCopyException.java | /*
* Copyright 2009-2012 Amazon Technologies, 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://aws.amazon.com/apache2.0
*
* This file is distributed on an "AS ... | 7,187 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.ec2/src/com/amazonaws/eclipse | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.ec2/src/com/amazonaws/eclipse/ec2/RemoteCommandUtils.java | /*
* Copyright 2008-2012 Amazon Technologies, 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://aws.amazon.com/apache2.0
*
* This file is distributed on an "AS IS" ... | 7,188 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.ec2/src/com/amazonaws/eclipse | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.ec2/src/com/amazonaws/eclipse/ec2/TestAccountInfo.java | /*
* Copyright 2008-2012 Amazon Technologies, 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://aws.amazon.com/apache2.0
*
* This file is distributed on an "AS IS" ... | 7,189 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.ec2/src/com/amazonaws/eclipse | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.ec2/src/com/amazonaws/eclipse/ec2/Ec2PluginConstants.java | /*
* Copyright 2017 Amazon Technologies, 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://aws.amazon.com/apache2.0
*
* This file is distributed on an "AS IS" BASIS... | 7,190 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.ec2/src/com/amazonaws/eclipse | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.ec2/src/com/amazonaws/eclipse/ec2/ShellCommandException.java | /*
* Copyright 2008-2012 Amazon Technologies, 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://aws.amazon.com/apache2.0
*
* This file is distributed on an "AS ... | 7,191 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.ec2/src/com/amazonaws/eclipse | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.ec2/src/com/amazonaws/eclipse/ec2/InstanceTypes.java | /*
* Copyright 2013 Amazon Technologies, 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://aws.amazon.com/apache2.0
*
* This file is distributed on an "AS IS" BASIS... | 7,192 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.ec2/src/com/amazonaws/eclipse | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.ec2/src/com/amazonaws/eclipse/ec2/ShellCommandResults.java | /*
* Copyright 2008-2012 Amazon Technologies, 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://aws.amazon.com/apache2.0
*
* This file is distributed on an "AS ... | 7,193 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.ec2/src/com/amazonaws/eclipse | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.ec2/src/com/amazonaws/eclipse/ec2/AmiToolsVersion.java | /*
* Copyright 2008-2012 Amazon Technologies, 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://aws.amazon.com/apache2.0
*
* This file is distributed on an "AS ... | 7,194 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.ec2/src/com/amazonaws/eclipse | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.ec2/src/com/amazonaws/eclipse/ec2/RemoteFileCopyResults.java | /*
* Copyright 2009-2012 Amazon Technologies, 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://aws.amazon.com/apache2.0
*
* This file is distributed on an "AS ... | 7,195 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.ec2/src/com/amazonaws/eclipse | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.ec2/src/com/amazonaws/eclipse/ec2/PlatformUtils.java | /*
* Copyright 2008-2012 Amazon Technologies, 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://aws.amazon.com/apache2.0
*
* This file is distributed on an "AS IS" ... | 7,196 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.ec2/src/com/amazonaws/eclipse | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.ec2/src/com/amazonaws/eclipse/ec2/InstanceTypesParser.java | /*
* Copyright 2013 Amazon Technologies, 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://aws.amazon.com/apache2.0
*
* This file is distributed on an "AS IS" BASIS... | 7,197 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.ec2/src/com/amazonaws/eclipse | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.ec2/src/com/amazonaws/eclipse/ec2/InstanceType.java | /*
* Copyright 2008-2012 Amazon Technologies, 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://aws.amazon.com/apache2.0
*
* This file is distributed on an "AS IS" ... | 7,198 |
0 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.ec2/src/com/amazonaws/eclipse/ec2 | Create_ds/aws-toolkit-eclipse/bundles/com.amazonaws.eclipse.ec2/src/com/amazonaws/eclipse/ec2/ui/ChargeWarningComposite.java | /*
* Copyright 2008-2012 Amazon Technologies, 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://aws.amazon.com/apache2.0
*
* This file is distributed on an "AS ... | 7,199 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.