query_id
stringlengths
32
32
query
stringlengths
7
129k
positive_passages
listlengths
1
1
negative_passages
listlengths
88
101
ba7b1db59fa2b98053a2c43a700373eb
optional int32 sequence_bytes = 7;
[ { "docid": "fe57c7c5cf31a63e34ede2bd7452fb0d", "score": "0.6133326", "text": "public boolean hasSequenceBytes() {\n return ((bitField0_ & 0x00000040) == 0x00000040);\n }", "title": "" } ]
[ { "docid": "d4c91b6884d6376c09579ae419558866", "score": "0.7914163", "text": "int getSequenceBytes();", "title": "" }, { "docid": "afcc9f01046f7b77553cdebadbe87747", "score": "0.70253485", "text": "public int getSequenceBytes() {\n return sequenceBytes_;\n }", "title": ""...
31af5a669c53a7967bac2174178e3727
Get the large property: URI to large icon.
[ { "docid": "ffcba05655c926b5bc6394df08ce4f25", "score": "0.6298652", "text": "public String large() {\n return this.large;\n }", "title": "" } ]
[ { "docid": "485fe44029b1ccd091311b0b520b6369", "score": "0.76339895", "text": "public com.google.protobuf.ByteString getLargeIcon() {\n return largeIcon_;\n }", "title": "" }, { "docid": "d217c384628936081cd823775c211b4a", "score": "0.7618554", "text": "public com.google.prot...
6bba9672eca36805d57b2e840dc11030
Read a whole utf8 text file at once.
[ { "docid": "8e68dfb5415879a2d4cdce66f72501b9", "score": "0.6023821", "text": "public String readText(String path) {\n String ans = null;\n\n try {\n ans = FileUtils.readFileToString(new File(path),\n StandardCharsets.UTF_8);\n\n } catch (IOException | U...
[ { "docid": "e3625244eca67d404ee2337f036b9e95", "score": "0.7112995", "text": "public static String readWholeFileAsUTF8(String filename) throws IOException {\n InputStream in = new FileInputStream(filename) ;\n return readWholeFileAsUTF8(in) ;\n }", "title": "" }, { "docid...
375a72a8ed9e2515d815b2b099cc0f84
This method will be called when a MessageEvent is posted (in the UI thread for Toast).
[ { "docid": "f1ce6a2f8fb011b97623257f7dc51152", "score": "0.6898638", "text": "@Subscribe(threadMode = ThreadMode.MAIN)\n public void onMessageEvent(MessageEvent event) {\n\n showSnack(event.message);\n }", "title": "" } ]
[ { "docid": "cea510219b70d66ba87a8e8ea2518fa9", "score": "0.7254301", "text": "@Override\n //here the messageReceived method is implemented\n public void messageReceived(final String message) {\n Log.i(TAG, \"Input message: \" + message);\n ...
e3245f0bcc75bcb5c79fa04674d9fe8a
Resets the form field with the given path.
[ { "docid": "5724062bc81d9d1f81e58c514dddded9", "score": "0.78137344", "text": "public void clearFormField( FormFieldPath path ) {\n FormField formField = getFormField( path );\n if ( formField != null ) {\n formField.reset();\n }\n }", "title": "" } ]
[ { "docid": "120281df797e13aeec26ddd80a27239c", "score": "0.6487203", "text": "public final void set(String path) {\n file.set(path, \"\");\n save();\n }", "title": "" }, { "docid": "e08a96f9ad975a3c1e1ed0db27faac74", "score": "0.6428373", "text": "public Builder clea...
c04315c32b2025e8909dee11daab8d39
/ Intent i = new Intent( Intent.ACTION_PICK, android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI); startActivityForResult(i, RESULT_LOAD_IMAGE);
[ { "docid": "0e11d06b812189a37ba751f3896cd4c0", "score": "0.7838459", "text": "@Override\n public void onClick(View view) {\n Intent intent = new Intent();\n// Show only images, no videos or anything else\n intent.setType(\"image/*\");\n intent.setA...
[ { "docid": "a7aa6da69aed4656a158d1a28d9c4e3d", "score": "0.89401615", "text": "private void selectImage() {\n Intent i = new Intent(Intent.ACTION_PICK,\n android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI);\n\n// Intent i = new Intent(Intent.ACTION_PICK);\n// i.set...
f4e1b8ac90f8614f0628151fc0bc4c42
Method that calculated the standard deviation of a segment made previously
[ { "docid": "5576c3a66910be90090272f28e4f6d78", "score": "0.62234896", "text": "private double Std(Hashtable<SensorType, ArrayList<Double>> data,\n\t\t\tSensorType sensor, ObjectSegmentation index) {\n\n\t\tdouble variance = Variance(data, sensor, index);\n\t\tdouble std = (double) Math.sqrt(variance);\n...
[ { "docid": "ba2fb25b0aa6671368c04ae2ca11a46e", "score": "0.7972895", "text": "public double standardDeviation();", "title": "" }, { "docid": "c70b266b2a0e153e286e40a70d3747c6", "score": "0.76711017", "text": "public double calcStandardDeviation(){\r\n\r\n StDeviation = Math.sq...
f8408ca13423572fc41d2d52b3bf950d
Given a format string, returns true if it is a format that is based on ISO date time.
[ { "docid": "b885d8fdc87fba9907ff062aee4e2ca8", "score": "0.8241161", "text": "public static boolean is_iso_datetime_based(String format) {\n return switch (format) {\n case \"ENSO_ZONED_DATE_TIME\", \"ISO_ZONED_DATE_TIME\", \"ISO_OFFSET_DATE_TIME\", \"ISO_LOCAL_DATE_TIME\" -> true;\n defaul...
[ { "docid": "fb4076c8dbaffafe81489c5a0f031dac", "score": "0.6919039", "text": "protected boolean isInvalidDateForFormat(String s, String format) {\n\n if (isTooLarge(s) || hasCriticalWord(s)) {\n return false;\n }\n\n LocalDateTime dateTime;\n DateTimeFormatter form...
61943c91a2d00869b669522d0e9d4fe0
Creates a new shopping coupon with the primary key. Does not add the shopping coupon to the database.
[ { "docid": "0cdfab4ebff04b088d2d3ae0f14c2e72", "score": "0.7873901", "text": "public ShoppingCoupon create(long couponId) {\n\t\tShoppingCoupon shoppingCoupon = new ShoppingCouponImpl();\n\n\t\tshoppingCoupon.setNew(true);\n\t\tshoppingCoupon.setPrimaryKey(couponId);\n\n\t\treturn shoppingCoupon;\n\t}",...
[ { "docid": "147ebf03acb3e8f6b4c3c9d881cc02d7", "score": "0.76353717", "text": "public Coupon createCoupon (Coupon coupon) throws DbdaoException;", "title": "" }, { "docid": "a9dddadf8e4b036d847c0be3ae586a1f", "score": "0.7075789", "text": "@Override\n public void addCoupon(Coupon ...
7ba2abeb83d8c2c45511d61f495802a8
Returns the CDMA MDN.
[ { "docid": "a4284b5cecb95f0fd709bcd95ae046ee", "score": "0.6309698", "text": "@Override\n public String getCdmaMdn(int subId) {\n TelephonyPermissions.enforceCallingOrSelfModifyPermissionOrCarrierPrivilege(\n mApp, subId, \"getCdmaMdn\");\n\n final long identity = Binder....
[ { "docid": "0a5f4ceac5ada59690b9a9dad317b987", "score": "0.66381156", "text": "com.alibaba.alink.operator.batch.dl.ctr.protos.Dcn.DCN getDcn();", "title": "" }, { "docid": "4a06a65764c22a437ed7684c5fc9d19d", "score": "0.62998307", "text": "String getDN();", "title": "" }, { ...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "bfb101010043bffe2dc0c1d0d5ffd7b2", "score": "0.0", "text": "public static void main(String[] args) {\n\n\t\tSystem.out.println(\"오늘의 기온은 10도 입니다.\\n\");\n\t\tSystem.out.printf(\"오늘의 기온은 %d도 입니다.\\n\",10);\n\t\tint num1 = 20;\n\t\tSystem.out.println(\"오늘의 기온\"+num1+\"은도 입니다.\\n\");\n\t\tSyste...
[ { "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...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "2521b243fbda1a6c1a1c0f77cd8db8f7", "score": "0.0", "text": "@Override\r\n\tpublic void doFilter(ServletRequest request, \r\n\t\t\tServletResponse response,\r\n\t\t\tFilterChain chain)\r\n\t\t\tthrows IOException, ServletException {\n\t\tSystem.out.println(\"AdminFilter!!\");\r\n\t\tString us...
[ { "docid": "1acc57d42c31dee937ac33ea6f2a5b0b", "score": "0.68399656", "text": "@Override\r\n\tpublic void comer() {\n\t\t\r\n\t}", "title": "" }, { "docid": "118f2b8a20f48999973063ac332d07d3", "score": "0.6563993", "text": "@Override\r\n\t\t\tpublic void atras() {\n\r\n\t\t\t}", ...
421184cde426146d05a2206b00b38db1
This method calls the function to insert new vacation
[ { "docid": "2eef344a4c45c0c206ff4f89e302efaf", "score": "0.7193519", "text": "public void insertVacation(Vacation newVacation) {\n ((RegisteredUser)currentUser).publishVacation(newVacation);\n dbManagement.insertNewVacation(newVacation.getVactionId(), newVacation.getFromOriginFlightId(), n...
[ { "docid": "75061b7e9783e20af2b18f3319eb29ad", "score": "0.6862364", "text": "public void insertVacancyData() throws SQLException {\r\n\t\tConnection dbConnection = null;\r\n\t\tPreparedStatement preparedStatement = null;\r\n\r\n\t\tString insertTableSQL = \"INSERT INTO vacancy\"\r\n\t\t\t\t+ \"(area, p...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "ff2c22acaac291aad760026a4d6c2be1", "score": "0.0", "text": "@Override\n\tpublic int delete(Uri uri, String selection, String[] selectionArgs) {\n\t\treturn 0;\n\t}", "title": "" } ]
[ { "docid": "63a51b9825ac81396e1d7ad0b9f3ed82", "score": "0.68664503", "text": "@Override\n\tpublic void 군무() {\n\t\t\n\t}", "title": "" }, { "docid": "15ae679aae74424c73fde647cf4332f6", "score": "0.6846375", "text": "@Override\r\n\t\t\tpublic void hissetmek() {\n\r\n\t\t\t}", "ti...
08eba4e972f4c4087324bd5ae8c07ebc
Gets (as xml) the "pk_netbankinftp" element
[ { "docid": "4e0c100c0da8ea847ceb600e79b7e423", "score": "0.79581815", "text": "org.apache.xmlbeans.XmlString xgetPkNetbankinftp();", "title": "" } ]
[ { "docid": "2a1c15419ad1abf70d2563159f08a82c", "score": "0.74111485", "text": "java.lang.String getPkNetbankinftp();", "title": "" }, { "docid": "fd2500f528f8c5783c58f5c3e613908f", "score": "0.6867295", "text": "void setPkNetbankinftp(java.lang.String pkNetbankinftp);", "title": ...
12ba61cf9df4e968ef32e6e11c8074f0
non blocking put to the unbuffered queue
[ { "docid": "69cccaecdcb7b257c18906c5748a7a31", "score": "0.0", "text": "@Override\n public Boolean apply(Task task) {\n return pendingTasks.offer(task);\n }", "title": "" } ]
[ { "docid": "05385bfa5a121aaecb07bff95b69ba35", "score": "0.6943233", "text": "public void testBlockingPut() {\n final SortedKafkaMessageBuffer<KafkaEventMessage> buff = new SortedKafkaMessageBuffer<>(SIZE);\n final CountDownLatch pleaseInterrupt = new CountDownLatch(1);\n Thread t =...
884e04ac3612d6af71cf5a96075da7c5
Training on the lexiconbased representation. Saves the model in order to use it on the provided test sets. The rest of the model representation forms will be created onthefly because of the minimum term frequency threshold that takes both train and test sets into consideration.
[ { "docid": "6b8ba9f849e090af00a340e1d91a767e", "score": "0.5980296", "text": "private void trainLexicon() throws Exception\n\t{\n\t\tSystem.out.println(\"Starting reading Lexicon Training set ..\");\n\t\tInstanceList lexicon_instance = dbiterator.getInstancesFromAlphabets(DBInstanceIterator.DBSource.LEX...
[ { "docid": "bd291211ad09c97667363eadc4300b44", "score": "0.60482097", "text": "public void train()\n\t{\n\t\tdbiterator = DBInstanceIterator.getInstance();\n System.out.println(\"Start Training ..\");\n\n\t\ttry {\n\t\t\tSystem.out.println(\"Training Text %..\");\n\t\t\ttrainText();\n\n\t\t\tSyst...
009f6afd7d1ec0747044716fb17946f4
Empty the table (using the model)
[ { "docid": "3e8685b5398951e10b0dcc4afa278370", "score": "0.7924465", "text": "private void emptyModel() {\n while (myModel.getRowCount() != 0) {\n myModel.removeRow(0);\n }\n }", "title": "" } ]
[ { "docid": "d9ee5167ad2babd616ad7a589ed819d6", "score": "0.793017", "text": "@Override\n\tpublic void emptyTable() {\n\t\tresTable.deleteAll();\n\t}", "title": "" }, { "docid": "b86ac4ab5600919c2076001cefdf359b", "score": "0.7796896", "text": "public void clearTable(){\n\t\tloaderIma...
d21a939c269311a82760c0ca199c899f
================================================ INTERFACE METHODS ================================================
[ { "docid": "bd493a9f4339081ba3f56f86cf774b48", "score": "0.0", "text": "@Override\n public long getID()\n {\n return this.id;\n }", "title": "" } ]
[ { "docid": "2ba22ff158b6e941041f9460eddd0944", "score": "0.6664164", "text": "@Override\n public void operation() {\n \n }", "title": "" }, { "docid": "b4d7f671f527efc3e048a88ada2fe816", "score": "0.6658842", "text": "@Override\n\tpublic void 말한다() {\n\t\t\n\t}", "ti...
84eb4e5dfa06b50ed00d8e8509a0be1c
Set the permissionName property: The claim value (value) for the delegated permission listed in the oauth2PermissionScopes collection of the servicePrincipal. Does not support $filter.
[ { "docid": "a89b15aa54cabb1909feaab0db23478f", "score": "0.67121035", "text": "public MicrosoftGraphDelegatedPermissionClassificationInner withPermissionName(String permissionName) {\n this.permissionName = permissionName;\n return this;\n }", "title": "" } ]
[ { "docid": "85a0e3ee194bf0741aad2d065227e2bf", "score": "0.75077057", "text": "public void setPermissionName(String permissionName) {\n this.permissionName = permissionName;\n }", "title": "" }, { "docid": "3adac339c3eb3aa15caed5387b0c0afc", "score": "0.7443919", "text": "p...
8367a5be1a622be245ef14d63e9bebdb
Create a status server on the given port. The jsp scripts are taken from src/webapps/.
[ { "docid": "fda597fc7541937ffff83352f65c6fec", "score": "0.0", "text": "public HttpServer(String name, String bindAddress, int port,\n boolean findPort, Configuration conf) throws IOException {\n this(name, bindAddress, port, findPort, conf, null, null, null);\n }", "title": "" } ]
[ { "docid": "a92964a0edd5da921a5c227093360163", "score": "0.64043486", "text": "public Webserver() {\n try{\n env = Dotenv.load();\n PORT = Integer.parseInt(env.get(\"PORT\", \"8080\"));\n System.out.println(PORT);\n server = HttpServer.create(new InetSo...
d998b7be8b03895567b64bd4205d3dfe
Remove a taxon from the database. The taxon will not be deleted if it is used as a parent in taxonomy or a hybrid parent. TODO : also check for verncular
[ { "docid": "cc0f7267d1da25fed70aad929d7a1329", "score": "0.75735295", "text": "public boolean deleteTaxon(Integer taxonId);", "title": "" } ]
[ { "docid": "8d50721ad8b1b87508936f2c4cb6892b", "score": "0.57267267", "text": "public void removeTaxNumberWithType(String type) {\n taxNumbers.removeIf(existingTaxNumber -> Objects.equals(existingTaxNumber.getType(), type));\n }", "title": "" }, { "docid": "3c0a5b6c59091bcac4a0c37713e3a5...
58385ed000ee3b905759a63e87624b6d
Ritorna l'indirizzo del mittente del messaggio.
[ { "docid": "ec246f66ff6dc63a453e4b5eb4aa8380", "score": "0.0", "text": "public int getSender() {\r\n\t\treturn Mittente;\r\n\t}", "title": "" } ]
[ { "docid": "ec4ad12d17531c2734f83db876d10a87", "score": "0.554002", "text": "protected String getMessageSourcePath()\n\t{\n\t\treturn \"file:///\" + Utilities.getExtensionInfo(GPSERVICE_EXTENSION).getExtensionDirectory() + getGpMessagePath();\n\t}", "title": "" }, { "docid": "fa6eadefdf323da...
fea7331ec9fc4770c1f3a302bd09dd6b
Ensures setup/teardown does not break anything
[ { "docid": "a023be52c453af9dc5bf12ea84ca78f8", "score": "0.6542966", "text": "@Test\n public void testSetupTearDown() throws Exception {\n runPythonTest(new SetupTearDownTestTask<PyUnitTestProcessRunner>() {\n @NotNull\n @Override\n protected PyUnitTestProcessRunner createProcessRunne...
[ { "docid": "df1b918aedd523739ba2b03bf4bb4110", "score": "0.7422763", "text": "@Before\n\tpublic static void setup() {\n\t}", "title": "" }, { "docid": "a378c38158d531caabec9c8de9ab2498", "score": "0.74224055", "text": "@Before\n public void setup() throws Exception {\n // n/a\n ...
a60dbf741502f461c8aecfe42e78461f
Instantiates a new paste operations command.
[ { "docid": "15c234abf2f6f3c2b81ce6932ae347d8", "score": "0.7000666", "text": "public PasteOperationsCommand() {\n\t\tsuper();\n\t\topsList.clear();\n\t\tif (Clipboard.getDefault().getContents() != null)\n\t\t\topsList.addAll((List<BusinessOperation>) Clipboard.getDefault()\n\t\t\t\t\t.getContents());\n\...
[ { "docid": "9842c07c13a47e0260c6dbc9f1909956", "score": "0.6049671", "text": "public void paste() {\n textArea.paste();\n }", "title": "" }, { "docid": "38cad031dc54ab1ddcc84fa1984f2d93", "score": "0.5864245", "text": "public void doPasteCommand() {\r\n TMView view =...
288d0301fb57675519f2acb8d5a6baa2
This method was generated by MyBatis Generator. This method corresponds to the database table group_teacher_rel
[ { "docid": "965c477619715c49fc9ece8bd8f5e30b", "score": "0.5674828", "text": "int updateByPrimaryKeySelective(GroupTeacherRel record);", "title": "" } ]
[ { "docid": "e947c8c4df551ca9a12d5a3748695123", "score": "0.70819247", "text": "GroupTeacherRel selectByPrimaryKey(Integer groupTeacherRelId);", "title": "" }, { "docid": "8a7741d93b087a5d419f9c95c495e87b", "score": "0.62853146", "text": "List<GroupTeacherRel> selectByExample(GroupTea...
4fbbcd649483248f612c9f6856daf392
Empty constructor for serialization.
[ { "docid": "a128532f4a5d425e829c6eead45e089a", "score": "0.0", "text": "public ItemInWarehouse(){}", "title": "" } ]
[ { "docid": "6471ed32a5a8e4844fc26aae0579e906", "score": "0.78350484", "text": "public SimpleSerializableObject() {\r\n super();\r\n }", "title": "" }, { "docid": "2db35ca7dda2e6e61364c91e8a5186f4", "score": "0.75076437", "text": "public SimpleSerializers() {}", "title":...
3bf7ea6f1086dc7c86dd49ba28f479c1
Called after a value has been selected by the user (not if the value has been set programmatically).
[ { "docid": "0e1bef572e0051d5b02a34e4ad92abf9", "score": "0.0", "text": "public void valueChanged(PropertyEditor editor);", "title": "" } ]
[ { "docid": "5635006246fecc8f5d1d0adf20f47dd2", "score": "0.7268693", "text": "@Override\n public void onValueDeselected() {\n\n }", "title": "" }, { "docid": "fd8d44d3d15baf20793cee9cbec8ba10", "score": "0.725448", "text": "@Override\n\t\tpublic void onValueDese...
d63e84ff4f26aa400bf1878098a05331
Specifies the scale of the distortion.
[ { "docid": "d107ffa0976f3cc65eebb543b6e7dd2f", "score": "0.7469903", "text": "public void setScale(float scale) {\n this.scale = scale;\n }", "title": "" } ]
[ { "docid": "73f37c1abfac51cc64b4b47cb2fa0760", "score": "0.78891623", "text": "public void setScale(float scale);", "title": "" }, { "docid": "d2b1066ac3532d09df8ba71da3c60b82", "score": "0.7546167", "text": "@Override\n public void setScale(float scale) {\n this.scale = sc...
36e0f1a2baeb32a3380722c196cdd448
Creates new form Patient
[ { "docid": "ea0969b56ed364fde2950f3533ed7080", "score": "0.633939", "text": "public Patient() {\n initComponents();\n Selectional();\n }", "title": "" } ]
[ { "docid": "e1ae227602b4220a1cd00423af6c3d1f", "score": "0.719486", "text": "public Patient() { }", "title": "" }, { "docid": "ed72fe47aceeea080c7f274fdfd560ad", "score": "0.70279634", "text": "public void addPatient(){\r\n String pName = patName.getText();\r\n String i...
acd504005f9551d80d914d003d85e551
Gets the value of the fatherSubjectID property.
[ { "docid": "5728f6c6c8a31c2d63381aa0f4e921c1", "score": "0.88558537", "text": "public long getFatherSubjectID() {\r\n return fatherSubjectID;\r\n }", "title": "" } ]
[ { "docid": "12023b4717b22d5a408257c829177aa0", "score": "0.8141271", "text": "public void setFatherSubjectID(long fatherSubjectID) {\r\n this.fatherSubjectID = fatherSubjectID;\r\n }", "title": "" }, { "docid": "a66108f517cc9e62bb31310ded13ec07", "score": "0.7101455", "text...
e2a50a5dc56d878f5f61564014f26589
Place or remove a flag from the specified cell. If the cell is currently covered then place a flag on the cell. If the cell currently contains a flag, remove that flag but do not uncover the cell. If the cell has already been uncovered or is not on the board, no change is made to the board.
[ { "docid": "ee2a13195648a14e26ee013b0f903cbb", "score": "0.69954187", "text": "public void flagCell(int row, int col) {\n\t\tif (msBoard[row][col] == COVERED_CELL) {\n\t\t\tmsBoard[row][col] = FLAG;\n\n\t\t} else if (msBoard[row][col] == MINE) {\n\t\t\tmsBoard[row][col] = FLAGGED_MINE;\n\t\t} else if (m...
[ { "docid": "cc96be9515c794eac44822446785b375", "score": "0.6482492", "text": "public void testFlagCell()\n {\n board.loadBoardState(\" \", \"OOOO\", \"O++O\", \"OOOO\");\n board.flagCell(1, 2);\n assertBoard(board, \" \", \"OOOO\", \"OM+O\", \"OOOO\");\n board.flagCe...
46228cd9bebdda8c4d0dcb68b6bc8876
Gets the counter for input stream position.
[ { "docid": "1d358888715dba9a8952896f1eb9d329", "score": "0.6818873", "text": "protected long getCounter(final long position) {\n return position / cipher.getBlockSize();\n }", "title": "" } ]
[ { "docid": "ee89acdd492d3812d2d3bd346f18606b", "score": "0.6985109", "text": "public int getPositionCounter() {\n return positionCounter;\n }", "title": "" }, { "docid": "d12f8a675c4cc49ffe4bbdd798dad436", "score": "0.6682526", "text": "protected long getStreamPosition() {\...
2e449eadf7292b362d9785e435fc9be6
$ANTLR end "rule__UseCaseModel__UseCaseAssignment_7" $ANTLR start "rule__Actor__NameAssignment" ../br.com.levysiqueira.dsl.textualusecase.ui/srcgen/br/com/levysiqueira/dsl/textualusecase/ui/contentassist/antlr/internal/InternalTextualUseCase.g:3483:1: rule__Actor__NameAssignment : ( ruleName ) ;
[ { "docid": "9ab8db7b9520f882b3061ec45be576f7", "score": "0.7329454", "text": "public final void rule__Actor__NameAssignment() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../br.com.levysiqueira.dsl.textualusecase.ui/src-gen/br...
[ { "docid": "76c356ca1458a0b4cc1bb2d6f05741ef", "score": "0.8086606", "text": "public final void ruleActor() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../br.com.levysiqueira.dsl.textualusecase.ui/src-gen/br/com/levysiqueira/...
02630dd7bf937f17f5186d576da724ed
Metoda nacte konkretniho studenta z databaze a ulozi jej jako instanci objektu Student. Jelikoz se cela SQL databze nacita pri vytvoreni instance objektu Databaze, realne nema tato metoda zadne vyuziti. Opet se zde pracuje s SQL databazi a proto se navazuje a ukoncuje spojeni. Metoda je osetrena proti chybe na strane S...
[ { "docid": "3c68fad719423de481f3149f91ffe0fb", "score": "0.0", "text": "public void nactiPodleJmena(String jmeno, String prijmeni)\n\t{\n\t\tdb.connectDB();\n\t\ttry\n\t\t{\n\t\t\tResultSet rs = this.db.loadExactStudent(jmeno, prijmeni);\n\t\t\tif(rs != null)\n\t\t\t{\n\t\t\t\tswitch(rs.getInt(\"obor\")...
[ { "docid": "3c06ddafbc6742f155e89a447bdddf62", "score": "0.66853076", "text": "public Databaze()\n\t{\n\t\tthis.studenti = new HashMap<Integer, Student>();\n\t\tthis.connectDB();\n\t}", "title": "" }, { "docid": "2c73a98f8ab031d53e70fbbc8d6ecce5", "score": "0.65169436", "text": "publ...
562a8815c8c68d31e62863f67ae32c12
Count the Number of Players who own a specific badge
[ { "docid": "d2867b11d381fddaac7512ae7cc50efe", "score": "0.69192463", "text": "public int badgeCount (BadgePlayer currentPlayer) {\n\t\t// Select all Rows from the transaction-table where the Uuid is equal with currentPlayer\n\t\tResultSet result = myConnector.getQuerry(\"SELECT * FROM transaction WHERE...
[ { "docid": "19bd44f9d3cf9edbcb90d1e83fc23abc", "score": "0.69993687", "text": "int getReleasePlayersCount();", "title": "" }, { "docid": "350b4b13f2b72a3a011bac3bd574e4af", "score": "0.68984705", "text": "int getBadgesCount();", "title": "" }, { "docid": "ebd39c2d687c50b2...
fb6f5c820cd6fd4e00229517da89cc20
again enforce invariant that job title is unique (because of concurrency issues)
[ { "docid": "279d3cd8e92ffe9f9c150467b1552b9e", "score": "0.49677455", "text": "@Override\n\tpublic void save(JobOfferDto jobOffer) {\n\t\tjobOffers.compute(jobOffer.getId(), (k, v) -> {\n\t\t\tif (v != null && jobOffersByTitle.get(v.getTitle()) != null) {\n\t\t\t\t// raise an even to handle duplicate jo...
[ { "docid": "3a69ad84482b259ffb7d86c50b4f47d7", "score": "0.63630605", "text": "public void setJobTitle(String theTitle) {\r\n\t\tthis.title = theTitle;\r\n\t}", "title": "" }, { "docid": "c53d6a3c33c87ae66075ef21ba2954ec", "score": "0.60600835", "text": "@Override\n\tpublic boolean c...
ba0acefa3ca6fdf991259e2fa56eabcb
Return Unit array of utype.
[ { "docid": "b6ee2c09b2214ef43e64a8ccb08ad180", "score": "0.80156076", "text": "public Unit[] getUnits (UnitType utype){ \n\t\tif (utype == UnitType.Area ){\n\t\t\treturn Area.values();\n\t\t} else if ( utype == UnitType.Length ){\n\t\t\treturn Length.values();\n\t\t} else if ( utype == UnitType.Weight )...
[ { "docid": "47026c84741981c6a97ad06458f43512", "score": "0.7712136", "text": "public UnitType[] getUnits(){\n\t\treturn UnitFactory.getInstance().getUnitTypes();\n\t}", "title": "" }, { "docid": "034c55736e718bb08ed05517806df3d6", "score": "0.75289965", "text": "public UnitType[] get...
d7c6500fdc69e701e8cfcf04d2e1dc67
repeated .PBMedia medias = 3;
[ { "docid": "fb9a9339c864d00724466e80e14b9d9b", "score": "0.0", "text": "private void clearMedias() {\n medias_ = emptyProtobufList();\n }", "title": "" } ]
[ { "docid": "88e7946aba459b55e97075ef48504c50", "score": "0.693591", "text": "FollowersPlus.PBMedia getMedia();", "title": "" }, { "docid": "88e7946aba459b55e97075ef48504c50", "score": "0.69349986", "text": "FollowersPlus.PBMedia getMedia();", "title": "" }, { "docid": "88...
aed882cc90ebf923a5f83f6998a7827c
Gets map of Azure datacenter locations which supports Persistent VM role. Today this is hardcoded pulling from the array, because the old form of certificate based auth appears to be required.
[ { "docid": "2e2fd6fabdc4e3d13c004422a1726128", "score": "0.579624", "text": "public static Map<String, String> getVirtualMachineLocations(String serviceManagementUrl) {\n if (serviceManagementUrl != null && serviceManagementUrl.toLowerCase().contains(\"china\")) {\n return AVAILABLE_LO...
[ { "docid": "4af18256da4d47c44d0ee4aa6da3b389", "score": "0.60883427", "text": "protected Map<Integer, Integer> getVmsToDatacentersMap() {\r\n\t\treturn vmsToDatacentersMap;\r\n\t}", "title": "" }, { "docid": "30dd748d986eb882d9102499d04ed9e2", "score": "0.59526634", "text": "protecte...
0d0380791c3ff58d9627579341355101
Set the value and display it in the select element. Add the value to the acceptable set if it is not already there.
[ { "docid": "43783b643b2a48f6c69ba0ea1103d40c", "score": "0.0", "text": "public void setValue(final T value) {\n setValue(value, false);\n }", "title": "" } ]
[ { "docid": "0124d83823cca955106afb130c32b780", "score": "0.6290928", "text": "@Override\n public void setSettingValue(String value) {\n if ( value == null )\n return;\n if (selectedIndex > -1) {\n setOldValue(getOption());\n }\n if (!options.contains(...
518bf5364cda3c6202a1a392996f93d1
Inflate the menu; this adds items to the action bar if it is present.
[ { "docid": "fe45f5b288f8db1a97fb9db1aa0ef56b", "score": "0.0", "text": "@Override\n public boolean onCreateOptionsMenu(Menu menu) {\n getMenuInflater().inflate(R.menu.menu_logged_in, menu);\n return true;\n }", "title": "" } ]
[ { "docid": "b470b12158e9a37414c1897a8fc7b04e", "score": "0.71349466", "text": "@Override\n\tpublic boolean onCreateOptionsMenu(Menu menu) {\n\t\tMenuInflater mif = getMenuInflater();\n\t\tmif.inflate(R.menu.main_activity_action, menu);\n\t\treturn super.onCreateOptionsMenu(menu);\n\t}", "title": "" ...
fb0e08af97e6ea45f2686de2f433c60e
Gets current balance from account. Steps: Notifies all registered listeners of the transaction. Authenticates the account data. Validates the operation to perform. Retrieves the account reference from the bank. Performs the operation.
[ { "docid": "38297ad08ccc81c4e38439da27c2501f", "score": "0.67203546", "text": "public float getBalance( AccountInfo accInfo )\n \t\tthrows AccountException, _SecurityException\n\t{\n\t\tAccount theAccount = null;\n\n\t\t/* build and distribute notification */\n\t\tint accNum = accInfo.number;\n\t\tTr...
[ { "docid": "18f4b97c5c797443b84c162a9ca976ac", "score": "0.66916066", "text": "private void getBalance() {\n\t\tCommUtil.getUserAccountBalance(spUtil.getString(\"cellphone\", \"\"), \n\t\t\t\tGlobal.getIMEI(mActivity), mActivity, getMoney);\t\n\t}", "title": "" }, { "docid": "7473a7170124f52...
665d77f55612fab99679ff7b3daeab5d
gsonTest(); relationTest(); diagramDaoTest(); getDiagramTest();
[ { "docid": "ec328dc25a885a73647630bd9df75ef4", "score": "0.0", "text": "public static void main(String[] args) {\n \n convertDiagramTest();\n }", "title": "" } ]
[ { "docid": "ff4e977b9d4fe7065a168ada5910471d", "score": "0.7026352", "text": "@Test\n public void functionalityTest() {\n new TestBuilder()\n .setModel(MODEL_PATH)\n .setContext(new ModelImplementationGroup3())\n .setPathGenerator(new RandomPath(new...
3e67aaf4b9c637bfc31bc4b9c8a8afa7
C++: void Algorithm::setMatVector(string name, vector_Mat value)
[ { "docid": "163fbd280fe959d559ce69993de9f28a", "score": "0.8193668", "text": "private static native void setMatVector_0(long nativeObj, String name, long value_mat_nativeObj);", "title": "" } ]
[ { "docid": "2716fe020890fdd8a08b82248987b1e9", "score": "0.83532554", "text": "public void setMatVector(String name, List<Mat> value)\n {\n Mat value_mat = Converters.vector_Mat_to_Mat(value);\n setMatVector_0(nativeObj, name, value_mat.nativeObj);\n\n return;\n }", "titl...
bf4e1878446aaf5f6b491193851ada8d
reset terminal color to default
[ { "docid": "d10febc286492bee180d4db7aa04a08d", "score": "0.8069764", "text": "public void resetTerminal() {\n System.out.println(BaseCommand.ANSI_RESET);\n }", "title": "" } ]
[ { "docid": "143f347606d65b4c175edee9a54e0aac", "score": "0.7388071", "text": "public void redTerminal() {\n System.out.println(ANSI_BRIGHT_RED);\n }", "title": "" }, { "docid": "3bbae1c1a875622c6af258ad0d166b08", "score": "0.7277428", "text": "void resetColor() {\n p...
6c8317dfdb4ed77b1c15e9cf944b83fd
Initializes this struct with the specified values.
[ { "docid": "a327e1d4b7c04cb476d0b869240de40d", "score": "0.0", "text": "public VkSubmitInfo set(\n\t\tint sType,\n\t\tlong pNext,\n\t\tint waitSemaphoreCount,\n\t\tLongBuffer pWaitSemaphores,\n\t\tIntBuffer pWaitDstStageMask,\n\t\tPointerBuffer pCommandBuffers,\n\t\tLongBuffer pSignalSemaphores\n\t) {\n...
[ { "docid": "c1295b655596c01910ce46048c0a9bd1", "score": "0.7030595", "text": "@Override\n\tpublic void initializeValues() {\n\n\t}", "title": "" }, { "docid": "021f894567d8c9e252d0e88a5b4f72e9", "score": "0.6425093", "text": "protected void initTheValues()\r\n\t {\r\n\t\t theValues =...
2fc0f005a9d67b8c36b6d508f46aa15e
This method resets all nonEID attributes settings (Switches, State, ...)
[ { "docid": "f2909ced704efedda482879873fd8639", "score": "0.0", "text": "private void resetOtherCryptoCredencials(SharedPreferences.Editor editor) {\n //EID\n //--Name and surname\n editor.putString(Constants.Eid.NAME_SURNAME_EID_STATE, Constants.Eid.DISCLOSURE_IS_NOT_REQUIRED);\n ...
[ { "docid": "e654c8ec875c4140dc9b04829d758320", "score": "0.6724999", "text": "public void reset() {\n int i = this.mIgnoreResetState;\n if (i != 2) {\n if (i == 1) {\n stopIgnoringReset();\n return;\n }\n this.mClientThemeResId...
ab4c2664107476901ca3116a2845af90
Returns the paymentGroupsProperty name. This is the paymentGroups property in the Order repository item.
[ { "docid": "b6a8319c140200f250ea81f8424459ec", "score": "0.8226405", "text": "public String getPaymentGroupsProperty() {\n return mPaymentGroupsProperty;\n }", "title": "" } ]
[ { "docid": "6f54856a63139f6cf7d4438113607c30", "score": "0.7079389", "text": "public void setPaymentGroupsProperty(String pPaymentGroupsProperty) {\n mPaymentGroupsProperty = pPaymentGroupsProperty;\n }", "title": "" }, { "docid": "d280dee7c49d7454f08005773bd94907", "score": "0.67157...
69c502e00ad9cc4b131ecfc430067629
This method was generated by MyBatis Generator. This method sets the value of the database column roomtype.state
[ { "docid": "74146e0f6654d28348ea04a0e6e1ab44", "score": "0.0", "text": "public void setState(String state) {\n this.state = state == null ? null : state.trim();\n }", "title": "" } ]
[ { "docid": "add0a04c45e87960b3d10b037054adc2", "score": "0.6329156", "text": "public void setRoomType (RoomType t) {\r\n\t\tthis.type = t;\r\n\t}", "title": "" }, { "docid": "d4302d6f1f03da75eb4461b7ac1b1f24", "score": "0.6099112", "text": "public static void setRoomState(States room...
9b1a201555a2df7922f619b1e4e1a731
Stored info type version state. Readonly, updated by the system during dictionary creation. .google.privacy.dlp.v2.StoredInfoTypeState state = 3;
[ { "docid": "2eaf0bb100b9e14e6001682653bd30d5", "score": "0.0", "text": "public Builder setStateValue(int value) {\n state_ = value;\n bitField0_ |= 0x00000004;\n onChanged();\n return this;\n }", "title": "" } ]
[ { "docid": "0f18c1c677441ae3e918050c4f2056d8", "score": "0.7210733", "text": "@java.lang.Override\n public com.google.privacy.dlp.v2.StoredInfoTypeState getState() {\n com.google.privacy.dlp.v2.StoredInfoTypeState result =\n com.google.privacy.dlp.v2.StoredInfoTypeState.forNumber(state_);\n ...
f392490943f56deed17121439d2c7428
required bool is_remind = 10;
[ { "docid": "c786048130b995fed775ed6007cfce52", "score": "0.5966371", "text": "boolean getIsRemind();", "title": "" } ]
[ { "docid": "04a5a55722170d67b18b7d52d41a2170", "score": "0.5998307", "text": "public void setIsTransferred (boolean IsTransferred)\n{\nset_ValueNoCheck (\"IsTransferred\", new Boolean(IsTransferred));\n}", "title": "" }, { "docid": "f916f8c381a638a5fd01b8f232b47169", "score": "0.5925029"...
5f1aa15d4298500c6515a06e4884df14
/2012618, add end /20120105, DJHV83 added for Data Switch
[ { "docid": "581492918d7d3980ae5473ca1a0c20b3", "score": "0.0", "text": "public void setDataSwitchEnable(boolean bEnable){\n mDataSwitch = bEnable;\n }", "title": "" } ]
[ { "docid": "a3def2258601d63c48bf6eff66c59697", "score": "0.5528657", "text": "public void mo12628c() {\n }", "title": "" }, { "docid": "0d81c067c8001661f6cbaddca50d165a", "score": "0.5436786", "text": "public void mo6081a() {\n }", "title": "" }, { "docid": ...
ca68161ce51e282139f2a5dfb45b8d75
Instantiates a new parameter ilp.
[ { "docid": "07d69369769d91f40fd1b27fbf86488c", "score": "0.709572", "text": "public ParameterILP(Parameter parameter) {\n\t\tsuper(parameter);\n\t\tsetThresholdILP(100);\n\t\tsetProblemMask(\"%s.ilp.problem.txt\");\n\t\tsetSolutionMask(\"%s.ilp.solution.txt\");\n\t\tsetGlpsolProgram(\"/usr/bin/glpsol\")...
[ { "docid": "982ceba0442965b7bf6d47d9c9dc943d", "score": "0.7031428", "text": "Parameter createParameter();", "title": "" }, { "docid": "982ceba0442965b7bf6d47d9c9dc943d", "score": "0.7031428", "text": "Parameter createParameter();", "title": "" }, { "docid": "3b48990412e2...
87f6c14f395ed49dda4b8e164c8800b2
A method that will activate the drawWhiteSquare method in the MyPicture class to draw a picture with white squares.
[ { "docid": "7dd66e322528c017f238e1ebbc9b6ea4", "score": "0.5891031", "text": "public void drawSegmentation (MyPicture pic, LinkedQueue<QuadNode> queue)\n\t{\n\t\tint i=0;\n\t\tQuadNode node;\n\t\t/**\n\t\t * a while loop that will draw the white squares.\n\t\t */\n\t\twhile (i<queue.size())\n\t\t{\n\t...
[ { "docid": "5f6c3da6e2d2e6ea141f6ecdadce0568", "score": "0.67480886", "text": "private void paintWhite(int posX, int posY) {\n squareBoard[posX][posY].squareColor = Color.WHITE;\n }", "title": "" }, { "docid": "ce8b4e5a8f3208ef7138f8608e1a8bf5", "score": "0.6596983", "text"...
523b613006900d6fadbaf77b7ac3fdd9
Called when OK button clicked Passes new or updated data
[ { "docid": "c856e8fc63060d4e1101e8ea52d065dd", "score": "0.6390503", "text": "@FXML\n private void okHandler() {\n if(inputIsValid()) {\n contact.setFirstName(firstNameField.getText());\n contact.setLastName(lastNameField.getText());\n contact.setStreet(streetF...
[ { "docid": "32c0b2cd92852314e6864c357f1da1da", "score": "0.7456637", "text": "@FXML\r\n\tprivate void handleOk() {\r\n\t\tif (isInputValid()) {\r\n\r\n\t\t\tString bweight = beforeWeight.getText();\r\n\t\t\tint weight = Integer.parseInt(bweight);\r\n\t\t\tString freelength = freedaylength.getText();\r\n...
c6ee6cf46574a4dbd494fe24f2273344
optional double dividend_price = 29;
[ { "docid": "46e47540c4230f89207d80b033ebdcdd", "score": "0.6170551", "text": "public boolean hasDividendPrice() {\n return ((bitField0_ & 0x10000000) == 0x10000000);\n }", "title": "" } ]
[ { "docid": "a16f3bb96b661dc0d7b0a5550936e179", "score": "0.83558476", "text": "double getDividendPrice();", "title": "" }, { "docid": "c569d735f42c45d07d43dd487a16db14", "score": "0.7197685", "text": "public double getDividendPrice() {\n return dividendPrice_;\n }", "titl...
b266bd2f0d9d86057586ec593c6eeffa
find average number of likes per comment
[ { "docid": "ac79874f2f751a198e17017c3429b731", "score": "0.8748731", "text": "public void getAverageLikesPerComment() {\n Map<Integer, Comment> comments = DataStore.getInstance().getComments();\n int totalLikes = 0;\n int commentNum = comments.size();\n \n for (Comment...
[ { "docid": "2d3cdff52e958d395dd4109f685f430d", "score": "0.7233374", "text": "int getLikeCountForComment(long commentId);", "title": "" }, { "docid": "0286af0784f3b7f09a7199067ae15ed8", "score": "0.6702981", "text": "int getLikeCountForUserForComments(long userId);", "title": "" ...
961badefbc8bccaebbb2c3e704ccc175
Save BytesAcces has a stream of bytes
[ { "docid": "5d23c3d7a3732296176367ed87e20b95", "score": "0.0", "text": "public void save( final File file ) throws FileNotFoundException, IOException\r\n {\r\n final OutputStream os = new FileOutputStream( file );\r\n\r\n save( os );\r\n os.close();\r\n }", "title": "" }...
[ { "docid": "c3e159eb386ba9d8e613aa455c30b519", "score": "0.6820936", "text": "Object getBytes();", "title": "" }, { "docid": "ab14a0567cf3d032c407c6fa3499c8e1", "score": "0.63973165", "text": "byte[] getBytes();", "title": "" }, { "docid": "ab14a0567cf3d032c407c6fa3499c8e...
8d7c4fc1bf7373aee8dbd47931121bb3
Introducing the dummy constructor
[ { "docid": "3900cd01fba13b0e9377f7e515ccb2d4", "score": "0.0", "text": "public CityCoordinates() {\n\t\t\t\n\t\t}", "title": "" } ]
[ { "docid": "2504ad4ff9a6842e2485897fa162c723", "score": "0.725028", "text": "public xxxxxxxxxxx() {\n }", "title": "" }, { "docid": "e9cc24cb9dec879c84a691ca849dfa67", "score": "0.7119652", "text": "private New() {\n\t\t// do not instantiate\n\t}", "title": "" }, { "do...
e6c625c6fe04c6cb2c89723888c27fe4
repeated .tensorflow.Example examples = 1;
[ { "docid": "e902a62bd041dd79813dedea9c9b3f0d", "score": "0.5623933", "text": "public org.tensorflow.example.Example getExamples(int index) {\n return examples_.get(index);\n }", "title": "" } ]
[ { "docid": "802ab3f5a9a01fbc95b6d44064054081", "score": "0.7206346", "text": "org.tensorflow.example.Example getExamples(int index);", "title": "" }, { "docid": "802ab3f5a9a01fbc95b6d44064054081", "score": "0.7206346", "text": "org.tensorflow.example.Example getExamples(int index);",...
0b4ea58b920ce27c3cc24a749123bb89
Record an error with human readable description at the default level.
[ { "docid": "0f8d583dfdda2d58622deca298c95689", "score": "0.5206823", "text": "public void log(Throwable error, String description) {\n log(error, null, description, null);\n }", "title": "" } ]
[ { "docid": "8378f322ac487fbe30e2277a54328d59", "score": "0.6236903", "text": "java.lang.String getErrorDesc();", "title": "" }, { "docid": "d60969fc74e61b173dca5fd732462dc3", "score": "0.6212915", "text": "private void addError(String description) {\n\t\tif (errors == null) {\n\t\t\t...
8a0afba9209dd5e51ea2c66fbe568a57
/ / / / / / / / / / / /
[ { "docid": "ea165cddc3f1ea09407db3d14faca030", "score": "0.0", "text": "public void setMark(boolean paramBoolean) throws PDFNetException {\n/* 296 */ SetMark(this.a, paramBoolean);\n/* */ }", "title": "" } ]
[ { "docid": "8b3d721b1eea281aeed549a0c2e07286", "score": "0.54491615", "text": "private void StartotraL() {\n\t\t\r\n\t}", "title": "" }, { "docid": "4d8529179f4897d61c3fba23882d7ba3", "score": "0.52638984", "text": "private void divideInSets() {\n\t\t\n\t}", "title": "" }, { ...
8bff538a326e9f3ce6625b68a5664e67
Initialize the contents of the frame.
[ { "docid": "8c3fd38f8f92ac6fff2e7a2200f5f687", "score": "0.0", "text": "private void initialize() {\r\n\t\tframe = new JFrame();\r\n\t\tframe.setBounds(100, 100, 566, 413);\r\n\t\tframe.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);\r\n\t\tframe.getContentPane().setLayout(null);\r\n\t\t\r\n\t\ttextFiel...
[ { "docid": "0b27db93afbff70e0805b33ba9225b4b", "score": "0.7804165", "text": "public void initFrame() {\n\n\t}", "title": "" }, { "docid": "810fb016ac220733f6bfecd20739b0d0", "score": "0.7793849", "text": "public Frame()\n {\n // Set up the frame\n initFrame();\n ...
909f09c236ecbc456790e077d4bd059c
Creates a new operator rule.
[ { "docid": "7c2637204209b41586235de55aa65ea8", "score": "0.0", "text": "public OperatorRule(Set<Pair<Integer, Integer>> body,\n\t\t\t\tPair<Integer, Integer> head)\n\t\t{\n\t\t\tthis.body = Collections.unmodifiableSet(body);\n\t\t\tthis.head = head;\n\t\t}", "title": "" } ]
[ { "docid": "3ad0869904e3f614142134ddeafb5941", "score": "0.7392641", "text": "Operator createOperator();", "title": "" }, { "docid": "075607545ba019c7a75a21e1e63a9fda", "score": "0.6832544", "text": "public Operator(String _op)\r\n {\r\n operator = _op;\r\n }", "titl...
93d2372cef837f15d232d9ccb0b7b6b1
handle in the subClass
[ { "docid": "417964aef5c78ef42768bfbaa57f580d", "score": "0.0", "text": "public boolean handleHtml(Page page) {\n return true;\n }", "title": "" } ]
[ { "docid": "7882a8c22b986911258ddf11641e8551", "score": "0.6527547", "text": "@Override\n protected void checkSubclass()\n {\n }", "title": "" }, { "docid": "670a1f1762ae34e35e1f226e8737d51d", "score": "0.6481358", "text": "@Override\n protected void checkSubclass() {\n ...
1b0db9a86fbc30535f4932272842fb48
/ renamed from: a
[ { "docid": "459b5acc427f0964da62f7e59df3d463", "score": "0.0", "text": "public void mo22974a(C7247a aVar) {\n this.f13405b.m14952a(this.f13404a, aVar, true);\n }", "title": "" } ]
[ { "docid": "40e9785645e7f278c7de226a84dd3b77", "score": "0.61801475", "text": "public interface C35595b {\n /* renamed from: a */\n void mo90406a();\n }", "title": "" }, { "docid": "a14760f0a1a6f90e9f568881c3a67610", "score": "0.61778456", "text": "public interface a...
a454f8b557508367c2b71d29d8cc72ef
Povoar Combo box de unidade de disco
[ { "docid": "a06753154557f2c02c11d2817d151225", "score": "0.0", "text": "public void carregarHdSize() {\n\t\tUnidadeHd uhdd = new UnidadeHd(1,\"MB\"); \n\t\tUnidadeHd uhdd2 = new UnidadeHd(2,\"TB\");\n\t\t\n\t\tunityHd.add(uhdd);\n\t\tunityHd.add(uhdd2);\n\t\t\n\t\tlst = FXCollections.observableArrayList...
[ { "docid": "530d24204ce8fe1cd623a73dc11fdf30", "score": "0.7487706", "text": "private void riempiProprProcComboBox(){\n Statement stmt;\n ResultSet rst;\n String query = \"SELECT U.username FROM utente U JOIN compRuoloSistema C ON U.ruolo = C.ID_ruolo WHERE C.ID_privSis = 'ALL PRIVI...
a99c5cf377b876f5cc9a19e17d27c04b
get mouse release event handler
[ { "docid": "becae34bfa3626cfef69eee6eb206d1a", "score": "0.0", "text": "public CustomMouseReleaseEvent getReleasedEvent() {\r\n\t\treturn new CustomMouseReleaseEvent(_presentationModel);\r\n\t}", "title": "" } ]
[ { "docid": "56d58627d1f4b1e8f3e109e753477825", "score": "0.77095467", "text": "public void mouseReleased( MouseEvent evt ){ }", "title": "" }, { "docid": "0c65b7f495c1c62ad6e10f2d8a106354", "score": "0.76943123", "text": "public void mouseReleased(MouseEvent e) {}", "title": "" ...
89b3f4e20f82a333620985dc1ca502b9
Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be redacted from this string using a placeholder value.
[ { "docid": "d80e53a0b02e6f30c6cf935f3f731ba8", "score": "0.0", "text": "@Override\n public String toString() {\n StringBuilder sb = new StringBuilder();\n sb.append(\"{\");\n if (getIdentityAttributeName() != null)\n sb.append(\"IdentityAttributeName: \").append(getIde...
[ { "docid": "3af5c0946d62f12d8f590f181b5cc210", "score": "0.7972388", "text": "@Override\n public String toString() {\n return new Gson().toJson(this);\n }", "title": "" }, { "docid": "dd7bc1368989a670333646061af8ab84", "score": "0.79137117", "text": "@Override\r\n\tpubli...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "97dbfac3047ab91e273e2ae8b6921543", "score": "0.0", "text": "@Override\n\tpublic void saveRep(Repository rep, ObjectId id_transformation,\n\t\t\tObjectId id_step) throws KettleException {\n\n\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...
b564006a908520e641262d674c0bf234
A Simple rotate method to close the old file and start the new one when the limit is reached.
[ { "docid": "01aae8f928fe6841ba6bd237c536672b", "score": "0.59905773", "text": "public void rotate() {\n final GFFileHandler thisInstance = this;\n java.security.AccessController.doPrivileged(\n new java.security.PrivilegedAction() {\n public Object run() {...
[ { "docid": "732bdbdcb64751cfd24618ae9e1d0cc5", "score": "0.59378827", "text": "public static void fileRotation() {\n printToFile();\r\n File file = new File(\"courseappdata.txt\");\r\n File file2 = new File(\"courseappdata.bu.1.txt\");\r\n File file3 = new File(\"courseappdata.bu.2.txt\");\r...
dbebe5b3595a56a09fab3c64dfc802bd
Execute query ,get result set, instead of parsing result set
[ { "docid": "c9b1b2cd31ad11d7b5fbf30ad454a1b1", "score": "0.0", "text": "@Override\n\tpublic ResultSet executeOrig(Operation op) throws SQLException {\n\t\t// TODO Auto-generated method stub\n\t\ttry {\n\t\t\t\n\t\t\tDBOperation dbOp0 = null;\n\t\t\tif( op instanceof DBGenericOperation)\n\t\t\t\tdbOp0 = ...
[ { "docid": "e04da1109245333d94157fef339fc03b", "score": "0.69591653", "text": "public List<Object[]> getSQLQueryResult(String query);", "title": "" }, { "docid": "3135e0ade40198220c711e6fe95ae7f6", "score": "0.68638533", "text": "private List execute(String query, Object[] params, Ro...
2814035dac308095b3ae756bc551ccfd
Put hardware control code here to physically turn on the light.
[ { "docid": "7032b83c792f3ccaae1af02486c2e6f8", "score": "0.0", "text": "public void run() {\n System.out.println(\"Turning on lights\");\n light = true;\n queue.add(new LightOn(getDelta(), queue));\n }", "title": "" } ]
[ { "docid": "2c06268c5780f1156f197d9b976af2a3", "score": "0.7248335", "text": "public void switchLight() {\r\n if (this.status) \r\n turnOffLight();\r\n else \r\n \tturnOnLight();\r\n }", "title": "" }, { "docid": "31a23ee3151a5fec86aa4d41cc721688", "sc...
7a45515bf8f52a314154ceb43c3fdc4f
unused, override required to suppress warnings
[ { "docid": "fe53742250b94a9514899eb45cefa207", "score": "0.0", "text": "@Override\r\n public void onStopTrackingTouch(SeekBar seekBar) {\n }", "title": "" } ]
[ { "docid": "0fa90e40e6488bdb9f25599153d0b156", "score": "0.7187683", "text": "@Override\n public void unwanted() {\n }", "title": "" }, { "docid": "ce01e16cbc1fc0a29d28a4365b63f79d", "score": "0.7023866", "text": "@Override\n\tpro...
7306d828a9668dd15c7c4d3883d23323
aid required bytes aid = 1;
[ { "docid": "6de4120e3523a571eda0a793d5f3b5ac", "score": "0.5331855", "text": "public boolean hasAid() {\n return ((bitField0_ & 0x00000001) == 0x00000001);\n }", "title": "" } ]
[ { "docid": "dcbf27bf9f37bc13cb955840acc2b207", "score": "0.66398805", "text": "com.google.protobuf.ByteString getAid();", "title": "" }, { "docid": "dcbf27bf9f37bc13cb955840acc2b207", "score": "0.66398805", "text": "com.google.protobuf.ByteString getAid();", "title": "" }, { ...
6ea027035e660e254aba77f4bd9cb6e7
Generate a public/private key pair
[ { "docid": "b3e2dc2ee4dcbb27bbee6f54b9f732ff", "score": "0.70813006", "text": "public void generateKeys() throws IOException, NoSuchAlgorithmException,\n NoSuchProviderException {\n KeyPairGenerator keyGen = KeyPairGenerator.getInstance(\"DSA\");\n keyGen.initialize(1024, new SecureRandom());...
[ { "docid": "04f2347f112d603e579168090ce257b4", "score": "0.79003304", "text": "public static String generateKeyPair(){\n\t\treturn \"Public Key: \" + getPublicKey() +\"\\n\" +\"Private Key: \" + getPrivateKey();\n\t}", "title": "" }, { "docid": "e15aa9a0a0df754a0bc11ae8772f9c43", "score"...
b857189aaf2edebed57793c8586be619
Computes r[i] = a[i] + b[i] for all i.
[ { "docid": "cd09e508d0e85b0801369df8544a5f0e", "score": "0.6594147", "text": "public static void add(float[] r, float[] a, float[] b) {\n int i = r.length;\n if (a.length != i || b.length != i) {\n throw new IllegalArgumentException();\n }\n while (--i >= 0) {\n ...
[ { "docid": "55159da56c8f26e83f349d942fae7cbf", "score": "0.60003585", "text": "public static int sumRow( int r, int[][] a )\n {\n int result = 0;\n for(int pos = 0; pos < a[r].length; pos++) {\n\t result += a[r][pos];\n }\n return result;\n }", "title": "" }, { "docid"...
367dc04eee4c71b3497277b457809e8e
update the view based on the ent data
[ { "docid": "ffd1e970dd235b03a14571036aa73682", "score": "0.70504266", "text": "private void updateView() \n\t{\n\t\tEnt.Grid grid = this.ent.getGrid();\n\t\tView.Grid gridView = this.view.getGrid();\n\t\t\n\t\tgridView.setGrid(grid);\n\t\tthis.view.getTurn().setTurn(this.ent.getTurn());\n\t\t\n\t\tthis....
[ { "docid": "1fc5301dc7a37b8f2d26acc604fcd8dd", "score": "0.7082278", "text": "private void updateView() {\n\n\t}", "title": "" }, { "docid": "605b71078758f7bed0194e52b9d61925", "score": "0.70533216", "text": "private void updateView() {\n\t\t// Total amount\n\t\tupdateAmountView();\n...
ea3c542aa9240a55fae1e60b3878a80c
BufferedReader in = new BufferedReader(new FileReader("pgukanji/src/src_kyoiku.html")); BufferedReader in = new BufferedReader(new FileReader("pgukanji/src/src_joyo.html"));
[ { "docid": "20f4fb909d0b9c5a62aab6b4ca09abc1", "score": "0.54734725", "text": "public static void main(String[] args) throws IOException {\n BufferedReader in = new BufferedReader(new FileReader(\"pgu-kanji/src/joyo2.txt\"));\n\n StringBuilder sb = new StringBuilder();\n\n// sb.app...
[ { "docid": "9cff08bbf5ee0ab4f3d7e1f1a72cc85f", "score": "0.5867792", "text": "private void getHtmlPage() {\n\t\ttry (BufferedReader reader = Files.newBufferedReader(Paths.get(this.path), Charset.forName(\"UTF-8\"))) {\n\t\t\tString line = reader.readLine();\n\t\t\twhile(line != null) {\n\t\t\t\tif(line....
b8019fb9a1446126bf2fe55e66b5c7d2
This method breaks down a line input from a tsv file, parses them, validates them and sets the values as java system properties
[ { "docid": "7fa291c854fecfc67bc5b57dcf89fa15", "score": "0.5468756", "text": "public boolean getFields(String record, String num_fields){\n int number_of_fields = 0;\n try{\n number_of_fields = Integer.parseInt(num_fields);\n }catch (Exception e) {\n return fal...
[ { "docid": "5e34f632b4eac8c93cf547fa8c14a320", "score": "0.6012575", "text": "protected void processLine(String line){\r\n //use a second Scanner to parse the content of each line \r\n try(Scanner scanner = new Scanner(line)){\r\n scanner.useDelimiter(\"=\");\r\n if (scanner.hasNext()){\...
d886f701d14b151fde2fe6dc0b6c4dd6
Sets the value of the 'error' field.
[ { "docid": "6a21f9295f84be46464b60c5664a76dd", "score": "0.7899173", "text": "public void setError(java.lang.CharSequence value) {\n this.error = value;\n }", "title": "" } ]
[ { "docid": "5092d4d7939a8c99ea023a69fa3f7b96", "score": "0.8361089", "text": "public void setError(String error) {\r\n this.error = error;\r\n }", "title": "" }, { "docid": "0e0049c3ce369742dab808ea35cfcea8", "score": "0.83414686", "text": "void setError(String error) {\n ...
1c958de7e9aa43f618981f06f899bb22
Image last = cCP.GetImage(IDX_LAST);
[ { "docid": "2abc360f3d11764240867ad6ac60dba1", "score": "0.0", "text": "public static final boolean QuitConfirm_Paint(Graphics g)\r\n\t{\n\t\tif (ConfirmInfo ==null)\r\n\t\t{\r\n//#if SCREENWIDTH>=176\t\t\t\r\n\t\t\tConfirmInfo = new String[] {\"确定退出?\",\"确定\", \"返回\"};\r\n//#else\r\n\t\t\tConfirmInfo =...
[ { "docid": "dcca3357fcaedf65b83c9411aedd41d8", "score": "0.624229", "text": "Image findPrevImage(long imageId);", "title": "" }, { "docid": "c4f3494b9fb6a38a296feedb5e465c56", "score": "0.60933006", "text": "CM getLast();", "title": "" }, { "docid": "bc01439ec672e744191ec...
63af1bcdadc10eb806c85829ea591320
Returns a new object of class 'Program'.
[ { "docid": "7b36a08b8ae56561dab3048adedb1097", "score": "0.83528155", "text": "Program createProgram();", "title": "" } ]
[ { "docid": "74238aca28caf272e2b6e1e41485707c", "score": "0.76148796", "text": "program createprogram();", "title": "" }, { "docid": "6206805456ad0986aabcb52902c193ca", "score": "0.7244727", "text": "public ast.Program parseProgram() {\n\t\tvar program = new ast.Program();\n\t\tprogra...
346a6f8b59b0a114959219f6e55ae693
Given : Set integer arrays
[ { "docid": "bbfacb60f0d11c65d14af2eb21943ad5", "score": "0.0", "text": "@Test\n public void testShouldReturnSmallestInteger() {\n int[] given = {34, 15, 88, 2};\n //When : Call findSmallestInteger method\n int actual = SmallestIntegerFinder.findSmallestInt(given);\n //Then : Should return 2...
[ { "docid": "e744bcb8c376af5a692de806b269e800", "score": "0.7594855", "text": "public void set(int[] t);", "title": "" }, { "docid": "20c7938f00cafc3cfcee06a62e48e4f9", "score": "0.73575854", "text": "IntSet(int[] array) {\n\t\tset = new ArrayList<Integer>();\n\t\tsampleSpace = new Ar...
262a642d90d9a8c7cc051af6e329ae4a
Processes a pattern of the type where the hyponym appears first, then the keyword, then the hypernym.
[ { "docid": "da2893c44e535ef5e70e97dfcebad669", "score": "0.5794245", "text": "private static int processHypoHyperPattern(List<TextFragment> fragments, int patternMarkerIndex,\n List<Hypernym> hypernyms) {\n int processedFragments = fragments.size();\n...
[ { "docid": "831d6ce4980714b24a396ddce673a200", "score": "0.5921767", "text": "private static int processHyperHypoPattern(List<TextFragment> fragments, int patternMarkerIndex,\n List<Hypernym> hypernyms) {\n int processedFragments = fragments.size();\n...
c8eba285d85815a244caa5b098a16144
Getter for the meeple list.
[ { "docid": "3ebd5120724bdd19c623d9decc0b85fb", "score": "0.8641448", "text": "public List<Meeple> getMeepleList() {\n return meepleList;\n }", "title": "" } ]
[ { "docid": "3d7b03d3f0b6c11ddd1e54ee47c63bdb", "score": "0.70277673", "text": "public List<Measurement> getList()\n\t{\n\t\treturn measList;\n\t}", "title": "" }, { "docid": "55f16416fa452c2843d8266b3032fabb", "score": "0.6794315", "text": "public List<Muestrasxlote> getListaMuestras...
d4684c364c01077d1a979f13911d0e3f
Builds an extractor based on the points in the file named by filename.
[ { "docid": "f16eaf34c8896988fed22b5cc9be42d1", "score": "0.6982008", "text": "public Extractor(String filename) throws IOException {\n\t\t\n\t\t// TODO\n\t\t//BufferedReader br = new BufferedReader(new FileReader(filename));\n\t\ttry {\n\t\t\tFileReader fr = new FileReader(filename); \n\t\t\tBufferedRea...
[ { "docid": "01cd1d91ae71d554aee13b73b9da19b5", "score": "0.55941653", "text": "public Pokedex buildPokedex (String filename) {\n\t\tPokedex list = new Pokedex();\n\n\n\t\t//open file\n\t\tFile inputFile = new File(filename);\n\n\n\n\n\t\ttry (Scanner input = new Scanner(inputFile)) {\n\n\n\t\t\t//read i...
837f6c64f5cad48d078394bca30f0d93
Static constructor for an OpMode style class with just the degree and opmode
[ { "docid": "b14f20dab4b2396050c2b08a7d760539", "score": "0.53914624", "text": "public static BasicGyroTurn createTurn(StateMachineOpMode opModeArg, double targetDegreeArg) {\n return createTurn(opModeArg, targetDegreeArg, null);\n }", "title": "" } ]
[ { "docid": "ab94b350cb9cd4c750cda11da6ff66ed", "score": "0.65930027", "text": "public Mode() {\n this.sourceBase = 10;\n this.targetBase = 2;\n this.blockSize = 8;\n }", "title": "" }, { "docid": "c11d21bf67a2b8bd736297d757f9849e", "score": "0.6290675", "text"...
a1b08da2c042f79d8d5eeb0800f0c949
optional string gwa_name = 1;
[ { "docid": "635233e4846ef63164d3fe7859ab25e5", "score": "0.5983151", "text": "public com.google.protobuf.ByteString\n getGwaNameBytes() {\n java.lang.Object ref = gwaName_;\n if (ref instanceof java.lang.String) {\n com.google.protobuf.ByteString b = \n com.google.prot...
[ { "docid": "ee00b47d70e9209fee4567c6dca29af0", "score": "0.76013774", "text": "java.lang.String getGwaName();", "title": "" }, { "docid": "ee00b47d70e9209fee4567c6dca29af0", "score": "0.76013774", "text": "java.lang.String getGwaName();", "title": "" }, { "docid": "ee00b4...
2d060b969a8116a172eb2e60205efa08
Returns the latest/newest statistics for an item.
[ { "docid": "0d023a57db288faace48310190e6019a", "score": "0.8111015", "text": "ListingStatistics latestStatistics(int itemId) throws IOException;", "title": "" } ]
[ { "docid": "ad085d09d3c27fe131ae7c8b1f4064d6", "score": "0.7006739", "text": "protected abstract Map<Item, Integer> topStats();", "title": "" }, { "docid": "11cee6296d56bd9d53b079d66549f873", "score": "0.60189366", "text": "private ValheimItem.ItemStats parseItemStats(Document itemPa...
3ce27774a23f29fae870e1dbaee6d4d8
$ANTLR end "rule__XCasePart__Group_2__0" $ANTLR start "rule__XCasePart__Group_2__0__Impl" InternalModel.g:11786:1: rule__XCasePart__Group_2__0__Impl : ( 'case' ) ;
[ { "docid": "bd885bfbf306a7860369a70859cf1c97", "score": "0.8015077", "text": "public final void rule__XCasePart__Group_2__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalModel.g:11790:1: ( ( 'case' ) )\r...
[ { "docid": "ccfd977eca4603a3b43a0bff3ecd1621", "score": "0.80638695", "text": "public final void rule__XCasePart__Group_2__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMyDsl.g:9221:1: ( ( 'case' ) )\n ...
1bf89447b80ec86ff401a389c9f91f7d
/ access modifiers changed from: protected
[ { "docid": "7e0a70d3a061fe40ef09b8d97eb443a2", "score": "0.0", "text": "public KeyPair loadKeystoreKeyPair(String privateKeyAlias) throws ProviderException {\n try {\n return HwUniversalKeyStoreProvider.loadHwKeyStoreKeyPairFromKeystore(this.mKeyStore, privateKeyAlias, this.mEntryUid);...
[ { "docid": "ec76ff8d70ced9d8135ad33b23353b4d", "score": "0.6922981", "text": "@Override\r\n\t\t\tpublic void adelante() {\n\t\t\t\t\r\n\t\t\t}", "title": "" }, { "docid": "7c4f2f94b290de5507eb56a649c4fab9", "score": "0.6922649", "text": "@Override\n\tpublic void grabar() {\n\t\t\n\t}...
7dd26415f2f18a4f3bb84d971b05be01
Simpler implementation but gives me a TLE
[ { "docid": "3cfd26b289e8a8815d702fa5b05ee42e", "score": "0.0", "text": "public int numMatchingSubseq2(String S, String[] words) {\n Map<Character, Deque<String>> map = new HashMap<>();\n\n int count = 0;\n\n for (char c : S.toCharArray()) {\n for(int i=0; i < words.length...
[ { "docid": "d059da57f2b19ce2ad87902098dfcb78", "score": "0.5868506", "text": "static void direct(double[][] array) {\n double u_r,u_i, w_r,w_i, t_r,t_i; int ln, nv2, k, l, le, le1, j, ip, i, n;\n \n n = array.length;\n ln = (int)( Math.log( (double)n )/Math.log(2) + 0.5 );\n ...
4c552874e8be54727d5d5f332f2c5afc
Return the lower case HTTP_ACCEPT
[ { "docid": "a3bb8b462643f490168459e164b94726", "score": "0.6920566", "text": "public String getHttpAccept() {\r\n return httpAccept;\r\n }", "title": "" } ]
[ { "docid": "7edd54854fb1ca9a9e32e9da8115d8a6", "score": "0.684467", "text": "public String getAccept();", "title": "" }, { "docid": "a6251e6d9bb916648fcb1731d15280f2", "score": "0.6839553", "text": "String getAccept();", "title": "" }, { "docid": "8cf13c1c6a494181c8882d7c...
003b8d71a35d8926df80286f63e31ac5
Let's try to figure out the reason, to give better error
[ { "docid": "331ed7e27a00cb4a3a93bcf2dee32425", "score": "0.0", "text": "@Override\n\t\t\tprotected JsonDeserializer<Object> _handleUnknownValueDeserializer(JavaType type)\n throws JsonMappingException\n {\n Class<?> rawClass = type.getRawClass();\n ...
[ { "docid": "7ffbcc7c5a5fd2efca7e77b940aba5fd", "score": "0.6904395", "text": "public void bugWorkaround() {\n }", "title": "" }, { "docid": "a89dc2bcd3947095590f49d7b152a74b", "score": "0.6456999", "text": "@Override\n\t\t\t\tpublic void inconsistencyTest() throws Exception {\n\t\...
5da53742be17e4f1ac8368badf08a68a
This function return a list.
[ { "docid": "45f7292618bfc85fd223e881f12a2f27", "score": "0.0", "text": "public static List<Sets> fromReader(java.io.Reader reader) {\r\n int count = 0;\r\n List<Sets> setList = new ArrayList<Sets>();\r\n List<String> descriptionList = new ArrayList<String>();\r\n List<Propert...
[ { "docid": "4f337e3b8907933bda83d7894d0e2715", "score": "0.80190605", "text": "public List getList();", "title": "" }, { "docid": "fe68fadfa9f6f78b5edf783c9568a446", "score": "0.77427214", "text": "public List getList() {\n return Arrays.asList(toJavaArray()); \n }", ...
c5097583c4e5a649c29ee3bc17cdebdd
Constructor from configuration file, directory with input XML files, classes for the LAP and EDA Use the default fragment (keywordbased fixed length) and modifier (adv & adj) annotators
[ { "docid": "9f37b094d9ba630050647ecd70bd94db", "score": "0.6881618", "text": "public UseCaseOneFromXMLs(String configFileName, String dataDir, \n\t\t\tString outputFolder, Class<?> lapClass, Class<?> edaClass) throws ConfigurationException, NoSuchMethodException, SecurityException, InstantiationExceptio...
[ { "docid": "6e443e1f2e6dd5836b506639ce2257ca", "score": "0.6951157", "text": "public UseCaseOneFromXMLs(String configFileName, String[] files, \n\t\t\tString outputFolder, Class<?> lapClass, Class<?> edaClass) throws ConfigurationException, NoSuchMethodException, SecurityException, InstantiationExceptio...
a14f2f710342a7e5ef38c10829454e0c
Gets on media ready.
[ { "docid": "8075a978a47be3fdee58ceccbd8dda76", "score": "0.7755958", "text": "public TvPageInterfaces.OnMediaReady getOnMediaReady() {\r\n return onMediaReady;\r\n }", "title": "" } ]
[ { "docid": "304acd2cfd4a03d6f6a25b32255ad43c", "score": "0.7225733", "text": "public boolean isMediaReady() {\r\n return mediaReady || getMediaWrapper().canPlay();\r\n }", "title": "" }, { "docid": "1eb50b3a3bfcb2ada7125b2c73086155", "score": "0.69675535", "text": "public T...
67c3d3a4b47c8e3f1b9046c2bf3c4a77
Waits until the given element is either hidden or deleted.
[ { "docid": "a0fd44e04b3b30ab09688fa516aa2ef2", "score": "0.596583", "text": "public void waitUntilElementDisappears(final By locator)\n {\n waitUntilCondition(new ExpectedCondition<Boolean>()\n {\n @Override\n public Boolean apply(WebDriver driver)\n {\n...
[ { "docid": "0775455c6c6dcd8165b9e8ef716ed7f0", "score": "0.69169265", "text": "public static void waitForElementToBeVisible( WebElement element){\n\t wait.until(ExpectedConditions.visibilityOf(element));\n\t}", "title": "" }, { "docid": "7aff4e058069798fddb0fc2edf232361", "score": "0...