method stringlengths 13 441k | clean_method stringlengths 7 313k | doc stringlengths 17 17.3k | comment stringlengths 3 1.42k | method_name stringlengths 1 273 | extra dict | imports list | imports_info stringlengths 19 34.8k | cluster_imports_info stringlengths 15 3.66k | libraries list | libraries_info stringlengths 6 661 | id int64 0 2.92M |
|---|---|---|---|---|---|---|---|---|---|---|---|
DuplicationStorePolicy policy = new DuplicationStorePolicy();
policy.setDestStoreId("1");
policy.setSrcStoreId("0");
Morsel a = new DuplicationMorsel("subdomain-a", "space-a", "marker", policy);
Morsel b = new DuplicationMorsel("subdomain-b", "space-a", "marker", policy);
Morse... | DuplicationStorePolicy policy = new DuplicationStorePolicy(); policy.setDestStoreId("1"); policy.setSrcStoreId("0"); Morsel a = new DuplicationMorsel(STR, STR, STR, policy); Morsel b = new DuplicationMorsel(STR, STR, STR, policy); Morsel c = new DuplicationMorsel(STR, STR, null, policy); Morsel d = new DuplicationMorse... | /**
* Test method for
* {@link org.duracloud.mill.ltp.MorselComparator#compare(org.duracloud.mill.ltp.Morsel, org.duracloud.mill.ltp.Morsel)}.
*/ | Test method for <code>org.duracloud.mill.ltp.MorselComparator#compare(org.duracloud.mill.ltp.Morsel, org.duracloud.mill.ltp.Morsel)</code> | testCompare | {
"repo_name": "duracloud/mill",
"path": "loopingduptaskproducer/src/test/java/org/duracloud/mill/ltp/dup/DuplicationMorselComparatorTest.java",
"license": "apache-2.0",
"size": 1640
} | [
"org.duracloud.mill.dup.DuplicationStorePolicy",
"org.duracloud.mill.ltp.Morsel",
"org.duracloud.mill.ltp.MorselComparator",
"org.junit.Assert"
] | import org.duracloud.mill.dup.DuplicationStorePolicy; import org.duracloud.mill.ltp.Morsel; import org.duracloud.mill.ltp.MorselComparator; import org.junit.Assert; | import org.duracloud.mill.dup.*; import org.duracloud.mill.ltp.*; import org.junit.*; | [
"org.duracloud.mill",
"org.junit"
] | org.duracloud.mill; org.junit; | 779,301 |
private void initBPRMADetails(int C_BPartner_ID)
{
rmaField.removeActionListener(this);
rmaField.removeAllItems();
// None
KeyNamePair pp = new KeyNamePair(0,"");
rmaField.addItem(pp);
ArrayList<KeyNamePair> list = loadRMAData(C_BPartner_ID);
for(KeyNamePair knp : lis... | void function(int C_BPartner_ID) { rmaField.removeActionListener(this); rmaField.removeAllItems(); KeyNamePair pp = new KeyNamePair(0,""); rmaField.addItem(pp); ArrayList<KeyNamePair> list = loadRMAData(C_BPartner_ID); for(KeyNamePair knp : list) rmaField.addItem(knp); rmaField.setSelectedIndex(0); rmaField.addActionLi... | /**
* Load RMA that are candidates for shipment
* @param C_BPartner_ID BPartner
*/ | Load RMA that are candidates for shipment | initBPRMADetails | {
"repo_name": "erpcya/adempierePOS",
"path": "zkwebui/WEB-INF/src/org/adempiere/webui/apps/form/WCreateFromShipmentUI.java",
"license": "gpl-2.0",
"size": 17851
} | [
"java.util.ArrayList",
"org.compiere.util.KeyNamePair"
] | import java.util.ArrayList; import org.compiere.util.KeyNamePair; | import java.util.*; import org.compiere.util.*; | [
"java.util",
"org.compiere.util"
] | java.util; org.compiere.util; | 1,376,243 |
void beforeNavigateBack(WebDriver driver); | void beforeNavigateBack(WebDriver driver); | /**
* Called before {@link org.openqa.selenium.WebDriver.Navigation#back navigate().back()}.
*/ | Called before <code>org.openqa.selenium.WebDriver.Navigation#back navigate().back()</code> | beforeNavigateBack | {
"repo_name": "jerome-jacob/selenium",
"path": "java/client/src/org/openqa/selenium/support/events/WebDriverEventListener.java",
"license": "apache-2.0",
"size": 4806
} | [
"org.openqa.selenium.WebDriver"
] | import org.openqa.selenium.WebDriver; | import org.openqa.selenium.*; | [
"org.openqa.selenium"
] | org.openqa.selenium; | 1,451,166 |
@Override
public WebResponse openWebResponse(final URL location, boolean bufferStream) {
return new WebResponse() { | WebResponse function(final URL location, boolean bufferStream) { return new WebResponse() { | /**
* Only the path part of the URL is interpreted for retrieving resource from class path
* @see org.cee.net.WebClient#openWebResponse(java.net.URL)
*/ | Only the path part of the URL is interpreted for retrieving resource from class path | openWebResponse | {
"repo_name": "andreasbehnke/cee",
"path": "cee-parser-impl/src/main/java/org/cee/net/impl/ClassResourceWebClient.java",
"license": "apache-2.0",
"size": 3144
} | [
"org.cee.net.WebResponse"
] | import org.cee.net.WebResponse; | import org.cee.net.*; | [
"org.cee.net"
] | org.cee.net; | 2,860,965 |
private void drawSignal( Graphics2D g, int imageWidth, int imageHeight,
VisibleSignal visibleSignal, int signalStartY, long markerPosition,
WaveView view ) {
{
// Draw a signal name
AbstractSignal signal = visibleSignal.getSignal();
TextLayout signalNameLayout =
new TextLayout( signal.ge... | void function( Graphics2D g, int imageWidth, int imageHeight, VisibleSignal visibleSignal, int signalStartY, long markerPosition, WaveView view ) { { AbstractSignal signal = visibleSignal.getSignal(); TextLayout signalNameLayout = new TextLayout( signal.getFullPath(), signalNameFont, g .getFontRenderContext() ); g.setC... | /**
* Draw a signal
*
* @param g
* a graphics2D to draw
* @param imageWidth
* width of the graphics
* @param imageHeight
* height of the graphics
* @param signal
* signal to draw
* @param signalStartY
* startPosition of the signal
* @param view
... | Draw a signal | drawSignal | {
"repo_name": "Rubbiroid/VVIDE",
"path": "src/vvide/ui/views/wave/SignalRender.java",
"license": "gpl-3.0",
"size": 27532
} | [
"java.awt.Color",
"java.awt.Graphics2D",
"java.awt.font.TextLayout"
] | import java.awt.Color; import java.awt.Graphics2D; import java.awt.font.TextLayout; | import java.awt.*; import java.awt.font.*; | [
"java.awt"
] | java.awt; | 1,633,553 |
public void drawAxis(Graphics g, double a, double b, double w, double c, int orientation){
this.drawAxis(g, a, b, w, c, orientation, BOUNDS, null);
}
| void function(Graphics g, double a, double b, double w, double c, int orientation){ this.drawAxis(g, a, b, w, c, orientation, BOUNDS, null); } | /**This method draws an axis corresponding to the partition of [a, b] into subintervals of width w,
with tick marks at the partition bounds*/ | This method draws an axis corresponding to the partition of [a, b] into subintervals of width w | drawAxis | {
"repo_name": "SOCR/HTML5_WebSite",
"path": "SOCR2.8/src/edu/ucla/stat/SOCR/util/Graph.java",
"license": "lgpl-3.0",
"size": 18789
} | [
"java.awt.Graphics"
] | import java.awt.Graphics; | import java.awt.*; | [
"java.awt"
] | java.awt; | 2,273,304 |
public void removeReader(TransactionImpl tx, Object obj)
{
try
{
LockEntry lock = new LockEntry(new Identity(obj,getBroker()).toString(), tx.getGUID());
removeReaderRemote(lock);
}
catch (Throwable t)
{
log.error("Cannot remove LockEntry for object " + obj + " in transaction " +... | void function(TransactionImpl tx, Object obj) { try { LockEntry lock = new LockEntry(new Identity(obj,getBroker()).toString(), tx.getGUID()); removeReaderRemote(lock); } catch (Throwable t) { log.error(STR + obj + STR + tx); } } | /**
* remove a reader lock entry for transaction tx on object obj
* from the persistent storage.
*/ | remove a reader lock entry for transaction tx on object obj from the persistent storage | removeReader | {
"repo_name": "kuali/ojb-1.0.4",
"path": "src/java/org/apache/ojb/odmg/locking/RemoteLockMapImpl.java",
"license": "apache-2.0",
"size": 14137
} | [
"org.apache.ojb.broker.Identity",
"org.apache.ojb.odmg.TransactionImpl"
] | import org.apache.ojb.broker.Identity; import org.apache.ojb.odmg.TransactionImpl; | import org.apache.ojb.broker.*; import org.apache.ojb.odmg.*; | [
"org.apache.ojb"
] | org.apache.ojb; | 2,606,449 |
private void deleteJWTCondition(Connection connection, int conID) throws SQLException {
final String query = "DELETE FROM AM_JWT_CLAIM_CONDITION WHERE CONDITION_GROUP_ID = ?";
try (PreparedStatement preparedStatement = connection.prepareStatement(query)) {
preparedStatement.setInt(1, c... | void function(Connection connection, int conID) throws SQLException { final String query = STR; try (PreparedStatement preparedStatement = connection.prepareStatement(query)) { preparedStatement.setInt(1, conID); preparedStatement.execute(); } } | /**
* Delete JWT claim condition from database
*
* @param connection connection to the database
* @param conID pipeline id of the jwt claim condition
* @throws SQLException if error occurred when jwt claim is deleted
*/ | Delete JWT claim condition from database | deleteJWTCondition | {
"repo_name": "lakmali/carbon-apimgt",
"path": "components/apimgt/org.wso2.carbon.apimgt.core/src/main/java/org/wso2/carbon/apimgt/core/dao/impl/PolicyDAOImpl.java",
"license": "apache-2.0",
"size": 109019
} | [
"java.sql.Connection",
"java.sql.PreparedStatement",
"java.sql.SQLException"
] | import java.sql.Connection; import java.sql.PreparedStatement; import java.sql.SQLException; | import java.sql.*; | [
"java.sql"
] | java.sql; | 1,241,617 |
public void mouseDown(MouseEvent e) {
Control oldEditorControl = cellEditor.getEditor();
if (null != oldEditorControl)
oldEditorControl.dispose();
}
});
} | void function(MouseEvent e) { Control oldEditorControl = cellEditor.getEditor(); if (null != oldEditorControl) oldEditorControl.dispose(); } }); } | /**
* Dispose cell editor control at mouse down (otherwise the control
* keep showing).
*/ | Dispose cell editor control at mouse down (otherwise the control keep showing) | mouseDown | {
"repo_name": "prabushi/devstudio-tooling-esb",
"path": "plugins/org.wso2.developerstudio.eclipse.gmf.esb.diagram/src/org/wso2/developerstudio/eclipse/gmf/esb/diagram/custom/configure/ui/ConfigureXQueryMediatorDialog.java",
"license": "apache-2.0",
"size": 25806
} | [
"org.eclipse.swt.events.MouseEvent",
"org.eclipse.swt.widgets.Control"
] | import org.eclipse.swt.events.MouseEvent; import org.eclipse.swt.widgets.Control; | import org.eclipse.swt.events.*; import org.eclipse.swt.widgets.*; | [
"org.eclipse.swt"
] | org.eclipse.swt; | 2,632,463 |
@XmlElement(name="params")
public Parameters getParameters() {
return parameters;
} | @XmlElement(name=STR) Parameters function() { return parameters; } | /**
* Gets the parameters.
*
* @return the parameters
*/ | Gets the parameters | getParameters | {
"repo_name": "opennms-forge/poc-nms-core",
"path": "opennms-rrd/opennms-rrd-model/src/main/java/org/opennms/netmgt/rrd/model/v3/RRA.java",
"license": "gpl-2.0",
"size": 4817
} | [
"javax.xml.bind.annotation.XmlElement"
] | import javax.xml.bind.annotation.XmlElement; | import javax.xml.bind.annotation.*; | [
"javax.xml"
] | javax.xml; | 1,267,690 |
try {
temperature = temperatureConvertEJB.convert(Temperature.parse(sourceTemperature, defaultScale)).toString();
} catch (IllegalArgumentException e) {
temperature = "0.0 Err";
FacesContext.getCurrentInstance().addMessage(null, new FacesMessage(e.toString()));
}
... | try { temperature = temperatureConvertEJB.convert(Temperature.parse(sourceTemperature, defaultScale)).toString(); } catch (IllegalArgumentException e) { temperature = STR; FacesContext.getCurrentInstance().addMessage(null, new FacesMessage(e.toString())); } } | /**
* Invoke temperatureConvertEJB.convert() and store the temperature
*
* @param sourceTemperature The temperature to be converted
* @param defaultScale The default source temperature scale
*/ | Invoke temperatureConvertEJB.convert() and store the temperature | convert | {
"repo_name": "ivanthelad/jboss-eap-quickstarts",
"path": "temperature-converter/src/main/java/org/jboss/as/quickstarts/temperatureconverter/controller/TemperatureConverter.java",
"license": "apache-2.0",
"size": 3114
} | [
"javax.faces.application.FacesMessage",
"javax.faces.context.FacesContext",
"org.jboss.as.quickstarts.temperatureconverter.ejb.Temperature"
] | import javax.faces.application.FacesMessage; import javax.faces.context.FacesContext; import org.jboss.as.quickstarts.temperatureconverter.ejb.Temperature; | import javax.faces.application.*; import javax.faces.context.*; import org.jboss.as.quickstarts.temperatureconverter.ejb.*; | [
"javax.faces",
"org.jboss.as"
] | javax.faces; org.jboss.as; | 2,408,519 |
public Node insert(final String parentTreePath, final Feature feature) {
final FeatureType featureType = feature.getType();
NodeRef treeRef;
Optional<NodeRef> typeTreeRef = commandLocator.command(FindTreeChild.class).setIndex(true)
.setParent(getTree()).setChildPath(parent... | Node function(final String parentTreePath, final Feature feature) { final FeatureType featureType = feature.getType(); NodeRef treeRef; Optional<NodeRef> typeTreeRef = commandLocator.command(FindTreeChild.class).setIndex(true) .setParent(getTree()).setChildPath(parentTreePath).call(); ObjectId metadataId; if (typeTreeR... | /**
* Insert a single feature into the working tree and updates the WORK_HEAD ref.
*
* @param parentTreePath path of the parent tree to insert the feature into
* @param feature the feature to insert
*/ | Insert a single feature into the working tree and updates the WORK_HEAD ref | insert | {
"repo_name": "state-hiu/GeoGit",
"path": "src/core/src/main/java/org/geogit/repository/WorkingTree.java",
"license": "bsd-3-clause",
"size": 37354
} | [
"com.google.common.base.Optional",
"com.google.common.base.Suppliers",
"org.geogit.api.Node",
"org.geogit.api.NodeRef",
"org.geogit.api.ObjectId",
"org.geogit.api.RevFeatureType",
"org.geogit.api.RevTreeBuilder",
"org.geogit.api.plumbing.FindOrCreateSubtree",
"org.geogit.api.plumbing.FindTreeChild",... | import com.google.common.base.Optional; import com.google.common.base.Suppliers; import org.geogit.api.Node; import org.geogit.api.NodeRef; import org.geogit.api.ObjectId; import org.geogit.api.RevFeatureType; import org.geogit.api.RevTreeBuilder; import org.geogit.api.plumbing.FindOrCreateSubtree; import org.geogit.ap... | import com.google.common.base.*; import org.geogit.api.*; import org.geogit.api.plumbing.*; import org.opengis.feature.*; import org.opengis.feature.type.*; | [
"com.google.common",
"org.geogit.api",
"org.opengis.feature"
] | com.google.common; org.geogit.api; org.opengis.feature; | 2,099,833 |
public static String backQuoteChars(String string, char[] find, String[] replace) {
return OptionUtils.backQuoteChars(string, find, replace);
} | static String function(String string, char[] find, String[] replace) { return OptionUtils.backQuoteChars(string, find, replace); } | /**
* Converts specified characters into the string equivalents.
*
* @param string the string
* @param find the characters to replace
* @param replace the replacement strings for the characters
* @return the converted string
* @see #unbackQuoteChars(String, String[], char[])
*/ | Converts specified characters into the string equivalents | backQuoteChars | {
"repo_name": "waikato-datamining/adams-base",
"path": "adams-core/src/main/java/adams/core/Utils.java",
"license": "gpl-3.0",
"size": 60884
} | [
"nz.ac.waikato.cms.jenericcmdline.core.OptionUtils"
] | import nz.ac.waikato.cms.jenericcmdline.core.OptionUtils; | import nz.ac.waikato.cms.jenericcmdline.core.*; | [
"nz.ac.waikato"
] | nz.ac.waikato; | 1,998,845 |
private static Gender getGender(Element element) {
Gender gender = Gender.unknown;
boolean hasGender = element.hasAttribute("gender");
if (hasGender) {
gender = Gender.valueOf(element.getAttribute("gender"));
}
return gender;
} | static Gender function(Element element) { Gender gender = Gender.unknown; boolean hasGender = element.hasAttribute(STR); if (hasGender) { gender = Gender.valueOf(element.getAttribute(STR)); } return gender; } | /**
* Returns the Gender present in the passed in element's attribute, defaults to unknown gender
* @param element the element for which gender attribute is to be determined
* @return gender present in the element and unknown gender if not
*/ | Returns the Gender present in the passed in element's attribute, defaults to unknown gender | getGender | {
"repo_name": "mikekap/buck",
"path": "src/com/facebook/buck/android/CompileStringsStep.java",
"license": "apache-2.0",
"size": 18162
} | [
"com.facebook.buck.android.StringResources",
"org.w3c.dom.Element"
] | import com.facebook.buck.android.StringResources; import org.w3c.dom.Element; | import com.facebook.buck.android.*; import org.w3c.dom.*; | [
"com.facebook.buck",
"org.w3c.dom"
] | com.facebook.buck; org.w3c.dom; | 2,372,517 |
@SuppressWarnings("unchecked")
final public void release() {
if (parent == null)
return;
if (--n == 0) {
n = batchSize;
// lock for update on the parent.
synchronized (parent) {
parent.add((T) this);
}
... | @SuppressWarnings(STR) final void function() { if (parent == null) return; if (--n == 0) { n = batchSize; synchronized (parent) { parent.add((T) this); } clear(); } parent.locks[threadHash].unlock(); } public StripedCounters() { a = null; locks = null; parent = null; batchSize = n = 1; } public StripedCounters(final in... | /**
* Release the counters.
*/ | Release the counters | release | {
"repo_name": "smalyshev/blazegraph",
"path": "bigdata/src/java/com/bigdata/counters/striped/StripedCounters.java",
"license": "gpl-2.0",
"size": 9624
} | [
"java.util.concurrent.locks.ReentrantLock",
"org.apache.system.SystemUtil"
] | import java.util.concurrent.locks.ReentrantLock; import org.apache.system.SystemUtil; | import java.util.concurrent.locks.*; import org.apache.system.*; | [
"java.util",
"org.apache.system"
] | java.util; org.apache.system; | 586,508 |
@Test
public void testListApplicationsGroupApplication() throws IOException {
Group group = new Group();
group.setId(123);
Application application = new Application();
application.setName("swf-booking-mvc");
EasyMock.expect(applicationRepository.getApplications(group, app... | void function() throws IOException { Group group = new Group(); group.setId(123); Application application = new Application(); application.setName(STR); EasyMock.expect(applicationRepository.getApplications(group, application)).andReturn(getExpectedResponse()); EasyMock.replay(applicationRepository); int exitCode = lis... | /**
* Verifies that applications are listed when the group and application are specified
*
* @throws IOException
*/ | Verifies that applications are listed when the group and application are specified | testListApplicationsGroupApplication | {
"repo_name": "pivotal/tcs-hq-management-plugin",
"path": "com.springsource.hq.plugin.tcserver.cli/com.springsource.hq.plugin.tcserver.cli.commandline/src/test/java/com/springsource/hq/plugin/tcserver/cli/commandline/application/ListApplicationsCommandTest.java",
"license": "gpl-2.0",
"size": 29367
} | [
"com.springsource.hq.plugin.tcserver.cli.client.schema.Application",
"com.springsource.hq.plugin.tcserver.cli.client.schema.Group",
"java.io.IOException",
"org.easymock.EasyMock",
"org.junit.Assert"
] | import com.springsource.hq.plugin.tcserver.cli.client.schema.Application; import com.springsource.hq.plugin.tcserver.cli.client.schema.Group; import java.io.IOException; import org.easymock.EasyMock; import org.junit.Assert; | import com.springsource.hq.plugin.tcserver.cli.client.schema.*; import java.io.*; import org.easymock.*; import org.junit.*; | [
"com.springsource.hq",
"java.io",
"org.easymock",
"org.junit"
] | com.springsource.hq; java.io; org.easymock; org.junit; | 1,582,861 |
private void initMapsGoogleReverse() {
//process a cached result file of half of the scripted data set containing reference and hypothesis
new FileProcessor(
"heinrichLab.google.refhyp",
new FileLoop() {
PhonemeCreator pc = PhonemeCreator.getInstance();
final NISTAlign alignerPhonemesRever... | void function() { new FileProcessor( STR, new FileLoop() { PhonemeCreator pc = PhonemeCreator.getInstance(); final NISTAlign alignerPhonemesReverse = new NISTAlign( true, true); ArrayList<PhonemeContainer> phonemesSpeech = null; Result r; HashMap<String, Integer> hm = new HashMap<String, Integer>(); | /**
* initializes the score map for Derived IPA
*/ | initializes the score map for Derived IPA | initMapsGoogleReverse | {
"repo_name": "knowledgetechnologyuhh/docks_nightly",
"path": "src/Phoneme/PhonemeSubstitution.java",
"license": "agpl-3.0",
"size": 19975
} | [
"edu.cmu.sphinx.util.NISTAlign",
"java.util.ArrayList",
"java.util.HashMap"
] | import edu.cmu.sphinx.util.NISTAlign; import java.util.ArrayList; import java.util.HashMap; | import edu.cmu.sphinx.util.*; import java.util.*; | [
"edu.cmu.sphinx",
"java.util"
] | edu.cmu.sphinx; java.util; | 2,544,727 |
@Override
public void initialize(BSFManager mgr, String lang,
@SuppressWarnings("rawtypes") // superclass does not support types
Vector declaredBeans)
throws BSFException {
super.initialize(mgr, lang, declaredBeans);
// Initialize context and global scope object... | void function(BSFManager mgr, String lang, @SuppressWarnings(STR) Vector declaredBeans) throws BSFException { super.initialize(mgr, lang, declaredBeans); try { Context cx = Context.enter(); global = new ImporterTopLevel(cx); Scriptable bsf = Context.toObject(new BSFFunctions(mgr, this), global); global.put("bsf", globa... | /**
* Initialize the engine.
* Put the manager into the context-manager
* map hashtable too.
*/ | Initialize the engine. Put the manager into the context-manager map hashtable too | initialize | {
"repo_name": "tuanhq/jmeter",
"path": "src/core/org/apache/jmeter/util/BSFJavaScriptEngine.java",
"license": "apache-2.0",
"size": 8143
} | [
"java.util.Iterator",
"java.util.Vector",
"org.apache.bsf.BSFDeclaredBean",
"org.apache.bsf.BSFException",
"org.apache.bsf.BSFManager",
"org.apache.bsf.util.BSFFunctions",
"org.mozilla.javascript.Context",
"org.mozilla.javascript.ImporterTopLevel",
"org.mozilla.javascript.Scriptable"
] | import java.util.Iterator; import java.util.Vector; import org.apache.bsf.BSFDeclaredBean; import org.apache.bsf.BSFException; import org.apache.bsf.BSFManager; import org.apache.bsf.util.BSFFunctions; import org.mozilla.javascript.Context; import org.mozilla.javascript.ImporterTopLevel; import org.mozilla.javascript.S... | import java.util.*; import org.apache.bsf.*; import org.apache.bsf.util.*; import org.mozilla.javascript.*; | [
"java.util",
"org.apache.bsf",
"org.mozilla.javascript"
] | java.util; org.apache.bsf; org.mozilla.javascript; | 2,768,527 |
public void onScroll(AdapterView<?> view, int firstVisibleItem, int visibleItemCount,
int totalItemCount); | void function(AdapterView<?> view, int firstVisibleItem, int visibleItemCount, int totalItemCount); | /**
* Callback method to be invoked when the list has been scrolled or flown. This will be
* called after the scroll or fly has completed
*
* @param view The view whose scroll state is being reported
* @param firstVisibleItem the index of the first visible cell (... | Callback method to be invoked when the list has been scrolled or flown. This will be called after the scroll or fly has completed | onScroll | {
"repo_name": "NarendraDodiya/NDScaleView",
"path": "ndscaleviewlib/src/main/java/com/nd/scaleview/HorizontalScaleView.java",
"license": "apache-2.0",
"size": 29230
} | [
"android.widget.AdapterView"
] | import android.widget.AdapterView; | import android.widget.*; | [
"android.widget"
] | android.widget; | 2,052,936 |
public List<String> ptrLookup (CharSequence addr) throws NamingException
{
return ptrLookup(addr, 0, (null == addr) ? 0 : addr.length());
} | List<String> function (CharSequence addr) throws NamingException { return ptrLookup(addr, 0, (null == addr) ? 0 : addr.length()); } | /**
* Attempts to find all names of specified (IPv4) address
* @param addr (IPv4) address
* @return A {@link List} of all available aliases (may be null/empty)
* @throws NamingException if problems encountered
* @see #PTRAttribute
*/ | Attempts to find all names of specified (IPv4) address | ptrLookup | {
"repo_name": "lgoldstein/communitychest",
"path": "chest/net/common/src/main/java/net/community/chest/net/dns/DNSAccess.java",
"license": "apache-2.0",
"size": 14821
} | [
"java.util.List",
"javax.naming.NamingException"
] | import java.util.List; import javax.naming.NamingException; | import java.util.*; import javax.naming.*; | [
"java.util",
"javax.naming"
] | java.util; javax.naming; | 483,671 |
private Node constructStringExprNode(Iterator<CharSequence> parts,
Node objLitNode) throws MalformedException {
CharSequence part = parts.next();
Node partNode = null;
if (part instanceof JsMessage.PlaceholderReference) {
JsMessage.PlaceholderReference phRef =
(JsMessage.Placeholder... | Node function(Iterator<CharSequence> parts, Node objLitNode) throws MalformedException { CharSequence part = parts.next(); Node partNode = null; if (part instanceof JsMessage.PlaceholderReference) { JsMessage.PlaceholderReference phRef = (JsMessage.PlaceholderReference) part; for (Node n = objLitNode.getFirstChild(); n... | /**
* Creates a parse tree corresponding to the remaining message parts in an
* iteration. The result consists of one or more STRING nodes, placeholder
* replacement value nodes (which can be arbitrary expressions), and ADD
* nodes.
*
* @param parts an iterator over message parts
* @param objLitNo... | Creates a parse tree corresponding to the remaining message parts in an iteration. The result consists of one or more STRING nodes, placeholder replacement value nodes (which can be arbitrary expressions), and ADD nodes | constructStringExprNode | {
"repo_name": "ehsan/js-symbolic-executor",
"path": "closure-compiler/src/com/google/javascript/jscomp/ReplaceMessages.java",
"license": "apache-2.0",
"size": 12001
} | [
"com.google.javascript.rhino.Node",
"com.google.javascript.rhino.Token",
"java.util.Iterator"
] | import com.google.javascript.rhino.Node; import com.google.javascript.rhino.Token; import java.util.Iterator; | import com.google.javascript.rhino.*; import java.util.*; | [
"com.google.javascript",
"java.util"
] | com.google.javascript; java.util; | 1,879,973 |
private void validateContext() {
Context context = Context.getContext();
StringBuffer errors = new StringBuffer();
if (context.getOutputGenerators() == null
|| context.getOutputGenerators().isEmpty()) {
errors
.append("No Output generators Specified in the Configuration\n");
}else{
i... | void function() { Context context = Context.getContext(); StringBuffer errors = new StringBuffer(); if (context.getOutputGenerators() == null context.getOutputGenerators().isEmpty()) { errors .append(STR); }else{ if(context.getOutputGenerators().get(null)!=null){ errors .append(STR); } } if (context.getOutputDir() == n... | /**
* Validate context.
*/ | Validate context | validateContext | {
"repo_name": "kingargyle/turmeric-wsdldoctool",
"path": "wsdl-doc-tool/src/main/java/org/ebayopensource/turmeric/tools/annoparser/driver/Driver.java",
"license": "apache-2.0",
"size": 9292
} | [
"org.ebayopensource.turmeric.tools.annoparser.context.Context",
"org.ebayopensource.turmeric.tools.annoparser.exception.ConfigurationException",
"org.ebayopensource.turmeric.tools.annoparser.utils.Utils"
] | import org.ebayopensource.turmeric.tools.annoparser.context.Context; import org.ebayopensource.turmeric.tools.annoparser.exception.ConfigurationException; import org.ebayopensource.turmeric.tools.annoparser.utils.Utils; | import org.ebayopensource.turmeric.tools.annoparser.context.*; import org.ebayopensource.turmeric.tools.annoparser.exception.*; import org.ebayopensource.turmeric.tools.annoparser.utils.*; | [
"org.ebayopensource.turmeric"
] | org.ebayopensource.turmeric; | 1,681,027 |
@Override
public Adapter createCallQueryListAdapter() {
if (callQueryListItemProvider == null) {
callQueryListItemProvider = new CallQueryListItemProvider(this);
}
return callQueryListItemProvider;
}
protected ConfigurationPropertyItemProvider configurationPropertyItemProvider; | Adapter function() { if (callQueryListItemProvider == null) { callQueryListItemProvider = new CallQueryListItemProvider(this); } return callQueryListItemProvider; } protected ConfigurationPropertyItemProvider configurationPropertyItemProvider; | /**
* This creates an adapter for a
* {@link org.wso2.developerstudio.eclipse.ds.CallQueryList}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @generated
*/ | This creates an adapter for a <code>org.wso2.developerstudio.eclipse.ds.CallQueryList</code>. | createCallQueryListAdapter | {
"repo_name": "chanakaudaya/developer-studio",
"path": "data-services/org.wso2.developerstudio.eclipse.ds.edit/src/org/wso2/developerstudio/eclipse/ds/provider/DsItemProviderAdapterFactory.java",
"license": "apache-2.0",
"size": 32467
} | [
"org.eclipse.emf.common.notify.Adapter"
] | import org.eclipse.emf.common.notify.Adapter; | import org.eclipse.emf.common.notify.*; | [
"org.eclipse.emf"
] | org.eclipse.emf; | 1,921,320 |
public static void setParameterValuesToClassifier(
ValidateableInterface classifier,
HashMap<String, Object> paramValuesMap)
throws NoSuchFieldException, IllegalArgumentException,
IllegalAccessException {
if (classifier == null || paramValuesMap == null) {
... | static void function( ValidateableInterface classifier, HashMap<String, Object> paramValuesMap) throws NoSuchFieldException, IllegalArgumentException, IllegalAccessException { if (classifier == null paramValuesMap == null) { return; } Class clClass = classifier.getClass(); Set<String> paramNames = paramValuesMap.keySet... | /**
* This method sets the provided parameter values to a classifier. It throws
* an Exception if a wrong parameter name is provided, which does not exist
* in the implementation.
*
* @param classifier ValidateableInterface that is the classifier to set the
* parameter values to.
* @... | This method sets the provided parameter values to a classifier. It throws an Exception if a wrong parameter name is provided, which does not exist in the implementation | setParameterValuesToClassifier | {
"repo_name": "datapoet/hubminer",
"path": "src/main/java/learning/supervised/evaluation/ClassifierParametrization.java",
"license": "gpl-3.0",
"size": 6378
} | [
"java.lang.reflect.Field",
"java.util.HashMap",
"java.util.Set",
"java.util.logging.Level",
"java.util.logging.Logger"
] | import java.lang.reflect.Field; import java.util.HashMap; import java.util.Set; import java.util.logging.Level; import java.util.logging.Logger; | import java.lang.reflect.*; import java.util.*; import java.util.logging.*; | [
"java.lang",
"java.util"
] | java.lang; java.util; | 1,460,495 |
private void decodeParms(String parms, Map<String, String> p) {
if (parms == null) {
this.queryParameterString = "";
return;
}
this.queryParameterString = parms;
StringTokenizer st = new StringTokenizer(parms, "&");
whi... | void function(String parms, Map<String, String> p) { if (parms == null) { this.queryParameterString = STR&STR"); } } } | /**
* Decodes parameters in percent-encoded URI-format ( e.g.
* "name=Jack%20Daniels&pass=Single%20Malt" ) and adds them to given
* Map. NOTE: this doesn't support multiple identical keys due to the
* simplicity of Map.
*/ | Decodes parameters in percent-encoded URI-format ( e.g. "name=Jack%20Daniels&pass=Single%20Malt" ) and adds them to given simplicity of Map | decodeParms | {
"repo_name": "vnnv/nanohttpd_vnnv",
"path": "core/src/main/java/fi/iki/elonen/NanoHTTPD.java",
"license": "bsd-3-clause",
"size": 78692
} | [
"java.util.Map"
] | import java.util.Map; | import java.util.*; | [
"java.util"
] | java.util; | 267,491 |
void explain(ExplainRequest request, ActionListener<ExplainResponse> listener); | void explain(ExplainRequest request, ActionListener<ExplainResponse> listener); | /**
* Computes a score explanation for the specified request.
*
* @param request The request encapsulating the query and document identifier to compute a score explanation for
* @param listener A listener to be notified of the result
*/ | Computes a score explanation for the specified request | explain | {
"repo_name": "ern/elasticsearch",
"path": "server/src/main/java/org/elasticsearch/client/Client.java",
"license": "apache-2.0",
"size": 15097
} | [
"org.elasticsearch.action.ActionListener",
"org.elasticsearch.action.explain.ExplainRequest",
"org.elasticsearch.action.explain.ExplainResponse"
] | import org.elasticsearch.action.ActionListener; import org.elasticsearch.action.explain.ExplainRequest; import org.elasticsearch.action.explain.ExplainResponse; | import org.elasticsearch.action.*; import org.elasticsearch.action.explain.*; | [
"org.elasticsearch.action"
] | org.elasticsearch.action; | 344,591 |
@Override
public ContainerRequest filter(ContainerRequest containerRequest)
throws WebApplicationException {
// GET, POST, PUT, DELETE, ...
String method = containerRequest.getMethod();
// myresource/get/56bCA for example
// String path = containerRequest.getPath(true);
if (method.equals("OPTI... | ContainerRequest function(ContainerRequest containerRequest) throws WebApplicationException { String method = containerRequest.getMethod(); if (method.equals(STR)) { throw new WebApplicationException(Status.OK); } Action action = new Action(); action.put(STR, method); String auth = containerRequest.getHeaderValue(STR);... | /**
* Apply the filter : check input request, validate or not with user auth
*
* @param containerRequest
* The request from Tomcat server
*/ | Apply the filter : check input request, validate or not with user auth | filter | {
"repo_name": "GLORIA-project/gloria-core",
"path": "gloria-rest/src/main/java/eu/gloria/gs/services/api/security/AuthFilter.java",
"license": "gpl-2.0",
"size": 6957
} | [
"com.sun.jersey.spi.container.ContainerRequest",
"eu.gloria.gs.services.core.client.GSClientProvider",
"eu.gloria.gs.services.log.action.Action",
"javax.ws.rs.WebApplicationException",
"javax.ws.rs.core.Response"
] | import com.sun.jersey.spi.container.ContainerRequest; import eu.gloria.gs.services.core.client.GSClientProvider; import eu.gloria.gs.services.log.action.Action; import javax.ws.rs.WebApplicationException; import javax.ws.rs.core.Response; | import com.sun.jersey.spi.container.*; import eu.gloria.gs.services.core.client.*; import eu.gloria.gs.services.log.action.*; import javax.ws.rs.*; import javax.ws.rs.core.*; | [
"com.sun.jersey",
"eu.gloria.gs",
"javax.ws"
] | com.sun.jersey; eu.gloria.gs; javax.ws; | 2,733,506 |
@Override public T visitElementValuePairList(@NotNull Java8Parser.ElementValuePairListContext ctx) { return visitChildren(ctx); } | @Override public T visitElementValuePairList(@NotNull Java8Parser.ElementValuePairListContext ctx) { return visitChildren(ctx); } | /**
* {@inheritDoc}
*
* <p>The default implementation returns the result of calling
* {@link #visitChildren} on {@code ctx}.</p>
*/ | The default implementation returns the result of calling <code>#visitChildren</code> on ctx | visitType | {
"repo_name": "IsThisThePayneResidence/intellidots",
"path": "src/main/java/ua/edu/hneu/ast/parsers/Java8BaseVisitor.java",
"license": "gpl-3.0",
"size": 65479
} | [
"org.antlr.v4.runtime.misc.NotNull"
] | import org.antlr.v4.runtime.misc.NotNull; | import org.antlr.v4.runtime.misc.*; | [
"org.antlr.v4"
] | org.antlr.v4; | 1,462,831 |
public static String[] getTypeNamesById(Integer bronId) throws Exception {
Session sess = HibernateUtil.getSessionFactory().getCurrentSession();
Bron bron = (Bron) sess.get(Bron.class, bronId);
return getTypeNames(bron, true);
} | static String[] function(Integer bronId) throws Exception { Session sess = HibernateUtil.getSessionFactory().getCurrentSession(); Bron bron = (Bron) sess.get(Bron.class, bronId); return getTypeNames(bron, true); } | /**
* Haalt de mogelijke featureTypeNames van een bron op adhv het id van de
* bron
*
*/ | Haalt de mogelijke featureTypeNames van een bron op adhv het id van de bron | getTypeNamesById | {
"repo_name": "B3Partners/b3p-gisviewerConfig",
"path": "src/main/java/nl/b3p/gis/viewer/zoekconfiguratie/ZoekConfiguratieListUtil.java",
"license": "lgpl-3.0",
"size": 3394
} | [
"nl.b3p.gis.viewer.services.HibernateUtil",
"nl.b3p.zoeker.configuratie.Bron",
"org.hibernate.Session"
] | import nl.b3p.gis.viewer.services.HibernateUtil; import nl.b3p.zoeker.configuratie.Bron; import org.hibernate.Session; | import nl.b3p.gis.viewer.services.*; import nl.b3p.zoeker.configuratie.*; import org.hibernate.*; | [
"nl.b3p.gis",
"nl.b3p.zoeker",
"org.hibernate"
] | nl.b3p.gis; nl.b3p.zoeker; org.hibernate; | 709,067 |
//-----------------------------------------------------------------------
public final MetaProperty<DataSource> dataSource() {
return _dataSource;
} | final MetaProperty<DataSource> function() { return _dataSource; } | /**
* The meta-property for the {@code dataSource} property.
* @return the meta-property, not null
*/ | The meta-property for the dataSource property | dataSource | {
"repo_name": "DevStreet/FinanceAnalytics",
"path": "projects/OG-Component/src/main/java/com/opengamma/component/factory/infrastructure/DbConnectorComponentFactory.java",
"license": "apache-2.0",
"size": 31862
} | [
"javax.sql.DataSource",
"org.joda.beans.MetaProperty"
] | import javax.sql.DataSource; import org.joda.beans.MetaProperty; | import javax.sql.*; import org.joda.beans.*; | [
"javax.sql",
"org.joda.beans"
] | javax.sql; org.joda.beans; | 2,533,193 |
@Override
public String toString() {
StringBuilder result = new StringBuilder(256);
sortFields();
int sumPositions = 0;
int sumTerms = 0;
final BytesRef spare = new BytesRef();
for (int i=0; i < sortedFields.length; i++) {
Map.Entry<String,Info> entry = sortedFields[i];
St... | String function() { StringBuilder result = new StringBuilder(256); sortFields(); int sumPositions = 0; int sumTerms = 0; final BytesRef spare = new BytesRef(); for (int i=0; i < sortedFields.length; i++) { Map.Entry<String,Info> entry = sortedFields[i]; String fieldName = entry.getKey(); Info info = entry.getValue(); i... | /**
* Returns a String representation of the index data for debugging purposes.
*
* @return the string representation
*/ | Returns a String representation of the index data for debugging purposes | toString | {
"repo_name": "yintaoxue/read-open-source-code",
"path": "solr-4.7.2/src/org/apache/lucene/index/memory/MemoryIndex.java",
"license": "apache-2.0",
"size": 44614
} | [
"java.util.Map",
"org.apache.lucene.util.BytesRef",
"org.apache.lucene.util.BytesRefHash",
"org.apache.lucene.util.IntBlockPool",
"org.apache.lucene.util.RamUsageEstimator"
] | import java.util.Map; import org.apache.lucene.util.BytesRef; import org.apache.lucene.util.BytesRefHash; import org.apache.lucene.util.IntBlockPool; import org.apache.lucene.util.RamUsageEstimator; | import java.util.*; import org.apache.lucene.util.*; | [
"java.util",
"org.apache.lucene"
] | java.util; org.apache.lucene; | 1,575,060 |
@Test
public void testGet() {
DiskImageDynamic result = dao.get(existingDynamic.getId());
assertNotNull(result);
assertEquals(existingDynamic, result);
} | void function() { DiskImageDynamic result = dao.get(existingDynamic.getId()); assertNotNull(result); assertEquals(existingDynamic, result); } | /**
* Ensures that retrieving the dynamic image works as expected.
*/ | Ensures that retrieving the dynamic image works as expected | testGet | {
"repo_name": "jbeecham/ovirt-engine",
"path": "backend/manager/modules/dal/src/test/java/org/ovirt/engine/core/dao/DiskImageDynamicDAOTest.java",
"license": "apache-2.0",
"size": 5117
} | [
"org.junit.Assert",
"org.ovirt.engine.core.common.businessentities.DiskImageDynamic"
] | import org.junit.Assert; import org.ovirt.engine.core.common.businessentities.DiskImageDynamic; | import org.junit.*; import org.ovirt.engine.core.common.businessentities.*; | [
"org.junit",
"org.ovirt.engine"
] | org.junit; org.ovirt.engine; | 81,634 |
public ScheduledEpochDataEntryStatus evaluateScheduledEpochDataEntryStatus(List<Error> errors) {
boolean hasError= false;
if (this.getEpoch().getStratificationIndicator()){
if (!this.evaluateStratificationIndicator()) {
hasError= true;
errors.add(new Error("The subject n... | ScheduledEpochDataEntryStatus function(List<Error> errors) { boolean hasError= false; if (this.getEpoch().getStratificationIndicator()){ if (!this.evaluateStratificationIndicator()) { hasError= true; errors.add(new Error(STR + this.getEpoch().getName())); } } if (!this.getEligibilityIndicator()) { hasError= true; error... | /**
* Evaluate scheduled epoch data entry status.
*
* @param errors the errors
*
* @return the scheduled epoch data entry status
*/ | Evaluate scheduled epoch data entry status | evaluateScheduledEpochDataEntryStatus | {
"repo_name": "NCIP/c3pr",
"path": "codebase/projects/core/src/java/edu/duke/cabig/c3pr/domain/ScheduledEpoch.java",
"license": "bsd-3-clause",
"size": 23900
} | [
"edu.duke.cabig.c3pr.constants.ScheduledEpochDataEntryStatus",
"java.util.List"
] | import edu.duke.cabig.c3pr.constants.ScheduledEpochDataEntryStatus; import java.util.List; | import edu.duke.cabig.c3pr.constants.*; import java.util.*; | [
"edu.duke.cabig",
"java.util"
] | edu.duke.cabig; java.util; | 2,758,203 |
public Player getEnchanter() {
return enchanter;
} | Player function() { return enchanter; } | /**
* Gets the player enchanting the item
*
* @return enchanting player
*/ | Gets the player enchanting the item | getEnchanter | {
"repo_name": "LapisBlue/Porekit",
"path": "src/main/java/org/bukkit/event/enchantment/EnchantItemEvent.java",
"license": "gpl-3.0",
"size": 3135
} | [
"org.bukkit.entity.Player"
] | import org.bukkit.entity.Player; | import org.bukkit.entity.*; | [
"org.bukkit.entity"
] | org.bukkit.entity; | 1,864,733 |
public void init(String ticket, String workspaceName, Map<String, Object> attributes)
throws RepositoryException
{
// create appropriate strategy for handling session isolation
// TODO: Support full session isolation as described in the JCR specification
String trxId = Alfre... | void function(String ticket, String workspaceName, Map<String, Object> attributes) throws RepositoryException { String trxId = AlfrescoTransactionSupport.getTransactionId(); sessionIsolation = (trxId == null) ? new InnerTransaction() : new OuterTransaction(); sessionIsolation.begin(); this.ticket = ticket; this.attribu... | /**
* Initialise Session
*
* @param ticket authentication ticket
* @param workspaceName workspace name
* @param attributes session attributes
* @throws RepositoryException
*/ | Initialise Session | init | {
"repo_name": "loftuxab/community-edition-old",
"path": "projects/repository/source/java/org/alfresco/jcr/session/SessionImpl.java",
"license": "lgpl-3.0",
"size": 35135
} | [
"java.util.HashMap",
"java.util.Map",
"javax.jcr.RepositoryException",
"org.alfresco.repo.transaction.AlfrescoTransactionSupport"
] | import java.util.HashMap; import java.util.Map; import javax.jcr.RepositoryException; import org.alfresco.repo.transaction.AlfrescoTransactionSupport; | import java.util.*; import javax.jcr.*; import org.alfresco.repo.transaction.*; | [
"java.util",
"javax.jcr",
"org.alfresco.repo"
] | java.util; javax.jcr; org.alfresco.repo; | 1,722,361 |
public Address[] getRecipients()
{
Address[] address = new InternetAddress[recipients.size()];
return this.recipients.toArray(address);
} | Address[] function() { Address[] address = new InternetAddress[recipients.size()]; return this.recipients.toArray(address); } | /**
* Get the list of recipients as an array
*
* @return The recipients
*/ | Get the list of recipients as an array | getRecipients | {
"repo_name": "jaapgeurts/snap",
"path": "src/main/java/snap/mail/Mailer.java",
"license": "gpl-2.0",
"size": 11691
} | [
"javax.mail.Address",
"javax.mail.internet.InternetAddress"
] | import javax.mail.Address; import javax.mail.internet.InternetAddress; | import javax.mail.*; import javax.mail.internet.*; | [
"javax.mail"
] | javax.mail; | 2,154,151 |
public static List<ExecutableElement> getAllMethodsIn(Elements elements, TypeElement type) {
List<ExecutableElement> meths = new ArrayList<ExecutableElement>();
meths.addAll(ElementFilter.methodsIn(type.getEnclosedElements()));
List<TypeElement> alltypes = getSuperTypes(elements, type);
... | static List<ExecutableElement> function(Elements elements, TypeElement type) { List<ExecutableElement> meths = new ArrayList<ExecutableElement>(); meths.addAll(ElementFilter.methodsIn(type.getEnclosedElements())); List<TypeElement> alltypes = getSuperTypes(elements, type); for (TypeElement atype : alltypes) { meths.add... | /**
* Return all methods declared in the given type or any superclass/interface. Note that no
* constructors will be returned. TODO: should this use
* javax.lang.model.util.Elements.getAllMembers(TypeElement) instead of our own getSuperTypes?
*/ | Return all methods declared in the given type or any superclass/interface. Note that no javax.lang.model.util.Elements.getAllMembers(TypeElement) instead of our own getSuperTypes | getAllMethodsIn | {
"repo_name": "CharlesZ-Chen/checker-framework",
"path": "javacutil/src/org/checkerframework/javacutil/ElementUtils.java",
"license": "gpl-2.0",
"size": 19493
} | [
"java.util.ArrayList",
"java.util.Collections",
"java.util.List",
"javax.lang.model.element.ExecutableElement",
"javax.lang.model.element.TypeElement",
"javax.lang.model.util.ElementFilter",
"javax.lang.model.util.Elements"
] | import java.util.ArrayList; import java.util.Collections; import java.util.List; import javax.lang.model.element.ExecutableElement; import javax.lang.model.element.TypeElement; import javax.lang.model.util.ElementFilter; import javax.lang.model.util.Elements; | import java.util.*; import javax.lang.model.element.*; import javax.lang.model.util.*; | [
"java.util",
"javax.lang"
] | java.util; javax.lang; | 1,100,472 |
public void setShapes(ArrayList<Shape> shapes) {
this.shapes = shapes;
} | void function(ArrayList<Shape> shapes) { this.shapes = shapes; } | /**
* set a new ArrayList<Shape>
*
* @param shapes
* the shapes to set
*/ | set a new ArrayList | setShapes | {
"repo_name": "MetSystem/jbpm-designer",
"path": "jbpm-designer-backend/src/main/java/org/jbpm/designer/server/diagram/Diagram.java",
"license": "apache-2.0",
"size": 3656
} | [
"java.util.ArrayList"
] | import java.util.ArrayList; | import java.util.*; | [
"java.util"
] | java.util; | 124,442 |
Set<String> resourcePaths = scanForResourcePaths(location, null, nameFilter, null, null);
if (resourcePaths.isEmpty()) {
return null;
}
else {
return resourcePaths.iterator().next();
}
} | Set<String> resourcePaths = scanForResourcePaths(location, null, nameFilter, null, null); if (resourcePaths.isEmpty()) { return null; } else { return resourcePaths.iterator().next(); } } | /**
* <p>
* Finds the logical path of the first resource that matches the given
* {@code resourceName} by scanning the classpath under the given
* {@code location}.
* </p>
* <p>
* By default, no other condition but the name will be applied to the
* resource name.
* </p>
*
* ... | Finds the logical path of the first resource that matches the given resourceName by scanning the classpath under the given location. By default, no other condition but the name will be applied to the resource name. | findResourcePath | {
"repo_name": "pioto/dandelion",
"path": "dandelion-core/src/main/java/com/github/dandelion/core/util/scanner/ClasspathResourceScanner.java",
"license": "bsd-3-clause",
"size": 14316
} | [
"java.util.Set"
] | import java.util.Set; | import java.util.*; | [
"java.util"
] | java.util; | 1,763,762 |
public void run() {
try {
// make the connection
this.mURLConnection.connect();
} catch (UnknownHostException e) {
this.mError = new ERMgmtUnknownHostException("Unknown/Invalid Host : " + e.getMessage());
... | void function() { try { this.mURLConnection.connect(); } catch (UnknownHostException e) { this.mError = new ERMgmtUnknownHostException(STR + e.getMessage()); } catch (ConnectException e) { this.mError = new ERMgmtConnectException(STR + e.getMessage()); } catch (NoRouteToHostException e) { this.mError = new ERMgmtNoRout... | /**
* This thread actually make the connection
*
* @see java.lang.Runnable#run()
*/ | This thread actually make the connection | run | {
"repo_name": "ibm-datapower/ertool",
"path": "framework/src/com/ibm/datapower/er/mgmt/ERConnection.java",
"license": "apache-2.0",
"size": 24083
} | [
"java.net.ConnectException",
"java.net.NoRouteToHostException",
"java.net.UnknownHostException",
"javax.net.ssl.SSLHandshakeException",
"javax.net.ssl.SSLSocketFactory"
] | import java.net.ConnectException; import java.net.NoRouteToHostException; import java.net.UnknownHostException; import javax.net.ssl.SSLHandshakeException; import javax.net.ssl.SSLSocketFactory; | import java.net.*; import javax.net.ssl.*; | [
"java.net",
"javax.net"
] | java.net; javax.net; | 160,197 |
protected ModelAndView onSubmit(HttpServletRequest request, HttpServletResponse response, Object obj,
BindException errors) throws Exception {
HttpSession httpSession = request.getSession();
String view = getFormView();
if (Context.isAuthenticated()) {
String[] conversionIdList = request.getP... | ModelAndView function(HttpServletRequest request, HttpServletResponse response, Object obj, BindException errors) throws Exception { HttpSession httpSession = request.getSession(); String view = getFormView(); if (Context.isAuthenticated()) { String[] conversionIdList = request.getParameterValues(STR); ProgramWorkflowS... | /**
* The onSubmit function receives the form/command object that was modified by the input form
* and saves it to the db
*
* @see org.springframework.web.servlet.mvc.SimpleFormController#onSubmit(javax.servlet.http.HttpServletRequest,
* javax.servlet.http.HttpServletResponse, java.lang.Object,
* ... | The onSubmit function receives the form/command object that was modified by the input form and saves it to the db | onSubmit | {
"repo_name": "nilusi/Legacy-UI",
"path": "web/src/main/java/org/openmrs/web/controller/program/StateConversionListController.java",
"license": "mpl-2.0",
"size": 4598
} | [
"javax.servlet.http.HttpServletRequest",
"javax.servlet.http.HttpServletResponse",
"javax.servlet.http.HttpSession",
"org.openmrs.api.ProgramWorkflowService",
"org.openmrs.api.context.Context",
"org.openmrs.web.WebConstants",
"org.springframework.validation.BindException",
"org.springframework.web.ser... | import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import javax.servlet.http.HttpSession; import org.openmrs.api.ProgramWorkflowService; import org.openmrs.api.context.Context; import org.openmrs.web.WebConstants; import org.springframework.validation.BindException; import org.... | import javax.servlet.http.*; import org.openmrs.api.*; import org.openmrs.api.context.*; import org.openmrs.web.*; import org.springframework.validation.*; import org.springframework.web.servlet.*; import org.springframework.web.servlet.view.*; | [
"javax.servlet",
"org.openmrs.api",
"org.openmrs.web",
"org.springframework.validation",
"org.springframework.web"
] | javax.servlet; org.openmrs.api; org.openmrs.web; org.springframework.validation; org.springframework.web; | 2,188,469 |
public static FacebookUser createFacebookUser(String accessToken) {
FacebookClient facebookClient = new DefaultFacebookClient(accessToken);
User user = facebookClient.fetchObject("me", User.class);
FacebookUser facebookUser = new FacebookUser(facebookClient, user,
accessToken);
FacebookDataFetcher dataF... | static FacebookUser function(String accessToken) { FacebookClient facebookClient = new DefaultFacebookClient(accessToken); User user = facebookClient.fetchObject("me", User.class); FacebookUser facebookUser = new FacebookUser(facebookClient, user, accessToken); FacebookDataFetcher dataFetcher = new FacebookDataFetcher(... | /**
* This class creates an FacebookUser object with given access token
*
* @param accessToken
* accessToken of user to be created
* @return
*/ | This class creates an FacebookUser object with given access token | createFacebookUser | {
"repo_name": "GalaksiyaIT/socialcrawler",
"path": "test/com/galaksiya/social/TestUtil.java",
"license": "apache-2.0",
"size": 6603
} | [
"com.galaksiya.social.entity.FacebookUser",
"com.galaksiya.social.fetcher.FacebookDataFetcher",
"com.restfb.DefaultFacebookClient",
"com.restfb.FacebookClient",
"com.restfb.types.User",
"org.junit.Assert"
] | import com.galaksiya.social.entity.FacebookUser; import com.galaksiya.social.fetcher.FacebookDataFetcher; import com.restfb.DefaultFacebookClient; import com.restfb.FacebookClient; import com.restfb.types.User; import org.junit.Assert; | import com.galaksiya.social.entity.*; import com.galaksiya.social.fetcher.*; import com.restfb.*; import com.restfb.types.*; import org.junit.*; | [
"com.galaksiya.social",
"com.restfb",
"com.restfb.types",
"org.junit"
] | com.galaksiya.social; com.restfb; com.restfb.types; org.junit; | 2,684,485 |
HRegionLocation getRegionLocation(byte [] tableName, byte [] row,
boolean reload)
throws IOException; | HRegionLocation getRegionLocation(byte [] tableName, byte [] row, boolean reload) throws IOException; | /**
* Find region location hosting passed row
* @param tableName table name
* @param row Row to find.
* @param reload If true do not use cache, otherwise bypass.
* @return Location of row.
* @throws IOException if a remote or network exception occurs
*/ | Find region location hosting passed row | getRegionLocation | {
"repo_name": "ddraj/hbase-trunk-mttr",
"path": "hbase-server/src/main/java/org/apache/hadoop/hbase/client/HConnection.java",
"license": "apache-2.0",
"size": 15268
} | [
"java.io.IOException",
"org.apache.hadoop.hbase.HRegionLocation"
] | import java.io.IOException; import org.apache.hadoop.hbase.HRegionLocation; | import java.io.*; import org.apache.hadoop.hbase.*; | [
"java.io",
"org.apache.hadoop"
] | java.io; org.apache.hadoop; | 57,254 |
public static Calendar floor(Calendar calendar) {
if (calendar == null) {
return null;
}
calendar = (Calendar) calendar.clone();
calendar.set(Calendar.HOUR_OF_DAY, 0);
calendar.set(Calendar.MINUTE, 0);
calendar.set(Calendar.SECOND, 0);
calendar.set... | static Calendar function(Calendar calendar) { if (calendar == null) { return null; } calendar = (Calendar) calendar.clone(); calendar.set(Calendar.HOUR_OF_DAY, 0); calendar.set(Calendar.MINUTE, 0); calendar.set(Calendar.SECOND, 0); calendar.set(Calendar.MILLISECOND, 0); return calendar; } | /**
* Returns a calendar rounded down to the previous midnight.
*/ | Returns a calendar rounded down to the previous midnight | floor | {
"repo_name": "inevo/mondrian",
"path": "src/main/mondrian/util/Schedule.java",
"license": "epl-1.0",
"size": 31331
} | [
"java.util.Calendar"
] | import java.util.Calendar; | import java.util.*; | [
"java.util"
] | java.util; | 2,448,198 |
public void setInputWidgetKeyListener(KeyListener input) {
getInputWidget().setKeyListener(input);
} | void function(KeyListener input) { getInputWidget().setKeyListener(input); } | /**
* Delegate method for the input widget
*/ | Delegate method for the input widget | setInputWidgetKeyListener | {
"repo_name": "awesome-niu/android-floatinglabel-widgets",
"path": "library/src/main/java/com/marvinlabs/widget/floatinglabel/edittext/FloatingLabelEditText.java",
"license": "apache-2.0",
"size": 7203
} | [
"android.text.method.KeyListener"
] | import android.text.method.KeyListener; | import android.text.method.*; | [
"android.text"
] | android.text; | 2,621,868 |
static public DataKeys getDataKeys() {
return keys;
}
private final List<BasicAccount> accounts = new ArrayList<>();
final private AgentDataset agentDataset;
final private BankCheque bankCheque = new BankCheque();
final private BankConstants cons;
private long debtCancellationCount;
privat... | static DataKeys function() { return keys; } private final List<BasicAccount> accounts = new ArrayList<>(); final private AgentDataset agentDataset; final private BankCheque bankCheque = new BankCheque(); final private BankConstants cons; private long debtCancellationCount; private long debtCancellationValue; private fi... | /**
* Returns the data keys.
*
* @return the data keys.
*/ | Returns the data keys | getDataKeys | {
"repo_name": "pseppecher/jamel",
"path": "src/jamel/models/m18/r02/banks/BasicBank.java",
"license": "gpl-3.0",
"size": 28216
} | [
"java.util.ArrayList",
"java.util.LinkedList",
"java.util.List"
] | import java.util.ArrayList; import java.util.LinkedList; import java.util.List; | import java.util.*; | [
"java.util"
] | java.util; | 2,356,439 |
@SuppressWarnings("unchecked")
public Type process(String ref) {
ProcessDefinition answer = new ProcessDefinition();
answer.setRef(ref);
addOutput(answer);
return (Type) this;
}
/**
* <a href="http://camel.apache.org/message-translator.html">Message Translator EIP:<... | @SuppressWarnings(STR) Type function(String ref) { ProcessDefinition answer = new ProcessDefinition(); answer.setRef(ref); addOutput(answer); return (Type) this; } /** * <a href="http: * Adds the custom processor reference to this destination which could be a final * destination, or could be a transformation in a pipel... | /**
* <a href="http://camel.apache.org/message-translator.html">Message Translator EIP:</a>
* Adds the custom processor reference to this destination which could be a final
* destination, or could be a transformation in a pipeline
*
* @param ref reference to a {@link Processor} to lookup in t... | Adds the custom processor reference to this destination which could be a final destination, or could be a transformation in a pipeline | process | {
"repo_name": "oscerd/camel",
"path": "camel-core/src/main/java/org/apache/camel/model/ProcessorDefinition.java",
"license": "apache-2.0",
"size": 144870
} | [
"org.apache.camel.Processor"
] | import org.apache.camel.Processor; | import org.apache.camel.*; | [
"org.apache.camel"
] | org.apache.camel; | 945,674 |
private String getAddressListFromTool(TestType type, HdfsConfiguration conf,
boolean success) throws Exception {
String[] args = new String[1];
switch (type) {
case NAMENODE:
args[0] = Command.NAMENODE.getName();
break;
case NNRPCADDRESSES:
args[0] = Command.NNRPCADDR... | String function(TestType type, HdfsConfiguration conf, boolean success) throws Exception { String[] args = new String[1]; switch (type) { case NAMENODE: args[0] = Command.NAMENODE.getName(); break; case NNRPCADDRESSES: args[0] = Command.NNRPCADDRESSES.getName(); break; } return runTool(conf, args, success); } | /**
* Get address list for a given type of address. Command expected to
* fail if {@code success} is false.
*
* @return returns the success or error output from the tool.
*/ | Get address list for a given type of address. Command expected to fail if success is false | getAddressListFromTool | {
"repo_name": "robzor92/hops",
"path": "hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/hdfs/tools/TestGetConf.java",
"license": "apache-2.0",
"size": 9486
} | [
"org.apache.hadoop.hdfs.HdfsConfiguration",
"org.apache.hadoop.hdfs.tools.GetConf"
] | import org.apache.hadoop.hdfs.HdfsConfiguration; import org.apache.hadoop.hdfs.tools.GetConf; | import org.apache.hadoop.hdfs.*; import org.apache.hadoop.hdfs.tools.*; | [
"org.apache.hadoop"
] | org.apache.hadoop; | 586,553 |
public VpnSiteLinkInner withBgpProperties(VpnLinkBgpSettings bgpProperties) {
this.bgpProperties = bgpProperties;
return this;
} | VpnSiteLinkInner function(VpnLinkBgpSettings bgpProperties) { this.bgpProperties = bgpProperties; return this; } | /**
* Set the set of bgp properties.
*
* @param bgpProperties the bgpProperties value to set
* @return the VpnSiteLinkInner object itself.
*/ | Set the set of bgp properties | withBgpProperties | {
"repo_name": "selvasingh/azure-sdk-for-java",
"path": "sdk/network/mgmt-v2019_07_01/src/main/java/com/microsoft/azure/management/network/v2019_07_01/implementation/VpnSiteLinkInner.java",
"license": "mit",
"size": 5247
} | [
"com.microsoft.azure.management.network.v2019_07_01.VpnLinkBgpSettings"
] | import com.microsoft.azure.management.network.v2019_07_01.VpnLinkBgpSettings; | import com.microsoft.azure.management.network.v2019_07_01.*; | [
"com.microsoft.azure"
] | com.microsoft.azure; | 865,049 |
public static void renamePatterns(Collection<Pattern> patterns, Map<String, Stop> stopById) {
LOG.info("Generating unique names for patterns");
Map<String, PatternNamingInfo> namingInfoForRoute = new HashMap<>();
for (Pattern pattern : patterns) {
if (pattern.associatedTrips.is... | static void function(Collection<Pattern> patterns, Map<String, Stop> stopById) { LOG.info(STR); Map<String, PatternNamingInfo> namingInfoForRoute = new HashMap<>(); for (Pattern pattern : patterns) { if (pattern.associatedTrips.isEmpty() pattern.orderedStops.isEmpty()) continue; PatternNamingInfo namingInfo = namingInf... | /**
* Destructively rename the supplied collection of patterns.
* This process requires access to all the stops in the feed.
* Some validators already cache a map of all the stops. There's probably a cleaner way to do this.
*/ | Destructively rename the supplied collection of patterns. This process requires access to all the stops in the feed. Some validators already cache a map of all the stops. There's probably a cleaner way to do this | renamePatterns | {
"repo_name": "conveyal/gtfs-lib",
"path": "src/main/java/com/conveyal/gtfs/PatternFinder.java",
"license": "bsd-2-clause",
"size": 10986
} | [
"com.conveyal.gtfs.model.Pattern",
"com.conveyal.gtfs.model.Stop",
"com.google.common.collect.HashMultimap",
"com.google.common.collect.Multimap",
"java.util.ArrayList",
"java.util.Collection",
"java.util.HashMap",
"java.util.HashSet",
"java.util.Iterator",
"java.util.List",
"java.util.Locale",
... | import com.conveyal.gtfs.model.Pattern; import com.conveyal.gtfs.model.Stop; import com.google.common.collect.HashMultimap; import com.google.common.collect.Multimap; import java.util.ArrayList; import java.util.Collection; import java.util.HashMap; import java.util.HashSet; import java.util.Iterator; import java.util.... | import com.conveyal.gtfs.model.*; import com.google.common.collect.*; import java.util.*; | [
"com.conveyal.gtfs",
"com.google.common",
"java.util"
] | com.conveyal.gtfs; com.google.common; java.util; | 2,317,009 |
public void rmdir(String dirName) throws IOException
{
int req_id = generateNextRequestID();
TypesWriter tw = new TypesWriter();
tw.writeString(dirName, charsetName);
sendMessage(Packet.SSH_FXP_RMDIR, req_id, tw.getBytes());
expectStatusOKMessage(req_id);
} | void function(String dirName) throws IOException { int req_id = generateNextRequestID(); TypesWriter tw = new TypesWriter(); tw.writeString(dirName, charsetName); sendMessage(Packet.SSH_FXP_RMDIR, req_id, tw.getBytes()); expectStatusOKMessage(req_id); } | /**
* Remove an empty directory.
*
* @param dirName See the {@link SFTPv3Client comment} for the class for more details.
* @throws IOException
*/ | Remove an empty directory | rmdir | {
"repo_name": "mattb243/AmazonEC2Matlab",
"path": "third-party/ganymed-ssh2-build250/src/ch/ethz/ssh2/SFTPv3Client.java",
"license": "bsd-3-clause",
"size": 37607
} | [
"ch.ethz.ssh2.packets.TypesWriter",
"ch.ethz.ssh2.sftp.Packet",
"java.io.IOException"
] | import ch.ethz.ssh2.packets.TypesWriter; import ch.ethz.ssh2.sftp.Packet; import java.io.IOException; | import ch.ethz.ssh2.packets.*; import ch.ethz.ssh2.sftp.*; import java.io.*; | [
"ch.ethz.ssh2",
"java.io"
] | ch.ethz.ssh2; java.io; | 392,628 |
public Timestamp getUpdated();
public static final String COLUMNNAME_UpdatedBy = "UpdatedBy"; | Timestamp function(); public static final String COLUMNNAME_UpdatedBy = STR; | /** Get Updated.
* Date this record was updated
*/ | Get Updated. Date this record was updated | getUpdated | {
"repo_name": "pplatek/adempiere",
"path": "base/src/org/compiere/model/I_AD_PrintPaper.java",
"license": "gpl-2.0",
"size": 7598
} | [
"java.sql.Timestamp"
] | import java.sql.Timestamp; | import java.sql.*; | [
"java.sql"
] | java.sql; | 87,118 |
protected BrowserUIPresenter constructAuxiliaryBrowsingContextUiController(WindowBrowsingContext windowContext) {
return new SimpleBrowserUIPresenter(windowContext);
}
| BrowserUIPresenter function(WindowBrowsingContext windowContext) { return new SimpleBrowserUIPresenter(windowContext); } | /**
* Constructs UI controller for given window context.
*
* @param windowContext Window context.
* @return Constructed UI controller.
*/ | Constructs UI controller for given window context | constructAuxiliaryBrowsingContextUiController | {
"repo_name": "ITman1/ScriptBox",
"path": "src/main/java/org/fit/cssbox/scriptbox/demo/browser/SimpleBrowsingUnit.java",
"license": "gpl-2.0",
"size": 5042
} | [
"org.fit.cssbox.scriptbox.browser.WindowBrowsingContext"
] | import org.fit.cssbox.scriptbox.browser.WindowBrowsingContext; | import org.fit.cssbox.scriptbox.browser.*; | [
"org.fit.cssbox"
] | org.fit.cssbox; | 1,105,245 |
public IDocuments[] ReadTheSVMXML(File testFile) {
SaxParseService sax = new SaxParseService();
IDocuments[] categoryDocs = null;
try {
IDocuments[] docsArray = sax.ReadTheXML(testFile);
// Put category name into CategoryDocument's category
String fileName = testFile.getName();
String categoryName... | IDocuments[] function(File testFile) { SaxParseService sax = new SaxParseService(); IDocuments[] categoryDocs = null; try { IDocuments[] docsArray = sax.ReadTheXML(testFile); String fileName = testFile.getName(); String categoryName = fileName.substring(0, fileName.lastIndexOf(".")); Documents[] tempDocuments = new Doc... | /**
* <p>
* CreateDate : 2014-10-28
* </p>
* <p>
* Set the category name to every document's title.
* </p>
* <p>
* Use the titleVector to calculate subsequently.
* </p>
*/ | CreateDate : 2014-10-28 Set the category name to every document's title. Use the titleVector to calculate subsequently. | ReadTheSVMXML | {
"repo_name": "xiaoliable/EssayClassifier",
"path": "src/com/winga/xxl/classifier/data/exception/SaxParseService.java",
"license": "apache-2.0",
"size": 14540
} | [
"com.winga.xxl.classifier.data.store.Documents",
"com.winga.xxl.classifier.data.store.IDocuments",
"java.io.File",
"java.util.Map",
"java.util.TreeMap"
] | import com.winga.xxl.classifier.data.store.Documents; import com.winga.xxl.classifier.data.store.IDocuments; import java.io.File; import java.util.Map; import java.util.TreeMap; | import com.winga.xxl.classifier.data.store.*; import java.io.*; import java.util.*; | [
"com.winga.xxl",
"java.io",
"java.util"
] | com.winga.xxl; java.io; java.util; | 126,840 |
public static <T extends GraphObject> T create(JSONObject json, Class<T> graphObjectClass) {
return createGraphObjectProxy(graphObjectClass, json);
} | static <T extends GraphObject> T function(JSONObject json, Class<T> graphObjectClass) { return createGraphObjectProxy(graphObjectClass, json); } | /**
* Creates a GraphObject-derived proxy that provides typed access to the data in an underlying JSONObject.
* @param json the JSONObject containing the data to be exposed
* @param graphObjectClass the GraphObject-derived type to return
* @return a graphObjectClass that represents t... | Creates a GraphObject-derived proxy that provides typed access to the data in an underlying JSONObject | create | {
"repo_name": "ashokslsk/yelo-android",
"path": "libraries/facebookSDK/src/main/java/com/facebook/model/GraphObject.java",
"license": "apache-2.0",
"size": 39065
} | [
"org.json.JSONObject"
] | import org.json.JSONObject; | import org.json.*; | [
"org.json"
] | org.json; | 1,355,006 |
private void fixEmptyMnc(List<CellInfo> cellInfo) {
if (Build.VERSION.SDK_INT < 28 || cellInfo == null) {
return;
}
String networkOperator = telephonyManager.getNetworkOperator();
if (networkOperator.length() < 5 || networkOperator.charAt(3) != '0') {
return... | void function(List<CellInfo> cellInfo) { if (Build.VERSION.SDK_INT < 28 cellInfo == null) { return; } String networkOperator = telephonyManager.getNetworkOperator(); if (networkOperator.length() < 5 networkOperator.charAt(3) != '0') { return; } String mnc = networkOperator.substring(3); for (CellInfo info : cellInfo) {... | /**
* This will fix empty MNC since Android 9 with 0-prefixed MNCs.
* Issue: https://issuetracker.google.com/issues/113560852
*/ | This will fix empty MNC since Android 9 with 0-prefixed MNCs. Issue: HREF | fixEmptyMnc | {
"repo_name": "microg/android_packages_apps_UnifiedNlp",
"path": "api/src/main/java/org/microg/nlp/api/CellBackendHelper.java",
"license": "apache-2.0",
"size": 22410
} | [
"android.os.Build",
"android.telephony.CellIdentity",
"android.telephony.CellInfo",
"android.telephony.CellInfoGsm",
"android.telephony.CellInfoLte",
"android.telephony.CellInfoWcdma",
"java.lang.reflect.Field",
"java.util.List"
] | import android.os.Build; import android.telephony.CellIdentity; import android.telephony.CellInfo; import android.telephony.CellInfoGsm; import android.telephony.CellInfoLte; import android.telephony.CellInfoWcdma; import java.lang.reflect.Field; import java.util.List; | import android.os.*; import android.telephony.*; import java.lang.reflect.*; import java.util.*; | [
"android.os",
"android.telephony",
"java.lang",
"java.util"
] | android.os; android.telephony; java.lang; java.util; | 577,045 |
public static String readStringProperty(String processorType, String processorTag, Map<String, Object> configuration,
String propertyName) {
return readStringProperty(processorType, processorTag, configuration, propertyName, null);
} | static String function(String processorType, String processorTag, Map<String, Object> configuration, String propertyName) { return readStringProperty(processorType, processorTag, configuration, propertyName, null); } | /**
* Returns and removes the specified property from the specified configuration map.
*
* If the property value isn't of type string an {@link ElasticsearchParseException} is thrown.
* If the property is missing an {@link ElasticsearchParseException} is thrown
*/ | Returns and removes the specified property from the specified configuration map. If the property value isn't of type string an <code>ElasticsearchParseException</code> is thrown. If the property is missing an <code>ElasticsearchParseException</code> is thrown | readStringProperty | {
"repo_name": "sreeramjayan/elasticsearch",
"path": "core/src/main/java/org/elasticsearch/ingest/ConfigurationUtils.java",
"license": "apache-2.0",
"size": 13104
} | [
"java.util.Map"
] | import java.util.Map; | import java.util.*; | [
"java.util"
] | java.util; | 2,469,186 |
public Element lastElementSibling() {
List<Element> siblings = parent().childElementsList();
return siblings.size() > 1 ? siblings.get(siblings.size() - 1) : null;
} | Element function() { List<Element> siblings = parent().childElementsList(); return siblings.size() > 1 ? siblings.get(siblings.size() - 1) : null; } | /**
* Gets the last element sibling of this element
* @return the last sibling that is an element (aka the parent's last element child)
*/ | Gets the last element sibling of this element | lastElementSibling | {
"repo_name": "SpoonLabs/astor",
"path": "examples/librepair-experiments-jhy-jsoup-285353482-20171009-062400_bugonly_with_package_info/src/main/java/org/jsoup/nodes/Element.java",
"license": "gpl-2.0",
"size": 50843
} | [
"java.util.List"
] | import java.util.List; | import java.util.*; | [
"java.util"
] | java.util; | 1,260,941 |
@Test
public void testJongo() {
// Loads the application context.
load();
assertBeanExists(Jongo.class);
final Jongo jongo = context.getBean(Jongo.class);
Assert.assertNotNull("Any instance of the class has been created Jongo", jongo);
Assert.assertEquals("The e... | void function() { load(); assertBeanExists(Jongo.class); final Jongo jongo = context.getBean(Jongo.class); Assert.assertNotNull(STR, jongo); Assert.assertEquals(STR, DATABASE_NAME, jongo.getDatabase().getName()); } | /**
* Test for using of Jongo class instance.
*/ | Test for using of Jongo class instance | testJongo | {
"repo_name": "arhs/spring-boot-autoconfigure",
"path": "src/test/java/com/arhs/spring/boot/autoconfigure/jongo/JongoAutoConfigurationTest.java",
"license": "mit",
"size": 2677
} | [
"org.jongo.Jongo",
"org.junit.Assert"
] | import org.jongo.Jongo; import org.junit.Assert; | import org.jongo.*; import org.junit.*; | [
"org.jongo",
"org.junit"
] | org.jongo; org.junit; | 867,910 |
private void appendToPass(DetectorFactory factory, AnalysisPass pass) {
pass.append(factory);
} | void function(DetectorFactory factory, AnalysisPass pass) { pass.append(factory); } | /**
* Append a DetectorFactory to the end position in an AnalysisPass. The
* DetectorFactory must be a member of the pass.
*/ | Append a DetectorFactory to the end position in an AnalysisPass. The DetectorFactory must be a member of the pass | appendToPass | {
"repo_name": "OpenNTF/FindBug-for-Domino-Designer",
"path": "findBugsEclipsePlugin/src/edu/umd/cs/findbugs/plan/ExecutionPlan.java",
"license": "lgpl-3.0",
"size": 21670
} | [
"edu.umd.cs.findbugs.DetectorFactory"
] | import edu.umd.cs.findbugs.DetectorFactory; | import edu.umd.cs.findbugs.*; | [
"edu.umd.cs"
] | edu.umd.cs; | 338,653 |
ArrayList getValues()
{
return this._values;
}
| ArrayList getValues() { return this._values; } | /**
* Obtain values contained in this buckets. Values are ordered to match
* their keys, which be be obtained by calling <code>getKeys()</code>.
*
* As an optimization, the Vector returned is the instance member
* of this class. Please don't modify outside the scope of this class.
... | Obtain values contained in this buckets. Values are ordered to match their keys, which be be obtained by calling <code>getKeys()</code>. As an optimization, the Vector returned is the instance member of this class. Please don't modify outside the scope of this class | getValues | {
"repo_name": "kcsl/immutability-benchmark",
"path": "benchmark-applications/reiminfer-oopsla-2012/source/Jdbm/src/jdbm/htree/HashBucket.java",
"license": "mit",
"size": 9460
} | [
"java.util.ArrayList"
] | import java.util.ArrayList; | import java.util.*; | [
"java.util"
] | java.util; | 2,107,732 |
protected static final ELineType randomLineType(final Random rand) {
return ChartExample.LINE_TYPES[rand
.nextInt(ChartExample.LINE_TYPES.length)];
}
| static final ELineType function(final Random rand) { return ChartExample.LINE_TYPES[rand .nextInt(ChartExample.LINE_TYPES.length)]; } | /**
* Obtain a random line type
*
* @param rand
* the random number generator
* @return the line type
*/ | Obtain a random line type | randomLineType | {
"repo_name": "optimizationBenchmarking/utils-base",
"path": "src/test/java/examples/org/optimizationBenchmarking/utils/chart/ChartExample.java",
"license": "gpl-3.0",
"size": 6895
} | [
"java.util.Random"
] | import java.util.Random; | import java.util.*; | [
"java.util"
] | java.util; | 1,919,678 |
public FileObject[] findJarFiles() throws KettleFileException; | FileObject[] function() throws KettleFileException; | /**
* Find all the jar files in this plugin folder
*
* @return The jar files
* @throws KettleFileException
* In case there is a problem reading
*/ | Find all the jar files in this plugin folder | findJarFiles | {
"repo_name": "apratkin/pentaho-kettle",
"path": "core/src/org/pentaho/di/core/plugins/PluginFolderInterface.java",
"license": "apache-2.0",
"size": 1764
} | [
"org.apache.commons.vfs.FileObject",
"org.pentaho.di.core.exception.KettleFileException"
] | import org.apache.commons.vfs.FileObject; import org.pentaho.di.core.exception.KettleFileException; | import org.apache.commons.vfs.*; import org.pentaho.di.core.exception.*; | [
"org.apache.commons",
"org.pentaho.di"
] | org.apache.commons; org.pentaho.di; | 927,490 |
public void testSublistConcurrentModificationException() {
ListMultimap<String, Integer> multimap = create();
multimap.putAll("foo", asList(1, 2, 3, 4, 5));
List<Integer> list = multimap.get("foo");
ASSERT.that(multimap.get("foo")).has().allOf(1, 2, 3, 4, 5).inOrder();
List<Integer> sublist = list... | void function() { ListMultimap<String, Integer> multimap = create(); multimap.putAll("foo", asList(1, 2, 3, 4, 5)); List<Integer> list = multimap.get("foo"); ASSERT.that(multimap.get("foo")).has().allOf(1, 2, 3, 4, 5).inOrder(); List<Integer> sublist = list.subList(0, 5); ASSERT.that(sublist).has().allOf(1, 2, 3, 4, 5)... | /**
* Test throwing ConcurrentModificationException when a sublist's ancestor's
* delegate changes.
*/ | Test throwing ConcurrentModificationException when a sublist's ancestor's delegate changes | testSublistConcurrentModificationException | {
"repo_name": "sensui/guava-libraries",
"path": "guava-tests/test/com/google/common/collect/ArrayListMultimapTest.java",
"license": "apache-2.0",
"size": 6398
} | [
"java.util.Arrays",
"java.util.ConcurrentModificationException",
"java.util.List",
"org.truth0.Truth"
] | import java.util.Arrays; import java.util.ConcurrentModificationException; import java.util.List; import org.truth0.Truth; | import java.util.*; import org.truth0.*; | [
"java.util",
"org.truth0"
] | java.util; org.truth0; | 1,984,553 |
@TruffleBoundary
public static void putRNGState() {
int[] seeds = currentGenerator().getSeeds();
seeds[0] = currentKind().ordinal() + 100 * currentNormKind().ordinal();
RContext.getInstance().stateRNG.setCurrentSeeds(seeds);
} | static void function() { int[] seeds = currentGenerator().getSeeds(); seeds[0] = currentKind().ordinal() + 100 * currentNormKind().ordinal(); RContext.getInstance().stateRNG.setCurrentSeeds(seeds); } | /**
* Saves the state of RNG into global environment under {@code .Random.seed}. This should be
* invoked after any random numbers generation.
*/ | Saves the state of RNG into global environment under .Random.seed. This should be invoked after any random numbers generation | putRNGState | {
"repo_name": "akunft/fastr",
"path": "com.oracle.truffle.r.runtime/src/com/oracle/truffle/r/runtime/rng/RRNG.java",
"license": "gpl-2.0",
"size": 17998
} | [
"com.oracle.truffle.r.runtime.context.RContext"
] | import com.oracle.truffle.r.runtime.context.RContext; | import com.oracle.truffle.r.runtime.context.*; | [
"com.oracle.truffle"
] | com.oracle.truffle; | 768,330 |
public void onActivityResult(int requestCode, int resultCode, Intent intent) {
} | void function(int requestCode, int resultCode, Intent intent) { } | /**
* Called when an activity you launched exits, giving you the requestCode you started it with,
* the resultCode it returned, and any additional data from it.
*
* @param requestCode The request code originally supplied to startActivityForResult(),
* allowing you to identify who this r... | Called when an activity you launched exits, giving you the requestCode you started it with, the resultCode it returned, and any additional data from it | onActivityResult | {
"repo_name": "gazeing/rebBackUp",
"path": "CordovaLib/src/org/apache/cordova/CordovaPlugin.java",
"license": "apache-2.0",
"size": 6624
} | [
"android.content.Intent"
] | import android.content.Intent; | import android.content.*; | [
"android.content"
] | android.content; | 2,017,605 |
private void initialize() {
long totalSize = 0;
final FileIterator i = new FileIterator(
m_owningCache.getCacheDirectory(), FileCacheFilter.INSTANCE, true
);
while ( i.hasNext() ) {
if ( m_abortInitialize || m_stop )
return;
final F... | void function() { long totalSize = 0; final FileIterator i = new FileIterator( m_owningCache.getCacheDirectory(), FileCacheFilter.INSTANCE, true ); while ( i.hasNext() ) { if ( m_abortInitialize m_stop ) return; final File file = i.next(); final long size = file.length(); if ( size > 0 ) try { addFile( file ); totalSiz... | /**
* Initialize by creating a set of all files in the cache, totaling their
* sizes, and setting the cache's size to said total.
*/ | Initialize by creating a set of all files in the cache, totaling their sizes, and setting the cache's size to said total | initialize | {
"repo_name": "MarinnaCole/LightZone",
"path": "lightcrafts/src/com/lightcrafts/utils/filecache/FileCacheMonitor.java",
"license": "bsd-3-clause",
"size": 9905
} | [
"com.lightcrafts.utils.file.FileIterator",
"java.io.File",
"java.io.IOException"
] | import com.lightcrafts.utils.file.FileIterator; import java.io.File; import java.io.IOException; | import com.lightcrafts.utils.file.*; import java.io.*; | [
"com.lightcrafts.utils",
"java.io"
] | com.lightcrafts.utils; java.io; | 907,261 |
public ASTContainer parseQuery2(final String queryStr, final String baseURI)
throws MalformedQueryException {
final long startTime = System.nanoTime();
if(log.isInfoEnabled())
log.info(queryStr);
try {
final ASTQueryContainer qc = S... | ASTContainer function(final String queryStr, final String baseURI) throws MalformedQueryException { final long startTime = System.nanoTime(); if(log.isInfoEnabled()) log.info(queryStr); try { final ASTQueryContainer qc = SyntaxTreeBuilder.parseQuery(queryStr); StringEscapesProcessor.process(qc); BaseDeclProcessor.proce... | /**
* Parse a SPARQL query.
*
* @param queryStr
* The query.
* @param baseURI
* The base URI.
*
* @return The AST model for that query.
*
* @throws MalformedQueryException
*/ | Parse a SPARQL query | parseQuery2 | {
"repo_name": "blazegraph/database",
"path": "bigdata-core/bigdata-sails/src/java/com/bigdata/rdf/sail/sparql/Bigdata2ASTSPARQLParser.java",
"license": "gpl-2.0",
"size": 18912
} | [
"com.bigdata.rdf.sail.sparql.ast.ASTQueryContainer",
"com.bigdata.rdf.sail.sparql.ast.ParseException",
"com.bigdata.rdf.sail.sparql.ast.SyntaxTreeBuilder",
"com.bigdata.rdf.sail.sparql.ast.TokenMgrError",
"com.bigdata.rdf.sail.sparql.ast.VisitorException",
"com.bigdata.rdf.sparql.ast.ASTContainer",
"com... | import com.bigdata.rdf.sail.sparql.ast.ASTQueryContainer; import com.bigdata.rdf.sail.sparql.ast.ParseException; import com.bigdata.rdf.sail.sparql.ast.SyntaxTreeBuilder; import com.bigdata.rdf.sail.sparql.ast.TokenMgrError; import com.bigdata.rdf.sail.sparql.ast.VisitorException; import com.bigdata.rdf.sparql.ast.ASTC... | import com.bigdata.rdf.sail.sparql.ast.*; import com.bigdata.rdf.sparql.ast.*; import java.util.*; import org.openrdf.query.*; | [
"com.bigdata.rdf",
"java.util",
"org.openrdf.query"
] | com.bigdata.rdf; java.util; org.openrdf.query; | 2,046,522 |
public boolean touchDown (int screenX, int screenY, int pointer, int button) {
if (screenX < viewport.getScreenX() || screenX >= viewport.getScreenX() + viewport.getScreenWidth()) return false;
if (Gdx.graphics.getHeight() - screenY < viewport.getScreenY()
|| Gdx.graphics.getHeight() - screenY >= viewport.get... | boolean function (int screenX, int screenY, int pointer, int button) { if (screenX < viewport.getScreenX() screenX >= viewport.getScreenX() + viewport.getScreenWidth()) return false; if (Gdx.graphics.getHeight() - screenY < viewport.getScreenY() Gdx.graphics.getHeight() - screenY >= viewport.getScreenY() + viewport.get... | /** Applies a touch down event to the stage and returns true if an actor in the scene {@link Event#handle() handled} the
* event. */ | Applies a touch down event to the stage and returns true if an actor in the scene <code>Event#handle() handled</code> the | touchDown | {
"repo_name": "czyzby/libgdx",
"path": "gdx/src/com/badlogic/gdx/scenes/scene2d/Stage.java",
"license": "apache-2.0",
"size": 32028
} | [
"com.badlogic.gdx.Gdx",
"com.badlogic.gdx.scenes.scene2d.InputEvent",
"com.badlogic.gdx.utils.Pools"
] | import com.badlogic.gdx.Gdx; import com.badlogic.gdx.scenes.scene2d.InputEvent; import com.badlogic.gdx.utils.Pools; | import com.badlogic.gdx.*; import com.badlogic.gdx.scenes.scene2d.*; import com.badlogic.gdx.utils.*; | [
"com.badlogic.gdx"
] | com.badlogic.gdx; | 2,220,557 |
boolean sniff(ExtractorInput input) throws IOException, InterruptedException; | boolean sniff(ExtractorInput input) throws IOException, InterruptedException; | /**
* Returns whether this extractor can extract samples from the {@link ExtractorInput}, which must
* provide data from the start of the stream.
* <p>
* If {@code true} is returned, the {@code input}'s reading position may have been modified.
* Otherwise, only its peek position may have been modified.
... | Returns whether this extractor can extract samples from the <code>ExtractorInput</code>, which must provide data from the start of the stream. If true is returned, the input's reading position may have been modified. Otherwise, only its peek position may have been modified | sniff | {
"repo_name": "saki4510t/ExoPlayer",
"path": "library/core/src/main/java/com/google/android/exoplayer2/extractor/Extractor.java",
"license": "apache-2.0",
"size": 5216
} | [
"java.io.IOException"
] | import java.io.IOException; | import java.io.*; | [
"java.io"
] | java.io; | 512,890 |
public static sbasToType fromPerUnaligned(byte[] encodedBytes) {
sbasToType result = new sbasToType();
result.decodePerUnaligned(new BitStreamReader(encodedBytes));
return result;
} | static sbasToType function(byte[] encodedBytes) { sbasToType result = new sbasToType(); result.decodePerUnaligned(new BitStreamReader(encodedBytes)); return result; } | /**
* Creates a new sbasToType from encoded stream.
*/ | Creates a new sbasToType from encoded stream | fromPerUnaligned | {
"repo_name": "google/supl-client",
"path": "src/main/java/com/google/location/suplclient/asn1/supl2/lpp/NavModel_SBAS_ECEF.java",
"license": "apache-2.0",
"size": 45283
} | [
"com.google.location.suplclient.asn1.base.BitStreamReader"
] | import com.google.location.suplclient.asn1.base.BitStreamReader; | import com.google.location.suplclient.asn1.base.*; | [
"com.google.location"
] | com.google.location; | 348,347 |
List<String> tags = new ArrayList<String>(4);
addActorPathTagsTo(actorPath, tags);
addSystemTagsTo(actorPath, tags);
addTypeTagsTo(actorPath, actorClassName, tags);
return tags.toArray(new String[tags.size()]);
} | List<String> tags = new ArrayList<String>(4); addActorPathTagsTo(actorPath, tags); addSystemTagsTo(actorPath, tags); addTypeTagsTo(actorPath, actorClassName, tags); return tags.toArray(new String[tags.size()]); } | /**
* Computes the tags for the given {@code actorPath} and {@code actor} instances.
*
* @param actorPath the actor path; never {@code null}
* @param actorClassName the actor instance; may be {@code null}
* @return non-{@code null} array of tags
*/ | Computes the tags for the given actorPath and actor instances | getTags | {
"repo_name": "eigengo/monitor",
"path": "agent-akka/src/main/java/org/eigengo/monitor/agent/akka/ActorPathTagger.java",
"license": "apache-2.0",
"size": 1429
} | [
"java.util.ArrayList",
"java.util.List"
] | import java.util.ArrayList; import java.util.List; | import java.util.*; | [
"java.util"
] | java.util; | 1,697,793 |
@Deployment
public void testVariableNamesScope() {
// After starting the process, the task in the subprocess should be active
Map<String, Object> varMap = new HashMap<String, Object>();
varMap.put("test", "test");
varMap.put("helloWorld", "helloWorld");
ProcessInstance pi = runtimeService.s... | void function() { Map<String, Object> varMap = new HashMap<String, Object>(); varMap.put("test", "test"); varMap.put(STR, STR); ProcessInstance pi = runtimeService.startProcessInstanceByKey(STR, varMap); Task subProcessTask = taskService.createTaskQuery() .processInstanceId(pi.getId()) .singleResult(); runtimeService.s... | /**
* A testcase to produce and fix issue ACT-862.
* @author Roman Smirnov
* @author Christian Lipphardt
*/ | A testcase to produce and fix issue ACT-862 | testVariableNamesScope | {
"repo_name": "LuisePufahl/camunda-bpm-platform_batchProcessing",
"path": "engine/src/test/java/org/camunda/bpm/engine/test/db/VariableScopeTest.java",
"license": "apache-2.0",
"size": 8326
} | [
"java.util.HashMap",
"java.util.List",
"java.util.Map",
"org.camunda.bpm.engine.impl.interceptor.Command",
"org.camunda.bpm.engine.runtime.ProcessInstance",
"org.camunda.bpm.engine.task.Task"
] | import java.util.HashMap; import java.util.List; import java.util.Map; import org.camunda.bpm.engine.impl.interceptor.Command; import org.camunda.bpm.engine.runtime.ProcessInstance; import org.camunda.bpm.engine.task.Task; | import java.util.*; import org.camunda.bpm.engine.impl.interceptor.*; import org.camunda.bpm.engine.runtime.*; import org.camunda.bpm.engine.task.*; | [
"java.util",
"org.camunda.bpm"
] | java.util; org.camunda.bpm; | 997,591 |
default Offset<Long> byLessThan(Long value) {
return Assertions.byLessThan(value);
} | default Offset<Long> byLessThan(Long value) { return Assertions.byLessThan(value); } | /**
* Assertions entry point for Long {@link Offset} to use with isCloseTo assertions.
* <p>
* Typical usage :
* <pre><code class='java'> assertThat(5l).isCloseTo(7l, byLessThan(2l));</code></pre>
*
* @param value the value of the offset.
* @return the created {@code Offset}.
* @throws NullPoint... | Assertions entry point for Long <code>Offset</code> to use with isCloseTo assertions. Typical usage : <code> assertThat(5l).isCloseTo(7l, byLessThan(2l));</code></code> | byLessThan | {
"repo_name": "ChrisA89/assertj-core",
"path": "src/main/java/org/assertj/core/api/WithAssertions.java",
"license": "apache-2.0",
"size": 102131
} | [
"org.assertj.core.data.Offset"
] | import org.assertj.core.data.Offset; | import org.assertj.core.data.*; | [
"org.assertj.core"
] | org.assertj.core; | 242,332 |
public CoreAccountInfo addTestAccountThenSigninAndEnableSync(
@Nullable SyncService syncService) {
assert !mIsSignedIn : "An account is already signed in!";
CoreAccountInfo coreAccountInfo = addAccountAndWaitForSeeding(TEST_ACCOUNT_EMAIL);
SigninTestUtil.signinAndEnableSync(coreA... | CoreAccountInfo function( @Nullable SyncService syncService) { assert !mIsSignedIn : STR; CoreAccountInfo coreAccountInfo = addAccountAndWaitForSeeding(TEST_ACCOUNT_EMAIL); SigninTestUtil.signinAndEnableSync(coreAccountInfo, syncService); mIsSignedIn = true; return coreAccountInfo; } | /**
* Adds and signs in an account with the default name and enables sync.
*
* This method invokes native code. It shouldn't be called in a Robolectric test.
*
* @param syncService SyncService object to set up sync, if null, sync won't
* start.
*/ | Adds and signs in an account with the default name and enables sync. This method invokes native code. It shouldn't be called in a Robolectric test | addTestAccountThenSigninAndEnableSync | {
"repo_name": "chromium/chromium",
"path": "chrome/test/android/javatests/src/org/chromium/chrome/test/util/browser/signin/AccountManagerTestRule.java",
"license": "bsd-3-clause",
"size": 13911
} | [
"androidx.annotation.Nullable",
"org.chromium.chrome.browser.sync.SyncService",
"org.chromium.components.signin.base.CoreAccountInfo"
] | import androidx.annotation.Nullable; import org.chromium.chrome.browser.sync.SyncService; import org.chromium.components.signin.base.CoreAccountInfo; | import androidx.annotation.*; import org.chromium.chrome.browser.sync.*; import org.chromium.components.signin.base.*; | [
"androidx.annotation",
"org.chromium.chrome",
"org.chromium.components"
] | androidx.annotation; org.chromium.chrome; org.chromium.components; | 2,237,432 |
private void updatePropertiesCache() {
final Map<String, String> newProps = new HashMap<String, String>();
for(final ProviderInfo info : this.providerInfos) {
newProps.putAll(info.properties);
}
this.cachedProperties = newProps;
if ( this.logger.isDebugEnabled() )... | void function() { final Map<String, String> newProps = new HashMap<String, String>(); for(final ProviderInfo info : this.providerInfos) { newProps.putAll(info.properties); } this.cachedProperties = newProps; if ( this.logger.isDebugEnabled() ) { this.logger.debug(STR, this.cachedProperties); } } | /**
* Update the properties cache.
*/ | Update the properties cache | updatePropertiesCache | {
"repo_name": "Nimco/sling",
"path": "bundles/extensions/discovery/standalone/src/main/java/org/apache/sling/discovery/impl/standalone/NoClusterDiscoveryService.java",
"license": "apache-2.0",
"size": 8924
} | [
"java.util.HashMap",
"java.util.Map"
] | import java.util.HashMap; import java.util.Map; | import java.util.*; | [
"java.util"
] | java.util; | 2,733,268 |
public List<BasicDBObject> formAttackInsert(Champion champ) {
List<BasicDBObject> attacks = new ArrayList<BasicDBObject>();
for (Attack a : champ.getAttacks()) {
BasicDBObject attack = new BasicDBObject();
attack.put(StaticVariables.ID, a.getId());
attack.put(StaticVariables.NAME, a.getName());
attac... | List<BasicDBObject> function(Champion champ) { List<BasicDBObject> attacks = new ArrayList<BasicDBObject>(); for (Attack a : champ.getAttacks()) { BasicDBObject attack = new BasicDBObject(); attack.put(StaticVariables.ID, a.getId()); attack.put(StaticVariables.NAME, a.getName()); attack.put(StaticVariables.DAMAGE, a.ge... | /**
*
* Attacks Section
*
*/ | Attacks Section | formAttackInsert | {
"repo_name": "klintT/throneofkings",
"path": "KingsGame/src/main/java/com/starShipNub/KingsGame/utilities/BaseDAO.java",
"license": "apache-2.0",
"size": 13869
} | [
"com.mongodb.BasicDBObject",
"java.util.ArrayList",
"java.util.List"
] | import com.mongodb.BasicDBObject; import java.util.ArrayList; import java.util.List; | import com.mongodb.*; import java.util.*; | [
"com.mongodb",
"java.util"
] | com.mongodb; java.util; | 1,047,673 |
@CheckReturnValue
public final FluentIterable<E> filter(Predicate<? super E> predicate) {
return from(Iterables.filter(iterable, predicate));
} | final FluentIterable<E> function(Predicate<? super E> predicate) { return from(Iterables.filter(iterable, predicate)); } | /**
* Returns the elements from this fluent iterable that satisfy a predicate. The
* resulting fluent iterable's iterator does not support {@code remove()}.
*
* <p><b>{@code Stream} equivalent:</b> {@code stream.filter(predicate)} (same).
*/ | Returns the elements from this fluent iterable that satisfy a predicate. The resulting fluent iterable's iterator does not support remove(). Stream equivalent: stream.filter(predicate) (same) | filter | {
"repo_name": "monokurobo/guava",
"path": "guava/src/com/google/common/collect/FluentIterable.java",
"license": "apache-2.0",
"size": 26848
} | [
"com.google.common.base.Predicate"
] | import com.google.common.base.Predicate; | import com.google.common.base.*; | [
"com.google.common"
] | com.google.common; | 2,788,377 |
@SuppressWarnings("unchecked")
public void load() {
if (recipes != null)
unregisterAll();
List<?> r = plugin.getConfig().getList("recipes");
recipes = new ArrayList<CraftingRecipe>();
if (r == null)
return;
for (Object o : r) {
recipes.... | @SuppressWarnings(STR) void function() { if (recipes != null) unregisterAll(); List<?> r = plugin.getConfig().getList(STR); recipes = new ArrayList<CraftingRecipe>(); if (r == null) return; for (Object o : r) { recipes.add(CraftingRecipe.deserialize((Map<String, Object>) o)); } registerAll(); } | /**
* Load all crafting recipes from the configuration file.
*/ | Load all crafting recipes from the configuration file | load | {
"repo_name": "0x0000null/CraftingPlusPlus",
"path": "src/me/nullcraft/craftingpp/RecipeManager.java",
"license": "gpl-3.0",
"size": 3681
} | [
"java.util.ArrayList",
"java.util.List",
"java.util.Map"
] | import java.util.ArrayList; import java.util.List; import java.util.Map; | import java.util.*; | [
"java.util"
] | java.util; | 1,975,899 |
public static Type fromString(String string) {
try {
return Type.valueOf(string);
} catch (Exception ex) {
return invalid;
}
}
}
public enum StartTime {
lasthour,
lastday,
lastweek,
lastmonth,
lastyear
};
}
interface Mail {
String ... | static Type function(String string) { try { return Type.valueOf(string); } catch (Exception ex) { return invalid; } } } public enum StartTime { lasthour, lastday, lastweek, lastmonth, lastyear }; } interface Mail { String FOOTER_MESSAGE = STR; } interface Server { String CONFIG = STR; } interface Method_Type { String G... | /**
* From string.
*
* @param string
* the string
* @return the operation
*/ | From string | fromString | {
"repo_name": "zengzhaozheng/ankush",
"path": "ankush/src/main/java/com/impetus/ankush2/constant/Constant.java",
"license": "lgpl-3.0",
"size": 18199
} | [
"java.util.HashMap",
"java.util.Map"
] | import java.util.HashMap; import java.util.Map; | import java.util.*; | [
"java.util"
] | java.util; | 2,091,391 |
public EbToken getToken(AnBoardPosition p_position)
{
Set<EbToken> list = getAllToken( p_position );
EbToken token = null;
for( Iterator<EbToken> it = list.iterator(); it.hasNext(); )
{
EbToken nextToken = (EbToken)it.next();
if( (token == null)
|| (token.getType().getZ... | EbToken function(AnBoardPosition p_position) { Set<EbToken> list = getAllToken( p_position ); EbToken token = null; for( Iterator<EbToken> it = list.iterator(); it.hasNext(); ) { EbToken nextToken = (EbToken)it.next(); if( (token == null) (token.getType().getZIndex( token.getPosition().getSector() ) < nextToken.getType... | /**
* search over m_token and m_tokenLocation for the most relevant token at a given position
* @param p_position
* @return the first colored (or by default the first colorless) token encountered at given position.
*/ | search over m_token and m_tokenLocation for the most relevant token at a given position | getToken | {
"repo_name": "kroc702/fullmetalgalaxy",
"path": "src/com/fullmetalgalaxy/model/persist/Game.java",
"license": "agpl-3.0",
"size": 47066
} | [
"java.util.Iterator",
"java.util.Set"
] | import java.util.Iterator; import java.util.Set; | import java.util.*; | [
"java.util"
] | java.util; | 2,432,576 |
private synchronized void insertFileSummary(FileSummaryLN ln,
long fileNum,
int sequence)
throws DatabaseException {
byte[] keyBytes = FileSummaryLN.makeFullKey(fileNum, sequence);
Locker... | synchronized void function(FileSummaryLN ln, long fileNum, int sequence) throws DatabaseException { byte[] keyBytes = FileSummaryLN.makeFullKey(fileNum, sequence); Locker locker = null; CursorImpl cursor = null; try { locker = new BasicLocker(env); cursor = new CursorImpl(fileSummaryDb, locker); cursor.setAllowEviction... | /**
* Insert the given LN with the given key values. This method is
* synchronized and may not perform eviction.
*/ | Insert the given LN with the given key values. This method is synchronized and may not perform eviction | insertFileSummary | {
"repo_name": "ckaestne/CIDE",
"path": "CIDE_Samples/cide_samples/Berkeley DB JE/src/com/sleepycat/je/cleaner/UtilizationProfile.java",
"license": "gpl-3.0",
"size": 47270
} | [
"com.sleepycat.je.DatabaseException",
"com.sleepycat.je.OperationStatus",
"com.sleepycat.je.dbi.CursorImpl",
"com.sleepycat.je.tree.FileSummaryLN",
"com.sleepycat.je.txn.BasicLocker",
"com.sleepycat.je.txn.Locker",
"java.util.logging.Level"
] | import com.sleepycat.je.DatabaseException; import com.sleepycat.je.OperationStatus; import com.sleepycat.je.dbi.CursorImpl; import com.sleepycat.je.tree.FileSummaryLN; import com.sleepycat.je.txn.BasicLocker; import com.sleepycat.je.txn.Locker; import java.util.logging.Level; | import com.sleepycat.je.*; import com.sleepycat.je.dbi.*; import com.sleepycat.je.tree.*; import com.sleepycat.je.txn.*; import java.util.logging.*; | [
"com.sleepycat.je",
"java.util"
] | com.sleepycat.je; java.util; | 1,466,433 |
boolean isUntranslated(LabelEntry e) {
Set<String> strs = new HashSet<>();
strs.addAll(e.content.values());
return strs.size() != context.dataManager().languages().size();
}
| boolean isUntranslated(LabelEntry e) { Set<String> strs = new HashSet<>(); strs.addAll(e.content.values()); return strs.size() != context.dataManager().languages().size(); } | /**
* Are there labels with the same translation?
* @param e the entry
* @return true if untranslated present
*/ | Are there labels with the same translation | isUntranslated | {
"repo_name": "p-smith/open-ig",
"path": "src/hu/openig/editors/ce/CELabelsPanel.java",
"license": "lgpl-3.0",
"size": 16805
} | [
"java.util.HashSet",
"java.util.Set"
] | import java.util.HashSet; import java.util.Set; | import java.util.*; | [
"java.util"
] | java.util; | 2,664,376 |
@javax.annotation.Nullable
@ApiModelProperty(
value =
"APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/s... | @javax.annotation.Nullable @ApiModelProperty( value = "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https: String function() { return apiVersion; } | /**
* APIVersion defines the versioned schema of this representation of an object. Servers should
* convert recognized schemas to the latest internal value, and may reject unrecognized values.
* More info:
* https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
*
... | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: HREF | getApiVersion | {
"repo_name": "kubernetes-client/java",
"path": "client-java-contrib/cert-manager/src/main/java/io/cert/manager/models/V1beta1Challenge.java",
"license": "apache-2.0",
"size": 6478
} | [
"io.swagger.annotations.ApiModelProperty"
] | import io.swagger.annotations.ApiModelProperty; | import io.swagger.annotations.*; | [
"io.swagger.annotations"
] | io.swagger.annotations; | 2,127,827 |
Builder addProperty(String name, SchemaOrgType value); | Builder addProperty(String name, SchemaOrgType value); | /**
* Add a value to property.
*
* @param name The property name.
* @param value The value of the property.
*/ | Add a value to property | addProperty | {
"repo_name": "google/schemaorg-java",
"path": "src/main/java/com/google/schemaorg/core/Service.java",
"license": "apache-2.0",
"size": 13699
} | [
"com.google.schemaorg.SchemaOrgType"
] | import com.google.schemaorg.SchemaOrgType; | import com.google.schemaorg.*; | [
"com.google.schemaorg"
] | com.google.schemaorg; | 2,444,262 |
@SuppressWarnings("unused")
private void setPadding(final JSONArray args, final CallbackContext callbackContext) throws JSONException {
JSONObject padding = args.getJSONObject(1);
int left = padding.getInt("left");
int top = padding.getInt("top");
int bottom = padding.getInt("bottom");
int right... | @SuppressWarnings(STR) void function(final JSONArray args, final CallbackContext callbackContext) throws JSONException { JSONObject padding = args.getJSONObject(1); int left = padding.getInt("left"); int top = padding.getInt("top"); int bottom = padding.getInt(STR); int right = padding.getInt("right"); map.setPadding(l... | /**
* Sets padding of the map
* @param args
* @param callbackContext
* @throws JSONException
*/ | Sets padding of the map | setPadding | {
"repo_name": "rickdana/phonegap-googlemaps-plugin-master",
"path": "src/android/plugin/google/maps/PluginMap.java",
"license": "apache-2.0",
"size": 17927
} | [
"org.apache.cordova.CallbackContext",
"org.json.JSONArray",
"org.json.JSONException",
"org.json.JSONObject"
] | import org.apache.cordova.CallbackContext; import org.json.JSONArray; import org.json.JSONException; import org.json.JSONObject; | import org.apache.cordova.*; import org.json.*; | [
"org.apache.cordova",
"org.json"
] | org.apache.cordova; org.json; | 705,550 |
public JSONArray put(int index, Hashtable value) throws JSONException {
put(index, new JSONObject(value));
return this;
}
| JSONArray function(int index, Hashtable value) throws JSONException { put(index, new JSONObject(value)); return this; } | /**
* Put a value in the JSONArray, where the value will be a
* JSONObject which is produced from a Map.
* @param index The subscript.
* @param value The Map value.
* @return this.
* @throws JSONException If the index is negative or if the the value is
* an invalid number.
*/ | Put a value in the JSONArray, where the value will be a JSONObject which is produced from a Map | put | {
"repo_name": "matias-pequeno/ikea-calc-j2me-java",
"path": "lib/src/com/mxme/json/JSONArray.java",
"license": "gpl-2.0",
"size": 26204
} | [
"java.util.Hashtable"
] | import java.util.Hashtable; | import java.util.*; | [
"java.util"
] | java.util; | 181,247 |
public static int getCurrentBandwidth() {
return ConnectionClassManager.getInstance().getCurrentBandwidth();
} | static int function() { return ConnectionClassManager.getInstance().getCurrentBandwidth(); } | /**
* Method to get currentBandwidth
*
* @return currentBandwidth
*/ | Method to get currentBandwidth | getCurrentBandwidth | {
"repo_name": "weiwenqiang/GitHub",
"path": "expert/Fast-Android-Networking/android-networking/src/main/java/com/androidnetworking/AndroidNetworking.java",
"license": "apache-2.0",
"size": 9403
} | [
"com.androidnetworking.common.ConnectionClassManager"
] | import com.androidnetworking.common.ConnectionClassManager; | import com.androidnetworking.common.*; | [
"com.androidnetworking.common"
] | com.androidnetworking.common; | 1,024,143 |
public static GeoDBReader getInstance(PoolingDataSource source) {
return new GeoDBReader(source);
}
| static GeoDBReader function(PoolingDataSource source) { return new GeoDBReader(source); } | /**
* Static factory method return a GeoDBReader.
*
* @param source
* the pooling data source will be use
* @return a new GeoDBReader instance
*/ | Static factory method return a GeoDBReader | getInstance | {
"repo_name": "smart-facility/TransMob",
"path": "model/src/main/java/servlet/GeoDBReader.java",
"license": "lgpl-3.0",
"size": 17945
} | [
"org.postgresql.jdbc2.optional.PoolingDataSource"
] | import org.postgresql.jdbc2.optional.PoolingDataSource; | import org.postgresql.jdbc2.optional.*; | [
"org.postgresql.jdbc2"
] | org.postgresql.jdbc2; | 1,167,847 |
@Test
public void testMissingColocatedParentPR() throws Throwable {
Host host = Host.getHost(0);
VM vm0 = host.getVM(0);
VM vm1 = host.getVM(1);
vm0.invoke(createPRsColocatedPairThread);
vm1.invoke(createPRsColocatedPairThread);
createData(vm0, 0, NUM_BUCKETS, "a");
createData(vm0, 0, ... | void function() throws Throwable { Host host = Host.getHost(0); VM vm0 = host.getVM(0); VM vm1 = host.getVM(1); vm0.invoke(createPRsColocatedPairThread); vm1.invoke(createPRsColocatedPairThread); createData(vm0, 0, NUM_BUCKETS, "a"); createData(vm0, 0, NUM_BUCKETS, "b", STR); Set<Integer> vm0Buckets = getBucketList(vm0... | /**
* Testing that missing colocated persistent PRs are logged as warning
*/ | Testing that missing colocated persistent PRs are logged as warning | testMissingColocatedParentPR | {
"repo_name": "smanvi-pivotal/geode",
"path": "geode-core/src/test/java/org/apache/geode/internal/cache/partitioned/PersistentColocatedPartitionedRegionDUnitTest.java",
"license": "apache-2.0",
"size": 115275
} | [
"java.util.Set",
"org.apache.geode.test.dunit.Host",
"org.junit.Assert"
] | import java.util.Set; import org.apache.geode.test.dunit.Host; import org.junit.Assert; | import java.util.*; import org.apache.geode.test.dunit.*; import org.junit.*; | [
"java.util",
"org.apache.geode",
"org.junit"
] | java.util; org.apache.geode; org.junit; | 1,103,818 |
public static Vector buildVectorFromMapElements(Map map) {
Vector vector = new Vector(map.size());
Iterator iterator = map.values().iterator();
while (iterator.hasNext()) {
vector.addElement(iterator.next());
}
return vector;
}
| static Vector function(Map map) { Vector vector = new Vector(map.size()); Iterator iterator = map.values().iterator(); while (iterator.hasNext()) { vector.addElement(iterator.next()); } return vector; } | /**
* Create a new Vector containing all of the map elements.
*/ | Create a new Vector containing all of the map elements | buildVectorFromMapElements | {
"repo_name": "bfg-repo-cleaner-demos/eclipselink.runtime-bfg-strip-big-blobs",
"path": "foundation/org.eclipse.persistence.core/src/org/eclipse/persistence/internal/helper/Helper.java",
"license": "epl-1.0",
"size": 92748
} | [
"java.util.Iterator",
"java.util.Map",
"java.util.Vector"
] | import java.util.Iterator; import java.util.Map; import java.util.Vector; | import java.util.*; | [
"java.util"
] | java.util; | 1,286,213 |
return ArrayUtils.clone(CAUSE_METHOD_NAMES);
} | return ArrayUtils.clone(CAUSE_METHOD_NAMES); } | /**
* <p>Returns the default names used when searching for the cause of an exception.</p>
*
* <p>This may be modified and used in the overloaded getCause(Throwable, String[]) method.</p>
*
* @return cloned array of the default method names
* @since 3.0
* @deprecated This feature will ... | Returns the default names used when searching for the cause of an exception. This may be modified and used in the overloaded getCause(Throwable, String[]) method | getDefaultCauseMethodNames | {
"repo_name": "0x90sled/droidtowers",
"path": "main/source/org/apach3/commons/lang3/exception/ExceptionUtils.java",
"license": "mit",
"size": 28318
} | [
"org.apach3.commons.lang3.ArrayUtils"
] | import org.apach3.commons.lang3.ArrayUtils; | import org.apach3.commons.lang3.*; | [
"org.apach3.commons"
] | org.apach3.commons; | 2,859,455 |
public void kickPlayer(Player player, String reason) {
checkNotNull(player, "player is null!");
checkNotNull(reason, "reason is null!");
this.channel.sendTo(player, buf -> buf.writeUTF("KickPlayer").writeUTF(player.getName()).writeUTF(reason));
} | void function(Player player, String reason) { checkNotNull(player, STR); checkNotNull(reason, STR); this.channel.sendTo(player, buf -> buf.writeUTF(STR).writeUTF(player.getName()).writeUTF(reason)); } | /**
* Kicks the given {@link Player} for the given reason.
*
* @param player The player to kick from the network
* @param reason The reason
*/ | Kicks the given <code>Player</code> for the given reason | kickPlayer | {
"repo_name": "BlockJamMC/BlockJamCore",
"path": "src/main/java/org/blockjam/core/bungee/BungeeManager.java",
"license": "mit",
"size": 5903
} | [
"com.google.common.base.Preconditions",
"org.spongepowered.api.entity.living.player.Player"
] | import com.google.common.base.Preconditions; import org.spongepowered.api.entity.living.player.Player; | import com.google.common.base.*; import org.spongepowered.api.entity.living.player.*; | [
"com.google.common",
"org.spongepowered.api"
] | com.google.common; org.spongepowered.api; | 2,253,965 |
boolean isEditable(CmsObject cms, CmsResource resource) {
try {
return cms.hasPermissions(resource, CmsPermissionSet.ACCESS_WRITE, false, CmsResourceFilter.ALL);
} catch (CmsException e) {
return false;
}
} | boolean isEditable(CmsObject cms, CmsResource resource) { try { return cms.hasPermissions(resource, CmsPermissionSet.ACCESS_WRITE, false, CmsResourceFilter.ALL); } catch (CmsException e) { return false; } } | /**
* Checks if the current user has write permissions on the given resource.<p>
*
* @param cms the current cms context
* @param resource the resource to check
*
* @return <code>true</code> if the current user has write permissions on the given resource
*/ | Checks if the current user has write permissions on the given resource | isEditable | {
"repo_name": "sbonoc/opencms-core",
"path": "src/org/opencms/ade/galleries/CmsGalleryService.java",
"license": "lgpl-2.1",
"size": 100077
} | [
"org.opencms.file.CmsObject",
"org.opencms.file.CmsResource",
"org.opencms.file.CmsResourceFilter",
"org.opencms.main.CmsException",
"org.opencms.security.CmsPermissionSet"
] | import org.opencms.file.CmsObject; import org.opencms.file.CmsResource; import org.opencms.file.CmsResourceFilter; import org.opencms.main.CmsException; import org.opencms.security.CmsPermissionSet; | import org.opencms.file.*; import org.opencms.main.*; import org.opencms.security.*; | [
"org.opencms.file",
"org.opencms.main",
"org.opencms.security"
] | org.opencms.file; org.opencms.main; org.opencms.security; | 819,845 |
public ConcurrentMap<String, Object> getSessionData() {
return sessionData;
} | ConcurrentMap<String, Object> function() { return sessionData; } | /**
* Method description
*
*
*
*/ | Method description | getSessionData | {
"repo_name": "amikey/tigase-server",
"path": "src/main/java/tigase/net/IOService.java",
"license": "agpl-3.0",
"size": 37437
} | [
"java.util.concurrent.ConcurrentMap"
] | import java.util.concurrent.ConcurrentMap; | import java.util.concurrent.*; | [
"java.util"
] | java.util; | 2,564,588 |
synchronized List<FsVolumeImpl> checkDirs() {
ArrayList<FsVolumeImpl> removedVols = null;
// Make a copy of volumes for performing modification
final List<FsVolumeImpl> volumeList = new ArrayList<FsVolumeImpl>(volumes);
for(Iterator<FsVolumeImpl> i = volumeList.iterator(); i.hasNext(); ) {
... | synchronized List<FsVolumeImpl> checkDirs() { ArrayList<FsVolumeImpl> removedVols = null; final List<FsVolumeImpl> volumeList = new ArrayList<FsVolumeImpl>(volumes); for(Iterator<FsVolumeImpl> i = volumeList.iterator(); i.hasNext(); ) { final FsVolumeImpl fsv = i.next(); try { fsv.checkDirs(); } catch (DiskErrorExcepti... | /**
* Calls {@link FsVolumeImpl#checkDirs()} on each volume, removing any
* volumes from the active list that result in a DiskErrorException.
*
* This method is synchronized to allow only one instance of checkDirs()
* call
* @return list of all the removed volumes.
*/ | Calls <code>FsVolumeImpl#checkDirs()</code> on each volume, removing any volumes from the active list that result in a DiskErrorException. This method is synchronized to allow only one instance of checkDirs() call | checkDirs | {
"repo_name": "ict-carch/hadoop-plus",
"path": "hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/datanode/fsdataset/impl/FsVolumeList.java",
"license": "apache-2.0",
"size": 7217
} | [
"java.util.ArrayList",
"java.util.Collections",
"java.util.Iterator",
"java.util.List",
"org.apache.hadoop.util.DiskChecker"
] | import java.util.ArrayList; import java.util.Collections; import java.util.Iterator; import java.util.List; import org.apache.hadoop.util.DiskChecker; | import java.util.*; import org.apache.hadoop.util.*; | [
"java.util",
"org.apache.hadoop"
] | java.util; org.apache.hadoop; | 1,914,181 |
public void createBoxTree(BoxTreeCreationStatus stat)
{
boolean generated = false;
do
{
if (stat.parent.isDisplayed())
{
//add previously created boxes (the rest from the last twin)
if (stat.parent.preadd != null)
{
... | void function(BoxTreeCreationStatus stat) { boolean generated = false; do { if (stat.parent.isDisplayed()) { if (stat.parent.preadd != null) { addToTree(stat.parent.preadd, stat); stat.parent.preadd = null; } if (stat.parent.previousTwin == null) { Node n = createPseudoElement(stat.parent, PseudoDeclaration.BEFORE); if... | /**
* Creates the box subtrees for all the child nodes of the DOM node corresponding to the box creatin status. Recursively creates the child boxes
* from the child nodes.
* @param stat current tree creation status used for determining the parents
*/ | Creates the box subtrees for all the child nodes of the DOM node corresponding to the box creatin status. Recursively creates the child boxes from the child nodes | createBoxTree | {
"repo_name": "dbmalkovsky/CSSBox",
"path": "src/main/java/org/fit/cssbox/layout/BoxFactory.java",
"license": "lgpl-3.0",
"size": 40538
} | [
"cz.vutbr.web.css.Selector",
"org.w3c.dom.Node",
"org.w3c.dom.NodeList"
] | import cz.vutbr.web.css.Selector; import org.w3c.dom.Node; import org.w3c.dom.NodeList; | import cz.vutbr.web.css.*; import org.w3c.dom.*; | [
"cz.vutbr.web",
"org.w3c.dom"
] | cz.vutbr.web; org.w3c.dom; | 2,710,568 |
public void transferAgentPluginAsync(AuthzSubject subject, AppdefEntityID aid, String plugin)
throws PermissionException, FileNotFoundException, AgentNotFoundException, InterruptedException; | void function(AuthzSubject subject, AppdefEntityID aid, String plugin) throws PermissionException, FileNotFoundException, AgentNotFoundException, InterruptedException; | /**
* Transfer an agent plugin residing on the HQ server to an agent. The
* transfer is performed asynchronously by placing on the Zevent queue and
* results in an agent restart.
* @param subject The subject issuing the request.
* @param aid The agent id.
* @param plugin The plugin name.
... | Transfer an agent plugin residing on the HQ server to an agent. The transfer is performed asynchronously by placing on the Zevent queue and results in an agent restart | transferAgentPluginAsync | {
"repo_name": "cc14514/hq6",
"path": "hq-server/src/main/java/org/hyperic/hq/appdef/shared/AgentManager.java",
"license": "unlicense",
"size": 24936
} | [
"java.io.FileNotFoundException",
"org.hyperic.hq.authz.server.session.AuthzSubject",
"org.hyperic.hq.authz.shared.PermissionException"
] | import java.io.FileNotFoundException; import org.hyperic.hq.authz.server.session.AuthzSubject; import org.hyperic.hq.authz.shared.PermissionException; | import java.io.*; import org.hyperic.hq.authz.server.session.*; import org.hyperic.hq.authz.shared.*; | [
"java.io",
"org.hyperic.hq"
] | java.io; org.hyperic.hq; | 747,106 |
public static boolean cantStandAtBetter(Block block) {
Block otherBlock = block.getRelative(BlockFace.DOWN);
boolean center1 = otherBlock.getType() == Material.AIR;
boolean north1 = otherBlock.getRelative(BlockFace.NORTH).getType() == Material.AIR;
boolean east1 = otherBlock.ge... | static boolean function(Block block) { Block otherBlock = block.getRelative(BlockFace.DOWN); boolean center1 = otherBlock.getType() == Material.AIR; boolean north1 = otherBlock.getRelative(BlockFace.NORTH).getType() == Material.AIR; boolean east1 = otherBlock.getRelative(BlockFace.EAST).getType() == Material.AIR; boole... | /**
* Determine whether or not a player can stand in a given location,
* and do so correctly
*
* @param theBlock The block to be checked
* @return true if the player should be unable to stand here
*/ | Determine whether or not a player can stand in a given location, and do so correctly | cantStandAtBetter | {
"repo_name": "dmulloy2/AntiCheat",
"path": "src/main/java/net/gravitydevelopment/anticheat/util/Util.java",
"license": "gpl-3.0",
"size": 27170
} | [
"org.bukkit.Material",
"org.bukkit.block.Block",
"org.bukkit.block.BlockFace"
] | import org.bukkit.Material; import org.bukkit.block.Block; import org.bukkit.block.BlockFace; | import org.bukkit.*; import org.bukkit.block.*; | [
"org.bukkit",
"org.bukkit.block"
] | org.bukkit; org.bukkit.block; | 831,233 |
private void showTypeChoice(Widget w, final ISingleFieldConstraint con) {
final FormStylePopup form = new FormStylePopup( "images/newex_wiz.gif",
"Field value" ); | void function(Widget w, final ISingleFieldConstraint con) { final FormStylePopup form = new FormStylePopup( STR, STR ); | /**
* Show a list of possibilities for the value type.
*/ | Show a list of possibilities for the value type | showTypeChoice | {
"repo_name": "bobmcwhirter/drools",
"path": "drools-guvnor/src/main/java/org/drools/guvnor/client/modeldriven/ui/ConstraintValueEditor.java",
"license": "apache-2.0",
"size": 15181
} | [
"com.google.gwt.user.client.ui.Widget",
"org.drools.guvnor.client.common.FormStylePopup",
"org.drools.guvnor.client.modeldriven.brl.ISingleFieldConstraint"
] | import com.google.gwt.user.client.ui.Widget; import org.drools.guvnor.client.common.FormStylePopup; import org.drools.guvnor.client.modeldriven.brl.ISingleFieldConstraint; | import com.google.gwt.user.client.ui.*; import org.drools.guvnor.client.common.*; import org.drools.guvnor.client.modeldriven.brl.*; | [
"com.google.gwt",
"org.drools.guvnor"
] | com.google.gwt; org.drools.guvnor; | 1,874,213 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.