query_id
stringlengths
32
32
query
stringlengths
7
129k
positive_passages
listlengths
1
1
negative_passages
listlengths
88
101
1164968e4be8f78e9bd7fe056584677f
Iterator method for the list "tau".
[ { "docid": "a6405873b0d3917d356e767adb86fb4d", "score": "0.80714095", "text": "public ElementChildrenIterator tauIterator() {\n return new ElementChildrenIterator(children, \"tau\");\n }", "title": "" } ]
[ { "docid": "e364dfbfb25c1e964ac6e01eb2c504bb", "score": "0.6266646", "text": "@Override public Iterator<Train> iterator()\n {\n return this.trains.iterator();\n }", "title": "" }, { "docid": "9bdec464869397082637390a6176093f", "score": "0.6256708", "text": "public ElementChildre...
2e6d8ff98958ce518fb2ab62e8d8a507
This method serves to return an integer based on solving a postfix expression. This uses a local stack like convert ToPostfix(), but this time for operands. As we iterate through the given array, we check if the value is an operand, using checkOperand, and push it to the stack. Once we encounter a operator, we should h...
[ { "docid": "6205eeac84768b9a11937ee97327ed3b", "score": "0.7427889", "text": "public int evaluatePostfix(String[] postfixExpression){\r\n\t\tint result;\r\n\t\tStack operands = new Stack();\r\n\t\tfor(int i = 0; i < postfixExpression.length; i++){\r\n\t\t\tif(postfixExpression[i] == null || postfixExpre...
[ { "docid": "4d4c7e8f9797cb36d4059eee0439ff2a", "score": "0.70776606", "text": "public String[] convertToPostfix(String[] infixExpression){\r\n\t\tString[] postfixExpression = new String[50];\r\n\t\tint top = -1;\r\n\t\tboolean parentheses = false;\r\n\t\tStack operators = new Stack();\r\n\t\tfor(int i =...
3b35a4d78bfab11676705614a559f247
/Dialog function to ask the editor if he wants to add new coordinate with details. if yes, we are directed to the creating new coordinate activity
[ { "docid": "3c2df02ca649ea1d5e442f03347f76e0", "score": "0.7939312", "text": "private void dialogAddNewCoordinate(final LatLng point) {\n AlertDialog.Builder builder = new AlertDialog.Builder(EditorPanelActivity.this);\n builder.setMessage(getResources().getString(R.string.dialog_add_new_c...
[ { "docid": "0550abb1d64fbe2db377f6dd4eb4c9e4", "score": "0.6295662", "text": "@SuppressLint(\"ResourceAsColor\")\n public void PopUpNew(final LatLng latLng){\n AlertDialog.Builder alert = new AlertDialog.Builder(MapActivity.this,android.R.style.Theme_Material_Dialog_Alert);\n alert.setT...
08bef019cb6c2325f6b280cec1171871
Set rule list to be analyzed. The rule matrix contains the same rule set in horizontal and vertical direction.
[ { "docid": "2e24a8b94a33c1783880b1f0ce5c745a", "score": "0.74382526", "text": "public void setRules(List<Rule> ruleList);", "title": "" } ]
[ { "docid": "b844da1aeffc48401ee3dcdd8f847344", "score": "0.7104344", "text": "public void setRules(final List<Rule> ruleList, final List<Rule> ruleList2);", "title": "" }, { "docid": "b21f652845ffd5fa6429aeecf3ef8923", "score": "0.6517126", "text": "private void rulesInitialization()...
ae542da4892557862317abb1f8292604
Print the path using parent pointer
[ { "docid": "61cfbd3ebccaceea550129c229415133", "score": "0.73083353", "text": "private void printPath(TreeNodeInt node, HashMap<TreeNodeInt,TreeNodeInt> parent){\n Stack<TreeNodeInt> printStack = new Stack<>();\n while(node != null){\n printStack.push(node);\n node = ...
[ { "docid": "837c9e2321ac6301c664f7c3d1294291", "score": "0.7357252", "text": "private static void printPath(int currentVertex, int[] parents) {\n if (currentVertex == NO_PARENT) {\n return;\n }\n printPath(parents[currentVertex], parents);\n System.out.print(curren...
8bc9b4e00965307c13f6d70a7bcf27cc
Habilitamos el boton editar
[ { "docid": "2019486fbe8ba6b36b4c00bab75b6e75", "score": "0.7154726", "text": "private void enableBotonesLectura()\r\n\t{\r\n\t\tthis.btnEditar.setEnabled(true);\r\n\t\tthis.btnEditar.setVisible(true);\r\n\t\t\r\n\t}", "title": "" } ]
[ { "docid": "a736967cf3c424a6de475ee802f68f94", "score": "0.7774263", "text": "public void edit();", "title": "" }, { "docid": "0b8974d499bb4d89e9efd6dbc0cbccdc", "score": "0.7549576", "text": "private void editarActionPerformed(java.awt.event.ActionEvent evt) {\n editarDatos()...
9c9a4d93f8f446b92a63a596d8baeeca
CREATE Neurons This method will instantiate the hips that are defined for the current model.
[ { "docid": "9b08b7c6810786d1960e064da6340c7f", "score": "0.65331256", "text": "private void create(int localVP, int localLOD, String parentID, ArrayList<BioMightPropertyView> bioMightProperties, ArrayList<BioMightMethodView> bioMightMethods) \r\n\t{\t\t\r\n\t\tthis.setImage(\"images/Neurons.jpg\");\r\n\...
[ { "docid": "8f1a6376e7a42f20d454cdcc04bc0102", "score": "0.6767567", "text": "public Neurons()\r\n\t{\t\t\r\n\t\tint localVP= Constants.BIO_CHILD;\r\n\t\tint localLOD = Constants.VIEW_HAWKEYE;\r\n\t\tcreate(localVP, localLOD, Constants.CellsRef, null, null);\r\n\t}", "title": "" }, { "docid"...
dd36717933cb59e79e0fa1fc3ba0052d
Use HelloRequest.newBuilder() to construct.
[ { "docid": "30029feb7921db52a551cabff2fb4df9", "score": "0.7699509", "text": "private HelloRequest(com.google.protobuf.GeneratedMessageV3.Builder<?> builder) {\n super(builder);\n }", "title": "" } ]
[ { "docid": "b94cfe4f55c0d70209bfeab90548cceb", "score": "0.63336694", "text": "private HelloResponse(com.google.protobuf.GeneratedMessageV3.Builder<?> builder) {\n super(builder);\n }", "title": "" }, { "docid": "5ee2c2a91102c736f5c71e03671c0f13", "score": "0.6033502", "text"...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "bbc07b367602c61da706f56bdf8c4e79", "score": "0.0", "text": "public static void main(String[] args) throws IOException{\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\t\n N = Integer.parseInt(br.readLine());\n info = new int[N][N];\n se...
[ { "docid": "05a606445504484958a1c21e14b7198e", "score": "0.69474965", "text": "@Override\r\n\tpublic void sapace() {\n\t\t\r\n\t}", "title": "" }, { "docid": "8619203d4867f5c6d05eb9a5354405c0", "score": "0.6920049", "text": "@Override\n\t\tpublic void pintate() {\n\t\t\t\n\t\t}", ...
8e513c92c86e512177f89e4bee4523ec
Tests that a service can be reified due to method injection
[ { "docid": "453991fdfe90960894d09355699df970", "score": "0.75891805", "text": "@Test\n public void testMethodReification() {\n SimpleServiceMethodInjectee ssmi = locator.getService(SimpleServiceMethodInjectee.class);\n Assert.assertNotNull(ssmi.getSimpleService());\n }", "title":...
[ { "docid": "9ec39f458c8ee07217a98f80a92679c2", "score": "0.6474492", "text": "@Test\n\tpublic void testHasService() {\n\t\tfail(\"not implemented\");\n\t}", "title": "" }, { "docid": "76f6520ff8ad281815f2528b76ddcfaa", "score": "0.64501053", "text": "public interface MockService {\n}...
375a1ec3a1e28179e97dde0ecb20dad7
Test of getFontFamily method, of class AxisTickRenderer.
[ { "docid": "e956fb259048caa3de5e0c62164a9be0", "score": "0.710896", "text": "@Test\r\n\tpublic void testGetFontFamily() {\r\n\t}", "title": "" } ]
[ { "docid": "b7a83939915312b353582f67ea69a5be", "score": "0.7407559", "text": "String getFontFamily();", "title": "" }, { "docid": "15bd2c9b01702649a48a673ac82235d5", "score": "0.6936284", "text": "@Test\r\n\tpublic void testSetFontFamily() {\r\n\t}", "title": "" }, { "doc...
c7aa4de16153ba7f603d94c476b2c80e
Returns the list of Hero DTOs
[ { "docid": "d53f3fc9625ec8a177bc1e85af446f26", "score": "0.72697556", "text": "public List<Hero> getHeroes() throws HeroRestClientException {\n\n\t\tlogger.debug(\"Retrieving all Heroes!\");\n\n\t\t// Determine the Target URL\n\t\tString requestTargetUrl = \"/Heroes\";\n\n\t\t// Concatenate the Base URL...
[ { "docid": "368329523af234ca652b4fd57c1b8257", "score": "0.7740622", "text": "@GetMapping\n public List<Hero> getHeroes() {\n List<Hero> heroes = access.getHeroes();\n return heroes;\n }", "title": "" }, { "docid": "2d0ce0a6db740d65d1e73f83302eda04", "score": "0.76794...
deb0750394a66c340f4c2ad88bbf122e
Calls the right AI function.
[ { "docid": "59e3d216a1eadec8b247f5be12278fb2", "score": "0.688924", "text": "@Override\r\n\tpublic void performAiFunction(ApiCall call) {\r\n\t\tswitch (call.getFunctionId()) {\r\n\t\tcase PHASE_INIT:\r\n\t\t\taiInstance.init();\r\n\t\t\tbreak;\r\n\t\t\r\n\t\tcase PHASE_REINIT:\r\n\t\t\taiInstance.reIni...
[ { "docid": "45216ef5504043257935386ee37962ad", "score": "0.7288714", "text": "@Override\n public void performAI() {\n }", "title": "" }, { "docid": "b94cfcfa7e8bdaa097a651c78cb33ba1", "score": "0.6844693", "text": "private void activateAI() {\n\t}", "title": "" }, { ...
99104f4dfb7673543f452b2c9ac8b431
int64 raid_seed = 1;
[ { "docid": "6b87ba79756a377f82b82addb5afac9a", "score": "0.6507138", "text": "@java.lang.Override\n public long getRaidSeed() {\n return raidSeed_;\n }", "title": "" } ]
[ { "docid": "912ca124c2ee6a3c9bd6caa6e80335e2", "score": "0.6665311", "text": "long randomLong();", "title": "" }, { "docid": "8a240dbbc4321f979569437bd7f96da1", "score": "0.66433394", "text": "@java.lang.Override\n public long getRaidSeed() {\n return raidSeed_;\n }", "title...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "af5b7e740ded6b258d98c46a24d160a2", "score": "0.0", "text": "@Override\n\tpublic void updateAddress(Address address) {\n\t\tuserMapper.updateAddress(address);\n\t}", "title": "" } ]
[ { "docid": "81005989525ec80103fbaf46f9c37779", "score": "0.6694239", "text": "@Override\n\tpublic void agit() {\n\n\t}", "title": "" }, { "docid": "0b5b11f4251ace8b3d0f5ead186f7beb", "score": "0.65686274", "text": "@Override\n\tpublic void comer() {\n\t\t\n\t}", "title": "" }, ...
2baec6a2e5671bfaa9869a1c7114014c
Exporta al fichero en forma de string binario un objeto mediante el metodo data
[ { "docid": "4ebf17758718800f567b36d2a80a53bd", "score": "0.67590207", "text": "public void exportarABinario(String ruta) throws IOException{\n //Copiado de vindios.\n //Copiado de vindios.\n FileOutputStream flujoLectura;\n ObjectOutputStream Oos;\n try{\n \n ...
[ { "docid": "cd956548048a10be289d68044a972eab", "score": "0.679844", "text": "public abstract String toFileString();", "title": "" }, { "docid": "66d265c898f1d00c0b36efcf971c87f4", "score": "0.6627391", "text": "@Override\r\n\tpublic String[] toFile() {\n\t\treturn null;\r\n\t}", ...
e9b1c36f408f123d3fc1fdb04b1c90df
Returns the color of the InnerPadding.
[ { "docid": "2e76b452c568988d045abbdc43de04e4", "score": "0.8711455", "text": "public int getInnerPaddingColor() { return mInnerPaddingColor; }", "title": "" } ]
[ { "docid": "d589587c4680722d3df730b354850fdb", "score": "0.66078156", "text": "public float getInnerPadding() {\n return mInnerPadding;\n }", "title": "" }, { "docid": "c54e54fad7a250df583e4ed567b2eaa1", "score": "0.64028186", "text": "java.lang.String getBackgroundColor();...
64ed81ff17b392433b076d05741c29e0
Unsets the "onchange" attribute
[ { "docid": "bd6e5450282151defde58a1017e49c7f", "score": "0.67499137", "text": "public void unsetOnchange()\n {\n synchronized (monitor())\n {\n check_orphaned();\n get_store().remove_attribute(ONCHANGE$54);\n }\n }", "title...
[ { "docid": "b4ff7be4e3cfe1b9272cf0fc70a97e78", "score": "0.6550076", "text": "public void resetChange() {\r\n setChange(\"\");\r\n }", "title": "" }, { "docid": "c1b0f803a51e7ffa165469feb635617a", "score": "0.6439917", "text": "public void unsetOnselect()\n {\n ...
958f7271bd46b5d64b3974d8822b195d
Decode an encoded transaction request binary data.
[ { "docid": "2c06567d5ff497f9137529d5f0e4f2c4", "score": "0.8093384", "text": "public TransactionContext<TransactionRequest> decodeTransactionRequest(byte[] data);", "title": "" } ]
[ { "docid": "14d5d607567ddf5c8881aea02e88fd0f", "score": "0.6226009", "text": "public void testRequestDecoding() throws Exception {\r\n httpRequest.setParameter(\"SAMLRequest\", \"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHNhbWxwOkF1dGhuUm\"\r\n + \"VxdWVzdCBJRD0iZm9vIiBJ...
aa1d338e878ad4b0c8c966637179b8d1
Gets (as xml) the "GroupName" element
[ { "docid": "527de83181c8c9f40da780a05dc0fa26", "score": "0.8399616", "text": "org.apache.xmlbeans.XmlString xgetGroupName();", "title": "" } ]
[ { "docid": "ee2526d5ff684a7dbc949d797514216f", "score": "0.7809907", "text": "java.lang.String getGroupName();", "title": "" }, { "docid": "ee2526d5ff684a7dbc949d797514216f", "score": "0.7809907", "text": "java.lang.String getGroupName();", "title": "" }, { "docid": "5752...
7e31a01c59509ae1c844696571c8895e
Sets the cattle sw.
[ { "docid": "b187b907a0ecaa059b05bd2b0b272635", "score": "0.5690978", "text": "public void setCattle(boolean cattle) {\n this.cattle = cattle;\n }", "title": "" } ]
[ { "docid": "068912d93bad1a16594bedd60d4f54f0", "score": "0.5766706", "text": "public void setW(int value) {\n this.w = value;\n }", "title": "" }, { "docid": "87101e8e019ed6153f0f69bc5e760a57", "score": "0.56486446", "text": "public void setSwatch(boolean value) {\n ...
208f6ee62814cd28c10b48b6e874fb93
All rights Reserved, Designed By yyh
[ { "docid": "82861f89d52a0c6d590c5e33070852ac", "score": "0.0", "text": "public interface PlanDetailDao extends BaseMapper<PlanDetail> {\n\n /**\n * 简单查询\n */\n List<PlanDetail> sample(PlanDetail obj);\n}", "title": "" } ]
[ { "docid": "0b06f1c2066a7ed1df417a1383204e17", "score": "0.66913694", "text": "Internal internal();", "title": "" }, { "docid": "33d41636b65afa8267c9085dae3d1a2d", "score": "0.6488832", "text": "private void apparence() {\r\n\r\n\t}", "title": "" }, { "docid": "613a3e1e6e...
2cbc821600fea71168c8475e32cab0e2
optional string grp_seq = 3;
[ { "docid": "d53b1cfd52412db5bd94186e18970898", "score": "0.6390383", "text": "public java.lang.String getGrpSeq() {\n java.lang.Object ref = grpSeq_;\n if (ref instanceof java.lang.String) {\n return (java.lang.String) ref;\n } else {\n com.google.protobuf.ByteString bs = \n...
[ { "docid": "4ba2422d618859a13b179b89386c4229", "score": "0.7556021", "text": "java.lang.String getGrpSeq();", "title": "" }, { "docid": "4ba2422d618859a13b179b89386c4229", "score": "0.7556021", "text": "java.lang.String getGrpSeq();", "title": "" }, { "docid": "4ba2422d61...
7ad285118044697923fc58eca127d60e
Retrieves all links in this entry
[ { "docid": "9a1a6876ff1878a3a82b9408b3292e08", "score": "0.72865736", "text": "public AtomEntryLink[] getLinks() {\r\n\t\tif (this.linksList == null) {\r\n\t\t\treturn new AtomEntryLink[0];\r\n\t\t}\r\n\t\treturn (AtomEntryLink[]) this.linksList.toArray( new AtomEntryLink[ this.linksList.size() ] );\r\n...
[ { "docid": "3e9042be99b7f5e379469168fdbee479", "score": "0.78057295", "text": "List<Link> getLinks();", "title": "" }, { "docid": "f42babeb4245b8ed8a63feafe1dafd26", "score": "0.7786287", "text": "@ApiMethod(name = \"links\")\n\tpublic List<Link> getLinks() {\n // The load() m...
2007ff20687688de38c5ca97aa7365a3
Using arrays because most list methods have a big o notation on O(n)
[ { "docid": "fa2d8f12176203d784a8f98038937d3e", "score": "0.0", "text": "public static List<Integer> findDuplicates(List<Integer> numbers) {\n Integer[] cloneArray = new Integer[numbers.size()];\n Integer[] repeatNums = new Integer[numbers.size()-1];\n\n\n for (int i = 0; i < numbers...
[ { "docid": "e7e5b51785ea246e06e123d3fb894553", "score": "0.63240063", "text": "private PyObject[] listtoarray(ArrayList<PyObject> a)\n {\n PyObject[] results = new PyObject[a.size()];\n int iter = 0;\n for (PyObject pt : a) {\n results[iter] = pt;\n iter++;\...
a7754ce05dd80dec882e54041814322f
This method is the getter for the index attribute pre: none post:none
[ { "docid": "eb90f6b46865fc4a93a7ce0a9a77bd07", "score": "0.0", "text": "public edgeNode getLink(){\n\t\treturn this.link;\n\t}", "title": "" } ]
[ { "docid": "e1fef271c3ec27f2ad14f4b732f37dab", "score": "0.75625825", "text": "@java.lang.Override\n public int getIndex() {\n return index_;\n }", "title": "" }, { "docid": "3e9e7108909095c7d6f5674434021961", "score": "0.75269854", "text": "@java.lang.Override...
7a079345a4a4b00e4335ab402c7655dc
/ renamed from: u
[ { "docid": "7f77b2ca65a0852cb1591330d2db7b75", "score": "0.0", "text": "private void m93757u() {\n if (m93692ab()) {\n this.f64928A.setVisibility(8);\n this.f64928A.setOnClickListener(null);\n return;\n }\n if (this.f64961ah == null) {\n t...
[ { "docid": "24b50fbf16d1a536b8b5ea95778c7d72", "score": "0.6304962", "text": "public String getU() {\n\t\treturn u;\n\t}", "title": "" }, { "docid": "e85895c712a3314a82e633fecd7cd32d", "score": "0.60506076", "text": "public java.lang.String getUf(){\n r...
59dd0a6c5cf26d61c52f9eb1f558d4f4
Util method to write an attribute without the ns prefix
[ { "docid": "a3cbb684c95bdeeb46651841f11997f7", "score": "0.0", "text": "private void writeAttribute(java.lang.String namespace,java.lang.String attName,\n java.lang.String attValue,javax.xml.stream.XMLStreamWriter xmlWriter) throws javax.xml.stream.XMLStreamException{\...
[ { "docid": "4032b8c44c9067682aec7c95df9e1e42", "score": "0.7247223", "text": "private void writeAttribute(java.lang.String namespace,java.lang.String attName,\r\n java.lang.String attValue,javax.xml.stream.XMLStreamWriter xmlWriter) throws javax.xml.stream.XMLStreamE...
931338928218c137b0a65768c7ac1755
"G:", "cd G:\\CodeDownloadPath\\loanmall", "mvn clean package Dmaven.test.skip=true U globalsettings=D:\\ToolsSoftware\\Maven\\settings.xml"
[ { "docid": "e8e358a37ae0fa8c8208f47303505250", "score": "0.6311329", "text": "@Test\n public void t01() throws Exception {\n Terminal terminal = new Terminal();\n terminal.initializeProcess();\n terminal.onCommand(\"G:\\r\\n\");\n terminal.onCommand(\"cd G:\\\\CodeDownload...
[ { "docid": "d46ed4246ec6186471ebdaa7f7375bb1", "score": "0.5639293", "text": "public static String getMvnCommand() {\n\n String command = \"mvn\";\n\n String mvnDebug = System.getProperty(\"TACT_DEBUG\");\n\n if (mvnDebug != null && mvnDebug.trim().length() > 0) {\n ...
c28b44025ed8af88f6950cf303da2e21
this will return null (unselected) for default mock dialog.
[ { "docid": "60276402a38fbf9a68ac3b03e993b49f", "score": "0.0", "text": "@Test\n public void projectIsNotSelected_doesNotTriggerListeners() {\n projectSelector.handleOpenProjectSelectionDialog();\n\n verifyNoMoreInteractions(projectSelectionListener);\n }", "title": "" } ]
[ { "docid": "18824aeb9b4ad7a4a1f544bbaec1dbe0", "score": "0.64282376", "text": "@Override\n\tpublic Object getModelSelected() {\n\t\treturn null;\n\t}", "title": "" }, { "docid": "76cc5e96cca54c2d24282a08242f5a42", "score": "0.61324185", "text": "public boolean getSelected()\n {\n ...
9a716aec2a8ee8b9997965ed10296e7d
write your object's data to the passedin Parcel
[ { "docid": "fe81f2b038b4c0e6fc2c948720bde95f", "score": "0.5921305", "text": "@Override\n public void writeToParcel(Parcel out, int flags) {\n\n out.writeString(docName);\n out.writeString(docID);\n out.writeString(contactNumber);\n out.writeString(description);\n\n }",...
[ { "docid": "5f00c8064f251fcce44a1d4535eb4426", "score": "0.6800538", "text": "protected abstract void writeData(ObjectOutputStream out) throws IOException;", "title": "" }, { "docid": "87849d3f86beaae77719dbe82d9f7b2b", "score": "0.65488064", "text": "public void writeObjectData(Obje...
2d0357dc2aa65dbc8a09b3c942e54dcb
in teoria prende in ingresso una carta e mi ritorna il suo id
[ { "docid": "998148d7ea2307bb4fd31fd0a5d3e3ff", "score": "0.0", "text": "public int getDevIdFromCard(DevelopmentCard DevCard) {\n return DevCard.Id;\n }", "title": "" } ]
[ { "docid": "75861150f56af115df3fedb2515674eb", "score": "0.7040401", "text": "public int getIdCartelera() {\n return idCartelera;\n }", "title": "" }, { "docid": "f286dc22bcda3b5c455fd30c2bde2625", "score": "0.66672117", "text": "ManufacturingCart selectByPrimaryKey(Integer...
5e185150f8b61ce5105970ef4a853eb6
This method is called from within the constructor to initialize the form. WARNING: Do NOT modify this code. The content of this method is always regenerated by the Form Editor.
[ { "docid": "ed944d554dabd8e190e47509d0218109", "score": "0.0", "text": "@SuppressWarnings(\"unchecked\")\n\n // <editor-fold defaultstate=\"collapsed\" desc=\"Generated Code\">// GEN-BEGIN:initComponents\n private void initComponents() {\n jPanel1 = new javax.swing.JPanel();\n jPanelMain = new j...
[ { "docid": "17113ab7a06544a62482637e283ac13d", "score": "0.7392794", "text": "@SuppressWarnings(\"unchecked\")\n // <editor-fold defaultstate=\"collapsed\" desc=\"Generated Code\">//GEN-BEGIN:initComponents\n private void initComponents() {\n }", "title": "" }, { "docid": "b431c293f...
87f73b6fd9b006cf9f2148272c6e999d
Convert the given object to string with each line indented by 4 spaces (except the first line).
[ { "docid": "8279fe35d1f3c688ad6983974b78755b", "score": "0.0", "text": "private String toIndentedString(java.lang.Object o) {\n if (o == null) {\n return \"null\";\n }\n return o.toString().replace(\"\\n\", \"\\n \");\n }", "title": "" } ]
[ { "docid": "9e6d1b5dcd4619e079c1bbb422051363", "score": "0.7617954", "text": "private String toIndentedString(Object o) {\nif (o == null) {\nreturn \"null\";\n}\nreturn o.toString().replace(\"\\n\", \"\\n \");\n}", "title": "" }, { "docid": "9e6d1b5dcd4619e079c1bbb422051363", "score":...
260b3b896bcd76a71805682c077c3f5e
optional string icon_url_large = 7;
[ { "docid": "e8f651698eb5fa03cbc52694c0ecab00", "score": "0.70146686", "text": "@java.lang.Override\n public boolean hasIconUrlLarge() {\n return ((bitField0_ & 0x00000040) != 0);\n }", "title": "" } ]
[ { "docid": "42b060c566a7a6f059717f24c4a9b8ce", "score": "0.81681144", "text": "java.lang.String getIconUrlLarge();", "title": "" }, { "docid": "404a77b6c986b6f62df73b34f075ecec", "score": "0.761376", "text": "boolean hasIconUrlLarge();", "title": "" }, { "docid": "ee3735d...
57933628ca2c0e4248721aae78dc6956
System.out.println(Math.sqrt(Math.pow((21),2) + Math.pow((21),2))); System.out.println(getDistance(1,1,2,2,));
[ { "docid": "b07cb3c4d72ea53bc51ae61dc31d3087", "score": "0.0", "text": "public static void main(String[] args) {\n }", "title": "" } ]
[ { "docid": "3a08e4f653de2a61da928d71db83061b", "score": "0.79844415", "text": "int main()\n{\n int x1=3, y1=4, x2, y2;\n cin>>x2>>y2;\n int dist;\n dist=sqrt(pow(x1 - x2, 2) + pow(y1 - y2, 2));\n cout << dist << endl;\n}", "title": "" }, { "docid": "4949a7d2ebc7074aee7b92da1d9c0987", ...
2261bb1141f1e1296a6f7306f100f641
Verifies that map type is correctly registered such it's keys can be referred via dynamic property syntax
[ { "docid": "6679e3f83e1553b959194da1a11085bb", "score": "0.5899135", "text": "@Test\r\n public void testDynamicMapProperties() throws Exception {\r\n Map<String,String> map1 = Maps.newHashMap();\r\n map1.put(\"name\",\"nap\");\r\n map1.put(\"game\",\"tap\");\r\n\r\n Map<St...
[ { "docid": "a395aff5d114ffa4cc0b533196617136", "score": "0.6071661", "text": "public void testContainsKeyMapObjectString() {\n }", "title": "" }, { "docid": "73cb39682e3b59ee69ad67b453e717fc", "score": "0.5955402", "text": "public interface DynamicallyTypedMap<K> {\n /**\n ...
7084ec73766cba1e4d6eabce903fece0
Metodo para seleccionar una Cita de un Empleado del Taller
[ { "docid": "66baa7e1896fb66ea5de0830e5eeb52d", "score": "0.6219155", "text": "public Response seleccionarCitaTaller (String restriccion) {\n\t\tWebTarget selectCitaTallerTarget = loginTarget.path(\"selectCitaTaller\");\n\t\tEntity<String> ent = Entity.entity(restriccion, MediaType.APPLICATION_JSON);\n\t...
[ { "docid": "9a6b15b4b1decd34870fbbfcfc6aaa20", "score": "0.65716416", "text": "public void Seleccionar(){\n\t\t\n\t\t}", "title": "" }, { "docid": "c61b125b1a92ca94f9be808cc0982e96", "score": "0.6445621", "text": "@Override\r\n\t\t\tpublic void seleccionar() {\n\r\n\t\t\t}", "tit...
08719d783dc08835dc8783c39399dad6
Evaluation of nilled function used as argument to xs:boolean function. Returns true .
[ { "docid": "535e588b5380686ddce606c335cc8fd5", "score": "0.71542305", "text": "@org.junit.Test\n public void fnNilled17() {\n final XQuery query = new XQuery(\n \" xs:boolean(fn:nilled(<shoe xsi:nil=\\\"{fn:true()}\\\"/>))\",\n ctx);\n\n final QT3Result res = result(query);\n result ...
[ { "docid": "2a5fb46f2889ee6b510956bc9045a12f", "score": "0.73686945", "text": "R apply(boolean value);", "title": "" }, { "docid": "e0b8e3484e18f64a495e305b6926d298", "score": "0.69629014", "text": "@Override // kotlin.jvm.functions.Function0\n public Boolean invoke() {\n ...
388d285cb0fec374cd31379a4184117c
End of class. IRRUploadKnowledge Contructor class driven from Main or other Class Caller.
[ { "docid": "9738252727f73e44d8c5483cc865d409", "score": "0.65898037", "text": "public IRRUploadKnowledge(String _IRRHost,\r\n String _IRRPrincipal,\r\n String _IRRCredentials,\r\n String _xsdInfileName,\r\n ...
[ { "docid": "86768a45f3f9fda280c8a912a5807993", "score": "0.6280835", "text": "private UploadManager() {\n\t}", "title": "" }, { "docid": "d706406672fa6ad35761b265827c755d", "score": "0.6221592", "text": "public ImageUpload()\n {\n \tsuper();\n \tOutput.clear();\n \tNumber...
73b7f014bc52f03a8550786f4173b242
Performs a linear search algorithm to find the given item. It returns the steps taken by the algorithm to find the item.
[ { "docid": "2aafccb27f681b73aa50f3b451378d5c", "score": "0.717925", "text": "public static List<FNode> linearSearch(int item, List<Integer> data) {\r\n\t\tList<FNode> steps = new ArrayList<FNode>();\r\n\t\t// go through the data one by one...\r\n\t\tfor (int i = 0; i < data.size(); i++) {\r\n\t\t\tif (d...
[ { "docid": "bbb76b9ac8eb167cb7bf13de8293152b", "score": "0.6558383", "text": "public int findItem (E item) {\n\n int pos = -1;\n ListNode<E> temp = firstNode;\n for (int x = 0; x < numElements; x++) {\n E temp1 = temp.getData();\n if (temp.getData().equals(item...
10fb665a3d35ac783a3b72a468d24737
BSField[] fields = table.getFields();
[ { "docid": "6651f4e2b9004544a14795e34b9e1a26", "score": "0.0", "text": "private String getSQL4Delete(BSTableConfig table, String idField) {\n\t\tString sql = \"DELETE FROM \" + table.getDatabase() + \".\";\r\n\t\tsql += table.getTableName();\r\n\t\tsql += \" WHERE \" + idField + \"=?\";\r\n\t\treturn sq...
[ { "docid": "6ff52bdadf517c296d565fcb1a457fe0", "score": "0.6605433", "text": "List<FieldBinary> getFieldBinaries(TableBinary table);", "title": "" }, { "docid": "4e953b34a0a660e7ce38016cc2d1dd10", "score": "0.64958066", "text": "List<Object> getFieldBinaryAndGroupFieldBinaries(TableB...
0d827bd30b48491933fdc7052c35f9dc
Created by ZPF on 2018/7/17.
[ { "docid": "6b2d0ae46ea9a0397944dcf6916739cb", "score": "0.0", "text": "public interface OnProgressListener {\n /**\n * @param target 对应对象\n * @param total 总数据量\n * @param current 当前进度量\n */\n void onProgress(long total, long current, @Nullable Object target);\n}", "title": "" ...
[ { "docid": "cdf542363f5b089e84183e3d9020935f", "score": "0.60239434", "text": "@Override\n\t protected void ramana() {\n\t\t\n\t}", "title": "" }, { "docid": "f0705d77863f0fa7c516a99a8eca8134", "score": "0.5906609", "text": "private void zbudujSciezkeiRozpocznij() {\n\t\t\r\n\t}", ...
f93a98617089185cbc66182f4c8f8596
Convert request parameter to enum item.
[ { "docid": "11aded03a4e0dd520ea905edf7eb08ca", "score": "0.0", "text": "public static PastIntervalValue parseRequestParameterValue(String requestVal) throws IllegalArgumentException {\n\t\trequestVal = SearchUtils.trimToNull(requestVal);\n\t\tif (requestVal == null)\n\t\t\treturn null;\n\t\tfor (PastInt...
[ { "docid": "f95389ff6c62a077c33c81557764576f", "score": "0.6130229", "text": "public static ItemEnum valueOf(int item) \n {\n // The function converts the passed numeric value to its corresponding text.\n return (ItemEnum) itemMap.get(item);\n }", "title": "" },...
49bedffb1fd0946692378392fd7b3225
Invites the specified user to the specified events. Silently ignores the call if that user is already invited or participating in the event.
[ { "docid": "ad0524e5540ec77ee34bc51768dcef7d", "score": "0.7589159", "text": "void inviteUser(User userID, Event event);", "title": "" } ]
[ { "docid": "e16594bfd8b45afe5cfc6b004ca3093e", "score": "0.69050986", "text": "@Override\n\tpublic void inviteUser(int userId, int eventId) throws RemoteException {\n\t\tm.inviteUser(userId, eventId);\n\t}", "title": "" }, { "docid": "20a20266c272bf1af6d8345f996a990b", "score": "0.673278...
55be965564637db11f74f71751a11548
Does the database treat mixed case quoted SQL identifiers as case insensitive and store them in mixed case?
[ { "docid": "171545141ad8dc4024106870d062d636", "score": "0.76518464", "text": "public boolean storesMixedCaseQuotedIdentifiers() throws SQLException {\n setCaseSensitiveFlag();\n\n return !caseSensitive.booleanValue();\n }", "title": "" } ]
[ { "docid": "155b0ab49f01ab6ed20fd6c6213f86c5", "score": "0.7868721", "text": "public boolean storesLowerCaseQuotedIdentifiers()\n throws SQLException\n {\n return false;\n }", "title": "" }, { "docid": "adffb94c80e9897b44ea5335697511fb", "score": "0.77639425", "text": "...
c1497bfe2778f939b700a04fee2f4490
Returns the currently visible view.
[ { "docid": "e5171ca48189fdee27359f0f9169e081", "score": "0.0", "text": "public View getSelectedPane()\n{\n return _sindex>=0 && _sindex<getChildCount()? getChild(_sindex) : null;\n}", "title": "" } ]
[ { "docid": "816f3da655b3b7dbc2315e5130b53342", "score": "0.6797103", "text": "public UserTaskView getCurrent() {\n TopComponent activated = WindowManager.getDefault().\n getRegistry().getActivated();\n if (activated instanceof UserTaskView)\n return (UserTaskView) act...
b847260f6506e2f3794faaa40a200ba6
Updates Bucket values like Quota and Retention.
[ { "docid": "472f04fa1471e8ad0a07ebb26c9e8d66", "score": "0.66095686", "text": "@PUT\n @Consumes({ MediaType.APPLICATION_XML, MediaType.APPLICATION_JSON })\n @Path(\"/{id}\")\n @Produces({ MediaType.APPLICATION_XML, MediaType.APPLICATION_JSON })\n @CheckPermission(roles = { Role.TENANT_ADMIN ...
[ { "docid": "8aa6069fb62854fd9faac36340f97c83", "score": "0.6254209", "text": "public void setUpdateBucketRequest(BucketUpdateRequest param){\r\n \r\n this.localUpdateBucketRequest=param;\r\n \r\n\r\n...
f9e0897903e1af350250bcf7cca5eb68
Inserts a new tool into the database. Assumes that the tool ID does not already correspond to a tool.
[ { "docid": "3a20cc93b9e7c892a5f0b0fc10d75086", "score": "0.662039", "text": "public void addTool(int toolID, String toolName, int quantityInStock, double price, boolean already_pending_order, int supplierID) {\r\n try {\r\n PreparedStatement statement = databaseConnectionManager.getCon...
[ { "docid": "6b157daf974bf177ddf700c378fc1934", "score": "0.6881481", "text": "public boolean addTool(Tool tool) {\n\n\t\tConnection connection = null;\n\t\tPreparedStatement statement = null;\n\n\t\tfinal String query = \"INSERT INTO \\\"tool\\\"(tool_name, map_id) VALUES(?,?);\";\n\n\t\ttry { ...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "d89cd8ddc940707e08ffd48f44b79fa5", "score": "0.0", "text": "@Override\n protected void setUp() throws Exception {\n super.setUp();\n\n marvin = new Mask(\"+13016864576\");\n tim = new Mask(\"+32475932921\");\n }", "title": "" } ]
[ { "docid": "1acc57d42c31dee937ac33ea6f2a5b0b", "score": "0.68399656", "text": "@Override\r\n\tpublic void comer() {\n\t\t\r\n\t}", "title": "" }, { "docid": "0c69424878be03e50f19e2ca61ef640b", "score": "0.68002176", "text": "@Override\r\n\tpublic void leggi() {\n\t\t\r\n\t}", "ti...
c8896e9444aff5722b75d4da8e72fcde
Inicializa la celda con una fila y una columna.
[ { "docid": "8e331564f4c91fa1ac4b50d881b1f2c9", "score": "0.6441695", "text": "public Celda(int fila, int columna) {\n\t\tthis.fila=fila;\n\t\tthis.columna=columna;\n\t\tthis.valor = null;\n\t\tthis.entidadGrafica = new EntidadGrafica();\n\t}", "title": "" } ]
[ { "docid": "ef3e6f385a893c5b85d3865486868fb7", "score": "0.6517414", "text": "public CrearCelula(int fila, int columna){\n\t\tthis.fila = fila;\n\t\tthis.columna = columna;\n\t}", "title": "" }, { "docid": "22dbf254eeb32a1ca0cfb8e65aefd6a4", "score": "0.63419646", "text": "private vo...
5e185150f8b61ce5105970ef4a853eb6
This method is called from within the constructor to initialize the form. WARNING: Do NOT modify this code. The content of this method is always regenerated by the Form Editor.
[ { "docid": "34438a387fe6aff9ed8c0d1a6339f979", "score": "0.0", "text": "@SuppressWarnings(\"unchecked\")\n // <editor-fold defaultstate=\"collapsed\" desc=\"Generated Code\">//GEN-BEGIN:initComponents\n private void initComponents() {\n\n jPanel1 = new javax.swing.JPanel();\n jProgre...
[ { "docid": "c1f03460981549d2f9d5d64390a7ef2c", "score": "0.7331442", "text": "public Main_Form() {\n initComponents();\n }", "title": "" }, { "docid": "37a5472d5b0f35cf64a077bc1dd978c4", "score": "0.7317832", "text": "public Form() {\n initComponents();\n }", ...
f438d16e396ecf12871ece2350e2d4a9
Sets left bit to low
[ { "docid": "d4907c76a18f41efb59e043694eb33d3", "score": "0.0", "text": "public void releaseGoLeft() {\n dataToArduino[Protocol.CONTROLS.getValue()] = this.releaseBit(dataToArduino[Protocol.CONTROLS.getValue()], Protocol.controls.LEFT.getValue());\n this.fireStateChanged();\n }", "ti...
[ { "docid": "f4b344eaffc35acfca32aeb0c4659b48", "score": "0.7226595", "text": "public void setLeft(BinaryNode leftNode) {\r\n\t\tleft = leftNode;\r\n\t\t\r\n\t}", "title": "" }, { "docid": "c147f7ae61edc17171ff7441f0049f67", "score": "0.72177565", "text": "public void setLeft(int left...
8f14c8f6df088b74e74bf3a8a989538e
Called when another command which requires one or more of the same subsystems is scheduled to run
[ { "docid": "49ba9e8f484e6c9815ef42fc26383bec", "score": "0.0", "text": "protected void interrupted() {\n \t\n }", "title": "" } ]
[ { "docid": "a0396ac9373133df926b3d2033df86f7", "score": "0.54163486", "text": "protected abstract void registerCommands();", "title": "" }, { "docid": "7a7a8cf7bf96aa9ac93a606c4bf2c962", "score": "0.5343044", "text": "@Override\n\tprotected void processSystem() {\n\t\t\n\t}", "ti...
35f0287297420a60480830c36d816082
Get the node at the given location.
[ { "docid": "8d0664d4683fe742716500e427b88f6e", "score": "0.769187", "text": "private Node<E> getNode(int location) {\r\n\t\tfinal Holder<Node<E>> itemHolder = new Holder<Node<E>>();\r\n\t\tfinal HolderInt index = new HolderInt();\r\n\t\tfinal int findLocation = location;\r\n\t\ttraverseInOrder(new NodeA...
[ { "docid": "71f955b0e4fe640dd10a0e5881e7bde2", "score": "0.69834226", "text": "@Override\r\n\tpublic E get(int location) {\r\n\t\tNode<E> node = getNode(location);\r\n\t\treturn node == null ? null : node.value;\r\n\t}", "title": "" }, { "docid": "5ddf57ffb7ba01e7ffa48e84bc57271b", "scor...
8aa5b8021ffa208adda8066270d6bde8
/ Circular string shift left
[ { "docid": "49458f107b9f2ad88bd3e35f56662f15", "score": "0.7341298", "text": "public String shiftLeft(String inputC){return inputC = inputC.substring(1) + inputC.charAt(0);}", "title": "" } ]
[ { "docid": "561aa705e8d1a90ba732d22872837c84", "score": "0.70602965", "text": "public final native String shiftString() /*-{\n return this.shift();\n }-*/;", "title": "" }, { "docid": "d7aae071cf2c2bf8ab2b325d4b20817c", "score": "0.68170315", "text": "private static String rotate...
89539deb6b71dad755130fbd396beb6b
Performs vertical scrolling in the browser/window
[ { "docid": "3d9ab56ab7aafcbdcbe6587f6ebd678e", "score": "0.71777844", "text": "public static void verticalScrollLong(WebDriver driver) {\n\t\t((JavascriptExecutor) driver).executeScript(\"window.scrollBy(0,900)\");\n\t}", "title": "" } ]
[ { "docid": "b9c407f7ab613f04dde48f09adaf281e", "score": "0.7683853", "text": "public void verticalScroll()\n {\n \t log.info(\"This is static scroll,it will scroll till given cordinates\");\n \t Dimension dimensions = driver.manage().window().getSize();\n \t int height = dimensions....
2bee038d0f6cb51ffa75c4f7fd45121e
Handles a hit of a RemotePlayer.
[ { "docid": "54d79b62d8b78872683662cee550aab9", "score": "0.0", "text": "@Override\n public void hurt(int amt) {\n if(!MultiplayerGameState.getEntityHashMap().containsValue(this)) { //Tests if the RemotePlayer is still valid in the World\n return; //If not, return and do nothing.\n ...
[ { "docid": "944b2af48d8434d94b02829f049b5ce2", "score": "0.7709001", "text": "@Override\r\n\tpublic void onPlayerHit(Player p) {\n\t\t\r\n\t}", "title": "" }, { "docid": "8f7f4fc2ed4dd62c70bb7cc4d4267130", "score": "0.73691577", "text": "public int onPlayerHit(Player p){\n ret...
260671494942f8d3cd35fa0624f4a978
Riporta i risultati su file
[ { "docid": "30d12e19d4fa64e806f2ee474420e13f", "score": "0.0", "text": "public void writeResults(String path) throws Exception {\n\t FileOutputStream output = new FileOutputStream(\"Results-Solidity-develop\"+path.substring(55, path.length())+\".txt\", true);\n\t\t\tPrintStream write = new PrintS...
[ { "docid": "9b9ab019a10897d229ededc369cb1d5c", "score": "0.6796187", "text": "public static void read_from_file(){\r\n\r\n\r\n\t}", "title": "" }, { "docid": "033fa482b24f380fca46f8a008e31b52", "score": "0.62705564", "text": "static void odpriDatotekoPravilno() {\n try {\n S...
c24b1a029561a920b80d420e369d931c
Obtiene el dia de la semana y su numero de una fecha con formato yyyymmdd
[ { "docid": "5d09213f38169e83b82d0cad50256b84", "score": "0.0", "text": "public static String getDayAndWeekDayFromDate(String date)\r\n\t{\r\n\t\treturn getWeekDayFromDate(date)+\" \"+date.substring(date.length()-2);\r\n\t}", "title": "" } ]
[ { "docid": "8ea374724a5bbf7a027a7a09b3999468", "score": "0.7118086", "text": "private static String getFecha(){\r\n\t\tCalendar fechaActual = Calendar.getInstance();\r\n\t\tString dia=Integer.toString(fechaActual.get(Calendar.DATE));\r\n\t\tString mes= Integer.toString(fechaActual.get(Calendar.MONTH));\...
262a6ccd859d37eb937c4dfe886aaa7d
pongo id come chiave primaria
[ { "docid": "c212435eef40571ba48fee17ca889748", "score": "0.0", "text": "@Override\r\n\tpublic Indicatore findByPrimaryKey(Long id) {\r\n\t\treturn em.find(Indicatore.class, id);\r\n\t}", "title": "" } ]
[ { "docid": "4070fddc392b3d0fa27a223c59a72f04", "score": "0.6619924", "text": "public int getId(){return this._id;}", "title": "" }, { "docid": "c356bd308b9c10d8b532d43be9b79fd4", "score": "0.6601195", "text": "long getObjectId();", "title": "" }, { "docid": "5ca5e382d6fbf...
261842a637e9f8f0744657adb7578d7a
create an information method
[ { "docid": "a809eae3096dfd0b53555dc8712aaf0c", "score": "0.0", "text": "public void information(String name, int age, String color) {\n System.out.print(\"Your client's name is \" + name + \".\" );\n if (age < 18) //check if they are a minor or not\n {\n System.out...
[ { "docid": "af9a62323fbd67362e656ce7411ea344", "score": "0.7707213", "text": "public abstract void info();", "title": "" }, { "docid": "f2576762c426535a40b900d252fb6dc2", "score": "0.71930695", "text": "public void info(String details) ;", "title": "" }, { "docid": "59af8...
dca63e197be6825a3a56fb23f816858c
magnetic field at the vertex (T) optional .proio.model.eic.XYZD magfield = 9;
[ { "docid": "3525b99d4b6acaec9b32072d5d1db221", "score": "0.58042896", "text": "private com.google.protobuf.SingleFieldBuilderV3<\n proio.model.Eic.XYZD, proio.model.Eic.XYZD.Builder, proio.model.Eic.XYZDOrBuilder> \n getMagfieldFieldBuilder() {\n if (magfieldBuilder_ == null) {\...
[ { "docid": "93c761cd79a51950a3dc1af34cf2a8ab", "score": "0.7550741", "text": "proio.model.Eic.XYZD getMagfield();", "title": "" }, { "docid": "53310981c7e96e5b5b4fb3787c4bb83d", "score": "0.7305692", "text": "public proio.model.Eic.XYZD getMagfield() {\n return magfield_ == null...
01223e648adc33719a19bc8cda1baeb7
The asymmetric key pair to use for encryption.
[ { "docid": "986aa97ce1f2c2d4ef9ec3f161d3a10c", "score": "0.76040083", "text": "EncryptionKeyPair getEncryptionKeyPair();", "title": "" } ]
[ { "docid": "c84f043a1f51f51dfc8afc3e5c64b71d", "score": "0.7755904", "text": "public AsymmetricEncryption()\r\n {\r\n generateKeys();\r\n }", "title": "" }, { "docid": "a8eb40a5974bd2fa4b3e7ec17eec1d2d", "score": "0.7312155", "text": "private KeyPair KeyPair() throws NoS...
fec9694a593d0a09402aa6138b635112
Modify root entity to add embed entity should also have the embed entity id encoded
[ { "docid": "f9940d98c0fe19fed0bdfd0018db870c", "score": "0.5987373", "text": "@Test\r\n @SuppressWarnings(\"unchecked\")\r\n public void modifyToAddEmbedEntity() {\r\n DummyEntity helper = new DummyEntity(deployMetaService);\r\n NewBsonEntity newVersionEntity = helper.newEntityWithDu...
[ { "docid": "3ef3cc5147184fcf4bd3d442107d42db", "score": "0.52994835", "text": "void setEmbedding(Embedding embedding);", "title": "" }, { "docid": "129918fcb900efc7185206988bd67f6c", "score": "0.5169359", "text": "@Test\n @Ignore\n\tpublic void testEmbeddedObject() throws Exceptio...
f14b29367f51ffe792fdbf4dfcfc99f1
I just input the settings manually like this, it's faster
[ { "docid": "545f9771f280e8fa0df2cc965d9b57fb", "score": "0.0", "text": "public static String run(String classPath, String globalsName, ArrayList<String> functionFilter){\n\t\tFile classFile = new File(classPath);\n\t\t\n\t\ttry {\n\t\t\tString content = new String(Files.readAllBytes(classFile.toPath()))...
[ { "docid": "e4b9964f93c0aecaeadac2fca33f8790", "score": "0.65638536", "text": "private void intoSettings(){\n\t\tif (gameData.debug) System.out.println(\"Settings Not implemented yet\");\r\n\t}", "title": "" }, { "docid": "4a0810ee41b1c566868ffefd5770a302", "score": "0.65572375", "te...
8a79f195254cd0d48af7906fa6f7d7d0
int32 individual_defense = 18;
[ { "docid": "e582d00daa34dfa2675561da41fab79e", "score": "0.0", "text": "public Builder setIndividualDefense(int value) {\n \n individualDefense_ = value;\n onChanged();\n return this;\n }", "title": "" } ]
[ { "docid": "d4a3a3e3f6ee65f346e3c1fb2524a8b5", "score": "0.65604556", "text": "public int getDefense(){\n\t\treturn getCaract(\"defense\");\n\t}", "title": "" }, { "docid": "137fa1734f45b9b7a266c3f90380da3a", "score": "0.6559653", "text": "int getAttack();", "title": "" }, { ...
1b50c6d91f41795814e6452d371e3172
This method was generated by MyBatis Generator. This method sets the value of the database column ccp_contest_template.background_img_url
[ { "docid": "b2ad4f4c42245346e7a346ebf9989818", "score": "0.63702434", "text": "public void setBackgroundImgUrl(String backgroundImgUrl) {\n\t\tthis.backgroundImgUrl = backgroundImgUrl;\n\t}", "title": "" } ]
[ { "docid": "8a6202485dd3753c7e8f28d07a096471", "score": "0.6090103", "text": "public void setBackgroundImage(URL imageURL);", "title": "" }, { "docid": "8b4ebb06904fcc62ed18f74006f2637c", "score": "0.60176057", "text": "public void setBackgroundImageURL(String backgroundImageURL) {\n...
3cd12f7ca992c83ec95df1444fe1f69f
AGREGA UN NUEVO TRABAJADOR A LA BASE DE DATOS
[ { "docid": "adaa4b0ebb37ab0f05f2523b5275c8c2", "score": "0.0", "text": "public void AgregaTrabajador(Trabajador trabajador){\r\n\t\t\tTrabajadorDAO cDAO = new TrabajadorDAO();\r\n\t\t\tcDAO.save(trabajador);\r\n\t\t}", "title": "" } ]
[ { "docid": "ed869e33ca03de43c046af9b25af2902", "score": "0.6309515", "text": "private void osveziTabeluGledaoci() {\n\t\tObject[]redovi=new Object[2];\r\n\t\tdtm3.setRowCount(0);\r\n\t\t\r\n\t\tfor(Gledalac gl:Kontroler.getInstanca().vratiGledaoce()) {\r\n\t\t\t\r\n\t\t\tredovi[0]=gl.getId_Gledalac();\r...
b84577b1f8b6d96e4759f5fb2a9c0646
Debug.waitForDebugger(); int yOff = mAdditionalPadding/3; canvas.translate(0, yOff); super.onDraw(canvas);
[ { "docid": "05a10b64f8b7eea855e4e98af4496e1d", "score": "0.66289574", "text": "@Override\n protected void onDraw(Canvas canvas) {\n\n\n if (true){\n if (fontMetricsInt == null){\n fontMetricsInt = new Paint.FontMetricsInt();\n getPaint().getFontMetricsI...
[ { "docid": "72e0485dfb0812b30483b48470bf10df", "score": "0.71766055", "text": "@Override\n\tprotected void onDraw(Canvas canvas) {\n\t\n\t}", "title": "" }, { "docid": "be96ba150f40f8be2442985e92b0c5a4", "score": "0.71685493", "text": "@Override\n protected void onDraw(Canvas canv...
580c357b76b8a20aaef1bf9a4d80bc5a
Shows a dialog allowing the user to view and edit working papers and resolutions.
[ { "docid": "28a6cac36e0d79a860922134fb4c46da", "score": "0.70985967", "text": "private void viewEditWP_Resolutions() {\n\t\tif (committee.getTopics().isEmpty()) {\n\t\t\tJOptionPane\n\t\t\t\t\t.showMessageDialog(\n\t\t\t\t\t\t\tKiosk.this,\n\t\t\t\t\t\t\tMessages.getString(\"Kiosk.NoTopicSetMsesage\"), ...
[ { "docid": "f17daae74db1ef05c66d759e8028e15a", "score": "0.64124817", "text": "private void displayDialog() {\n\t\tsetDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);\n\t\tsetSize(690, 600);\n\t\tsetResizable(false);\n\t\tDimension objScreenSize = Toolkit.getDefaultToolkit().getScreenSize();\n\t\ti...
a739273d2f1b16a1fdf06f05749f712b
Possible Agent Properties see AgentPropertiesEnum
[ { "docid": "902e5541c135b880228ab4d754c4af6a", "score": "0.0", "text": "public void deployAgent(String agentName, String classFile, Map<AgentPropertiesEnum, Object> agentProperties) {\n\n Map<String, Object> argumentMap = new HashMap<>();\n for (AgentPropertiesEnum key : agentProperties.ke...
[ { "docid": "238b7fbc64cdb3bd62d89cb7fe22f119", "score": "0.6247599", "text": "@Override\r\n\tpublic String getProperties() {\n\t\treturn \"(SeaWeed||Avocado||Eel||Rice)\";\r\n\t}", "title": "" }, { "docid": "273d6d8864d747127ad529a4442f9d47", "score": "0.6145088", "text": "public int...
1aeb98793c612b86f59d5f6964906e52
int32 row_id = 10000;
[ { "docid": "fadcbd167143e91e0337ad5414f5e279", "score": "0.66921407", "text": "public int getRowId() {\n return rowId_;\n }", "title": "" } ]
[ { "docid": "2eb10c48a188d72dcd018f86a26eb095", "score": "0.7300505", "text": "int getRowId();", "title": "" }, { "docid": "2eb10c48a188d72dcd018f86a26eb095", "score": "0.7300505", "text": "int getRowId();", "title": "" }, { "docid": "2eb10c48a188d72dcd018f86a26eb095", ...
81959f76262e9dd2cdd9894684183df4
This method was generated by MyBatis Generator. This method returns the value of the database column account_payment.journal_id
[ { "docid": "8ed25bafe6cdecc7b741aadd7b7db5d6", "score": "0.7335785", "text": "public Integer getJournalId() {\n return journalId;\n }", "title": "" } ]
[ { "docid": "102b614b1514e104f1b635948b4a3676", "score": "0.680498", "text": "Dependent findByJournalId(int journalId) throws SQLException;", "title": "" }, { "docid": "b802679c1ab6e63e3a808a25e878c992", "score": "0.6550704", "text": "public int getGL_Journal_ID() {\n\t\tInteger ii = ...
7e2b2902abb8c0da477597baee8bc43a
Return a Rink object using its Rink ID
[ { "docid": "68c05dd042eafc4d1aeaec37d986a89d", "score": "0.80658853", "text": "Rink findById(Integer id);", "title": "" } ]
[ { "docid": "e63e58f8836c9c62b2c3d437d9fcf940", "score": "0.60897875", "text": "Sandwich getById(int id);", "title": "" }, { "docid": "1cefea638c401e7ba6e452c547cf5d28", "score": "0.6015379", "text": "RecordObject getRecord(String id);", "title": "" }, { "docid": "9b43425a...
4a56c4a700f06528b147b1af61a17ada
Unprotect document from changes.
[ { "docid": "38ac83ee9804c4488929bac467200ce2", "score": "0.0", "text": "@Deprecated \n public CellsCloudResponse cellsWorkbookDeleteDocumentUnprotectFromChanges(String name, String folder, String storageName) throws ApiException {\n ApiResponse<CellsCloudResponse> resp = cellsWorkbookDeleteDoc...
[ { "docid": "142fa7f2d1461d68fc9d382f16b3fcda", "score": "0.5819021", "text": "@Override\r\n\tpublic Document unsetContent(Document document) {\n\t\treturn null;\r\n\t}", "title": "" }, { "docid": "ee139f944b6034e00fefd45de2547f5c", "score": "0.5812819", "text": "void unsetPub();", ...
e516a6be32109ef8afac3c3b615c97f1
This callback is executed when the app has connected to googleplayServices
[ { "docid": "898a19bb2a81ef8508bb4f3f7ca7b26e", "score": "0.6784418", "text": "@Override\n public void onConnected(Bundle connectionHint) {\n connectedToGoogleApi = true;\n handler.postDelayed(CheckLocation, 100);\n }", "title": "" } ]
[ { "docid": "9e1df46cc2a7d1c957aff2f8510bf5b3", "score": "0.72362006", "text": "@Override\n public void onConnected(@Nullable Bundle bundle) {\n Log.d(TAG, \"Google Api Client Connected\");\n }", "title": "" }, { "docid": "9ba0267abcbe38c9ba2b93e8c2d9f3e9", "score": "0.718838...
711c293f9b6e7c0c2c29a6f524240219
Private constructor for generating new SubtractSquareState after a move.
[ { "docid": "986b90ff7b3690ca60e42bf8e10dc75b", "score": "0.6218628", "text": "private SubtractSquareState(boolean p1_turn, int current_total, String p1Name, String p2Name) {\n this.p1Name = p1Name;\n this.p2Name = p2Name;\n this.p1Turn = p1_turn;\n this.currentTotal = current...
[ { "docid": "8e0db3a872e50a7310f18a523764a931", "score": "0.7139173", "text": "public SubtractSquareState makeMove(String move) {\n int moveInt = Integer.parseInt(move);\n return new SubtractSquareState(!p1Turn, this.currentTotal - moveInt, this.p1Name, this.p2Name);\n }", "title": "...
9fc36e187c07ca02906208da975e0c79
Checks if the size is within 1 and MAX_BOOKING_SIZE.
[ { "docid": "3cb18890ef7e2554e7da2fcec412b22a", "score": "0.8077071", "text": "private boolean isValidSize(int size) {\n return size > 0 && size <= MAX_BOOKING_SIZE;\n }", "title": "" } ]
[ { "docid": "4c3f43bb8a4fe67f3b4e6dfb8d868c79", "score": "0.67373115", "text": "public void checkSize()\n\t{\n if(postings.size() >= maxListSize)\n {\n save();\n\n if(actualList + 1 >= nextList)\n {\n ...
4f660317cfe21950531e5dfd2f57a33f
Compare DOM ID against another object
[ { "docid": "cce4f35b0dfa5361686a7fba63088c00", "score": "0.0", "text": "@Override\n public int compareTo(Object obj)\n {\n if (obj == null) {\n return 1;\n } else if (!(obj instanceof ISourceID)) {\n return getClass().getName().compareTo(obj.getClass().getName()...
[ { "docid": "bddd0160c7837b025b16395f037f38d8", "score": "0.6483704", "text": "boolean sameID(ID id);", "title": "" }, { "docid": "0d8c3f95389a2c46823a531662aaf6bc", "score": "0.63670367", "text": "public boolean is(ID id);", "title": "" }, { "docid": "ca4d2973f07989e28096...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "47981c7b6361e4cb390be52cff6780b5", "score": "0.0", "text": "public static void main(String[] args) {\n\t\tBinaryTree tr1 = new BinaryTree();\n\t\ttr1.root = new Node(100);\n\t\ttr1.root.left = new Node(50);\n\t\ttr1.root.left.left = new Node(25);\n\t\ttr1.root.left.right = new Node(75);\n\t\...
[ { "docid": "81005989525ec80103fbaf46f9c37779", "score": "0.6694239", "text": "@Override\n\tpublic void agit() {\n\n\t}", "title": "" }, { "docid": "0b5b11f4251ace8b3d0f5ead186f7beb", "score": "0.65686274", "text": "@Override\n\tpublic void comer() {\n\t\t\n\t}", "title": "" }, ...
1f567a01f374deda2164cadf0371f00e
validate loginname is loginId
[ { "docid": "92b512ab949c8870fdaed91981e511c5", "score": "0.74269", "text": "public static boolean isLoginId(String loginName) {\n\n if (StringUtil.isEmpty(loginName)) {\n return false;\n }\n String id = \"^[1-9]\\\\d{15,}$\";\n return Pattern.matches(id, loginName)...
[ { "docid": "a93b11c6dcb932360ad3d1cfe7ddd80b", "score": "0.7564199", "text": "boolean checkExistLoginName(String login);", "title": "" }, { "docid": "432539bff3403c45dcc28a282c4522d9", "score": "0.68117046", "text": "String userNameByLogin(String login);", "title": "" }, { ...
468f66c1750f3d7f631c700dd86006b4
6.2 NtPCFactory makeGrade method
[ { "docid": "7cdc8558b9fbb573358e0f448fd2d20a", "score": "0.6477194", "text": "@Override\n public Expression makeGrade() \n {\n return new Expression(\"\\\"my way, or the highway\\\"\");\n }", "title": "" } ]
[ { "docid": "474f1ce9dd0d7b76028dd324b2c243f8", "score": "0.66380745", "text": "@Override\n public Expression makeGrade() \n {\n return new Expression(\"\\\"you pass, self-esteem intact\\\"\");\n }", "title": "" }, { "docid": "8c41b7a5eda91f54589a34f2958df60e", "score": "0...
263dcb9838302d75cdd3db372cfbdb5b
Inflate the layout for this fragment
[ { "docid": "895bc1fa52ab83fa8d0a8a679cad9bd4", "score": "0.0", "text": "@Override\n public View onCreateView(LayoutInflater inflater, ViewGroup container,\n Bundle savedInstanceState) {\n return inflater.inflate(R.layout.fragment_expense_app, container, false);\n ...
[ { "docid": "8bb7e3993bde01b4555bbb3cffff8569", "score": "0.7403527", "text": "protected void onInflateView() {\n }", "title": "" }, { "docid": "afe95b32eaf36044ffac0c621528e0ae", "score": "0.68513155", "text": "@Override\n public View onCreateView(LayoutInflater inflater, ViewG...
122ec0463e4bc201790691b6c096202b
Enter text in search box.
[ { "docid": "0c5dab81d8030de50bfe66e7c6c8d704", "score": "0.87088317", "text": "public void enterTextInSearchBox(String text) {\n\t//\tenterText(getElement(homePageLocators.searchBox), text);\n\t\t//getElement(homePageLocators.searchButton).click();\n\t}", "title": "" } ]
[ { "docid": "4bd60d0e3cf4122589d13ab414a7860e", "score": "0.81674314", "text": "public void enterText(){\n\t\tsearchtextbox.sendKeys(\"New launches\");\r\n\t}", "title": "" }, { "docid": "87a413a08ca5ee69a0da6ef257585059", "score": "0.8101301", "text": "public void enterTextInTheSearc...
e220930dea54d6b320e421136e02290b
Returns all occurrences of Certification
[ { "docid": "fa3905e348482ea15785ef8278fe14b4", "score": "0.4881361", "text": "public Cursor fetchAll() {\n\t\tCursor cursor = db.query(CertificationConstants.DB_TABLE, CertificationConstants.fields(), null, null, null, null, null);\n\t\treturn cursor;\n\t}", "title": "" } ]
[ { "docid": "ee49555796778ddd76654ef51cbbbbd1", "score": "0.5948475", "text": "public ArrayList<Concert> getConcerts(){\n\t\treturn concerts;\n\t}", "title": "" }, { "docid": "b3cb29e30316b35383de73f7f949d3e3", "score": "0.5928898", "text": "public ArrayList<PerformedConcert> getPerfo...
d0a30a9b4721992ae699f1d9068cbcf9
This method was generated by MyBatis Generator. This method sets the value of the database column TB_LS_CLAUSE.CLA_TYPE
[ { "docid": "d232c046f3d404c52f096bd5a02df8ee", "score": "0.7004867", "text": "public void setCLA_TYPE(String CLA_TYPE) {\n this.CLA_TYPE = CLA_TYPE == null ? null : CLA_TYPE.trim();\n }", "title": "" } ]
[ { "docid": "5cc3e3fc0ff7a5dbd13ebf341d9b4ff5", "score": "0.646306", "text": "public String getCLA_TYPE() {\n return CLA_TYPE;\n }", "title": "" }, { "docid": "58f272b1420d43e861ce8e0a8a56b36e", "score": "0.56009567", "text": "public void setTypeCodeForHibernate(CS typeCode)...
4c0224cb3b697bc5b27d64684e82087b
gives a die roll between 0 to 100.
[ { "docid": "400188ab05247b3b6b9c84b478bfc846", "score": "0.7205306", "text": "private int dice100() {\n\n Percentile roll = new Percentile();\n int rollNum = -1;\n\n rollNum = roll.roll();\n\n return rollNum;\n}", "title": "" } ]
[ { "docid": "27707473046278f1fd52b9e8d917da82", "score": "0.7861591", "text": "public static int rollDie() {\n double rnd = Math.random()*1.2;\n if (rnd < 0.2) {\n return 1;\n } else if (rnd < 0.4) {\n return 2;\n } else if (rnd < 0.6) {\n retu...
fd48613fe5e258437ade093f263049fe
Called on UI thread, sends buffered messages (proposals, agreements).
[ { "docid": "2dbd20ebb59318d2b7c4359419eb79f9", "score": "0.0", "text": "public void releaseMessages(){\n\n lock.lock();\n\n while(!dispatchQueue.isEmpty()){\n String[] args = dispatchQueue.remove();\n new MessageTask().executeOnExecutor(AsyncTask.SERIAL_EXECUTOR, args...
[ { "docid": "95861870578e0565955c33524ba3e585", "score": "0.5672487", "text": "private void sendMessage() {\n Map<String, String> options = new HashMap<>();\n options.put(\"message\", String.valueOf(mDisplayMessageEditText.getText()));\n\n mDisplayMessageObservable = mLcdAdapter.disp...
60f336dfc19650be1cc8b4323cdbe685
Oculta la primera columna de la tabla
[ { "docid": "f6ce5cd095aa5610c15ef1669a1bad10", "score": "0.6089016", "text": "private void OcultarColumnaTabla(){\n this.TabLista.getColumnModel().getColumn(0).setMaxWidth(0);\n this.TabLista.getColumnModel().getColumn(0).setMinWidth(0);\n this.TabLista. getColumnModel().getColumn(0)....
[ { "docid": "d9fedb459ba0f28093ba87d4c122e71e", "score": "0.69847846", "text": "void unsetFirstCol();", "title": "" }, { "docid": "1b8dff070e37fecaf00bbe5124a582c8", "score": "0.6777564", "text": "Columna getColumna();", "title": "" }, { "docid": "37447b038b8a830e4a8cfb700...
94679a81fb11bfb88c5fe1fc33fb8c95
repeated .com.lvl6.proto.UserEnhancementItemProto feeders = 3;
[ { "docid": "343f0489002dc22782962c0da9ca3200", "score": "0.65995747", "text": "public Builder addAllFeeders(\n java.lang.Iterable<? extends com.lvl6.proto.MonsterStuffProto.UserEnhancementItemProto> values) {\n if (feedersBuilder_ == null) {\n ensureFeedersIsMutable();\n ...
[ { "docid": "0e5ad5f90e709d7ac9a314a693ec5fe8", "score": "0.79009354", "text": "com.lvl6.proto.MonsterStuffProto.UserEnhancementItemProto getFeeders(int index);", "title": "" }, { "docid": "34cee021114e82a3921aabd0c5e278dc", "score": "0.76724225", "text": "com.lvl6.proto.MonsterStuffP...
2a995be645ebcca6a251e2e4b13f4b2d
Print one dimensional array(double)
[ { "docid": "0e28c5134564ed2422bc3d665af7a0f5", "score": "0.73728263", "text": "public void printArray(double[] temp)\r\n\t{\r\n\t\tfor(int i = 0; i < temp.length; i++)\r\n\t\t{\r\n\t\t\tSystem.out.print(temp[i] + \"\\t\");\r\n\t\t}\r\n\t}", "title": "" } ]
[ { "docid": "4ada3e48d3d32552b1b74b6e08b7093d", "score": "0.7630589", "text": "public static void printArray(ArrayList<Double> array) {\n\t\tint n = array.size();\r\n\t\tfor (int i = 0; i < n; i++) {\r\n\t\t\tSystem.out.println(array.get(i) + \" \");\r\n\t\t}\r\n\t\tSystem.out.println();\r\n\t}", "ti...
cb147c561ef488d1f8bfe16120731e6a
TODO change management page to receive input and output stream and not socket
[ { "docid": "2d05f631f40f0a3c899065b10c999aae", "score": "0.0", "text": "private void showManagementPage() {\n\t\tManagementPage managementPage = new ManagementPage(m_socket, m_policyFile);\n\t\tString query = m_headers.get(RequestHeadersProcessor.QUERY);\n\t\tmanagementPage.go(query);\n\t}", "title"...
[ { "docid": "43b3f467ed9d637c6cdb299f8929cafa", "score": "0.6670093", "text": "private void setupStreams() throws IOException {\n output = new ObjectOutputStream(connection.getOutputStream());\n output.flush();\n input = new ObjectInputStream(connection.getInputStream());\n //...
829fc9473ebda7179fc207c1b4916600
/ This is the driver class where different Configuration parameters have been defined.
[ { "docid": "ba8d576b584dd7a5ed0c7819f4d749e7", "score": "0.0", "text": "public static void main(String args[]) throws IOException, InterruptedException, ClassNotFoundException {\n\n Configuration conf= new Configuration();\n Job job = new Job(conf,\"Shares\");\n job.setJarByClass(Program1...
[ { "docid": "c9989265a1ca75c2569fbc29a09d11de", "score": "0.6842361", "text": "public abstract void setConfiguration(Parameters parameters);", "title": "" }, { "docid": "6d41fa1a862f897c0acb3dfad25ff150", "score": "0.6685534", "text": "public abstract void configure(Configuration para...
dc00f51abc40b59fdb7f7fc096cd73e9
Compress blocks using the specified compression algorithm. This parameter can be changed dynamically. Default: SNAPPY_COMPRESSION, which gives lightweight but fast compression.
[ { "docid": "5c1f6831631dec2037b04ec110ff4584", "score": "0.5124998", "text": "CompressionType compressionType();", "title": "" } ]
[ { "docid": "c832d96279a087510cd46e061df127bf", "score": "0.64187783", "text": "private void updateCompression(PackageGenerationParameters params) {\n String archive = params.getParam(GeneralParameterNames.ARCHIVING_FORMAT, 0);\n String compress = params.getParam(GeneralParameterNames.COMPR...
34d4e776eb4b40f8ba3cfc04186fcfd2
Creates new form DraftGrid
[ { "docid": "e1b6dbfe81c971acfbd3501aa3c2b7c5", "score": "0.6740342", "text": "public DraftGrid() {\n initComponents();\n markedCard = null;\n emptyGrid = true;\n }", "title": "" } ]
[ { "docid": "3a01bf44ba36a657275cd45cee8266a8", "score": "0.6468071", "text": "@Override\r\n protected void createDbContentCreateEdit() {\n DbContentCreateEdit dbContentCreateEdit = new DbContentCreateEdit();\r\n dbContentCreateEdit.init(null);\r\n ...
ee70cd804b57bbfbb69aaaab0b2c5472
Create an exception with a given cause and explanation.
[ { "docid": "ab8ec0f6f5ef887d0ce209af2fc6966f", "score": "0.55352527", "text": "public ProvBuildException (String message, Throwable cause) {\n super (message, cause);\n }", "title": "" } ]
[ { "docid": "eb4293cc09d9d02a771a84cc98ad5a62", "score": "0.6392963", "text": "public void testConstructorMessageCause() {\n Throwable cause = new Throwable(\"cause\");\n BuildScriptGeneratorException e = new BuildScriptGeneratorException(\"foobar\", cause);\n assertSame(\"Cause is i...
36fcf08abe2a65a51d3f74023ad3ec2b
Constructs a new Location object with the specified row and column
[ { "docid": "de390c62b67ad884b4b38e12176af154", "score": "0.7462934", "text": "public Location(int rowP, int columnP)\r\n\t{\r\n\t\t//throw new UnsupportedOperationException();\r\n\t\tthis.rowP=rowP;\r\n\t\tthis.columnP=columnP;\r\n\t}", "title": "" } ]
[ { "docid": "7082d770c3aeb5c8c75e5c291f2bde30", "score": "0.8484351", "text": "public Location(int row, int column) {\n\t\tthis.row = row;\n\t\tthis.column = column;\n\t}", "title": "" }, { "docid": "a939f82984142b09ad5af0fbfd6f7732", "score": "0.8237124", "text": "public Location(int...
6b9677cf6cae824e846f7afb8642ac2b
/ TODO: Does not work
[ { "docid": "bd279c0d844d645f65f89a0c6a7ad1cd", "score": "0.0", "text": "public Object clone() {\n return this;\n }", "title": "" } ]
[ { "docid": "288fd3ee71b736e770bbef790831c263", "score": "0.6824213", "text": "User mo18615e();", "title": "" }, { "docid": "76a80470fd21f5a9092c258ed3a8a632", "score": "0.66080713", "text": "private static void 로또번호리스트() {\n\t\t\r\n\t}", "title": "" }, { "docid": "33d4163...
7d52eb3e5a22e5c4939303ed30a04480
Returns the current array of the names of opponent teams
[ { "docid": "9aed174b7f3eae312d3412a55e640223", "score": "0.73569316", "text": "public ArrayList<String> getOpponentNames() {\n\t\treturn opponentNames;\n\t}", "title": "" } ]
[ { "docid": "9863a2c8f28ca7570c41413030fbf540", "score": "0.7609087", "text": "@Override\n\tpublic String[] getTeams() {\n\t\treturn utils.getTeams();\n\t}", "title": "" }, { "docid": "beeeb449fd80f06924234a29135f51ac", "score": "0.72838867", "text": "public ArrayList<Team> getOpponen...