Source
stringclasses
1 value
Date
int32
2.01k
2.01k
Text
stringlengths
3
15.9M
Token_count
int32
1
2.44M
github-java-corpus
2,012
package com.rackspace.papi.servlet.boot.service.config; import com.rackspace.papi.service.config.impl.PowerApiConfigurationManager; import com.rackspace.papi.service.context.ContextAdapter; import com.rackspace.papi.service.context.ServletContextHelper; import com.rackspace.papi.service.context.impl.ConfigurationServi...
754
github-java-corpus
2,012
package com.rackspace.papi.servlet.boot.service.config; import com.rackspace.papi.service.config.impl.ParserListenerPair; import org.junit.Test; import org.junit.experimental.runners.Enclosed; import org.junit.runner.RunWith; /** * Created by IntelliJ IDEA. * User: joshualockwood * Date: 6/23/11 * Time: 2:12 PM ...
266
github-java-corpus
2,012
package com.rackspace.papi.servlet.boot.event; import com.rackspace.papi.service.event.PowerProxyEventManager; import com.rackspace.papi.service.event.common.Event; import com.rackspace.papi.service.event.common.EventDispatcher; import com.rackspace.papi.service.event.common.EventListener; import com.rackspace.papi.se...
1,339
github-java-corpus
2,012
package org.apache.jmeter; import org.apache.maven.artifact.repository.ArtifactRepository; import org.apache.maven.artifact.resolver.ArtifactResolver; import org.apache.maven.plugin.AbstractMojo; import org.apache.maven.plugin.MojoExecutionException; import org.apache.maven.plugin.MojoFailureException; import o...
3,507
github-java-corpus
2,012
package org.apache.jmeter; import org.apache.tools.ant.types.selectors.SelectorUtils; import java.util.Comparator; import java.util.List; /** * Compare filenames based on their order in a list of includes (using default * ant include pattern). */ public class IncludesComparator implements Comparator<String> { ...
313
github-java-corpus
2,012
package org.apache.jmeter; import javax.xml.transform.Transformer; import javax.xml.transform.TransformerConfigurationException; import javax.xml.transform.TransformerException; import javax.xml.transform.TransformerFactory; import javax.xml.transform.stream.StreamResult; import javax.xml.transform.stream.StreamSource...
213
github-java-corpus
2,012
package org.apache.jmeter; import org.apache.maven.plugin.MojoFailureException; import java.io.BufferedReader; import java.io.File; import java.io.FileReader; import java.io.IOException; /** * Handles checking the jmeter xml logs for errors and failures. * * @author Jon Roberts */ public class ErrorScanner { ...
469
github-java-corpus
2,012
package org.apache.jmeter; import org.apache.maven.plugin.MojoFailureException; import org.junit.Test; import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertTrue; public class ErrorScannerTest { @Test public void testLineContainsForErrors() throws MojoFailureException { ErrorScanner s...
237
github-java-corpus
2,012
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package com.rackspace.papi.mocks.providers; import com.rackspace.repose.service.limits.schema.AbsoluteLimit; import com.rackspace.repose.service.limits.schema.AbsoluteLimitList; import com.rackspace.repose.service.limit...
2,323
github-java-corpus
2,012
package com.rackspace.papi.mocks; import java.io.IOException; import java.io.PrintWriter; import java.util.regex.Matcher; import java.util.regex.Pattern; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResp...
543
github-java-corpus
2,012
package com.rackspace.papi.mocks; import javax.xml.datatype.DatatypeConfigurationException; import javax.xml.datatype.DatatypeFactory; import javax.xml.datatype.XMLGregorianCalendar; import java.util.Calendar; import java.util.GregorianCalendar; public class DataProviderImpl implements DataProvider { private fina...
185
github-java-corpus
2,012
package com.rackspace.papi.mocks; import com.rackspace.papi.mocks.providers.MockServiceProvider; import java.io.*; import java.net.MalformedURLException; import java.net.URI; import java.net.URISyntaxException; import javax.servlet.http.HttpServletRequest; import javax.ws.rs.*; import javax.ws.rs.core.*; /** * @a...
2,156
github-java-corpus
2,012
package com.rackspace.papi.mocks; import javax.xml.datatype.XMLGregorianCalendar; public interface DataProvider { XMLGregorianCalendar getCalendar(); XMLGregorianCalendar getCalendar(int field, int value); }
45
github-java-corpus
2,012
package com.rackspace.papi.mocks; import java.io.IOException; import java.io.OutputStream; import java.io.PrintWriter; import java.util.regex.Matcher; import java.util.regex.Pattern; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax...
591
github-java-corpus
2,012
package com.rackspace.papi.mocks; import javax.xml.datatype.DatatypeConfigurationException; /** * This resource should be the parent class of every mock resource defined in * this library. Extending this class by extending a child of this class is in * line with this requirement (you may have nested inheritance mo...
144
github-java-corpus
2,012
package com.rackspace.papi.mocks.auth.rs11.providers; import com.rackspace.papi.mocks.auth.provider.UserDataProvider; import com.rackspacecloud.docs.auth.api.v1.*; public interface AuthProvider extends UserDataProvider { ItemNotFoundFault createItemNotFound(); FullToken createToken(String userName, String id)...
114
github-java-corpus
2,012
package com.rackspace.papi.mocks.auth.rs11.providers; import com.rackspace.papi.mocks.auth.provider.UserDataPropertiesProviderImpl; import com.rackspacecloud.docs.auth.api.v1.*; import javax.xml.datatype.DatatypeConfigurationException; import java.util.Calendar; public class AuthPropertiesProvider extends UserDataPr...
656
github-java-corpus
2,012
package com.rackspace.papi.mocks.auth.rs11; import com.rackspace.papi.mocks.BaseResource; import com.rackspace.papi.mocks.auth.rs11.providers.AuthPropertiesProvider; import com.rackspace.papi.mocks.auth.rs11.providers.AuthProvider; import com.rackspace.papi.mocks.auth.rs11.wrappers.JaxbElementWrapper; import com.racks...
1,145
github-java-corpus
2,012
package com.rackspace.papi.mocks.auth.rs11.wrappers; import com.rackspacecloud.docs.auth.api.v1.FullToken; import com.rackspacecloud.docs.auth.api.v1.GroupsList; import com.rackspacecloud.docs.auth.api.v1.ItemNotFoundFault; import com.rackspacecloud.docs.auth.api.v1.UnauthorizedFault; public interface ResponseWrapper...
116
github-java-corpus
2,012
package com.rackspace.papi.mocks.auth.rs11.wrappers; import com.rackspacecloud.docs.auth.api.v1.*; public class JaxbElementWrapper implements ResponseWrapper { private final ObjectFactory objectFactory; public JaxbElementWrapper() { objectFactory = new ObjectFactory(); } @Override public ...
172
github-java-corpus
2,012
package com.rackspace.papi.mocks.auth.rs11.wrappers; import com.rackspacecloud.docs.auth.api.v1.*; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import java.util.List; public class JsonElementWrapper implements ResponseWrapper { @Override public Object wrapEleme...
484
github-java-corpus
2,012
package com.rackspace.papi.mocks.auth.osids.providers; import com.rackspace.docs.identity.api.ext.rax_ksgrp.v1.Group; import com.rackspace.docs.identity.api.ext.rax_ksgrp.v1.Groups; import com.rackspace.papi.mocks.auth.provider.UserDataProvider; import org.openstack.docs.identity.api.v2.*; public interface KeystonePr...
210
github-java-corpus
2,012
package com.rackspace.papi.mocks.auth.osids.providers; import com.rackspace.docs.identity.api.ext.rax_ksgrp.v1.Group; import com.rackspace.docs.identity.api.ext.rax_ksgrp.v1.Groups; import com.rackspace.papi.mocks.auth.provider.UserDataPropertiesProviderImpl; import org.openstack.docs.identity.api.v2.*; import javax....
1,585
github-java-corpus
2,012
package com.rackspace.papi.mocks.auth.osids.wrappers; import com.rackspace.docs.identity.api.ext.rax_ksgrp.v1.Groups; import org.openstack.docs.identity.api.v2.AuthenticateResponse; import org.openstack.docs.identity.api.v2.EndpointList; import org.openstack.docs.identity.api.v2.ItemNotFoundFault; import org.openstack...
136
github-java-corpus
2,012
package com.rackspace.papi.mocks.auth.osids.wrappers; import com.rackspace.docs.identity.api.ext.rax_ksgrp.v1.Groups; import org.openstack.docs.identity.api.v2.*; public class JaxbElementWrapper implements ResponseWrapper { private final ObjectFactory objectFactory; private final com.rackspace.docs.identity.api...
267
github-java-corpus
2,012
package com.rackspace.papi.mocks.auth.osids; import com.rackspace.papi.commons.util.StringUtilities; import com.rackspace.papi.mocks.BaseResource; import com.rackspace.papi.mocks.auth.osids.providers.KeystonePropertiesProvider; import com.rackspace.papi.mocks.auth.osids.providers.KeystoneProvider; import com.rackspace...
1,315
github-java-corpus
2,012
package com.rackspace.papi.mocks.auth.provider; import com.rackspace.papi.mocks.DataProviderImpl; import javax.xml.datatype.DatatypeConfigurationException; import java.io.IOException; import java.io.InputStream; import java.util.Properties; public class UserDataPropertiesProviderImpl extends DataProviderImpl impleme...
490
github-java-corpus
2,012
package com.rackspace.papi.mocks.auth.provider; import com.rackspace.papi.mocks.DataProvider; public interface UserDataProvider extends DataProvider { int getUserId(String userName); String getUserName(Integer id); String[] getValidUsers(); boolean validateUser(String userName); }
61
github-java-corpus
2,012
package com.rackspace.papi.mocks; import org.junit.Before; import org.junit.Test; import org.junit.experimental.runners.Enclosed; import org.junit.runner.RunWith; import static org.junit.Assert.assertNotNull; /** * * @author zinic */ @RunWith(Enclosed.class) public class DataProviderImplTest { public static ...
141
github-java-corpus
2,012
package com.rackspace.papi.mocks.auth.providers; import com.rackspace.papi.mocks.auth.provider.UserDataPropertiesProviderImpl; import org.junit.Before; import org.junit.Test; import org.junit.experimental.runners.Enclosed; import org.junit.runner.RunWith; import javax.xml.datatype.DatatypeConfigurationException; impo...
437
github-java-corpus
2,012
package com.rackspace.papi.mocks.auth.rs11; import com.rackspacecloud.docs.auth.api.v1.GroupsList; import com.rackspacecloud.docs.auth.api.v1.Token; import org.junit.Before; import org.junit.Ignore; import org.junit.Test; import org.junit.experimental.runners.Enclosed; import org.junit.runner.RunWith; import javax.ws...
721
github-java-corpus
2,012
package com.rackspace.papi.mocks.auth.osids; import org.junit.Before; import org.junit.Ignore; import org.junit.Test; import org.junit.experimental.runners.Enclosed; import org.junit.runner.RunWith; import org.openstack.docs.identity.api.v2.*; import javax.ws.rs.core.Response; import javax.ws.rs.core.UriInfo; import ...
1,070
github-java-corpus
2,012
package com.rackspace.auth.rackspace; import com.rackspace.auth.AuthGroup; import com.rackspace.auth.AuthGroups; import com.rackspace.auth.AuthToken; import com.rackspace.auth.ResponseUnmarshaller; import com.rackspace.papi.commons.util.http.HttpStatusCode; import com.rackspace.papi.commons.util.http.ServiceClient; im...
708
github-java-corpus
2,012
package com.rackspace.auth.rackspace; import com.rackspace.auth.AuthGroup; import com.rackspacecloud.docs.auth.api.v1.Group; import java.io.Serializable; /** * @author fran */ public class RackspaceGroup implements AuthGroup, Serializable { private final Group group; public RackspaceGroup(Group group) { ...
148
github-java-corpus
2,012
package com.rackspace.auth.rackspace; import com.rackspace.auth.AuthToken; import com.rackspacecloud.docs.auth.api.v1.FullToken; import java.io.Serializable; /** * @author fran */ public class RackspaceToken extends AuthToken implements Serializable { private final String accountId; private final String user...
334
github-java-corpus
2,012
package com.rackspace.auth.rackspace; import com.rackspace.auth.AuthServiceException; import com.rackspace.auth.ResponseUnmarshaller; import com.rackspace.papi.commons.util.http.ServiceClient; import com.sun.jersey.api.client.filter.HTTPBasicAuthFilter; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import ...
277
github-java-corpus
2,012
package com.rackspace.auth.rackspace; import com.rackspace.auth.AuthGroups; import com.rackspace.auth.AuthToken; import com.rackspace.papi.commons.util.regex.ExtractorResult; /** * @author fran */ public interface AuthenticationService { AuthToken validateToken(ExtractorResult<String> account, String userToken);...
78
github-java-corpus
2,012
package com.rackspace.auth; import com.rackspace.papi.commons.util.pooling.*; import javax.xml.bind.JAXBContext; import javax.xml.bind.JAXBElement; import javax.xml.bind.JAXBException; import javax.xml.bind.Unmarshaller; import java.io.InputStream; import java.io.InputStreamReader; import java.io.Reader; /** * @aut...
450
github-java-corpus
2,012
package com.rackspace.auth.openstack; import com.rackspace.auth.AuthGroup; import com.rackspace.auth.AuthGroups; import com.rackspace.auth.AuthToken; import com.rackspace.auth.ResponseUnmarshaller; import com.rackspace.docs.identity.api.ext.rax_ksgrp.v1.Group; import com.rackspace.docs.identity.api.ext.rax_ksgrp.v1.Gr...
1,925
github-java-corpus
2,012
package com.rackspace.auth.openstack; import com.rackspace.auth.AuthToken; import com.rackspace.papi.commons.util.StringUtilities; import org.openstack.docs.identity.api.v2.AuthenticateResponse; import org.openstack.docs.identity.api.v2.Role; import java.io.Serializable; import javax.xml.bind.JAXBElement; import org....
695
github-java-corpus
2,012
package com.rackspace.auth.openstack; import com.rackspace.auth.AuthServiceException; import com.rackspace.auth.ResponseUnmarshaller; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import javax.xml.bind.JAXBContext; import javax.xml.bind.JAXBException; public class AuthenticationServiceFactory { private...
286
github-java-corpus
2,012
package com.rackspace.auth.openstack; import com.rackspace.auth.AuthGroup; import com.rackspace.docs.identity.api.ext.rax_ksgrp.v1.Group; import java.io.Serializable; /** * @author fran */ public class OpenStackGroup implements AuthGroup, Serializable { private final String id; private final String name; ...
158
github-java-corpus
2,012
package com.rackspace.auth.openstack; import java.util.Calendar; public class AdminToken { private final String token; private final Calendar expires; public AdminToken(String token, Calendar expires) { this.token = token; this.expires = expires; } public String getToken() { ...
93
github-java-corpus
2,012
package com.rackspace.auth.openstack; import com.rackspace.auth.AuthGroups; import com.rackspace.auth.AuthToken; import org.openstack.docs.identity.api.v2.Endpoint; import java.util.List; /** * * @author zinic */ public interface AuthenticationService { AuthToken validateToken(String tenant, String userToken...
91
github-java-corpus
2,012
package com.rackspace.auth; /** * @author fran */ public interface AuthGroup { String getId(); String getName(); String getDescription(); }
32
github-java-corpus
2,012
package com.rackspace.auth; /* * Copyright 2010 Rackspace. * * 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 requi...
204
github-java-corpus
2,012
package com.rackspace.auth; import java.io.Serializable; import java.util.ArrayList; import java.util.List; public class AuthGroups implements Serializable { private final List<AuthGroup> groups; public AuthGroups(List<AuthGroup> groups) { if (groups != null) { this.groups = gro...
102
github-java-corpus
2,012
package com.rackspace.auth; import java.io.Serializable; import java.util.Calendar; /** * @author fran */ public abstract class AuthToken implements Serializable { public abstract String getTenantId(); public abstract String getUserId(); public abstract String getTokenId(); public abstract String g...
200
github-java-corpus
2,012
package com.rackspace.auth.rackspace; import com.rackspace.auth.AuthGroup; import com.rackspace.auth.AuthGroups; import com.rackspace.auth.AuthToken; import com.rackspace.auth.ResponseUnmarshaller; import com.rackspace.papi.commons.util.http.ServiceClient; import com.rackspace.papi.commons.util.http.ServiceClientRespo...
1,426
github-java-corpus
2,012
package com.rackspace.auth.openstack; import org.junit.Test; import org.junit.experimental.runners.Enclosed; import org.junit.runner.RunWith; import java.util.Calendar; import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertTrue; @RunWith(Enclosed.class) public class AdminTokenTest { p...
243
github-java-corpus
2,012
package com.rackspace.auth.openstack; import org.junit.Test; import org.junit.experimental.runners.Enclosed; import org.junit.runner.RunWith; import static org.junit.Assert.assertNotNull; @RunWith(Enclosed.class) public class AuthenticationServiceFactoryTest { public static class WhenBuilding { @Test ...
100
github-java-corpus
2,012
package com.rackspace.auth.openstack; import com.rackspace.auth.AuthToken; import org.junit.Before; import org.junit.Test; import org.junit.experimental.runners.Enclosed; import org.junit.runner.RunWith; import org.openstack.docs.identity.api.v2.*; import javax.xml.datatype.DatatypeConfigurationException; import java...
1,224
github-java-corpus
2,012
/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright (c) 1997-2010 Oracle and/or its affiliates. All rights reserved. * * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common Development * and Distribution Licens...
871
github-java-corpus
2,012
/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright (c) 2008-2010 Oracle and/or its affiliates. All rights reserved. * * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common Development * and Distribution Licens...
1,567
github-java-corpus
2,012
/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright (c) 1997-2010 Oracle and/or its affiliates. All rights reserved. * * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common Development * and Distribution Licens...
1,339
github-java-corpus
2,012
/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright (c) 1997-2011 Oracle and/or its affiliates. All rights reserved. * * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common Development * and Distribution Licens...
1,287
github-java-corpus
2,012
/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright (c) 1997-2010 Oracle and/or its affiliates. All rights reserved. * * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common Development * and Distribution Licens...
2,412
github-java-corpus
2,012
/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright (c) 1997-2011 Oracle and/or its affiliates. All rights reserved. * * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common Development * and Distribution Licens...
6,985
github-java-corpus
2,012
/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright (c) 1997-2010 Oracle and/or its affiliates. All rights reserved. * * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common Development * and Distribution Licens...
6,582
github-java-corpus
2,012
/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright (c) 1997-2010 Oracle and/or its affiliates. All rights reserved. * * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common Development * and Distribution Licens...
2,491
github-java-corpus
2,012
/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright (c) 1997-2010 Oracle and/or its affiliates. All rights reserved. * * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common Development * and Distribution Licens...
852
github-java-corpus
2,012
/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright (c) 1997-2010 Oracle and/or its affiliates. All rights reserved. * * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common Development * and Distribution Licens...
834
github-java-corpus
2,012
/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright (c) 1997-2010 Oracle and/or its affiliates. All rights reserved. * * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common Development * and Distribution Licens...
5,904
github-java-corpus
2,012
/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright (c) 1997-2011 Oracle and/or its affiliates. All rights reserved. * * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common Development * and Distribution Licens...
4,134
github-java-corpus
2,012
/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright (c) 1997-2010 Oracle and/or its affiliates. All rights reserved. * * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common Development * and Distribution Licens...
3,122
github-java-corpus
2,012
/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright (c) 1997-2010 Oracle and/or its affiliates. All rights reserved. * * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common Development * and Distribution Licens...
916
github-java-corpus
2,012
/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright (c) 1997-2011 Oracle and/or its affiliates. All rights reserved. * * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common Development * and Distribution Licens...
722
github-java-corpus
2,012
/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright (c) 1997-2010 Oracle and/or its affiliates. All rights reserved. * * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common Development * and Distribution Licens...
2,535
github-java-corpus
2,012
/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright (c) 1997-2010 Oracle and/or its affiliates. All rights reserved. * * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common Development * and Distribution Licens...
868
github-java-corpus
2,012
/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright (c) 1997-2010 Oracle and/or its affiliates. All rights reserved. * * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common Development * and Distribution Licens...
751
github-java-corpus
2,012
/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright (c) 2008-2010 Oracle and/or its affiliates. All rights reserved. * * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common Development * and Distribution Licens...
792
github-java-corpus
2,012
/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright (c) 2008-2010 Oracle and/or its affiliates. All rights reserved. * * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common Development * and Distribution Licens...
921
github-java-corpus
2,012
/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright (c) 2008-2010 Oracle and/or its affiliates. All rights reserved. * * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common Development * and Distribution Licens...
837
github-java-corpus
2,012
/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright (c) 2008-2010 Oracle and/or its affiliates. All rights reserved. * * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common Development * and Distribution Licens...
1,066
github-java-corpus
2,012
/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright (c) 2008-2010 Oracle and/or its affiliates. All rights reserved. * * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common Development * and Distribution Licens...
1,093
github-java-corpus
2,012
/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright (c) 2008-2010 Oracle and/or its affiliates. All rights reserved. * * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common Development * and Distribution Licens...
571
github-java-corpus
2,012
/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright (c) 2008-2010 Oracle and/or its affiliates. All rights reserved. * * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common Development * and Distribution Licens...
605
github-java-corpus
2,012
/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright (c) 2008-2010 Oracle and/or its affiliates. All rights reserved. * * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common Development * and Distribution Licens...
780
github-java-corpus
2,012
/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright (c) 2008-2010 Oracle and/or its affiliates. All rights reserved. * * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common Development * and Distribution Licens...
699
github-java-corpus
2,012
/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright (c) 1997-2011 Oracle and/or its affiliates. All rights reserved. * * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common Development * and Distribution Licens...
768
github-java-corpus
2,012
/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright (c) 2008-2010 Oracle and/or its affiliates. All rights reserved. * * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common Development * and Distribution Licens...
1,590
github-java-corpus
2,012
/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright (c) 1997-2010 Oracle and/or its affiliates. All rights reserved. * * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common Development * and Distribution Licens...
1,920
github-java-corpus
2,012
/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright (c) 1997-2010 Oracle and/or its affiliates. All rights reserved. * * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common Development * and Distribution Licens...
987
github-java-corpus
2,012
/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright (c) 2008-2010 Oracle and/or its affiliates. All rights reserved. * * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common Development * and Distribution Licens...
1,988
github-java-corpus
2,012
/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright (c) 2008-2010 Oracle and/or its affiliates. All rights reserved. * * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common Development * and Distribution Licens...
3,036
github-java-corpus
2,012
/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright (c) 1997-2010 Oracle and/or its affiliates. All rights reserved. * * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common Development * and Distribution Licens...
1,125
github-java-corpus
2,012
/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright (c) 1997-2010 Oracle and/or its affiliates. All rights reserved. * * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common Development * and Distribution Licens...
943
github-java-corpus
2,012
/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright (c) 1997-2010 Oracle and/or its affiliates. All rights reserved. * * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common Development * and Distribution Licens...
3,644
github-java-corpus
2,012
/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright (c) 1997-2011 Oracle and/or its affiliates. All rights reserved. * * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common Development * and Distribution Licens...
14,713
github-java-corpus
2,012
/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright (c) 2008-2010 Oracle and/or its affiliates. All rights reserved. * * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common Development * and Distribution Licens...
1,464
github-java-corpus
2,012
/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright (c) 1997-2010 Oracle and/or its affiliates. All rights reserved. * * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common Development * and Distribution Licens...
1,477
github-java-corpus
2,012
/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright (c) 1997-2010 Oracle and/or its affiliates. All rights reserved. * * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common Development * and Distribution Licens...
953
github-java-corpus
2,012
/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright (c) 2008-2010 Oracle and/or its affiliates. All rights reserved. * * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common Development * and Distribution Licens...
1,247
github-java-corpus
2,012
/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright (c) 1997-2010 Oracle and/or its affiliates. All rights reserved. * * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common Development * and Distribution Licens...
808
github-java-corpus
2,012
/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright (c) 1997-2011 Oracle and/or its affiliates. All rights reserved. * * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common Development * and Distribution Licens...
947
github-java-corpus
2,012
/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright (c) 2008-2010 Oracle and/or its affiliates. All rights reserved. * * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common Development * and Distribution Licens...
494
github-java-corpus
2,012
/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright (c) 1997-2010 Oracle and/or its affiliates. All rights reserved. * * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common Development * and Distribution Licens...
1,971
github-java-corpus
2,012
/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright (c) 1997-2010 Oracle and/or its affiliates. All rights reserved. * * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common Development * and Distribution Licens...
1,362
github-java-corpus
2,012
/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright (c) 2009-2010 Oracle and/or its affiliates. All rights reserved. * * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common Development * and Distribution Licens...
884
github-java-corpus
2,012
/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright (c) 2009-2010 Oracle and/or its affiliates. All rights reserved. * * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common Development * and Distribution Licens...
1,959