query_id
stringlengths
32
32
query
stringlengths
7
129k
positive_passages
listlengths
1
1
negative_passages
listlengths
88
101
76577a0df71da7300b7e2e53060bb971
Returns vertex at the specified location.
[ { "docid": "3fa3a4bb2f7bff6eeaff3d7bf1015778", "score": "0.775723", "text": "public Point getVertex(int location) throws IndexOutOfBoundsException\r\n {\r\n if (location < 0 || location >= vertexList.size())\r\n throw new IndexOutOfBoundsException();\r\n else\r\n r...
[ { "docid": "834ea92dde3464861046c4e8b5036227", "score": "0.7121142", "text": "public Vertex getLocation(){\n return location;\n }", "title": "" }, { "docid": "606b3d3d5cafd8ec7753957271e5b4a8", "score": "0.6613248", "text": "public Vertex vertexAt(Point p) {\n ListIter...
717ffb07c168f6b6c866476ac55a3dc7
Copy the items into a new list, sort the new list using the natural ordering of the contained items, and return the new list.
[ { "docid": "b5d640892ced0540bcfd697198a1d740", "score": "0.6515729", "text": "public static <T extends Comparable<? super T>> List<T> sort(final Collection<T> items) {\r\n\t\treturn sortInPlace(asList(items));\r\n\t}", "title": "" } ]
[ { "docid": "c4dde87753d14c6600e8af3c97e39d1b", "score": "0.71704566", "text": "public static <T extends Comparable<? super T>> List<T> sortInPlace(final List<T> items) {\r\n\t\tassertNotNull(items, \"items must not be null\");\r\n\t\tCollections.sort(items);\r\n\t\treturn items;\r\n\t}", "title": ""...
eb7010d8ce000370b8c2dba6ed05d64f
Remove all rules from the predicate chain.
[ { "docid": "a85ca7a052719c079787cb5c129f1ca1", "score": "0.0", "text": "public void clear() {\n m_head = new ObjectLiteral(null);\n m_tail = null;\n }", "title": "" } ]
[ { "docid": "ff526baeaf7cb0412c59f2ab2b378f3e", "score": "0.6837508", "text": "protected void removeAllRules()\n {\n if (rules != null) {\n // call the destroy of the rules..\n for (int i = 0; i < rules.size(); i++) {\n try {\n \t\t((Rule)rules....
ee1dc9b51dc29e5fab03ed3108335124
Returns the following Node
[ { "docid": "68a99e62da205d47472977005c2556a7", "score": "0.6702424", "text": "public Node<E> getNext(){\n\t\t\treturn next;\n\t\t}", "title": "" } ]
[ { "docid": "57b31c470fdfc1c68b4ccf4819d3d151", "score": "0.72075593", "text": "public T getNextSibling() {\n return getSibling(1);\n }", "title": "" }, { "docid": "99fb65ab09f32643fe8fa64c7e4e12d0", "score": "0.72027856", "text": "public EARMARKChildNode getNextSibling();",...
d62b2689976071269eb41011dc032101
/ WARNING Removed try catching itself possible behaviour change.
[ { "docid": "693b08d9adc443b785fdcb435b9577ae", "score": "0.0", "text": "JdkSslContext(SSLContext sslContext, boolean isClient, Iterable<String> ciphers, CipherSuiteFilter cipherFilter, JdkApplicationProtocolNegotiator apn, ClientAuth clientAuth, String[] protocols, boolean startTls) {\n super((bo...
[ { "docid": "47628cd5d2302d6e51c2fa996b36b798", "score": "0.65721554", "text": "private void broken() {\n }", "title": "" }, { "docid": "6d901a6c2d9cfebaf4e139d679ae1f39", "score": "0.6265161", "text": "private void processException() {\n }", "title": "" }, { "docid"...
cbb52452c3566b752a5f574a76d39294
Add settings preferences, defined in the XML file in res>xml>pref_visualizer
[ { "docid": "b1af5f10e02ae492ec03aa98e563fa58", "score": "0.62985563", "text": "@Override\n public void onCreatePreferences(Bundle savedInstanceState, String rootKey) {\n addPreferencesFromResource(R.xml.pref_settings);\n }", "title": "" } ]
[ { "docid": "3c637218bd879e297d8905102f05b8d3", "score": "0.69487816", "text": "private void addSettings() {\n settingsPanel.addOption(preferencesManager.getServerSettings(\n connection.getWindowModel().getConfigManager(),\n connection.getServerIdentity()));\n }", ...
ae2118bcd494251e3a633a43e004df0f
Valida si el usuario cuenta con fondos suficientes para realizar una oferta.
[ { "docid": "bc64e2ab0470e55839a30d25432312f6", "score": "0.0", "text": "public boolean validateBid(Bid bid) throws BidderNotFound {\n Bidder bidder = getBidder(bid.getBidder().getUsername());\n bidder.setBids(new HashSet<Bid>());\n bid.setBidder(bidder);\n return bidder.getBa...
[ { "docid": "539de25a797cd86497588733bfe3d45e", "score": "0.6468592", "text": "@Override\n protected void validaAcessoUsuario()\n {\n String nivelAcesso = GerenciadorNivelAcesso.obterInstancia().getNivelAcesso();\n\n if (nivelAcesso.equals(NivelAcesso.Comum.name()))\n {\n ...
7829e145f5618a454eed942b14c1c170
This method closes all used resources in Users class. SQLException is handled.
[ { "docid": "995eb039508f8acb2cacf8dc4f770e92", "score": "0.691779", "text": "public void closeResources(){\n try {\n conn.close();\n sql.close();\n resultSet.close();\n } catch (SQLException e) {\n e.printStackTrace();\n }\n }", "ti...
[ { "docid": "57820218b6dc8750113b7eb44f3b0db2", "score": "0.7041113", "text": "private void close() {\n try {\n if (resultSet != null) {\n resultSet.close();\n }\n\n if (statement != null) {\n statement.close();\n }\n\n ...
e23bd5a27b3394bd79f5abf45245c83b
/ Access modifiers changed, original: 0000
[ { "docid": "5c8a51376693ad913e00c14d53f32704", "score": "0.0", "text": "public void releaseTheme(long themePtr) {\r\n synchronized (this) {\r\n nativeThemeDestroy(themePtr);\r\n decRefsLocked(themePtr);\r\n }\r\n }", "title": "" } ]
[ { "docid": "a55a150557f80abcbd733ee3162b0661", "score": "0.6753436", "text": "private void m18301a() {\n }", "title": "" }, { "docid": "0b06f1c2066a7ed1df417a1383204e17", "score": "0.6563278", "text": "Internal internal();", "title": "" }, { "docid": "cf1fe3fbd7326...
a96eb00d9ff2593c223351b84a1ecc24
Returns string representation of a Datetime.
[ { "docid": "989476a07a30e5faf8298d3cc8a2d89d", "score": "0.58198136", "text": "@Override\n public String toString() {\n return String.format(\"%s, %s\", this.getDate(), this.getTime());\n }", "title": "" } ]
[ { "docid": "89bbd84104a01938f8bc5b19b73ecf92", "score": "0.72225773", "text": "java.lang.String getDatetime();", "title": "" }, { "docid": "c41d555000243830be142b5b541c3c4a", "score": "0.6933713", "text": "public String getDateTimeString() {\n\t\tDate d = datetime.getTime();\n\t\tSim...
647f0187bf5fd5b0ef766336862da0fb
Constructor for objects of class autoPilot
[ { "docid": "b07edc280da3a8c668ebcda0e4991b9c", "score": "0.0", "text": "public autoPilot()\n {\n // initialise instance variables\n ClimbRateReq = \"0\";\n\n pVal = 5; iVal = 0.01; dVal = 0;\n target = 200; //knots\n\n cumError = 0;\n\n //atti...
[ { "docid": "c84ac246dd93048e4d4584e0f4219cc1", "score": "0.68015", "text": "Clazz() {\n\t}", "title": "" }, { "docid": "d1fa671156b8e9ed55a7e189e981419d", "score": "0.6715854", "text": "Auto(){ //Este es el constructor por defecto\r\n super();\r\n }", "title": "" }, ...
8f0bbc97cd7c7b2f28583faea0cbbe15
This method was generated by MyBatis Generator. This method returns the value of the database column sub_info_history.RATECODE_
[ { "docid": "506fadecaa1a3cee5d2c04d4b0877de1", "score": "0.6601096", "text": "public String getRatecode() {\n return ratecode;\n }", "title": "" } ]
[ { "docid": "48beceadbec643b2ea17e4127fb36981", "score": "0.58185714", "text": "public BigDecimal getCODE() {\r\n return CODE;\r\n }", "title": "" }, { "docid": "5f4f9c71e690354fe2133ce87280e67e", "score": "0.5701257", "text": "public String getRecStatCode()\r\n {\r\n re...
c3b5c64f62f29ff11093146f1703e46a
Gets the value of maxRows
[ { "docid": "6e8822dbb7950e701959fb60767bf94f", "score": "0.86922705", "text": "public int getMaxRows();", "title": "" } ]
[ { "docid": "01b41d3732d92578b301ef46a05215d9", "score": "0.8958027", "text": "public int getMaxRows() {\n return maxRows;\n }", "title": "" }, { "docid": "b7db103b5f8533a3b8440d48899e16c6", "score": "0.892831", "text": "public int getMaxRows()\r\n\t{\r\n\t\treturn maxRows;\...
fe639d776e928537251f0b6421e1a7b9
Returns the functions end, eg "))".
[ { "docid": "20002fd63aac5461a0459d987b68b91d", "score": "0.8048905", "text": "public String getFunctionsEnd() {\r\n if (functions ==null) return \"\";\r\n String result = \"\";\r\n //noinspection ForLoopReplaceableByForEach\r\n for (int i=0;i< functions.size();i++) {\r\n ...
[ { "docid": "991868ddb67e921540aed14dff81a13d", "score": "0.6786595", "text": "public String getEnding();", "title": "" }, { "docid": "0de7bd639d261b6f3e52ac35dfc9feec", "score": "0.6585825", "text": "String getEndDelimeter();", "title": "" }, { "docid": "41ea42066b35a1197...
e7019e85644b81f55ec039335477eec3
Handle action bar item clicks here. The action bar will
[ { "docid": "e910d3fe002008556b32e9cdf906ac26", "score": "0.0", "text": "@Override\n public boolean onOptionsItemSelected(MenuItem item) {\n Intent intent;\n switch (item.getItemId()) {\n case R.id.action_play:\n intent = new Intent(Intent.ACTION_VIEW);\n ...
[ { "docid": "8f961d1d2afe115fadeb82821df6e9cb", "score": "0.7061727", "text": "@Override\r\n\tpublic boolean onOptionsItemSelected(MenuItem item) {\n\t\t\r\n\t\t\r\n\t\treturn super.onOptionsItemSelected(item);\r\n\t}", "title": "" }, { "docid": "275e305ae66cd4e3fbdb13c23581bd31", "score"...
e5bd056e5d2f3e94a68a910756011161
Called by SwingViewerBuilder, so that Controller can setup event handling
[ { "docid": "211e574408ebd9bf98e6784c41b17cf6", "score": "0.0", "text": "public void setRotateLeftButton(JButton btn) {\n rotateLeftButton = btn;\n btn.addActionListener(this);\n }", "title": "" } ]
[ { "docid": "3c8b186b7c7bf29600851e8cca8c8947", "score": "0.67455167", "text": "public void controllerButtonPressed(ControllerEvent e) {}", "title": "" }, { "docid": "cdace6bbf94a22239db783d40f6dd153", "score": "0.65666294", "text": "public void controllerButtonReleased(ControllerEven...
885f752213d3a66ba069330d8c6ea6a0
/ Operation Response getEmployees
[ { "docid": "46507e2d602214498b22854e053aed70", "score": "0.0", "text": "public final void prepareResponse_GETEMPLOYEES ( com.lansa.jsm.service.SOAPAgentResponse response ) throws Exception\n {\n response.prepareFragment ( new String[] { \"RESPONSE\" }, com.UHAcompany.service.soap.Employee.clas...
[ { "docid": "e6ffea68fcd16a2bfd2f345db723ea3e", "score": "0.7990381", "text": "public List<Employee> getAllEmployees();", "title": "" }, { "docid": "e6ffea68fcd16a2bfd2f345db723ea3e", "score": "0.7990381", "text": "public List<Employee> getAllEmployees();", "title": "" }, { ...
a2439dc2d78350c19b881851b87d4958
static members onetime initialization and cleanup
[ { "docid": "7eb63f5a8992852f64d58e58e9ba1296", "score": "0.0", "text": "@BeforeClass\r\n\tpublic static void oneTimeSetUp() throws BadProductId_Exception, BadProduct_Exception {\r\n\t\t// clear remote service state before all tests\r\n\t\tclient.clear();\r\n\r\n\t\t// fill-in test products\r\n\t\t// (si...
[ { "docid": "7c7005f62209a605e6e4d4e9572b624e", "score": "0.754313", "text": "public static void init() {}", "title": "" }, { "docid": "7c7005f62209a605e6e4d4e9572b624e", "score": "0.754313", "text": "public static void init() {}", "title": "" }, { "docid": "7c7005f62209a6...
d96356ec7a425ff856be4b992d384357
Constructs future finished notification callback.
[ { "docid": "01efd7765d11acaf81bf108b90b496f2", "score": "0.5663234", "text": "private DoneCallback(GridClientFutureCallback<R, T> cb, GridClientFutureListener<R> lsnr,\n GridClientFutureAdapter<T> chainedFut) {\n this.cb = cb;\n this.lsnr = lsnr;\n this.chaine...
[ { "docid": "cf79b5e4e8d17a2c223fb072032bb7e1", "score": "0.67911804", "text": "private UIRunnableFuture.CompleteListener createCompleteListener() {\n return new UIRunnableFuture.CompleteListener() {\n @Override\n public void uiRunnableComplete(UIRunnableFuture.CompleteEvent evt) {\n\n...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "0817d0fc7ba3e5b1b627dce5264c3e44", "score": "0.0", "text": "@Override\r\n\tpublic Member getMember(String id) {\n\t\tdao = sqlSession.getMapper(MemberDao.class);\r\n\t\treturn dao.selectById(id);\r\n//\t\tdao.selectById(id);\r\n\t}", "title": "" } ]
[ { "docid": "f4bccec648e6eb25ae6f4d7165ffc5a1", "score": "0.7037216", "text": "@Override\n\t\t\tpublic void Goruntule() {\n\t\t\t\t\n\t\t\t}", "title": "" }, { "docid": "27bc40cf2c5e26e0bf8b70807e0bcaed", "score": "0.68683225", "text": "@Override\r\n\tpublic void caminar() {\n\t\t\r\n...
244e8bb800c18b624b8804dd25854c73
This method was generated by MyBatis Generator. This method returns the value of the database column nfjd502.dbo.CDeviceType.DeviceTypeNote
[ { "docid": "711f800c7c3489bdcab16260d6be6419", "score": "0.0", "text": "public String getDevicetypenote() {\n return devicetypenote;\n }", "title": "" } ]
[ { "docid": "62582407c889249faf2a2428880a0af5", "score": "0.67548823", "text": "public final String getNoteType() {\n\treturn noteType;\n }", "title": "" }, { "docid": "c964ef593aaac306883ddeb50c86a09e", "score": "0.6317689", "text": "@GeneratedFromColumn(\"note\")\n public Stri...
45f621ba10ce33808c964bc7debce920
Expression corresponding to a single logic node of a tree
[ { "docid": "c850d899ed2b8cacddc66a47375922fa", "score": "0.73085487", "text": "public interface LogicNode {\n\t\n\t/**\n\t * Available logic and comparison operators\n\t * @author doronin\n\t *\n\t */\n\tpublic static enum Operator{\n\t\tNLO,\n\t\tAND,\n\t\tOR,\n\t\tNOT,\n\t\tEQUAL_TO,\n\t\tNOT_EQUAL_TO...
[ { "docid": "8147bc9dad5e887f376f7bbb83756e73", "score": "0.656558", "text": "public void visitConditionalOrExpression(GNode n)\n \t{\n \t\tsetBinary(n);\n \t}", "title": "" }, { "docid": "bb31cb4f96ba244a911403d935afeb3b", "score": "0.6392786", "text": "final public SimpleExpression ...
eb668c3f1a6f3fd2ef2f31979231ed44
/ Call this from the main activity to shutdown the connection
[ { "docid": "c60434174463501bf8b63ed1fab26880", "score": "0.0", "text": "public void cancel() {\n try {\n mmSocket.close();\n } catch (IOException e) {\n }\n }", "title": "" } ]
[ { "docid": "28a1b97418a037a0bda64ebf8e388f8c", "score": "0.805086", "text": "public void shutdown() {\n \n \t\tthis.networkConnectionManager.shutDown();\n \t}", "title": "" }, { "docid": "5e23373b9c749d9d10dbc58c94678886", "score": "0.7876532", "text": "@Override\n public void shut...
d77dfcf349c17725d62ce6e2aa40d113
Function Name: resetAllPossible Description: Sets all possible scores back to 0. Parameters: None. Return: None.
[ { "docid": "c413c2b0be1b8030a4035c28a577b75d", "score": "0.73477644", "text": "private void resetAllPossible()\n {\n for(Map.Entry<String, Integer> entry : possiblePoints.entrySet())\n {\n String key = entry.getKey();\n int val = 0;\n \n possiblePoints.put(new String(key), val...
[ { "docid": "d60505f8025d532771eb9246b744bbbb", "score": "0.72992104", "text": "public void resetAll();", "title": "" }, { "docid": "d44f6ddc39cad44a77e7862e8f079da3", "score": "0.71526027", "text": "public void resetAll() {\n //Reset number values\n roundNumber = 1;\n ...
96a8f9c49ae11224e84e52acbafe706f
Sets the model of this material
[ { "docid": "93f94a097b9afa1234d57f176fd0ee1d", "score": "0.80942", "text": "public Material setModel(Model model) {\r\n \t\tthis.model = model;\r\n \t\treturn this;\r\n \t}", "title": "" } ]
[ { "docid": "0d6ac637d60915a2dfb85a14bcd9aa71", "score": "0.77457535", "text": "void setModel(M model);", "title": "" }, { "docid": "e785cedbcef37b0c63d25b53449e7662", "score": "0.75115925", "text": "void setModel(Model model);", "title": "" }, { "docid": "beed2687e0f197d8...
e9c12b2975cb3ced9b049e74adaa26e5
ACL precedence is: FULL_CONTROL > WRITE > READ, where the former implies the latter permission. NO_ACCESS is a reserved special case, implying that this credential is denied any access whatsoever. The least privilege of maximum specificity takes precedence. By "maximum specificity", we search for the longest available ...
[ { "docid": "1de7c10fcbe2d988714d14529b425de9", "score": "0.680933", "text": "public AddamaAclPermission getPermission(String endpoint, AddamaAclScope scope, String credential)\n throws Exception {\n\n if (endpoint == null || scope == null || credential == null) {\n throw new...
[ { "docid": "12e6255c13413f7d8b0eabc2cee781e8", "score": "0.6274186", "text": "interface ACL {\n /**\n * Acl with WRITE type grants write to group defined to resource (Post, Category or Upload) attached.\n */\n\t\tstatic final Character WRITE = 'W';\n /**\n * Acl wit...
dc66c7d989dcf3ef0a08b785bcad57a1
Test of addAll method, of class PhoneWordsList.
[ { "docid": "cb6024b6568bdc28938c7d483e32b94c", "score": "0.8512041", "text": "@Test\n public void testAddAll() {\n System.out.println(\"addAll\");\n PhoneWordsList words = new PhoneWordsList();\n words.add(\"amin\");\n words.add(\"keikanlou\");\n PhoneWordsList inst...
[ { "docid": "cc963c979c90c85076ffda392f037516", "score": "0.7205054", "text": "@Test\n public void testGetPhoneWordsList() {\n System.out.println(\"getPhoneWordsList\");\n PhoneWordsList instance = new PhoneWordsList();\n instance.add(\"amin\");\n instance.add(\"keikanlou\"...
9bba0d7da784d52ee0f629a3587ea0e1
Helper method for processing Wind conditions
[ { "docid": "2a3e32aadb89e4407185899510dd2ea5", "score": "0.49652594", "text": "@NonNull\n private HashMap<String, Double> processWindObject() throws IOException {\n //Log.d(TAG, \"processWindObject\");\n HashMap<String, Double> map = new HashMap<>(1);\n\n jsonReader.beginObject()...
[ { "docid": "365bffa432962a9c2357952f0502d1f0", "score": "0.5939068", "text": "public double[] getWindAtAltitude(double altitude) {\n\n String wstring1, wstring2;\n double wind[] = new double[2]; // speed, direction\n double fac = 0;\n if(altitude < 3000) {\n wstrin...
cfd5cd90526bb91c9bf9c8b7f9606661
Use this factory method to create a new instance of this fragment using the provided parameters.
[ { "docid": "308fc8c7a99081a492fdbf7e41dd389d", "score": "0.0", "text": "public static ExtraMaterialfragment newInstance(String param1, String param2) {\n ExtraMaterialfragment fragment = new ExtraMaterialfragment();\n Bundle args = new Bundle();\n args.putString(ARG_PARAM1, param1);...
[ { "docid": "8e485b89edacbcd375bad33f2bf1c8fa", "score": "0.72322553", "text": "protected abstract Fragment createFragment();", "title": "" }, { "docid": "8e485b89edacbcd375bad33f2bf1c8fa", "score": "0.72322553", "text": "protected abstract Fragment createFragment();", "title": ""...
3b98789659e540c7114ab70eb1802358
a function that displays mark placement info for this game
[ { "docid": "15ae62835ad3e2d0c1475e69865f98d1", "score": "0.0", "text": "private static void displayBoard() {\n char[][] board = new char[][]{{'1', '|', '2', '|', '3' }, {'-', '|', '-', '|', '-' }, {'4', '|', '5', '|', '6' },\n {'-', '|', '-', '|', '-' }, {'7', '|', '8', '|', '9' }}...
[ { "docid": "3f83ba0a73c385df5504789a1287c40a", "score": "0.660096", "text": "public abstract String displaySpot(int x, int y);", "title": "" }, { "docid": "b2dc1f5793633204add152411bbd3258", "score": "0.65138036", "text": "private void aiPrint(int x, int y, String marker)\n {\n ...
15a5b425b4ada21844ce49f80b699b1e
/ /Methods to output a single global model /
[ { "docid": "b48a472328f50f68832e2de7d7e04b0e", "score": "0.5491094", "text": "@Override public void outputGlobalProgram(IvyXmlWriter xw,Collection<JflowModel.Main> merges,\n\t\t\t\t JflowModel.Editor editor)\n{\n xw.begin(\"GLOBAL\");\n Set<JflowModel.Node> states = createGlobalModel(merges,editor...
[ { "docid": "e0ea07b74c2c2cb2262a7a993a9fb225", "score": "0.72447395", "text": "SModel getOutputModel();", "title": "" }, { "docid": "4fbcc38d2d880366559d0b0c3461c489", "score": "0.68116534", "text": "public static void displaySingleModel(String model) {\n\t\tSystem.out.println(model)...
496bebd17e23227dfeb74d656f634403
overriding the on resume method since the map needs to be update oncreate and onresume
[ { "docid": "1d701f3237da3fe4a564421d77477a01", "score": "0.0", "text": "@Override\n public void onResume() {\n super.onResume();\n mainActivityMap.onResume();\n\n //just doing exactly the same as what I did in oncreate in onresume\n //reason being that if the user changes ...
[ { "docid": "b398bf05cd6343f1e84cccc1a5fb4b11", "score": "0.8751909", "text": "@Override\n public void onResume() {\n super.onResume();\n mMap.onResume();\n }", "title": "" }, { "docid": "a122be732626ed97194cb2d5572116e3", "score": "0.81410706", "text": "@Override\...
da3edb296b3542e2adedf6e25a91a037
TODO: Rename method, update argument and hook method into UI event
[ { "docid": "a807a154bceff236ba6fe8b144625dfc", "score": "0.0", "text": "public void onButtonPressed(Uri uri) {\n if (mListener != null) {\n mListener.onFragmentInteraction(uri);\n }\n }", "title": "" } ]
[ { "docid": "6edf87cd2d513f8499fc73949591a25e", "score": "0.6979012", "text": "@Override\n\t\t\tpublic void process(ArgumentEvent e) {\n\n\t\t\t}", "title": "" }, { "docid": "10a0067b26e3861f8f3ed6a28ccbca75", "score": "0.69550323", "text": "@Override\r\n\t\t\tpublic void invoke(Event...
b590584fe9dc5d6df3834bfb131392fc
Sets the localPart value for this VerifyEmailRecord.
[ { "docid": "a75057ad77ef152dc2434a1ab22e23d8", "score": "0.80146253", "text": "public void setLocalPart(java.lang.String localPart) {\n this.localPart = localPart;\n }", "title": "" } ]
[ { "docid": "28d04f8fe928882481684219aa4408ea", "score": "0.61741745", "text": "public void setLocal(java.lang.String local) {\n this._local = local;\n }", "title": "" }, { "docid": "907fafa1b8290599babff029a63cacbe", "score": "0.6152725", "text": "public java.lang.String ge...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "be34419c165dfde39a5f0b3c6b47134b", "score": "0.0", "text": "@Override\n\tpublic double getSpeedyValue() {\n\t\treturn Double.parseDouble(speedy.getValue().toString());\n\t}", "title": "" } ]
[ { "docid": "d7194e467f51e022c107531d8614b6a3", "score": "0.6905833", "text": "@Override\r\n\tpublic void anular() {\n\t\t\r\n\t}", "title": "" }, { "docid": "941cb2826e3c700358fcaba402e6bb01", "score": "0.66775143", "text": "@Override\r\n\tpublic void hissetmek() {\n\r\n\t}", "ti...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "81c48cf5fdacf8c03582148dc950d636", "score": "0.0", "text": "@Override\n\t\tpublic void run() {\n\t\t\tParentActivity.runOnUiThread(new Runnable() {\n\n\t\t\t\t@Override\n\t\t\t\tpublic void run() {\n\t\t\t\t\t// TODO Auto-generated method stub\n\t\t\t\t\tif(ParentActivity.AnimationRunningFla...
[ { "docid": "63a51b9825ac81396e1d7ad0b9f3ed82", "score": "0.6866318", "text": "@Override\n\tpublic void 군무() {\n\t\t\n\t}", "title": "" }, { "docid": "15ae679aae74424c73fde647cf4332f6", "score": "0.68461496", "text": "@Override\r\n\t\t\tpublic void hissetmek() {\n\r\n\t\t\t}", "ti...
27817b87a882e6ab1004093a85054b71
This method was generated by MyBatis Generator. This method corresponds to the database table user_industry
[ { "docid": "124deca7208ace4dfa9878a828f0a6ce", "score": "0.0", "text": "int deleteByPrimaryKey(Long id);", "title": "" } ]
[ { "docid": "21dbf0630e022eac22554ae58315a328", "score": "0.6287682", "text": "UserIndustry selectByPrimaryKey(Long id);", "title": "" }, { "docid": "d18fbf1f4ab5e924b97dc997e13fdb02", "score": "0.606505", "text": "@Repository\npublic interface IndustryInfoDao {\n @Insert(\"insert ...
32fd08d8ac587b2bd8367f5e0d8b8aff
optional string enum_value = 1;
[ { "docid": "179b2331ac0340fdd0a848b814cc47bd", "score": "0.0", "text": "public com.google.protobuf.ByteString\n getEnumValueBytes() {\n java.lang.Object ref = enumValue_;\n if (ref instanceof String) {\n com.google.protobuf.ByteString b = \n com.google.protob...
[ { "docid": "02970a4896e531c162714b5a25d8dca7", "score": "0.7373444", "text": "java.lang.String getEnumValue();", "title": "" }, { "docid": "02970a4896e531c162714b5a25d8dca7", "score": "0.7373444", "text": "java.lang.String getEnumValue();", "title": "" }, { "docid": "0297...
82da8f5722e57893c8905bb058e143e1
This method initializes txtLogin
[ { "docid": "7dfb8183428916fe484515ebe2797a8e", "score": "0.6858329", "text": "private JTextField getTxtLogin() {\r\n\t\tif (txtLogin == null) {\r\n\t\t\ttxtLogin = new JTextField();\r\n\t\t\ttxtLogin.setBounds(new Rectangle(41, 44, 152, 22));\r\n\t\t\ttxtLogin.setBackground(Color.white);\r\n\t\t\ttxtLog...
[ { "docid": "b0fad06500d035438a2ab827daf98541", "score": "0.754921", "text": "public Login() {\n initComponents();\n this.setLocationRelativeTo(null);\n TextPrompt userHint = new TextPrompt(\"Enter a username\", txtUsername);\n TextPrompt passwordHint = new TextPrompt(\"Enter ...
0e0420de7a30d91f5c1cf42c84159107
The tags supported by the client. repeated .protocol.DiagnosticTag value_set = 2;
[ { "docid": "cd882c11de71fb710d2f72e7e9d299ed", "score": "0.0", "text": "int getValueSetValue(int index);", "title": "" } ]
[ { "docid": "ab8b21105400b9740b927c9cfdc4ebd7", "score": "0.7239043", "text": "java.util.List<protocol.DiagnosticTag> getValueSetList();", "title": "" }, { "docid": "22dd94950ee0e91feacc31cddbb8e6a5", "score": "0.6602165", "text": "public java.util.List<protocol.DiagnosticTag> getValu...
6276e579053216bf0ecdafc6bfbb7a46
Create a new instance of SerialReader.
[ { "docid": "ecb57cdfc002ac870c264f15b0579abc", "score": "0.55228543", "text": "public SerialReader (Shoe shoeModel) throws IOException, NumberFormatException {\r\n this.shoeModel = shoeModel;\r\n String h = \"time;\";\r\n for (int i = 1; i < 17; i++) {\r\n h += \"sensorVa...
[ { "docid": "3d0ed41717268f896db9550b99728317", "score": "0.67262214", "text": "public SerialReader(InputStream in) {\n this.in = in;\n }", "title": "" }, { "docid": "514fe8b2e8ebb29a0e7d2bd235891fa2", "score": "0.6102303", "text": "public Reader() {\r\n\r\n }", ...
08ef2e8415731aae80ad0bbbc4cce086
required .net.named_data.jndn.tests.FibEntryMessage.Name name = 7;
[ { "docid": "992a52ebc13a105742bd47be6dfa2a52", "score": "0.0", "text": "public Builder mergeName(Name value) {\n if (nameBuilder_ == null) {\n if (((bitField0_ & 0x00000002) == 0x00000002) &&\n name_ != Name.getDefaultInstance()) {\n name_ =\n ...
[ { "docid": "efd6d8b02a2b146849c71e3d05dee285", "score": "0.61736625", "text": "public void testGetName() {\n // save objects and load them back\n process = saveAndReload(process);\n MessageType type = process.getImports().getMessageType(MESSAGE_NAME);\n \n // verify retrieved object\n ...
980687be98029ea20018b0c7fd8a0179
Writes the map of search results formatted as a pretty JSON object to specified file
[ { "docid": "66b52580d7793d323bf6b6bdda716df9", "score": "0.58075994", "text": "public static void asSearchResult(Map<String, List<Search>> results,\n\t\t\tWriter writer, int level) throws IOException {\n\n\t\twriter.write(\"[\" + System.lineSeparator());\n\n\t\tIterator<String> itr = results.keySet().it...
[ { "docid": "b0490fb80d9919adc00b7f696c58461b", "score": "0.67994046", "text": "private static void writeResults() {\n\t\t//Sort hashMap before sending to file\n\t\tTreeSet<Word> mySet = new TreeSet<>(hm.values());\n\n\t\t//Create result.txt file and write treeMap out to it\n\t\tWriter writer = null;\n\t...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "3fe45218eb2c25a1db484ecf3bfaedbc", "score": "0.0", "text": "@Override\n public void onResponse(int state, long seq, JSONObject in, byte[] bb) {\n\n }", "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": "" }, ...
7bc07d3cb1ff6a69ed3d41efae4e19ff
result = result +"\n"+space+l.getValue();
[ { "docid": "c8a358e84bc170cfcadd0d4470796d4f", "score": "0.5317002", "text": "public String visit(Leaf<T> l) {\n\t\treturn \"\" + l.getValue();\r\n\t}", "title": "" } ]
[ { "docid": "f7dd096789be38afdcebeb5d3ee7580c", "score": "0.6503126", "text": "public String toString(){\n String linea = \"\\t(\"+ data.laKey + \", \" + data.elValue + \")\";\n return linea;\n }", "title": "" }, { "docid": "8b86da4750537f280ba149409e1def9b", "score": "0.58...
7fcba22cd0f9b4eb57e74b7a94eb6871
/ Repository interface creation
[ { "docid": "d1e141a55142481d02516b947bb6302a", "score": "0.0", "text": "public ModelInterface buildInterface(Unit unit) throws Exception {\n\t\tModelInterface modelInterface = new ModelInterface();\n\t\tString packageName = DataLayerHelper.getRepositoryPackageName(unit);\n\t\tString interfaceName = Data...
[ { "docid": "4b417d9dd57befceab682719b4d18cc4", "score": "0.84255934", "text": "public interface Repository {\n\n }", "title": "" }, { "docid": "4c712d72a3b625aa15ba4dc12ad06fb1", "score": "0.77569646", "text": "private void instanciateRepository() {\n }", "title": "" }, ...
8e956b33cb5f9c6e71ac3dd6bfd1ce60
Encrypt or decrypt a stream and send the result to an output stream. TBD explain data size limit and why we're using a loop to get around it.
[ { "docid": "6c1d1fd4a674422b04974569352101fc", "score": "0.0", "text": "private byte[] doCipher(byte[] data, Key key, Boolean forEncryption) throws InvalidCipherTextException\n\t{\n\t\tAsymmetricBlockCipher cipher = getCipher(key, forEncryption);\n\n\t\tint max_length = (forEncryption) ? keysize.getEncL...
[ { "docid": "a19d11ce1e654258b3fcd5f1e427c718", "score": "0.6450885", "text": "@SuppressWarnings(\"NestedAssignment\")\n\tprivate void doCipher(InputStream instream, OutputStream outstream, Key key, Boolean forEncryption)\n\t\t\tthrows IOException, InvalidCipherTextException\n\t{\n\t\tAsymmetricBlockCiph...
772505b7d973476488ab2d32fdacc245
COMPOSED MESSAGE CONVERTERS Private method to pull the security settings from given draftMessage.
[ { "docid": "51c00358485a55a74762eba7115765af", "score": "0.76401645", "text": "private SecuritySettings getSecuritySettings(MessageDescription draftMessage, AJAXRequestData optRequest) throws OXException {\n Security security = draftMessage.getSecurity();\n return getSecuritySettings(secur...
[ { "docid": "91b64271fd0975e0bbca4705b3ea8b12", "score": "0.49653563", "text": "private SecuritySettings getSecuritySettings(Security security, AJAXRequestData optRequest) throws OXException {\n if (null != security && false == security.isDisabled()) {\n String authentication = null;\n ...
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": "c7e35a003522e1c9cf2442c9dbbbe637", "score": "0.0", "text": "@SuppressWarnings(\"unchecked\")\n // <editor-fold defaultstate=\"collapsed\" desc=\"Generated Code\">//GEN-BEGIN:initComponents\n private void initComponents() {\n\n jcMousePanel1 = new jcMousePanel.jcMousePanel();\n ...
[ { "docid": "5f8540ed063cf75672e07098d5395e1e", "score": "0.7699285", "text": "private void initComponents() {//GEN-BEGIN:initComponents\n\n }", "title": "" }, { "docid": "37a5472d5b0f35cf64a077bc1dd978c4", "score": "0.73200226", "text": "public Form() {\n initComponents();\...
1c27b2c85c54ee2ad266ba61f474a9ab
Write a boolean method isPerfectSquare(int n) that uses a while loop and makes use of the following fact that every perfect square (x2) can be written as the sum of x consecutive odd numbers.
[ { "docid": "6694081a77371b830a3fc528a160b47b", "score": "0.8966328", "text": "public static boolean isPerfectSquare (int n) {\n int odd = 1;\n int sum = 0;\n while (sum < n){\n sum+=odd;\n odd+=2;\n if (sum == n) return true;\n }\n retu...
[ { "docid": "4b90fc87894d5fa2e43e848cc6032775", "score": "0.8007746", "text": "public static boolean isPerfectSquare(long n) {\n if (n < 0) {\n return false;\n }\n var sqrt = sqrtInt(n);\n return sqrt * sqrt == n;\n }", "title": "" }, { "docid": "8663...
34e9eb7596df8529a4e0194bee340d27
Crea un usuario e insertalo
[ { "docid": "1fd22194d9ff5168f77c86a171b2f924", "score": "0.0", "text": "private int doTransaction(Registro registro, String randomString) throws SQLException {\n Usuario usuario = new Usuario(\n 0, \n registro.getCorreo(), \n registro.getClaveHash(), \...
[ { "docid": "57feda71885dca413bd90a5b8434f1d3", "score": "0.784331", "text": "public void creaUser (User user){\n\t}", "title": "" }, { "docid": "dad766fd1cc56836edb34323036b3df9", "score": "0.778519", "text": "@Override\n public void create(User entity) {\n try (PreparedSta...
38e31ec2628290332613a70f42942099
Checks if the device supports Multiwindow feature of specified window type.
[ { "docid": "948413f78696b60fb8ff21030598658e", "score": "0.8482607", "text": "private boolean isMultiWindowSupported(final String windowType) {\n\n \t\n \tif (Log.isLoggable(MULTIWINDOW, Log.DEBUG)) {\n Log.d(TAG, \"Inside isMultiWindowSupported\");\n }\n \t\n if (windo...
[ { "docid": "91116dc730210544ed12685b766f6c03", "score": "0.74982935", "text": "boolean isMultiWindowMode();", "title": "" }, { "docid": "63b38f00192af9460605b9f878c90afc", "score": "0.68253154", "text": "private static boolean m8825i() {\r\n try {\r\n return ((Boole...
cf3bf676d26547b48a8d0b54e6efbbde
get seesion id as to validate
[ { "docid": "3f7074662fbf831dc61225c6b16836b8", "score": "0.0", "text": "@Override\r\npublic Authentication attemptAuthentication(HttpServletRequest request, HttpServletResponse response)\r\n\tthrows AuthenticationException {\n\r\n\t\r\n\tfinal String captchaId = request.getSession().getId();\r\n\tfinal ...
[ { "docid": "b98d7bc193f282cdfde6d8b9d55fc1ec", "score": "0.7487816", "text": "private int getAndValidateId() throws SQLException {\n System.out.println(constants.getIdMessage);\n String input;\n int id = 0;\n do {\n input = scanner.nextLine();\n id = emp...
f2cb9055960f8511e2b3329d8e5193c2
obf: Tessellator, Tessellator.instance, Tessellator.addVertex
[ { "docid": "6b5f121217f4aa7eee2b08a2971c30a3", "score": "0.5700314", "text": "@Override\n public MinecraftAccess addVertex(double x, double y, double z) {\n Tessellator.instance.addVertex(x, y, z);\n return this;\n }", "title": "" } ]
[ { "docid": "71fa93047b7056e954a3a58d51e037ae", "score": "0.6532152", "text": "public Coord3D oppsiteVertex();", "title": "" }, { "docid": "81978b76d985207818a3579251b44df1", "score": "0.6270529", "text": "public Coord3D baseVertex();", "title": "" }, { "docid": "5006a1e2c...
247df7024cf5ae7f67ca986368bb8d4b
create by lcl on 2020/4/17 14:12
[ { "docid": "610eed892504880647487ebfdbd1def7", "score": "0.0", "text": "public interface LoginService {\n public User login(String username, String password);\n}", "title": "" } ]
[ { "docid": "d04355b7ad17e966b9f1c072e9560857", "score": "0.64534104", "text": "@Override\n\tpublic void create() {\n\t\t\n\t}", "title": "" }, { "docid": "837129b39237e20c39e0a30502646627", "score": "0.6431974", "text": "@Override\r\n\tpublic void create() {\n\t\t\r\n\t}", "title...
24f31c6da334776c644e946e4436ea10
pls note that the constructors are packageprivate
[ { "docid": "26e754d87a7426a48d4815bcd87d2f04", "score": "0.0", "text": "ScoreRecord(String scoreName, String score){\n //this constructor is called when HighScoreHandler is reading from the high score file\n setName(scoreName); //attempts to initialise their name\n try {...
[ { "docid": "65c4a5c5ce1d414b09a3707800659edc", "score": "0.7635219", "text": "@SuppressWarnings(\"unused\")\r\n\tprivate Praezision () {}", "title": "" }, { "docid": "b27bb2aaaf51cda3f862ead7eddcd502", "score": "0.7612861", "text": "private API() {\r\n }", "title": "" }, { ...
4deb2e10db3515a8d2ff4c42d67f082e
Do the inertia calculation
[ { "docid": "fafdaad61b01dc2106d0b30e6fdb29c9", "score": "0.0", "text": "@Override\n public void onAnimationUpdate(ValueAnimator animator)\n {\n\t\tcents = UiController.test * 10.0;\n\n\t\tinvalidate();\n }", "title": "" } ]
[ { "docid": "7e7db6c5d24a71a19c7022cd03b75b8a", "score": "0.78016907", "text": "public abstract float getMomentOfInertia();", "title": "" }, { "docid": "fe6d05d14531ff656d423ed2baf45f4d", "score": "0.7291555", "text": "public void inertia_x() {\n if (!isMovingLeft && !isMovingR...
d502c1b60bccfecfd2cdb425c431a0cf
Now calling the callback
[ { "docid": "123e0afac95777437225a1a4a22c5bdf", "score": "0.0", "text": "@Override\n public void onError(Throwable t) {\n callback.onError(t);\n //Calling the finally.....
[ { "docid": "cee18cac13e55c6dae7db9a2ab342b40", "score": "0.7907582", "text": "@Override\r\n public void callback() {\n \r\n }", "title": "" }, { "docid": "9019d820776910fa0ee177e155e09516", "score": "0.6981347", "text": "private void successfulCall() {\n\t}", "title"...
d19e6379bb38bed73844b005eaf4d47f
/ | Function(s) onResume, onPause, onDestroy, onLowMemory | | Purpose: Adapt the mapView with changes that are going on with the fragment using the main | fragment functions. | | Note: | onResume : When the fragment has been resumed resume MapView | onPause : When the fragment has been pause pause the MapView | onDestr...
[ { "docid": "2bc9a6be268fa41247fa86c19dae34f0", "score": "0.0", "text": "@Override\n public void onStop() {\n super.onStop();\n }", "title": "" } ]
[ { "docid": "94d2f8c68f7d538a8d698a43c527de26", "score": "0.7440924", "text": "@Override\n public void onResume() {\n super.onResume();\n mapView.onResume();\n }", "title": "" }, { "docid": "1923fe43dd299e5131ebbf9ee7086925", "score": "0.7361966", "text": "@Override\n prote...
1d3cc56ad72d044ec8ba733374c9fcae
Note that results are not delivered on UI thread.
[ { "docid": "5085fad3f8e413a0b479232cdd4e8d2e", "score": "0.0", "text": "@Override\n\t\tpublic void onExitedRegion(Region region) {\n\t\t\tLog.i(LOGTAG, \"onExitedRegion\");\n\n\t\t\tsendRegionInfo(region, \"outside\");\n\t\t}", "title": "" } ]
[ { "docid": "1e6a3bf22e0013d112519d0d27b82b32", "score": "0.733393", "text": "@Override\r\n\tpublic void results() {\n\r\n\t}", "title": "" }, { "docid": "a05c79842ddb47e7bc299c6679c2eaa0", "score": "0.6992461", "text": "@Override\r\n\tpublic void run() {\n\t\thandleResult();\r\n\t}",...
4bf85157c850537b09331a3313391b02
This function is called when an input term was not in the input signature.
[ { "docid": "b3e8d2de48ca869f1a4ed46208eb617d", "score": "0.80549353", "text": "void notInInputSignature(ATerm t)\n {\n throw new RuntimeException(\"term not in input signature: \" + t);\n }", "title": "" } ]
[ { "docid": "587fe2f6ec8645041cea1883996ae01c", "score": "0.63849026", "text": "public void checkInputSignature(ATermList sigs)\n {\n while(!sigs.isEmpty()) {\n ATermAppl sig = (ATermAppl)sigs.getFirst();\n sigs = sigs.getNext();\n if (!sigTable.contains(sig)) {\n // Sorry, but ...
c7142d59900a1c53587b233aadc65e5b
Unsets the keyrow parameter for this key (row and col).
[ { "docid": "f5388d8cd4f78d6f479d2b7017102cf7", "score": "0.6526988", "text": "public void removeKeyrow(int row,int col)\n {\n int current;\n int add=readMemoryLong(0x280e8)+0x22+row;\n try\n {\n current=readMemoryByte(add);\n col=1<<col;\n ...
[ { "docid": "4625181452597268c360c66da0868512", "score": "0.6176352", "text": "public Builder clearRow() {\n bitField0_ = (bitField0_ & ~0x00000004);\n row_ = getDefaultInstance().getRow();\n onChanged();\n return this;\n }", "title": "" }, { "docid": "4625181...
8681f2d08048e200c7f5bde9f37da7c3
This function computes the token priorities
[ { "docid": "cb8165f6a36a6b4a2992f198584a6d30", "score": "0.69208705", "text": "private void processPriorities() {\n // count how many parenthesis they are\n int parenthesisLevel = 1;\n\n for (ParsedToken current : parsedTokenList) {\n if (current instanceof TOK_PAR_OPEN) ...
[ { "docid": "019cbb6183fdac2dcb261427c8d2b10c", "score": "0.5682961", "text": "public void calculatePriorities(){\n }", "title": "" }, { "docid": "bde084edb0a11c710a20021bf199b12d", "score": "0.5614656", "text": "private static final int cmpPrecedence(String token1, String token2) ...
a2938e45d831c744c04c2db35a74831e
Set regency in which the value was decided
[ { "docid": "befee12073733cf8c1b6ee9e4b8652d4", "score": "0.69704586", "text": "public void setRegency(int regency) {\n this.regency = regency;\n }", "title": "" } ]
[ { "docid": "8bbb33cb7ea767e14f9ad77650061853", "score": "0.64110065", "text": "private void setDependants() {\n\t\tsynchronized (this) {\n\t\t\tif (this.recalculate) {\n\t\t\t\tthis.rs2 = 2.0D;\n\t\t\t\tthis.positive = 0.0D;\n\t\t\t\tthis.negative = 0.0D;\n\n\t\t\t\tint i = 0;\n\t\t\t\tfor (int size = t...
50fc5f472fbbbfeac051054c21fe2491
58.1.26 : Change the permission of a Template and create an object from it
[ { "docid": "3538f471512b02289ceeba53fffee5ee", "score": "0.0", "text": "@Test(dataProviderClass = DataProviderUtils.class, dataProvider = \"excelDataReader\", groups = {\"Sprint44\", \"Metadatacard\"}, \r\n\t\t\tdescription = \"Change the permission of a Template and create an object from it.\")\r\n\tpu...
[ { "docid": "85ca5c0e69936d6fa743c81a15736d0f", "score": "0.6452644", "text": "@Override\r\n\tprotected final Privilege createNewEntity(){\r\n\t\treturn template.createNewEntity();\r\n\t}", "title": "" }, { "docid": "e1208fe637eba642151cda19b15f4868", "score": "0.640685", "text": "pub...
22d9a7b9b56fbe0ebb99a29f79234487
Injects a monitor call before assertion failures
[ { "docid": "1401898ed643de6a71cc0e75f4c87510", "score": "0.0", "text": "public static void addCallAssertHandler(Chain units, Stmt s, boolean success)\n\t{\n\t\tLinkedList args = new LinkedList();\n\t\tif(success)\n\t\t\targs.add(IntConstant.v(1));\n\t\telse\n\t\t\targs.add(IntConstant.v(0));\n\t\tString...
[ { "docid": "bd2468dfb429d664a0146d23aefd4a24", "score": "0.6122437", "text": "@Test\r\n void testInvalidMonitorKey() throws Exception {\r\n when(server.isStarted(any(Logger.class))).thenReturn(true);\r\n when(server.isStopped(any(Logger.class))).thenReturn(true);\r\n final Monito...
3a147e2fb68895c72c85318412278ae5
toolbar add button pressed go to profile activity
[ { "docid": "9868dda8cde4cf47766e1e2397e515a4", "score": "0.0", "text": "public void addRoutine(View view) {\n Intent intent = new Intent(this, routine.class);\n startActivity(intent);\n finish();\n }", "title": "" } ]
[ { "docid": "498be78ac6c03c37a6d7765c5cc7a4f2", "score": "0.7184661", "text": "public void goToProfileTab(){\n\t\tinfo(\"Go to profile tab\");\n\t\tclick(ELEMENT_HORIZONTAL_TOOLBAR_FIRST_APP_PROFILE);\n\t}", "title": "" }, { "docid": "2e023b012c8e11a9181ef4d2ca2b9a13", "score": "0.6979970...
3172d6e2fac7c37aa77fc9e518ace65a
Some of our datasets declare how many records they hold. We save this count in ZooKeeper to later display it on the admin console.
[ { "docid": "e85cf17eeed38352572fa847f4126a06", "score": "0.679903", "text": "private void writeDeclaredRecordCount(UUID datasetKey, Long declaredCount) {\n if (declaredCount != null) {\n try {\n curator\n .create()\n .creatingParentsIfNeeded()\n .forPath(\...
[ { "docid": "cb2808bf8395879728408ae14f38cbd1", "score": "0.71781564", "text": "@Override\n\tpublic int countNumberOfDatas() {\n\t\treturn 0;\n\t}", "title": "" }, { "docid": "aef344bf3a10cc44f3013802f8f76a30", "score": "0.71333", "text": "int getDataCount();", "title": "" }, ...
555322fbd245ecb407a0f41714e9113c
required int32 REL_ROAD = 35;
[ { "docid": "b656d95b84a6b5f3811d4d4d14cbb42c", "score": "0.54277754", "text": "public boolean hasRELROAD() {\n return ((bitField1_ & 0x00000004) == 0x00000004);\n }", "title": "" } ]
[ { "docid": "16ce1c672c2776766341e97b80bb01ff", "score": "0.7242359", "text": "int getRELROAD();", "title": "" }, { "docid": "793f21550b25e03aa9920702759b4b2f", "score": "0.6231331", "text": "public int getRELROAD() {\n return rELROAD_;\n }", "title": "" }, { "doci...
faf0bf4d39269ed864bf9f7d1973e706
Plus Constructor Expression & var.
[ { "docid": "2bf32346de9184f49011047cbc47bc82", "score": "0.7005431", "text": "public Plus(Expression e1, String var2) {\r\n super(e1, var2);\r\n }", "title": "" } ]
[ { "docid": "b3dc171ea22b9190668652a77e7741d9", "score": "0.71373665", "text": "public Plus(String var1, String var2) {\r\n super(var1, var2);\r\n }", "title": "" }, { "docid": "c1161e81d29893ee0b3e02fb08f52ab3", "score": "0.7032867", "text": "public Plus(String var1, Expres...
58637d112f32a4c7475667dc04e5659b
Construct a new ServiceUpdater.
[ { "docid": "bfef3ee8e34bf53cccb60db04a9320ed", "score": "0.61360043", "text": "public ServiceUpdater(final String pathSid) {\n this.pathSid = pathSid;\n }", "title": "" } ]
[ { "docid": "8cd06f9dff754ceef2cb0442452640ee", "score": "0.6424921", "text": "public UpdateServ() {\n initServ();\n }", "title": "" }, { "docid": "f62eb4b4255357c4754f30a2e47c1350", "score": "0.60838294", "text": "public DownloadService createInstance() {\n Downl...
0ef8cf74a5e61be6f4970db73ffe7636
Check if next player has valid moves
[ { "docid": "2281adeccf9425c8062afd37a6bf16f6", "score": "0.0", "text": "private void computerTurn() {\n\t\tif(!checkIfPlayerHasValidMoves(blackQueen1) && !checkIfPlayerHasValidMoves(blackQueen2) && !checkIfPlayerHasValidMoves(blackQueen3) && !checkIfPlayerHasValidMoves(blackQueen4)) {\n\t\t\tlogs.add(0,...
[ { "docid": "40b33b78c93244c896f3d3ad927e6e07", "score": "0.73084515", "text": "private void validMove() {\n while(true){\n System.out.print(\"Enter coordinates: \");\n String input = scanner.next();\n playerHasQuitTheGame(input);\n boolean validCoordina...
c2c74074e2b3f375fbc01cbed604da53
optional .Availability availability = 9;
[ { "docid": "651a88edcf7ffaf9e3b5be4154efdea4", "score": "0.0", "text": "public boolean hasAvailability() {\n return ((bitField0_ & 0x00000040) == 0x00000040);\n }", "title": "" } ]
[ { "docid": "f3bdcd42985fd9f4c6ad6b625f26bf35", "score": "0.6386047", "text": "Availability getAvailability();", "title": "" }, { "docid": "7272e1fbc004aa00d0ad8b0d725b9385", "score": "0.6298664", "text": "public interface AvailabilityState {}", "title": "" }, { "docid": "...
c13597e0b8f83937851806ee78861614
Requires: Effects: reverse this structure template by exchanging the reactants structure and products structure. return the reversed structure template. Modifies: operation generateReverse(ReactionAdjList)
[ { "docid": "c0392b5e7eb39227f74e16dacd496b0b", "score": "0.86807853", "text": "public StructureTemplate generateReverse(ReactionAdjList p_reactionAdjList) {\n // #[ operation generateReverse(ReactionAdjList)\n int r_num = getReactantNumber();\n Matchable r1 = getAllowedFunctionalGro...
[ { "docid": "2b9430eea8b6696b5c18646a348ae974", "score": "0.6002344", "text": "public void reverse() {\n Stack<Note> s = new Stack<>();\n Iterator queue = piece.iterator();\n while (queue.hasNext()) {\n Note n = (Note) queue.next();\n s.push(n);\n }\n ...
34f163d19f70bd2e8dfacb258f701f2e
ImageView topbar_titlearrowsimage = (ImageView) view.findViewById(R.id.topbar_titlearrowsimage); topbar_titlearrowsimage.setVisibility(View.GONE);
[ { "docid": "d1ba7a1928ccc0fa412883a972cd9d9d", "score": "0.0", "text": "@Override\n protected void initView(LayoutInflater inflater, View view) {\n\n TextView tvUserID = view.findViewById(R.id.user_id);\n tvUserID.setText(\"ID:\"+ShareHelper.getUserId());\n btnUser = view.findVie...
[ { "docid": "8c8bd194f6aa8a3c5b3f4b09bb609f25", "score": "0.6763402", "text": "public void hidden() {\n\t\t\trl_right.setVisibility(View.INVISIBLE);\n\t\t\trl_bottom.setVisibility(View.INVISIBLE);\n\t\t}", "title": "" }, { "docid": "db86b4d94b4a86e06754169ac8da1eab", "score": "0.6538551",...
4da17e123bf11cfd9374d78256b1b3c7
Shows the number of passed inspections
[ { "docid": "d59a205c1dd8f67ca532af36f8ec8814", "score": "0.7672455", "text": "@Override\r\n public void passeInspections() {\r\n System.out.println(\"### Displaying the number of passed inspections ####\");\r\n System.out.println(\"The number of passed inspections are: \"+ inspectionsPa...
[ { "docid": "4aa65015c02524be5f091d1ebe7a8888", "score": "0.7562548", "text": "@Override\r\n public void failedInspections() {\r\n System.out.println(\"### Displaying the number of failed inspections ####\");\r\n System.out.println(\"The number of failed inspections are: \"+ inspectionsF...
6eb24511764ddf261389d0943ad588e7
Provide a suitable constructor (depends on the kind of dataset)
[ { "docid": "ce81c4b70671f37b506cdd46837df1c3", "score": "0.0", "text": "public FeedDetailAdapter(Context context, List<Resource> fileSet, CustomItemClickListener listener) {\n\n this.listener = listener;\n this.context = context;\n Predicate<Resource> isImage = new Predicate<Resourc...
[ { "docid": "ee279d5cab2ed5d355cf5cad48da86cb", "score": "0.6675629", "text": "private CategoryDataset createDataset() {\r\n \tDefaultCategoryDataset dataset = new DefaultCategoryDataset();\r\n dataset.setValue(10, \"X\", \"A\");\r\n dataset.setValue(8, \"X\", \"B\");\r\n dataset...
9e619f2353334bbac79c173a5f87c6f9
Positions the cursor at the end For the core part of the assignment. HINT: Consider the list could be empty.
[ { "docid": "24b0b22c7544bb99bb15994e5f208699", "score": "0.65046614", "text": "public void moveCursorToEnd() {\n if (cursor == null || cursor.getNext() == null)\n return;\n\n while (cursor.getNext() != null) { //Iterates through the linked list and is probably memory intensive...
[ { "docid": "2221b0055a5e0c8159566a09e46d3c39", "score": "0.65591127", "text": "public void ResetList()\r\n {\r\n if (Last == 0)\r\n {\r\n System.out.println(\"Reset Error: List is empty!\");\r\n System.exit(0);\r\n }\r\n else\r\n Cursor = 1;\r\n // end ...
09c63e9a42f11b852c50ed9d93bc4023
Returns true if the head edge of the dependency node with index is labeled, otherwise false.
[ { "docid": "9b75535af98ec5b8ea2e13ab2c63dad0", "score": "0.7839038", "text": "public boolean hasLabeledDependency(int index) {\n\t\tif (index < 0 || index >= nodes.length) {\n\t\t\treturn false;\n\t\t}\n\t\tif (!nodes[index].hasHead()) {\n\t\t\treturn false;\n\t\t}\n\t\treturn nodes[index].isHeadLabeled...
[ { "docid": "c8538d0369e4be608c8b0f92cac457f7", "score": "0.62977064", "text": "boolean hasNodeLabels();", "title": "" }, { "docid": "9937d992ea2eb616d48ed2be3abfae0d", "score": "0.6297462", "text": "public boolean hasNeighbour(int index) {\n\t\tswitch (index) {\n\t\tcase 0:\n\t\t\tre...
1305239c37d179b6ca49e4c7ae1d7e1a
Permite actualizar un usuario
[ { "docid": "d1445b617a9c7f7aeeb191d9e22f1d56", "score": "0.6154776", "text": "void actualizar(Mesa mesa);", "title": "" } ]
[ { "docid": "548b9795938a6f410ee23e5a6bc9d8a8", "score": "0.7165569", "text": "public void limpia_usu ()\r\n\t{\n\t\t\r\n\t\r\n\t\t\r\n\t\tConnection conn = DSManager.getConnection();\r\n\t\tPreparedStatement stmt = null;\r\n\t\t\r\n\t\ttry\r\n\t\t{\t\t\r\n\t\tString sql =\" update user set UserAccessLe...
37a2992b02a47854f4d15347f8504ab6
This method returns the name of the recipient
[ { "docid": "83de988451ce3bd8adcb5f87ed1cb76e", "score": "0.0", "text": "@Override\r\n\tpublic String toString() {\r\n\t\treturn name;\r\n\t}", "title": "" } ]
[ { "docid": "8a7d3d676e11b898f8c206c0db8e39e9", "score": "0.8465675", "text": "public String getName(){\n return this.recipient.getName();\n }", "title": "" }, { "docid": "5e57e239af76d314e7b9977dd0d8ed3f", "score": "0.82949054", "text": "java.lang.String getSenderName();", ...
529768ba0b6c5d767dc4a5eec2dc2c54
Doi ten nut signin
[ { "docid": "a3d5036b9a1d6f815d9166cff447d9ef", "score": "0.0", "text": "protected void setGooglePlusButtonText(SignInButton signInButton, String buttonText) {\n // Find the TextView that is inside of the SignInButton and set its text\n for (int i = 0; i < signInButton.getChildCount(); i++)...
[ { "docid": "e07a941b5ba50cfdca9163692d2fa9d4", "score": "0.67654264", "text": "private void signIn() {\n }", "title": "" }, { "docid": "52dd811ce46e83562f79409286e4e825", "score": "0.641926", "text": "signIn(){}", "title": "" }, { "docid": "1a6d8af714b2422b07e866804784...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "7c26824487564e15d5ef7e05f059699b", "score": "0.0", "text": "@Override\n\t\t\tpublic void onClick(View v) {\n\t\t\t\tlog = \"start\";\n\t\t\t\thandler.sendEmptyMessage(1);\n\t\t\t\tWlPlayer.wlPlay();\n\t\t\t}", "title": "" } ]
[ { "docid": "da34ed11fe7c5649b3cd0bdad6dca5df", "score": "0.7115143", "text": "@Override\n\t\tpublic void 비행() {\n\t\t\t\n\t\t}", "title": "" }, { "docid": "99cfe01c5035e9a9ca6dafada0e4a005", "score": "0.67343336", "text": "@Override\r\n\tpublic void caminar() {\r\n\t\t// TODO Auto-g...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "8bbd7e6f686be751c6260a4d950dbee0", "score": "0.0", "text": "@Override\n\t\t\tpublic void actionPerformed(ActionEvent arg0) {\n\t\t\t\tSale_Item sell = new Sale_Item();\n\t\t\t\tsell.setVisible(true);\n\t\t\t}", "title": "" } ]
[ { "docid": "e5fa0eebc721dea67da872fd14413bc7", "score": "0.69744676", "text": "@Override\n\tpublic void formule() {\n\t\t\n\t}", "title": "" }, { "docid": "8b7f87c22e268a87686c66398c2c442b", "score": "0.6936331", "text": "@Override\r\n\t\t\tpublic void atras() {\n\t\t\t\t\r\n\t\t\t}"...
1738b032f43d7ce2947c7696aeb5d5a9
Return True/False as to whether iConomy should be used.
[ { "docid": "40830caa6c6cf51bdf56705718d6107c", "score": "0.8638691", "text": "public boolean checkiConomy() {\r\n this.useiConomy = (iConomy != null); // Tbf this needs changing... even\r\n // if iConomy is detected we only\r\n ...
[ { "docid": "08d69e2d9532dc1a42b01261d7c55b75", "score": "0.695385", "text": "boolean isConcurrrent();", "title": "" }, { "docid": "d5803240a6ba82a67e3ace47cf6dbc03", "score": "0.6915509", "text": "public boolean isConsumable() {\n\t\treturn true;\n\t}", "title": "" }, { "...
e65b2bacddadae51fca62221115505a5
Save Data to txt file
[ { "docid": "9e204dc48e64c72d10c65c262bd889e2", "score": "0.0", "text": "public boolean exportData(String fileName, DVDLibrary dvdLibrary) {\n\n try {\n int noteIndex;\n PrintWriter writer = new PrintWriter(new FileWriter(fileName));\n for (DVD record : dvdLibrary....
[ { "docid": "3fb5d6bd788752d6577eb9d0ec04e687", "score": "0.739455", "text": "private void save() {\n\n\n\t\t\ttry{\n\n\t\t\tFileWriter writer = new FileWriter(\"Train.txt\");\n\n\t\t\twriter.write(\"\\nSummary \\nOwner\\tType of Rail Car\\tMinimum Weight\\tCar Id\\tCargo Weight\\tMaximum Weight\\nGerman...
39364afcc359563fa848060adebb94ce
Sets payout request status. The possible values are: new initial status when the payout batch is created funded if there are enough funds available on the merchant account, the payout batches are set to funded. This happens at the daily cutoff time for payout processing, e.g. 2pm and 9pm UTC processing the payout batch...
[ { "docid": "1e14577aeaf6987aa9cc587efd4efcca", "score": "0.0", "text": "@JsonProperty(\"status\")\n public void setStatus(final String status) {\n this.status = status;\n }", "title": "" } ]
[ { "docid": "843383f8d62d682ef4dd91559730902a", "score": "0.5655229", "text": "public Builder setStatus(POGOProtos.Rpc.ChangeTeamOutProto.Status value) {\n if (value == null) {\n throw new NullPointerException();\n }\n \n status_ = value.getNumber();\n onChanged();\n ...
98fc9272fddcb53d280a45ed8819e629
no ws, long stream of words, find dictionary items use all letters of string
[ { "docid": "375bc9dd7911024086cddf155ac69781", "score": "0.6464071", "text": "boolean doesMatch3(String s)\n\t{ no ws, long stream of words,\n\t\t// find dictionary items\n\t\t// use all letters of string \n\t\t//\n\n\t\tfor (int x=0; x < s.length(); x++) \n\t\t{\n\t\t\tString firstPart = s.substring(0,...
[ { "docid": "bca6192072e64cfdb32e2560f8a211e0", "score": "0.6813848", "text": "private void Dictionary (String s){\n\t\tStringBuilder sb=new StringBuilder(s);\n\t\tStringBuilder sb2=new StringBuilder();\n\t\tfor (int i = 0; i < sb.length(); i++) {\n\t\t\tchar chr= (sb.charAt(i));\n\t\t\tBoolean b= Chara...
9b48a04702cafabb9e46d508083d7cfc
InputStream reader = null;
[ { "docid": "5f8210074938101b4cb7efbfda4e55d2", "score": "0.0", "text": "public ReadAssetFile(Context context) {\n this.context = context;\n }", "title": "" } ]
[ { "docid": "529978c2faf52d869aaca9064621ad23", "score": "0.66168576", "text": "public void resetReader() {\n if (input != null) {\n input.reset();\n }\n }", "title": "" }, { "docid": "091cd70f28e4a4911498bbc690cef34d", "score": "0.64037675", "text": "publi...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "a00ab7fdd741047630aa9fffd3592e09", "score": "0.0", "text": "@Override\n\t\t\tpublic void print(String s) {\n\n\t\t\t}", "title": "" } ]
[ { "docid": "663ac6f718361fb243bf093a1c7ded6a", "score": "0.66285414", "text": "@Override\r\n\tprotected void Goukakyuu() {\n\t\t\r\n\t}", "title": "" }, { "docid": "80d20df1cc75d8fa96c12c49a757fc43", "score": "0.65323734", "text": "@Override\n\tprotected void getExras() {\n\t\t\n\t}"...
8734807c87a761285b627ed721e2f2f8
Create a new Argument without a name, value, or metadata.
[ { "docid": "2da630306407ceab1f0ebb3213b96967", "score": "0.615539", "text": "public Argument()\n {\n }", "title": "" } ]
[ { "docid": "b19b1e645edc9480e93ded6b0fc679ae", "score": "0.6510459", "text": "Arguments createArguments();", "title": "" }, { "docid": "66735dded98fffb977ea9f84d8b6f1f0", "score": "0.6427899", "text": "public Commandline.Argument createArg() {\n return java.createArg();\n }...
dc43acd5d7e27f9cc22e61ec2ece2689
on fling ill test the swipe based on the thresholds and the motion, and will only detect for right swiping, which is the only necessary gesture for this application
[ { "docid": "505b88eee1542bb0f3027becbbb35204", "score": "0.7488259", "text": "@Override\n public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX, float velocityY) {\n boolean result = false;\n try {\n float diffY = e2.getY() - e1.getY();\n ...
[ { "docid": "05f9f5ce933718dff4f65553a6c7e285", "score": "0.72985995", "text": "@Override\n public boolean onFling(final MotionEvent e1, final MotionEvent e2, final float velocityX, final float velocityY) {\n boolean result = false;\n try {\n final float diffY ...
c90935e084bfb3f7392461bdd37eb5b2
Annotation value for text classification case. .google.cloud.datalabeling.v1beta1.TextClassificationAnnotation text_classification_annotation = 3;
[ { "docid": "c7d5aa9f971d15a09241c148515a2113", "score": "0.76899505", "text": "@java.lang.Override\n public com.google.cloud.datalabeling.v1beta1.TextClassificationAnnotationOrBuilder getTextClassificationAnnotationOrBuilder() {\n if ((valueTypeCase_ == 3) && (textClassificationAnnotationBuilder...
[ { "docid": "63d889f267ea5a9cc05b0da5992fc42a", "score": "0.8143446", "text": "@java.lang.Override\n public com.google.cloud.datalabeling.v1beta1.TextClassificationAnnotation getTextClassificationAnnotation() {\n if (valueTypeCase_ == 3) {\n return (com.google.cloud.datalabeling.v1beta1.TextCla...
214f275a6078b6ed0f315a89469f2b3a
Get all the coursiers.
[ { "docid": "7a9755e058c64e8c168c1ae38a95b170", "score": "0.0", "text": "Page<CoursierDTO> findAll(Pageable pageable);", "title": "" } ]
[ { "docid": "3bee67ca6fef718a15c896bd10ced9cd", "score": "0.7513526", "text": "@Override\n\tpublic List<Course> getAllCourses() {\n\t\treturn coursedao.findAll();\n\t}", "title": "" }, { "docid": "c6f56f79737d3f5724ffe05547b48c08", "score": "0.7320372", "text": "public List<Course> ge...
3601288ba33331c852a57b40b4fa99cf
End SprintTest104_1_53D 104.1.59.1A : Approve option should not available in metadatacard opened through context menu properties for nonassigned users.
[ { "docid": "7cc0db26142fdce71b5bfd06c3f4d8dd", "score": "0.60465705", "text": "@Test(dataProviderClass = DataProviderUtils.class, dataProvider = \"excelDataReader\", groups = { \"Sprint104\"}, \r\n\t\t\tdescription = \"Approve option should not available in metadatacard opened through context menu prope...
[ { "docid": "dba012c37acbdaa7e92c55127aecbedf", "score": "0.59423476", "text": "@Test(dataProviderClass = DataProviderUtils.class, dataProvider = \"excelDataReader\", groups = { \"Sprint104\"}, \r\n\t\t\tdescription = \"Reject option should not available in metadatacard opened through context menu proper...
9af8ab88c1368ffaa548e79d50798e84
a la continuation de l'activite on utilise le fragment
[ { "docid": "307b343eefa75037a757090a8083177b", "score": "0.0", "text": "@Override\n protected void onResume() {\n super.onResume();\n getSupportFragmentManager().beginTransaction()\n .add(R.id.container,new InfosUtilisateur(),null).commit();\n\n marchePack= new Mar...
[ { "docid": "174a7b1c703de7fab427d0aac38e70ee", "score": "0.66170543", "text": "void onFragmentInteraction(Fragment fragment,boolean terminado);", "title": "" }, { "docid": "0e548234b29b9dc1949188ff333b618a", "score": "0.65453494", "text": "void onFragmentInteraction(View vista);", ...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "9a9f1c70f332b6a9f01b56c5cb9270da", "score": "0.0", "text": "@Override\r\n\tpublic void Test(int u) {\n\t\t\r\n\t}", "title": "" } ]
[ { "docid": "e5fa0eebc721dea67da872fd14413bc7", "score": "0.69744676", "text": "@Override\n\tpublic void formule() {\n\t\t\n\t}", "title": "" }, { "docid": "8b7f87c22e268a87686c66398c2c442b", "score": "0.6936331", "text": "@Override\r\n\t\t\tpublic void atras() {\n\t\t\t\t\r\n\t\t\t}"...
6e6ac07b696369918f7d9c32afd6263a
Write code here that turns the phrase above into concrete actions
[ { "docid": "1f12ed600634d370d1ba742739751f72", "score": "0.0", "text": "@When(\"^User Click Page Object Model Link$\")\n\tpublic void user_Click_Page_Object_Model_Link() throws Throwable {\n\t\tdriver.findElement(By.id(\"page-object-model\")).click();\n\t\tswitchBrowser.switchBrowser();\n\t\tactualTitle...
[ { "docid": "16063489700102f3d691c8a843288b9f", "score": "0.6734662", "text": "void actionMessage(String action);", "title": "" }, { "docid": "99f648ae5d7bb8c70dc2be5738066118", "score": "0.6731974", "text": "void performAction(String actionMessage){\n actionMessage = actionMes...
51f189f0705a1a05118dd49612f3a7cd
Set the credit card id
[ { "docid": "fd1e7f55cd673404a2cbd37e7766e4a6", "score": "0.0", "text": "public void setId(int id) {\n\t\tthis.id = id;\n\t}", "title": "" } ]
[ { "docid": "9a2258948044d0c6df5c3d017fec7dfa", "score": "0.7630881", "text": "public void setIdCardNumber(String idCardNumber) {\n this.idCardNumber = idCardNumber;\n }", "title": "" }, { "docid": "1fe637768a283deac4d50ab57a705124", "score": "0.74327314", "text": "public Bu...
a234dbd626698e17c8d98bb0fec0b638
Test that edge constructor is not giving us false positives for its expected values.
[ { "docid": "0f8c604e7f0ab094f0f8659753cd1ce5", "score": "0.8443257", "text": "@Test\n public void edgeConstructorFalsePositives() throws Exception {\n Edge e = new Edge(mockedNode, mockedNode, \"Fifth Ave.\", false);\n assertNotEquals(e.to, e);\n assertNotEquals(e.from, e);\n asse...
[ { "docid": "1a6a4ca864152a3946ccaba7d318e08d", "score": "0.761619", "text": "@Test\n public void edgeConstructorWorks() throws Exception {\n Edge e = new Edge(mockedNode, mockedNode, \"Fifth Ave.\", true);\n assertNotEquals(e, edgeMock);\n assertEquals(e.to, mockedNode);\n assertE...