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 samples.addressbook.model.events; import samples.addressbook.model.Category; import samples.addressbook.model.Contact; public interface ContactCategoriesAssignmentListener { public void categoriesAssigned(Contact contact, Category[] categories); }
41
github-java-corpus
2,012
package samples.addressbook.model.events; import org.uispec4j.utils.ArrayUtils; import org.uispec4j.xml.EventLogger; import samples.addressbook.model.AddressBook; import samples.addressbook.model.Category; import samples.addressbook.model.Contact; public class DummyContactListener extends EventLogger implements C...
290
github-java-corpus
2,012
package samples.addressbook.model.events; import samples.addressbook.model.Contact; public interface ContactChangeListener { void contactChanged(Contact contact, Contact.Field field, String newValue); }
34
github-java-corpus
2,012
package samples.addressbook.gui.actions; import samples.addressbook.gui.selection.CategorySelectionListener; import samples.addressbook.gui.selection.SelectionHandler; import samples.addressbook.model.AddressBook; import samples.addressbook.model.Category; import javax.swing.*; import java.awt.event.ActionEvent; pub...
164
github-java-corpus
2,012
package samples.addressbook.gui.actions; import samples.addressbook.gui.selection.CategorySelectionListener; import samples.addressbook.gui.selection.SelectionHandler; import samples.addressbook.model.AddressBook; import samples.addressbook.model.Category; import samples.addressbook.model.exceptions.NameAlreadyInUseEx...
271
github-java-corpus
2,012
package samples.addressbook.gui; import samples.addressbook.gui.panels.CategoryTreePanel; import samples.addressbook.gui.panels.ContactEditionPanel; import samples.addressbook.gui.panels.ContactTablePanel; import samples.addressbook.gui.selection.SelectionHandler; import samples.addressbook.model.AddressBook; import ...
273
github-java-corpus
2,012
package samples.addressbook.gui.selection; import samples.addressbook.model.Category; public interface CategorySelectionListener { void categorySelected(Category category); }
28
github-java-corpus
2,012
package samples.addressbook.gui.selection; import org.uispec4j.xml.EventLogger; import samples.addressbook.model.Category; import samples.addressbook.model.Contact; public class DummySelectionListener extends EventLogger implements ContactSelectionListener, CategorySelectionListener { public static DummySelect...
209
github-java-corpus
2,012
package samples.addressbook.gui.selection; import samples.addressbook.model.Category; import samples.addressbook.model.Contact; import java.util.ArrayList; import java.util.Iterator; import java.util.List; public class SelectionHandler { private List contactSelectionListeners = new ArrayList(); private List cate...
202
github-java-corpus
2,012
package samples.addressbook.gui.selection; import samples.addressbook.model.Contact; public interface ContactSelectionListener { void contactSelected(Contact contact); }
28
github-java-corpus
2,012
package samples.addressbook.gui.panels; import samples.addressbook.gui.actions.CreateContactAction; import samples.addressbook.gui.selection.CategorySelectionListener; import samples.addressbook.gui.selection.ContactSelectionListener; import samples.addressbook.gui.selection.SelectionHandler; import samples.addressboo...
1,542
github-java-corpus
2,012
package samples.addressbook.gui.panels; public class CategoriesAssignmentPanel { }
15
github-java-corpus
2,012
package samples.addressbook.gui.panels; import samples.addressbook.gui.selection.ContactSelectionListener; import samples.addressbook.gui.selection.SelectionHandler; import samples.addressbook.model.AddressBook; import samples.addressbook.model.Contact; import samples.addressbook.model.events.ContactChangeListener; im...
1,316
github-java-corpus
2,012
package samples.addressbook.gui.panels; import samples.addressbook.model.AddressBook; import samples.addressbook.model.Category; import samples.utils.GridBag; import javax.swing.*; import java.awt.*; import java.awt.event.ActionEvent; import java.util.*; import java.util.List; public class CategorySelectionDialog { ...
692
github-java-corpus
2,012
package samples.addressbook.gui.panels; import samples.addressbook.gui.actions.CreateCategoryAction; import samples.addressbook.gui.selection.SelectionHandler; import samples.addressbook.model.AddressBook; import samples.addressbook.model.Category; import samples.addressbook.model.events.CategoryCreationListener; impo...
989
github-java-corpus
2,012
package samples.utils; import junit.framework.Assert; import java.util.*; public class ArrayUtils { public static String toString(Object[] objects) { StringBuffer buffer = new StringBuffer(); appendLine(buffer, objects, ","); return buffer.toString(); } public static String toVerticalString(Objec...
1,428
github-java-corpus
2,012
package samples.utils; import junit.framework.Assert; import javax.swing.*; import java.util.Arrays; import java.util.List; public class Utils { public static final String LINE_SEPARATOR = System.getProperty("line.separator"); /** * Compare two objects in the case where both can be null */ public static...
692
github-java-corpus
2,012
package samples.utils; public interface Stringifier { String toString(Object obj); Stringifier NULL = new Stringifier() { public String toString(Object obj) { return obj.toString(); } }; }
43
github-java-corpus
2,012
package samples.utils; public interface Functor { void run() throws Exception; }
16
github-java-corpus
2,012
package samples.utils; import junit.framework.AssertionFailedError; import junit.framework.TestCase; import org.uispec4j.UISpec4J; import org.uispec4j.assertion.Assertion; import org.uispec4j.assertion.UISpecAssert; import org.uispec4j.interception.InterceptionError; import java.util.Locale; public abstract class Un...
544
github-java-corpus
2,012
package samples.utils; public class AssertionFailureNotDetectedError extends RuntimeException { public AssertionFailureNotDetectedError() { } }
28
github-java-corpus
2,012
package samples.addressbook.model; import samples.addressbook.model.events.DummyBookListener; import samples.addressbook.model.events.DummyCategoryListener; import samples.addressbook.model.events.DummyContactListener; import samples.addressbook.model.exceptions.NameAlreadyInUseException; import samples.utils.ArrayUti...
2,125
github-java-corpus
2,012
package samples.addressbook.functests; public class InteractionsBetweenContactTableAndCategoryTreeTest extends AddressBookTestCase { protected void setUp() throws Exception { super.setUp(); createCategory("", "friends"); createCategory("", "work"); createCategory("work", "team1"); createCategory(...
986
github-java-corpus
2,012
package samples.addressbook.functests; import org.uispec4j.Trigger; import org.uispec4j.UISpecAdapter; import org.uispec4j.Window; import org.uispec4j.interception.WindowInterceptor; import samples.addressbook.main.Main; public class Adapter implements UISpecAdapter { private Window window; public Window getMain...
125
github-java-corpus
2,012
package samples.addressbook.functests; import org.uispec4j.*; import org.uispec4j.interception.BasicHandler; import org.uispec4j.interception.MainClassAdapter; import org.uispec4j.interception.WindowInterceptor; import samples.addressbook.main.Main; public abstract class AddressBookTestCase extends UISpecTestCase { ...
524
github-java-corpus
2,012
package samples.addressbook.functests; import org.uispec4j.DefaultTableCellValueConverter; import org.uispec4j.Key; import org.uispec4j.utils.ColorUtils; import java.awt.*; public class ContactCreationTest extends AddressBookTestCase { public void testTableStateAtStartup() throws Exception { assertThat(contac...
1,180
github-java-corpus
2,012
package samples.addressbook.functests; import org.uispec4j.Key; import org.uispec4j.Trigger; import org.uispec4j.interception.BasicHandler; import org.uispec4j.interception.WindowInterceptor; public class CategoryCreationTest extends AddressBookTestCase { public void testTreeStateAtStartup() throws Exception { ...
461
github-java-corpus
2,012
package samples.addressbook.functests; import org.uispec4j.MenuItem; import org.uispec4j.Trigger; import org.uispec4j.Window; import org.uispec4j.interception.PopupMenuInterceptor; import org.uispec4j.interception.WindowHandler; import org.uispec4j.interception.WindowInterceptor; public class ContactRemovalTest exten...
360
github-java-corpus
2,012
package net.jsunit; import net.jsunit.servlet.JsUnitServlet; import net.jsunit.servlet.ResultAcceptorServlet; import net.jsunit.servlet.ResultDisplayerServlet; import net.jsunit.servlet.TestRunnerServlet; import org.mortbay.http.HttpContext; import org.mortbay.http.HttpServer; import org.mortbay.http.handler.R...
1,174
github-java-corpus
2,012
package net.jsunit; import org.jdom.Element; import java.util.StringTokenizer; /** * @author Edward Hieatt, edward@jsunit.net */ public class TestCaseResult { public static final String DELIMITER = "|", ERROR_INDICATOR = "E", FAILURE_INDICATOR = "F"; private String name; private double ti...
449
github-java-corpus
2,012
package net.jsunit; import junit.framework.TestCase; import org.jdom.Document; import org.jdom.Element; import org.jdom.input.SAXBuilder; import sun.net.www.protocol.http.HttpURLConnection; import java.io.InputStream; import java.io.StringReader; import java.net.URL; import java.util.Iterator; import java...
442
github-java-corpus
2,012
package net.jsunit; import java.io.BufferedOutputStream; import java.io.File; import java.io.FileOutputStream; import java.util.*; /** * @author Edward Hieatt, edward@jsunit.net */ public class Utility { private static boolean logToStandardOut = true; public static boolean isEmpty(String s) ...
415
github-java-corpus
2,012
package net.jsunit; import java.util.Iterator; import java.util.List; /** * @author Edward Hieatt, edward@jsunit.net */ public class ArgumentsConfiguration extends Configuration { private String port; private String resourceBase; private String logsDirectory; private String url; p...
295
github-java-corpus
2,012
package net.jsunit; import java.io.FileInputStream; import java.util.Properties; /** * @author Edward Hieatt, edward@jsunit.net */ public class PropertiesFileConfiguration extends Configuration { public static final String PROPERTIES_FILE_NAME = "jsunit.properties"; private Properties proper...
244
github-java-corpus
2,012
package net.jsunit; import junit.framework.TestCase; import java.util.Iterator; /** * @author Edward Hieatt, edward@jsunit.net */ public class StandaloneTest extends TestCase { private boolean needToStopServer = false; public static final int MAX_SECONDS_TO_WAIT = 2 * 60; private JsUnitSe...
561
github-java-corpus
2,012
package net.jsunit; import org.jdom.Element; import org.jdom.output.XMLOutputter; /** * @author Edward Hieatt, edward@jsunit.net */ public class TestCaseResultWriter { public static final String TEST_CASE = "testcase", NAME = "name", TIME = "time", FAILURE = "failure", ERROR = "error", MESSAGE = "mes...
419
github-java-corpus
2,012
package net.jsunit; import org.jdom.Document; import org.jdom.Element; import org.jdom.output.XMLOutputter; import java.util.Iterator; /** * @author Edward Hieatt, edward@jsunit.net */ public class TestSuiteResultWriter { public static final String ID = "id", USER_AGENT = "userAgent", T...
636
github-java-corpus
2,012
package net.jsunit; import org.jdom.Element; import java.util.Iterator; /** * @author Edward Hieatt, edward@jsunit.net */ public class TestCaseResultBuilder { public TestCaseResult build(Element element) { TestCaseResult result = new TestCaseResult(); updateWithHeaders(result, ele...
215
github-java-corpus
2,012
package net.jsunit; public class EnvironmentVariablesConfiguration extends Configuration { public String resourceBase() { return System.getProperty(RESOURCE_BASE); } public String port() { return System.getProperty(PORT); } public String logsDirectory() { ret...
112
github-java-corpus
2,012
package net.jsunit.test; import net.jsunit.ArgumentsConfiguration; import net.jsunit.Utility; import net.jsunit.JsUnitServer; import java.io.File; import java.util.Arrays; import java.util.List; import junit.framework.TestCase; public class ArgumentsConfigurationTest extends TestCase { public Argum...
287
github-java-corpus
2,012
package net.jsunit.test; import junit.framework.TestCase; import net.jsunit.*; public class ConfigurationTest extends TestCase { public void testResolveArgumentsConfiguration() { Configuration configuration = Configuration.resolve(new String[] {"foo"}); assertTrue(configuration instanceo...
146
github-java-corpus
2,012
package net.jsunit.test; import net.jsunit.*; import javax.servlet.http.HttpServletRequest; import java.io.File; import java.util.HashMap; import java.util.Map; import junit.framework.TestCase; /** * @author Edward Hieatt, edward@jsunit.net */ public class ResultAcceptorTest extends TestCase { ...
764
github-java-corpus
2,012
package net.jsunit.test; import junit.framework.TestCase; import net.jsunit.TestCaseResult; import net.jsunit.TestCaseResultWriter; import org.jdom.Element; /** * @author Edward Hieatt, edward@jsunit.net */ public class TestCaseResultTest extends TestCase { public TestCaseResultTest(String name) { ...
747
github-java-corpus
2,012
package net.jsunit.test; import junit.framework.TestCase; import net.jsunit.Configuration; import net.jsunit.JsUnitServer; import net.jsunit.PropertiesFileConfiguration; import net.jsunit.Utility; public class PropertiesConfigurationTest extends TestCase { public void testNoFile() throws Exception { ...
298
github-java-corpus
2,012
package net.jsunit.test; import junit.framework.TestCase; import net.jsunit.EnvironmentVariablesConfiguration; import net.jsunit.Configuration; public class EnvironmentVariablesConfigurationTest extends TestCase { private EnvironmentVariablesConfiguration config; protected void setUp() throws Except...
258
github-java-corpus
2,012
package net.jsunit.test; import javax.servlet.RequestDispatcher; import javax.servlet.ServletInputStream; import javax.servlet.http.Cookie; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpSession; import java.io.BufferedReader; import java.io.IOException; import java.io.Unsupported...
924
github-java-corpus
2,012
package net.jsunit.test; import net.jsunit.StandaloneTest; import net.jsunit.Configuration; public class StandaloneTestTest extends StandaloneTest { public StandaloneTestTest(String name) { super(name); } public void setUp() throws Exception { System.setProperty(Configuration.B...
171
github-java-corpus
2,012
package net.jsunit.test; import junit.framework.TestCase; import net.jsunit.TestCaseResult; import net.jsunit.TestSuiteResult; import net.jsunit.Utility; import java.io.File; import java.util.Iterator; /** * @author Edward Hieatt, edward@jsunit.net */ public class TestSuiteResultTest extends TestCas...
771
github-java-corpus
2,012
package net.jsunit.test; import junit.framework.TestResult; import junit.framework.TestCase; import junit.textui.TestRunner; import net.jsunit.DistributedTest; import net.jsunit.JsUnitServer; import net.jsunit.Configuration; public class DistributedTestTest extends TestCase { private JsUnitServer serv...
359
github-java-corpus
2,012
package net.jsunit.test; import junit.framework.TestCase; import junit.framework.TestSuite; /** * @author Edward Hieatt, edward@jsunit.net */ public class Suite extends TestCase { public static TestSuite suite() { TestSuite result = new TestSuite(); result.addTestSuite(TestCaseResul...
136
github-java-corpus
2,012
package net.jsunit.test; import junit.framework.TestCase; import junit.framework.TestSuite; import net.jsunit.StandaloneTest; /** * @author Edward Hieatt, edward@jsunit.net */ public class EndToEndTestSuite extends TestCase { public static TestSuite suite() { TestSuite result = new TestSuit...
97
github-java-corpus
2,012
package net.jsunit; import org.jdom.Document; import org.jdom.Element; import org.jdom.input.SAXBuilder; import java.io.File; import java.util.Iterator; import java.util.List; /** * @author Edward Hieatt, edward@jsunit.net */ public class TestSuiteResultBuilder { private File logsDirectory; ...
559
github-java-corpus
2,012
package net.jsunit.servlet; import net.jsunit.TestSuiteResult; import net.jsunit.Utility; import javax.servlet.ServletException; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import java.io.IOException; import java.io.OutputStream; /** * @author Edward Hiea...
157
github-java-corpus
2,012
package net.jsunit.servlet; import net.jsunit.JsUnitServer; import javax.servlet.http.HttpServlet; public class JsUnitServlet extends HttpServlet { protected static JsUnitServer server; public static void setServer(JsUnitServer aServer) { server = aServer; } }
60
github-java-corpus
2,012
package net.jsunit.servlet; import junit.framework.TestResult; import junit.textui.TestRunner; import net.jsunit.StandaloneTest; import net.jsunit.Utility; import javax.servlet.ServletException; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import java.io.IOExc...
267
github-java-corpus
2,012
package net.jsunit.servlet; import net.jsunit.TestSuiteResult; import net.jsunit.TestSuiteResultWriter; import javax.servlet.ServletException; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import java.io.IOException; import java.io.OutputStream; public class ...
196
github-java-corpus
2,012
package net.jsunit; import javax.servlet.http.HttpServletRequest; import java.io.File; import java.util.ArrayList; import java.util.Iterator; import java.util.List; /** * @author Edward Hieatt, edward@jsunit.net */ public class TestSuiteResult { private String remoteAddress, id, jsUnitVersion, use...
1,099
github-java-corpus
2,012
package net.jsunit; import java.io.File; import java.net.URL; import java.util.Arrays; import java.util.List; /** * @author Edward Hieatt, edward@jsunit.net */ public abstract class Configuration { public static final String PORT = "port"; public static final String RESOURCE_BASE = "resource...
763
github-java-corpus
2,012
package net.jsunit; public class ConfigurationException extends Exception { private String propertyInError; private String invalidValue; public ConfigurationException(String property, String invalidValue, Exception exception) { super(exception); this.propertyInError = property; ...
94
github-java-corpus
2,012
package domain; import java.util.Comparator; import java.util.List; import java.util.Random; import com.google.common.base.Predicate; import com.google.common.collect.ImmutableList; import com.google.common.collect.Iterables; import com.google.common.collect.Lists; import com.google.common.collect.Ordering; import co...
1,640
github-java-corpus
2,012
package domain; import com.jme3.math.Vector3f; import com.jme3.scene.Mesh; import com.jme3.scene.VertexBuffer.Type; import com.jme3.util.BufferUtils; public class BirdMesh extends Mesh { private static Vector3f[] VERTICES; private static int[] INDEXES = { 2, 0, 3, 3, 0, 1 }; static { VERTICES = new Vector3f[4...
250
github-java-corpus
2,012
package domain; import com.jme3.material.Material; import com.jme3.math.Vector3f; import com.jme3.scene.Geometry; public class Pond { private final Geometry geometry; public Pond(Vector3f location, Material material) { this.geometry = new Geometry("pond", new PondMesh()); this.geometry.setMaterial(material); ...
93
github-java-corpus
2,012
package domain; import com.jme3.math.Vector3f; import com.jme3.scene.Mesh; import com.jme3.scene.VertexBuffer.Type; import com.jme3.util.BufferUtils; public class PondMesh extends Mesh { private static Vector3f[] VERTICES; private static int[] INDEXES = { 0, 1, 2, 3, 0, 2 }; static { VERTICES = new Vector3f[4...
259
github-java-corpus
2,012
package mygame; import java.util.ArrayList; import java.util.List; import com.jme3.app.SimpleApplication; import com.jme3.material.Material; import com.jme3.math.ColorRGBA; import com.jme3.math.FastMath; import com.jme3.math.Vector3f; import com.jme3.renderer.RenderManager; import domain.Bird; import domain.Pond; p...
479
github-java-corpus
2,012
/** * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may...
830
github-java-corpus
2,012
/** * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may...
326
github-java-corpus
2,012
/** * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may...
555
github-java-corpus
2,012
/** * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may...
649
github-java-corpus
2,012
/** * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may...
728
github-java-corpus
2,012
/** * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may...
439
github-java-corpus
2,012
/** * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may...
307
github-java-corpus
2,012
/** * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may...
1,426
github-java-corpus
2,012
/** * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may...
1,420
github-java-corpus
2,012
/** * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may...
346
github-java-corpus
2,012
/** * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may...
1,839
github-java-corpus
2,012
/** * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may...
1,207
github-java-corpus
2,012
/** * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may...
445
github-java-corpus
2,012
/** * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may...
425
github-java-corpus
2,012
/** * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may...
268
github-java-corpus
2,012
/** * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may...
412
github-java-corpus
2,012
/** * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may...
318
github-java-corpus
2,012
/** * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may...
623
github-java-corpus
2,012
/** * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may...
732
github-java-corpus
2,012
/** * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may...
338
github-java-corpus
2,012
/** * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may...
557
github-java-corpus
2,012
/** * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may...
363
github-java-corpus
2,012
/** * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may...
575
github-java-corpus
2,012
/** * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may...
512
github-java-corpus
2,012
/** * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may...
563
github-java-corpus
2,012
/** * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may...
327
github-java-corpus
2,012
/** * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may...
378
github-java-corpus
2,012
/** * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may...
777
github-java-corpus
2,012
/** * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may...
440
github-java-corpus
2,012
/** * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may...
351
github-java-corpus
2,012
/** * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may...
579
github-java-corpus
2,012
/** * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may...
296
github-java-corpus
2,012
/** * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may...
511
github-java-corpus
2,012
/** * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may...
671
github-java-corpus
2,012
/** * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may...
675
github-java-corpus
2,012
/** * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may...
365