query_id
stringlengths
32
32
query
stringlengths
7
129k
positive_passages
listlengths
1
1
negative_passages
listlengths
88
101
3711a4fe2f3b8607777e98632eb602c3
Changes isValid of the specified ServiceStationBrand. If the isValid is true the method changes it to false and vice versa.
[ { "docid": "a33b4dacde7b7d9de0dae322d5ab24d4", "score": "0.58449334", "text": "@Transactional\n\tpublic ServiceStationBrandDTO changeIsValid(Integer id) {\n\t\tServiceStationBrand updatedServiceStationBrand = Optional.ofNullable(serviceStationBrandDAO.findById(id))\n\t\t\t\t\t\t\t\t ...
[ { "docid": "36020aba1571e9e67598c349e8b69b3f", "score": "0.5808094", "text": "public boolean updateBrand(Brand brand) {\n\t\treturn this.brandMapper.updateBrand(brand);\n\t}", "title": "" }, { "docid": "cadee728c0c8882059f8104bc2359c85", "score": "0.5574493", "text": "@Transactional\...
4c4e39b902a79aa829a53f75a510bf33
Access functions Return the first coordinate from the vector
[ { "docid": "343ac988206b896e461dfb1a29b87cb0", "score": "0.5789947", "text": "public float getX() {\n return this.elements[0];\n }", "title": "" } ]
[ { "docid": "d45a7aa5a43a42eeddbc177689c5231f", "score": "0.75053865", "text": "public double getX() { return vec.get(0); }", "title": "" }, { "docid": "df553056c64b5a89eba5b3feb427c093", "score": "0.69710773", "text": "Object getFirst(){\n\t\treturn vector.elementAt(0);\n\t}", "t...
6f0961934e62a06e244d36a44ef4eeb9
Getter for Properties Object
[ { "docid": "16a29f8807c1ead3bc82d5a758cfaa62", "score": "0.0", "text": "public Properties getPoolPropertiesConfig() {\n if (null == poolPropertiesConfig)\n return OBPropertiesProvider.getInstance().getOpenbravoProperties();\n else\n return poolPropertiesConfig;\n }", "title": "" }...
[ { "docid": "e948d50e1b01e9b5b6747e1aa852117f", "score": "0.7785061", "text": "Property getProperty();", "title": "" }, { "docid": "f558edf7c2a2f71d2e840d5d1ac91c16", "score": "0.7554355", "text": "Properties getProperties();", "title": "" }, { "docid": "911e0b4827d095cd24...
d62f27fddbaa9bba55787f84a59fc18f
Returns the speed in knots.
[ { "docid": "c685f08979d68051360e7ee5721c6136", "score": "0.89253414", "text": "public double toKnots() {\n return unit.toKnots(speed);\n }", "title": "" } ]
[ { "docid": "47b74e4dbb284331ff524abe9e8215be", "score": "0.7826082", "text": "public static double getSpeedKnots(MWVSentence s) {\n\t\tif (s != null) {\n\t\t\tdouble speed;\n\t\t\ttry {\n\t\t\t\tswitch (s.getSpeedUnit()) {\n\t\t\t\t\tcase METER:\n\t\t\t\t\t\tspeed = Utils.round(s.getSpeed() / 0.5144444,...
167e6e91c5b7f732342cf82c7d605c03
Sets the Resource body for the request.
[ { "docid": "40ad670f43bd82fc2ac7996e2e64f3ac", "score": "0.7923332", "text": "RequestBuilder setBody(Resource resource);", "title": "" } ]
[ { "docid": "cdb6932d3b107f49982dba3827b94820", "score": "0.7001158", "text": "@Override\n\tpublic void setBody(Object body) {\n\t\tsuper.setBody(body);\n\t}", "title": "" }, { "docid": "a84e40d911f955e034fa5f38b37c6314", "score": "0.69193184", "text": "public void setBody(Object body...
304d0a58706c889265d3cd15681b8741
int64 modified_datetime_ms = 4;
[ { "docid": "8df613ed9858b862023b5d4ff9846b2d", "score": "0.0", "text": "public Builder clearModifiedDatetimeMs() {\n \n modifiedDatetimeMs_ = 0L;\n onChanged();\n return this;\n }", "title": "" } ]
[ { "docid": "bad751d0b44b1fd8659f92e4ee4af277", "score": "0.7971344", "text": "long getModifiedDatetimeMs();", "title": "" }, { "docid": "bad751d0b44b1fd8659f92e4ee4af277", "score": "0.7971344", "text": "long getModifiedDatetimeMs();", "title": "" }, { "docid": "bad751d0b4...
1721d5aaddd4c7a47336efc028bea494
Reads the whole specified reader into a string an returns it.
[ { "docid": "e3ccb4cc459b11f41690a06840f4ade4", "score": "0.728912", "text": "public static String readReader (Reader aReader) throws IOException\n\t{\n\t\tStringWriter sw = new StringWriter ();\n\n\t\tchar[] cbuf = new char[1024];\n\t\tint n;\n\t\twhile ((n = aReader.read (cbuf)) >= 0)\n\t\t\tsw.write (...
[ { "docid": "0ff2c1b3d7aa3b7beda183ff0ce564d9", "score": "0.7395251", "text": "public static String readFully(final Reader reader)\n {\n if (reader == null)\n {\n LOGGER.log(Level.WARNING, \"Cannot read null reader\");\n return \"\";\n }\n\n try\n {\n final StringWriter wri...
242a42ba33e40226a36505c6285585f9
Exclusions/Exceptions of Knight's moves
[ { "docid": "50f9de1801c7402a8c62886acf1213c3", "score": "0.0", "text": "private static boolean isFirstColumnExclusion(final int currentPosition, final int candidateOffset) {\n return BoardUtils.FIRST_COLUMN[currentPosition] && ((candidateOffset == -17) ||\n (candidateOffset == -10)...
[ { "docid": "b6723815c64c0435872b8a32827a80e0", "score": "0.65423596", "text": "private static boolean invalidKnightMove(ChessPiece[][] board, int x1, int y1, int x2, int y2) {\n if (!(board[x1][y1] instanceof Knight)) {\n return true;\n }\n KnightMove currMove = KnightMov...
e1f6bd38439a10239557d8b16940472d
Constructor for objects of class ParseResultSet
[ { "docid": "f56151fb42cf4edb9e1d483f8479e8ff", "score": "0.63884413", "text": "public ParseResultSet(ResultSet rs)\n {\n // Set the ResultSet object\n resultSet = rs;\n \n try\n {\n rsMetaData = resultSet.getMetaData();\n parseHeading();\n ...
[ { "docid": "43e34a2bc32f5ee0e3e4d9621ac07684", "score": "0.66620266", "text": "public SearchResult() \r\n\t{\r\n\t\trecords = new LinkedList<Record>();\r\n\t}", "title": "" }, { "docid": "3e2a4de7017416591241c56f6f61a479", "score": "0.6646105", "text": "public CassandraResultSet() {\...
616a8ee5a1db15e8d6eaa76454e57efb
Gets a builder to execute the method
[ { "docid": "a873b38122d9bac1f188e2651fd8e105", "score": "0.0", "text": "@Nonnull\n public WorkbookFunctionsWeekNumRequestBuilder weekNum(@Nonnull final WorkbookFunctionsWeekNumParameterSet parameters) {\n return new WorkbookFunctionsWeekNumRequestBuilder(getRequestUrlWithAdditionalSegment(\"mi...
[ { "docid": "f0bf7b38aa46a945d01f100ccd6322d4", "score": "0.6829094", "text": "Builder builder();", "title": "" }, { "docid": "b59668a96e3ff809298736deaf2b122d", "score": "0.67546344", "text": "@Override\n\tpublic Builder getBuilder() {\n\t\treturn builder;\n\t}", "title": "" },...
f12a0fcaa54c5e103e0e177b4b7beac0
Set the value related to the column: pic_path
[ { "docid": "d25219ed7def25ab11b74ab01451231a", "score": "0.63701224", "text": "public void setPicPath (java.lang.String picPath) {\n\t\tthis.picPath = picPath;\n\t}", "title": "" } ]
[ { "docid": "02a995ccffa44871005da57883446af1", "score": "0.6909422", "text": "public void setImage(String path){\n\tpic=Util.getImage(path);\n}", "title": "" }, { "docid": "4a3888de4ed045e63c62d0ce8d060d17", "score": "0.6513044", "text": "public void setPicpath(String picpath) {\n ...
35a923bd1cab17be9454325f78de1158
Output Type string reportType = 15;
[ { "docid": "babbedd09db37c9150f3262eae1206d3", "score": "0.7018479", "text": "public java.lang.String getReportType() {\n java.lang.Object ref = reportType_;\n if (!(ref instanceof java.lang.String)) {\n com.google.protobuf.ByteString bs =\n (com.google.protobuf.ByteString) r...
[ { "docid": "07fa9224dcf1355837e6c68fd46e84f9", "score": "0.7426038", "text": "public String getReportType() \n {\n return reportType;\n }", "title": "" }, { "docid": "710d14b6d26a86543cf4975e13153d58", "score": "0.71367824", "text": "String getReportType() {\n return ...
45995b65933057a1c796152a9e151c43
repeated .msg_file_info files_info = 1;
[ { "docid": "3ff6336a04373cb03661a54a06e02b54", "score": "0.5217813", "text": "public MsgDefine.msg_file_info.Builder getFilesInfoBuilder(\n int index) {\n return getFilesInfoFieldBuilder().getBuilder(index);\n }", "title": "" } ]
[ { "docid": "573f43aaa92c5035bc48933747ec3c01", "score": "0.6946814", "text": "MsgDefine.msg_file_info getFilesInfo(int index);", "title": "" }, { "docid": "3d9701a3f89934daf45d3548d2962a3a", "score": "0.6662794", "text": "java.util.List<? extends MsgDefine.msg_file_infoOrBuilder> \n ...
78cd385294235cd4c717211e100b7541
Returns if LiveEntity is flying
[ { "docid": "32ee340cb4ddc93946d7bfc4a436a48e", "score": "0.7649809", "text": "public boolean isflying() {\r\n\t\treturn flying;\r\n\t}", "title": "" } ]
[ { "docid": "92def690a2814df09e6ed0c9362fae82", "score": "0.78550446", "text": "public boolean isFlying() {\n\t\treturn this.isFlying;\n\n\t}", "title": "" }, { "docid": "fc97792491f4693bd2613dd1b89db08e", "score": "0.7759394", "text": "public boolean isFlying()\r\n/* 245: */ {\r...
6ce5c016c7514af48d226033568ce9af
Created by jeremybrown on 20161022.
[ { "docid": "8ffcc29696a70afbfb9c5e3089c5d3a2", "score": "0.0", "text": "public interface ReservationRepository extends CrudRepository<Reservation, Long> {\n\n List<Reservation> findByUserUsername(@Param(\"username\") String username);\n\n List<Reservation> findByResourcesResourceId(@Param(\"resour...
[ { "docid": "21d672149bbdd06ba8646ddf7f7f41d1", "score": "0.5729851", "text": "@Override\n\tprotected void descansar() {\n\t\t\n\t}", "title": "" }, { "docid": "21d672149bbdd06ba8646ddf7f7f41d1", "score": "0.5729851", "text": "@Override\n\tprotected void descansar() {\n\t\t\n\t}", ...
04ce8c79a18172217801d696546da01a
This method was generated by MyBatis Generator. This method returns the value of the database column exam_questions_narrow.title_img_url
[ { "docid": "92aa9ec86b5de961a180a2815097470e", "score": "0.63969874", "text": "public String getTitleImgUrl() {\n return titleImgUrl;\n }", "title": "" } ]
[ { "docid": "bca4dec9a0a1c8efa2fdda4fe809c124", "score": "0.61982507", "text": "public String getTitleimage() {\r\n\t\treturn titleimage;\r\n\t}", "title": "" }, { "docid": "3aacf4e3aef518936d3b45e647d1f4f9", "score": "0.5961731", "text": "String getPrimaryImageUrl();", "title": "...
92fbbfecdffeb4c36702fce2ce00a779
Created by ferjuarez on 11/06/15.
[ { "docid": "f9c7e6697bf7a2ce729a41ad4d3cd79f", "score": "0.0", "text": "public interface OnAuthFinishListener {\n public abstract void onAuthFinished(Authenticated authenticated, Boolean state);\n}", "title": "" } ]
[ { "docid": "33d41636b65afa8267c9085dae3d1a2d", "score": "0.648582", "text": "private void apparence() {\r\n\r\n\t}", "title": "" }, { "docid": "76a80470fd21f5a9092c258ed3a8a632", "score": "0.644507", "text": "private static void 로또번호리스트() {\n\t\t\r\n\t}", "title": "" }, { ...
ac28f3da72336d86bc73b8d38f9d01ba
static method to create the object Precondition: If this object is an element, the current or next start element starts this object and any intervening reader events are ignorable If this object is not an element, it is a complex type and the reader is at the event just after the outer start element Postcondition: If t...
[ { "docid": "60708f60a1da105135f4eba86be22a3a", "score": "0.0", "text": "public static DeleteRecord parse(javax.xml.stream.XMLStreamReader reader) throws java.lang.Exception{\r\n DeleteRecord object =\r\n new DeleteRecord();\r\n\r\n int event;\r\n java.lang...
[ { "docid": "6175a9561bbb745f14c11f54a553df88", "score": "0.5977042", "text": "private Element createElement(TagSubObject elm) {\n\t\tString type = elm.getProperty(\"type\", \"element\"); //Find the type of element we are creating.\n\t\t\n\t\t/** We go ahead and get all the properties that are shared bet...
c4aac080fcd65a538f62b7b02d5a6a96
Initialize your data structure here.
[ { "docid": "0155d4b69bc4c615e5b2c095b309a928", "score": "0.0", "text": "public WordDictionary() {\n root = new TreeNode();\n }", "title": "" } ]
[ { "docid": "684e39f80e8d22e021e03c37d55fe13b", "score": "0.7998247", "text": "private void initData() {\n\n\t}", "title": "" }, { "docid": "74bee6dce01aafdb044924e66085f7c7", "score": "0.79953724", "text": "private void initData() {\n }", "title": "" }, { "docid": "f65...
0b17d3468d34383aa8b481aafe57e609
This method was generated by MyBatis Generator. This method corresponds to the database table gen_table_tree
[ { "docid": "18ba26a77c314fba7c6e80d2400afe91", "score": "0.0", "text": "int updateByExample(@Param(\"record\") GenTableTree record, @Param(\"example\") GenTableTreeExample example);", "title": "" } ]
[ { "docid": "357bc108dd73b4c94cd7e0f676485361", "score": "0.60943925", "text": "@SuppressWarnings(\"unchecked\")\n private TreeTable createTable(TreeMap<String, LoanStatusLineItem> orderedLineItems) {\n\n TreeTable treeTable = new TreeTable();\n\n treeTable.setSizeFull();\n treeTa...
7e3d5df51224bd4a0a4398ca5ed5d5f9
Check if the String is a number
[ { "docid": "430746abb7e19bfc5505bc7a1a040a2d", "score": "0.7714986", "text": "private static boolean isNumeric( String value ){ \n\t\ttry { \n\t\t\tDouble.parseDouble( value );\n\t\t} \n\t\tcatch( NumberFormatException nfe ) { \n\t\t\treturn false; \n\t\t} \n\t\treturn true; \n\t}", "title": ...
[ { "docid": "14db71cdd9448874db655ed54e486f18", "score": "0.81477535", "text": "public boolean isNum(String s) {\r\n\t\tif (s.isEmpty()) return false;\r\n\t\treturn (s.charAt(0) >= '0' && s.charAt(0) <= '9');\r\n\t}", "title": "" }, { "docid": "28fdc76fb46e869ebff648b9afa2a032", "score": ...
eaa8ca191ee5930699cefcc4861a458c
$ANTLR start "token" C:\\Documents and Settings\\nzakas\\My Documents\\Projects\\yui\\yuitest\\java\\src\\com\\yahoo\\platform\\yuitest\\coverage\\grammar\\ES3YUITest.g:557:1: token : ( reservedWord | Identifier | punctuator | numericLiteral | StringLiteral );
[ { "docid": "48922d65f5f40191a604300973f7de06", "score": "0.65135384", "text": "public final ES3YUITestParser.token_return token() throws RecognitionException {\n ES3YUITestParser.token_return retval = new ES3YUITestParser.token_return();\n retval.start = input.LT(1);\n\n try {\n ...
[ { "docid": "38d0e5e1806ac3aa386e9b108fe8fc98", "score": "0.5860893", "text": "public interface TerminalTokens {\n\n\t// special tokens not part of grammar - not autogenerated\n\tint TokenNameWHITESPACE = 1000,\n\t\tTokenNameCOMMENT_LINE = 1001,\n\t\tTokenNameCOMMENT_BLOCK = 1002,\n\t\tTokenNameCOMMENT_J...
3143652585c4fb589665ddd538fbeabb
Adds a placeholder to the right folder.
[ { "docid": "80e983b1b2799ed0c7c1842f7e5c4d70", "score": "0.679679", "text": "public void addPlaceholderToRightFolder(String viewId) {\n\t\trightFolder.addPlaceholder(viewId);\n\t}", "title": "" } ]
[ { "docid": "06b3eeef0ea33793af735554b36fa918", "score": "0.6558289", "text": "public void addPlaceholderToLeftFolder(String viewId) {\n\t\tleftFolder.addPlaceholder(viewId);\n\t}", "title": "" }, { "docid": "019a03596a1d6ea64718a38208233d03", "score": "0.63308316", "text": "public vo...
08349f6a945b8cc72df9bf960ff15a60
search based on parentId
[ { "docid": "42af4730e9b67acb514b174dad67827d", "score": "0.51496106", "text": "@Override\r\n\tpublic List<EUTreeNode> getCategoryList(long parentId) {\n\t\tTbContentCategoryExample example = new TbContentCategoryExample();\r\n\t\tCriteria criteria = example.createCriteria();\r\n\t\tcriteria.andParentIdE...
[ { "docid": "c292cb67448eaf207f71bfcb91b1f841", "score": "0.7079674", "text": "List<Crowd> queryByParentId(Integer parentId);", "title": "" }, { "docid": "497554edf8530d446278f42e6430d48e", "score": "0.6700185", "text": "R findByIdWithParent(Long id);", "title": "" }, { "d...
4331b7f58497e784af783df668ce50fd
/ renamed from: c
[ { "docid": "9e998c17129e3f03480885417a6eeaf1", "score": "0.0", "text": "public void mo1163c(int i, int i2) {\n this.f915L = i;\n this.f916M = i2;\n }", "title": "" } ]
[ { "docid": "1e50fdc0a079e9ccff8941a7c9d7b183", "score": "0.66320467", "text": "@Override\n\tpublic void c() {\n\t\t\n\t}", "title": "" }, { "docid": "1e50fdc0a079e9ccff8941a7c9d7b183", "score": "0.66320467", "text": "@Override\n\tpublic void c() {\n\t\t\n\t}", "title": "" }, ...
6f185e82916955316df8a47ffc37c08d
endmethod Sets adjustment to a Normal distribution, specifying its mean.
[ { "docid": "30f09e876fae6236c332717d338b36e3", "score": "0.769627", "text": "public void adjustNormalMean(double m){\r\n\t\t\r\n\t\ttypeDistribution=DistributionDefinitions.NORMAL;\r\n\t\ttypeTest=NORMAL_NO_VARIANCE;\r\n\t\t\r\n\t\tnormal=new NormalDistribution();\r\n\t\t\r\n\t\t//parameters are estimat...
[ { "docid": "5ea7f2c42ddd9b7de3c85759d864254f", "score": "0.8331614", "text": "public void adjustNormal(){\r\n\t\t\r\n\t\ttypeDistribution=DistributionDefinitions.NORMAL;\r\n\t\ttypeTest=NORMAL_NO_MEAN_VARIANCE;\r\n\t\t\r\n\t\tnormal=new NormalDistribution();\r\n\t\t\r\n\t\t//parameters are estimated\r\n...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "70a2703d78b9370da9daa70ce05340af", "score": "0.0", "text": "@Override\n\tpublic void enterSetType(SetTypeContext ctx) {\n\t\tsuper.enterSetType(ctx);\n\t System.out.println(\"enterSetType\" + \" :--> \" + ctx.getText() + newline);\n\t}", "title": "" } ]
[ { "docid": "c4efc9f9911178a27ec9261384d5f141", "score": "0.66616714", "text": "public void mo12644zk() {\n }", "title": "" }, { "docid": "81758c2988d9979c7d4b3fd5b3cce0e5", "score": "0.6566483", "text": "@Override\r\n\tpublic void pular() {\n\r\n\t}", "title": "" }, { ...
dc69791dccae833d4ffcd98e9856bf4c
This method was generated by MyBatis Generator. This method sets the value of the database column USR.TODO_CODE
[ { "docid": "93748af455035bc63a0076ee0297b046", "score": "0.6919039", "text": "public void setTODO_CODE(BigDecimal TODO_CODE) {\r\n this.TODO_CODE = TODO_CODE;\r\n }", "title": "" } ]
[ { "docid": "f7f02d2776b74ec9e6e2e6e3eabf8275", "score": "0.62854385", "text": "public BigDecimal getTODO_CODE() {\r\n return TODO_CODE;\r\n }", "title": "" }, { "docid": "ec880ce6ede20d1c54c1a0552ce7075a", "score": "0.6043364", "text": "public void setTODO(String newvalue) ...
4febcaa3d5cceed4e7c4d740bc2fce6d
optional string owner = 2;
[ { "docid": "497f17de472abc74138b9477a8269324", "score": "0.0", "text": "public com.google.protobuf.ByteString\n getOwnerBytes() {\n java.lang.Object ref = owner_;\n if (ref instanceof java.lang.String) {\n com.google.protobuf.ByteString b = \n com.google.protobuf.ByteS...
[ { "docid": "2bfbce36c744cb69bb79391d508dcca8", "score": "0.74869215", "text": "String getOwner();", "title": "" }, { "docid": "f91f9f057b384431418d1579ac98429c", "score": "0.73817587", "text": "java.lang.String getOwner();", "title": "" }, { "docid": "f91f9f057b384431418d...
e8487662a27be21507f122dc1774a4c0
$ANTLR end "T__92" $ANTLR start "T__93"
[ { "docid": "bdde953d3165e530bdf22ea403a66319", "score": "0.46081316", "text": "public final void mT__93() throws RecognitionException {\n try {\n int _type = T__93;\n int _channel = DEFAULT_TOKEN_CHANNEL;\n // ../org.xtext.example.json/src-gen/org/xtext/example/my...
[ { "docid": "54b94342a465fd6adb08ba865c155a62", "score": "0.5782372", "text": "public final void mT__93() throws RecognitionException {\n\t\ttry {\n\t\t\tint _type = T__93;\n\t\t\tint _channel = DEFAULT_TOKEN_CHANNEL;\n\t\t\t// C:\\\\Users\\\\Mayank Pidiha\\\\Documents\\\\MS CS SEM 3\\\\Software Maintena...
6c980a0c31903c78e8ad79594d2c5e77
Hidden constructor. Required by JPA.
[ { "docid": "f9fd2022af42c3f3522935ef81f28efb", "score": "0.0", "text": "@SuppressWarnings({\"unused\"})\n protected GroupsToUsers() {\n }", "title": "" } ]
[ { "docid": "788abaaa74a99d5c867ae931c106abe5", "score": "0.72015685", "text": "protected Entity() {\r\n \r\n }", "title": "" }, { "docid": "5cc2373fb810a57f0164681fae03b25e", "score": "0.7064571", "text": "public NazgulEntity() {\n }", "title": "" }, { "docid": "46...
ae06f691b7d5aca966cab76f24324203
User cancelled the dialog
[ { "docid": "18f393177b8f18f18b18ec1876dba026", "score": "0.0", "text": "public void onClick(DialogInterface dialog, int id) {\n }", "title": "" } ]
[ { "docid": "f23f505315391724419f00b51d9be508", "score": "0.8205532", "text": "private void cancel() {\n\t\t// The \"stepname\" variable will be the return value for the open() method. \n\t\t// Setting to null to indicate that dialog was cancelled.\n\t\tstepname = null;\n\t\t// Restoring original \"chang...
1e70bea124654fe17a4c701d6179d329
This method was generated by the VisualAge for Java Access Bean SmartGuide. Warning: Modifications will be lost when this part is regenerated.
[ { "docid": "c275085afccbb88341e7132dece5e873", "score": "0.0", "text": "public void privateSetActKey(com.hps.july.persistence.LeaseDocumentKey arg0) throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException {\n\n instantiateEJB();\n ejbRef().privateSetActKey(...
[ { "docid": "63a51b9825ac81396e1d7ad0b9f3ed82", "score": "0.6234652", "text": "@Override\n\tpublic void 군무() {\n\t\t\n\t}", "title": "" }, { "docid": "15ae679aae74424c73fde647cf4332f6", "score": "0.6185829", "text": "@Override\r\n\t\t\tpublic void hissetmek() {\n\r\n\t\t\t}", "tit...
eb0b8c39570d18ec5a32767c817472b7
remove a ScheduleBean according to ID value
[ { "docid": "02da00a62fd35a2636676c6001a3b47f", "score": "0.70162845", "text": "public void removeSchedule(ScheduleBean ScheduleBean) {\n db.delete(ScheduleSQLiteHelper.TABLE_NAME, ScheduleSQLiteHelper.ID + \"=\" + ScheduleBean.getId(), null);\n }", "title": "" } ]
[ { "docid": "5d3a37d8038795f6e782638d7787131d", "score": "0.6738584", "text": "void deleteSchedule(Schedule target);", "title": "" }, { "docid": "fa1bc7088486335806059371e60823a9", "score": "0.6661135", "text": "public void delete(Schedule s) throws BusinessException, SystemException{...
ba4630a8d130e96f1a95c06a356af7a2
Returns the value of the indexed component in the specified array object, as a double.
[ { "docid": "f917a0e09cd65cef27fffaac9bd73578", "score": "0.74252814", "text": "public static double getDouble(Object array, int index)\n throws IllegalArgumentException, ArrayIndexOutOfBoundsException\n {\n return 0.0d;\n }", "title": "" } ]
[ { "docid": "6218bc91a553acc2cb92314041075d43", "score": "0.721822", "text": "public double getValue(int index)\r\n\t{\r\n\t\treturn values[index];\r\n\t}", "title": "" }, { "docid": "5530700ebb2f2dcd89fae6eb09034f16", "score": "0.6872278", "text": "public double getDoubleValue(int at...
440e4fdee6daf85ceba0928fed776312
This method was generated by MyBatis Generator. This method returns the value of the database column MOBILE.HANWHA2CHASC.SO4_2_1_3
[ { "docid": "d4dcd6561e3ba4d8736925461e605836", "score": "0.5900196", "text": "public String getSo4_2_1_3() {\r\n return so4_2_1_3;\r\n }", "title": "" } ]
[ { "docid": "cb14ce89d9e294a445bc791f13d42dcb", "score": "0.60755306", "text": "public String getSo4_2_1() {\r\n return so4_2_1;\r\n }", "title": "" }, { "docid": "8141c4fc94be52a80a3335ba1ebfb0f5", "score": "0.6037725", "text": "public String getSo4_1() {\r\n return ...
4bb4e8d366ff095ce56f627e4b7a1c51
METHODES CONSTRUCTEUR D'ARITE NULLE.
[ { "docid": "eb531e8334ab9b0ac985e2ce61bb0a7a", "score": "0.0", "text": "private SocketClient() {\r\n\t\tsuper();\r\n\t}", "title": "" } ]
[ { "docid": "26f148f71d50b364e75bf9cda848ca7a", "score": "0.5764646", "text": "@Test\n\tpublic void test_initialisationDesMonstres() {\n\n\t\t// Preparation des donnees\n\t\tZeldiabloJeu jeu = new ZeldiabloJeu();\n\t\tboolean unSurMur=false;\n\t\tboolean unSurJoueur=false;\n\n\t\tArrayList<Entite> entite...
312bdf33a86b19a59359520c700903a6
attach to current activity;
[ { "docid": "e45dcf0e56b3fa1abd6247474334bad7", "score": "0.0", "text": "private void setUpMenu() {\n resideMenu = new ResideMenu(this);\r\n resideMenu.setBackground(R.drawable.main_bg);\r\n resideMenu.attachToActivity(this);\r\n resideMenu.setMenuListener(menuListener);\r\n ...
[ { "docid": "2fd4fb8970edd31e665981a0731083eb", "score": "0.77969354", "text": "@Override\n public void onAttach(Activity activity)\n {\n super.onAttach(activity);\n this.currentActivity = activity; // Sets the currentActivity to attached activity object.\n }", "title": "" },...
4d340ad36456466679e522c1a7f66105
Returns all the v legal orgs where groupId = &63; and language = &63;.
[ { "docid": "741a81fce0364cb6842d3a751f57a38b", "score": "0.7212567", "text": "public java.util.List<VLegalOrg> findByG_L(long groupId,\n\t\tjava.lang.String language);", "title": "" } ]
[ { "docid": "c38d0dbe4b5c296e5526fbd55466dc93", "score": "0.66510516", "text": "public java.util.List<VLegalOrg> findByG_L_P(long groupId,\n\t\tjava.lang.String language, java.lang.String parentId);", "title": "" }, { "docid": "ba52100b3c07d783a1c398300dbc7c70", "score": "0.6047902", ...
09a20cb364de07034be3f9d6a4ff3ba9
Check if object has a location to go to or has finished it's journey
[ { "docid": "3740b79b983edc978dea577dc3dd5dc1", "score": "0.6518771", "text": "public abstract boolean hasNewLocation();", "title": "" } ]
[ { "docid": "4e658cefe81dea42e951aa5100d764bd", "score": "0.69386435", "text": "boolean hasLocation();", "title": "" }, { "docid": "4e658cefe81dea42e951aa5100d764bd", "score": "0.69386435", "text": "boolean hasLocation();", "title": "" }, { "docid": "4e658cefe81dea42e951aa...
74f86e6d3e1fe84fd3632fa71311238c
TODO Autogenerated method stub This is just for the sake of showing. Implement proper implementation later
[ { "docid": "308f35723eb7e75d8876703bea721ad0", "score": "0.0", "text": "@Override\n\tpublic String[] parseAddress(Country country) {\n\t\tString[] str = {\"This\",\" \",\"is\", \"for\", \"MY\"};\n\t\treturn str; \n\t}", "title": "" } ]
[ { "docid": "3d9823aba51891281b4bbd4b1818b970", "score": "0.66980976", "text": "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "title": "" }, { "docid": "0b5b11f4251ace8b3d0f5ead186f7beb", "score": "0.66062015", "text": "@Override\n\tpublic void comer() {\n\t\t\n\t}", "...
36de3993436ebf456fde9bfbdfd5866b
/Tests for OP and Total
[ { "docid": "126a96de9eb1d73166916b3a883aaa58", "score": "0.0", "text": "@Test\n public void formatOP(){\n Assert.assertEquals(\"2 \", PrintingFormatter.formatOP(\"2\"));\n }", "title": "" } ]
[ { "docid": "0bb9fa7e1aa24f809eaf030bf6e7c8d6", "score": "0.64788395", "text": "boolean hasTotal();", "title": "" }, { "docid": "0bb9fa7e1aa24f809eaf030bf6e7c8d6", "score": "0.64788395", "text": "boolean hasTotal();", "title": "" }, { "docid": "0bb9fa7e1aa24f809eaf030bf6e7...
9b2d577b37aea670787f14ea3a89aa2a
This method was generated by MyBatis Generator. This method returns the value of the database column metadata_locks.LOCK_TYPE
[ { "docid": "658f08822143513000f92729edfa50e2", "score": "0.7960763", "text": "public String getLockType() {\n return lockType;\n }", "title": "" } ]
[ { "docid": "92e8bbf3f7d2931983b6fd6812dd2e65", "score": "0.7689324", "text": "public int getLockType() {\n\t\treturn m_lockType;\n\t}", "title": "" }, { "docid": "8027df175656da850760dbf564a0027c", "score": "0.69352597", "text": "public static JCRNodeLockType getLockType(String lockT...
d3bce2c16b2e726ef1d940f7bc9af9a0
/ Wird nach DetailActivity abbrechen aufgerufen
[ { "docid": "5167c75fa60c8df79ba6f9a132ccdd57", "score": "0.0", "text": "private void cancel() {\n\t\tfinish();\n\t}", "title": "" } ]
[ { "docid": "f22fdd2443a318a8d73bbd1c43189ed6", "score": "0.69210476", "text": "@Override\n\tpublic void getDetail() {\n\t\t\n\t}", "title": "" }, { "docid": "336f7e9bcb397d2594d9f30c6558240e", "score": "0.638665", "text": "@Override\n public DetailToMainActivityState getDataFromDeta...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "12af3b58ea8b53b06b037a509e59bd99", "score": "0.0", "text": "public static void main(String[] args) throws IOException {\n\t\tApp app = new App();\n\t\tPerson person = new Person(\"firstname\", \"lastname\", \"mobile\", \"username\", \"password\", \"access_level\");\n\t\tString json = \"put:\...
[ { "docid": "9208773f8d675a45ef2786d0cb668514", "score": "0.654538", "text": "@Override\n\tpublic void addiion() {\n\t\t\n\t}", "title": "" }, { "docid": "80d20df1cc75d8fa96c12c49a757fc43", "score": "0.65323734", "text": "@Override\n\tprotected void getExras() {\n\t\t\n\t}", "titl...
724272c97ed5ef1b1dbde4889f7edd7f
The method finds the shortest route (in terms of distance travelled) between the origin station and the destination station. The route is returned as an ArrayList containing the names of the stations along the route, including the origin and the destination stations. If the route cannot be completed (there is no path b...
[ { "docid": "fb4f65a0ef54ed9c42b25f0e7faf2518", "score": "0.7840125", "text": "public ArrayList<String> routeMinDistance(String origin, String destination) {\n\t\tif (!stationList.containsKey(origin) || !stationList.containsKey(destination)) {\n\t\t\treturn new ArrayList<String>();\n\t\t}\n\t\t\n\t\tif (...
[ { "docid": "40c65799ca6e98c47bcf12b807d6d168", "score": "0.79512656", "text": "public ArrayList<String> routeMinStop(String origin, String destination){\n\t\tif (!stationList.containsKey(origin) || !stationList.containsKey(destination)) {\n\t\t\treturn new ArrayList<String>();\n\t\t}\n\t\tif (origin.equ...
643c43f4fd6b3dc10244ba68e72841fd
A raw memory load instruction.
[ { "docid": "2621aac92725085dcc767c930433f0ee", "score": "0.65642136", "text": "void visitMemLoad(Unit obj);", "title": "" } ]
[ { "docid": "e79813e1df403406621769edf4be165e", "score": "0.6384006", "text": "public void visitMemLoad(Unit obj) {}", "title": "" }, { "docid": "9b36dfd58d9d4e8eacab21a6b4c97594", "score": "0.63023156", "text": "public void executeLoad() {\r\n BitString destBS = mIR.substring(...
2402801dc57fbadcc0fdbd12dcaba8f2
This method was generated by MyBatis Generator. This method corresponds to the database table hqj_platform
[ { "docid": "d79de76cf91c15564b192ea05416f116", "score": "0.0", "text": "int updateByPrimaryKeySelective(Platform record);", "title": "" } ]
[ { "docid": "e870b1128950dfd425b9795dabbe3393", "score": "0.56397575", "text": "@Override\r\n\t\t\tpublic Long getPlatformId() {\n\t\t\t\treturn null;\r\n\t\t\t}", "title": "" }, { "docid": "a218a577573744fb71fa18431b6ada86", "score": "0.5622446", "text": "@Override\r\n\tpublic String...
3f80b1d7c56017bf72b5c820d24868da
This method was generated by MyBatis Generator. This method corresponds to the database table coupons
[ { "docid": "cd876c473be3a8b32fda1465d6ff67ba", "score": "0.7021793", "text": "Coupons selectByPrimaryKey(Long couponsId);", "title": "" } ]
[ { "docid": "daf87070a529d039ee1ccc7d281efc6d", "score": "0.64000314", "text": "@Override\n public List<Coupon> getAllCoupons() {\n return couponRepository.findAll();\n }", "title": "" }, { "docid": "3e5558b5a589f58fde3fe5304de3aae8", "score": "0.6223843", "text": "List<C...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "dc4347ca0dfe42f7b20c4f9f251c6f34", "score": "0.0", "text": "@Override\n\tpublic boolean isEnabled() {\n\t\treturn false;\n\t}", "title": "" } ]
[ { "docid": "b7c706d331e2b507ec0ff8404ad87dc7", "score": "0.69742316", "text": "@Override\r\n\t\t\tpublic void crispel() {\n\t\t\t\t\r\n\t\t\t}", "title": "" }, { "docid": "76b3966c8e3f64884c4127d1a3df09a8", "score": "0.68059677", "text": "@Override\r\n\t\t\tpublic void maruti() {\n\t...
95581fcb2a33c28e636d4cfe7a4b20f3
used for sorting corners by corner strength q
[ { "docid": "9d9237c3c6bb1ca26344372f0a0578c5", "score": "0.55493706", "text": "public int compareTo (Corner c2) {\n\t\tif (this.q > c2.q) return -1;\n\t\tif (this.q < c2.q) return 1;\n\t\telse return 0;\n\t}", "title": "" } ]
[ { "docid": "10efa68d090327c9242d7c1d6cb5c06e", "score": "0.6288518", "text": "abstract protected void computeCorners();", "title": "" }, { "docid": "5cbb90cb8cfb1eeeb413f1558b9443a6", "score": "0.5826617", "text": "public Rectangle findUSCorners();", "title": "" }, { "doc...
d838c2966cad3fd93e1e2a2fda3978fd
Creates a new exception with a message.
[ { "docid": "7ac02c786ffafae6d88d3dc33c701ea7", "score": "0.0", "text": "public NotUpperTriangularException(String message)\n {\n super(message);\n }", "title": "" } ]
[ { "docid": "edb9615b470b774848d04ab3fb097e57", "score": "0.6801726", "text": "public EmailException(String message) {\r\n\t\tsuper(message);\r\n\t}", "title": "" }, { "docid": "0ffac7f1b09a9f029e10afdb90bc3438", "score": "0.6774948", "text": "public BaseException(String message) {\r\...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "6342a0f53de6708eb7df904f2f6288c9", "score": "0.0", "text": "@Override\n\tprotected void onStart() {\n\t\tsuper.onStart();\n\n\t}", "title": "" } ]
[ { "docid": "ffe5fe3cec40acf4b0b07ea257dfa06a", "score": "0.6831473", "text": "private void apparence()\r\n\t\t{\r\n\r\n\t\t}", "title": "" }, { "docid": "838a915c9ea69d56cc37df198cff9cb2", "score": "0.67589027", "text": "@Override\n\t\t\t\tpublic void pintar() {\n\t\t\t\t\t\n\t\t\t\t...
cc9eee6b3147df83e7ff26c1d8e8c3ac
Parsing data using gson
[ { "docid": "90aae9a01314368ca14b1139e1588490", "score": "0.0", "text": "private void parseShowData(String result) {\n WeatherBean weatherBean = new Gson().fromJson(result, WeatherBean.class);\n WeatherBean.HeWeather6Bean resultsBean = weatherBean.getHeWeather6().get(0);\n// Setting ...
[ { "docid": "847a3493d847fb5c08ceac5e1e21d29a", "score": "0.67258817", "text": "public abstract List<JsonObject> parseDataToJson();", "title": "" }, { "docid": "da7595f3b0839bdee7c3b4e5ba578c0a", "score": "0.6341639", "text": "public VentasClass llenarVenta(String ventasJsonString, St...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "f3093330559262dfb3339abeedab9189", "score": "0.0", "text": "@Override\r\n\tpublic double getMuxChannelPenalty() {\n\t\treturn 0;\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}"...
0159b749b50f75cfd75429fc0dab6dab
Sets the embedder for the list view.
[ { "docid": "f34030e26c40d5821c836ac6d4fe1d45", "score": "0.56574094", "text": "public void setEmbedder(@NonNull OmniboxSuggestionsDropdownEmbedder embedder) {\n assert mEmbedder == null;\n mEmbedder = embedder;\n mAnchorView = mEmbedder.getAnchorView();\n // Prior to Android ...
[ { "docid": "88ab21f86060466c92772f9dfe0bc27c", "score": "0.5496449", "text": "public void setListView() {\n }", "title": "" }, { "docid": "c166bee739106589998a027a946fe425", "score": "0.5328402", "text": "@Override\n public void setPresenter(PeliculaListContract.Presenter prese...
3c1245addd64e3e10a38c39dd25f2cd2
Cassier Principale Caissier factures
[ { "docid": "e86d0b53bdc7021b3c6b323c5577a21e", "score": "0.50437", "text": "@RequestMapping(value=\"/pageSuperAdminListFacturesCa\")\n\t\tpublic String pageFacturesCa(Model model){\n\t\t\tif(model.asMap().get(\"ObjetUser\")!=null){\n\t\t\tmodel.addAttribute(\"factures\", metier.listFactures());\n\t\t\tr...
[ { "docid": "a6013b3c7a7b40b116330d4d206f6ffe", "score": "0.5646518", "text": "@Test\n\tpublic void testFindReferedToPilgrim() {\n\t\tauthenticate(\"customer1\");\n\t\tCollection<Complaint> result = complaintService.findByCustomer();\n\t\tAssert.isTrue(result.size() == 1);\n\t\tauthenticate(null);\n\t}",...
42cad5cc3f436e9f61828a389131e2fc
TODO code application logic here
[ { "docid": "d8d070591e05249f70bee7687211e5a6", "score": "0.0", "text": "public static void main(String[] args) throws InterruptedException {\n splashInit(); // initialize splash overlay drawing parameters\n appInit(); // simulate what an application would do \n ...
[ { "docid": "1f7c82e188acf30d59f88faf08cf24ac", "score": "0.5705411", "text": "@Override\r\n\t\t\tpublic void ayuda() {\n\r\n\t\t\t}", "title": "" }, { "docid": "5d259e9a9ed31ac29902b25db191acd1", "score": "0.56839913", "text": "@Override\n\tpublic void bewegen() {\n\t\t\n\t}", "t...
906528dbec447a71e3a03c7cf61cc861
returns the next node in the list
[ { "docid": "d3ada78913483754baf3c125005919ef", "score": "0.7662844", "text": "public ListNode getNextNode(){\n\t\treturn this.nextNode;\n\t}", "title": "" } ]
[ { "docid": "87bbf2aab350ac3c18d88430759e2d9f", "score": "0.8055772", "text": "public ListNode getNext();", "title": "" }, { "docid": "1af7723772583aa19713d1fcd2761a70", "score": "0.7908551", "text": "public DNode getNext() {\n\t\t\tif (!hasNext())\n\t\t\t\treturn null;\n\t\t\treturn ...
297e2931080a490a0bf8981dccd8e900
Gets a backup of an app by its ID. Gets a backup of an app by its ID.
[ { "docid": "065b82f69063bccaf6524135886a06f1", "score": "0.0", "text": "public BackupItemInner getBackupStatus(String resourceGroupName, String name, String backupId) {\n return getBackupStatusWithServiceResponseAsync(resourceGroupName, name, backupId).toBlocking().single().body();\n }", "...
[ { "docid": "888b8b0e770adf8e6e9abcd39daa86fd", "score": "0.6418431", "text": "@Override\n\tpublic Backups findById(String id) {\n\t\treturn backupsDao.findById(Backups.class, id);\n\t}", "title": "" }, { "docid": "39ebce81704b78a94fff49962da34d79", "score": "0.5581883", "text": "publ...
c191a5ac0750e8aec20ea9752e85a1c7
/ int GetPolygonSize (int pPolygonIndex) const
[ { "docid": "ef9537bba71bcf8f3f690447242fe884", "score": "0.89473337", "text": "public static native int GetPolygonSize(long lpjFbxMesh, int pPolygonIndex);", "title": "" } ]
[ { "docid": "00285bab2b67957dbb33b7f26ec52270", "score": "0.7471832", "text": "public static native int GetPolygonCount(long lpjFbxMesh);", "title": "" }, { "docid": "91d16c039bfdd6281c71b1410947e964", "score": "0.73780113", "text": "public static native int GetPolygonVertexCount(long...
1b0db9a86fbc30535f4932272842fb48
/ renamed from: a
[ { "docid": "2b020bc7d3f7ef9f3f718aa06839ab68", "score": "0.0", "text": "public Metadata m20200a(byte[] bArr, int i) {\n List arrayList = new ArrayList();\n C2175k c2175k = new C2175k(bArr, i);\n bArr = C4029a.m20185a(c2175k);\n if (bArr == null) {\n return null;\n ...
[ { "docid": "acca3c01e51d08a4d60d67937f3fd23f", "score": "0.6243165", "text": "public interface C2525a {\n /* renamed from: a */\n void m12672a();\n }", "title": "" }, { "docid": "0b5ec8f53273b48128542de9a10a26fa", "score": "0.61942255", "text": "public interface C353...
4dc8d660648df5dcb9a3230a27a2f941
Predicts the indices of the clusters that the input points belong to.
[ { "docid": "92fb698c9b779855713c7ddc01774495", "score": "0.58711725", "text": "public org.apache.spark.rdd.RDD<java.lang.Object> predict (org.apache.spark.rdd.RDD<org.apache.spark.mllib.linalg.Vector> points) { throw new RuntimeException(); }", "title": "" } ]
[ { "docid": "b2e96c3bab61f54a9129ecea1d9ad11b", "score": "0.6173627", "text": "public org.apache.spark.api.java.JavaRDD<java.lang.Integer> predict (org.apache.spark.api.java.JavaRDD<org.apache.spark.mllib.linalg.Vector> points) { throw new RuntimeException(); }", "title": "" }, { "docid": "...
5daf3768640f47c6ba62c9dbdf407325
Returns the ActiveHours for this bean.
[ { "docid": "21ec8318d8c651a6d1ebe0bb389cd932", "score": "0.8318136", "text": "public int getActiveHours() {\n\t\treturn activeHours;\n\t}", "title": "" } ]
[ { "docid": "3503900064fc95e2b7bdcdc5164df2ea", "score": "0.6736479", "text": "public double getHours(){\n\t\treturn calendar.get(Calendar.HOUR);\n\t}", "title": "" }, { "docid": "e3c462fc71a00e1263e10ded13368dfa", "score": "0.6677998", "text": "public double getHours() {\n ret...
927abd83351f4c86f3d508ab82f90d2f
Precondition: message is a valid log message.
[ { "docid": "dcf41acadf5db5b9ff03fbe8b4486f8e", "score": "0.6358555", "text": "public LogMessage(String message) {\n machineId = message.substring(0, message.indexOf(\":\"));\n description = message.substring(message.indexOf(\":\") + 1);\n }", "title": "" } ]
[ { "docid": "ed8890beb3150a38af74232ef9ab9cba", "score": "0.62447065", "text": "public static void testMessage(String message) {\n\n\t\tlogger.info(message);\n\n\t\tlogger.info(\"**********************************************************\");\n\n\t}", "title": "" }, { "docid": "cb11b49f47c5285...
42a31d10026f911f1c17c0296152a3b7
Kai the Cat Hat 7Day Pack
[ { "docid": "487eb7313fd67f76f87d5da30159b1cc", "score": "0.0", "text": "private void use13290(Player player, boolean ctrl)\r\n\t{\r\n\t\tItemFunctions.addItem(player, 13247, 1);\r\n\t}", "title": "" } ]
[ { "docid": "1c18b6d16c3d81fabf3de38562c1d439", "score": "0.52616554", "text": "public void addPack(Pacchetto pack)\n {\n\n List<Label> labels = new ArrayList<Label>();\n labels.add(new Label(Integer.toString(pack.getId())));\n\n int i;\n\n int from = gpPack...
d6c8bbb0b09b289ad444cc8b58eacc8e
The method called only in Tropical Treasures Bingo mode
[ { "docid": "a19c9a6ee6a0181f689172e0236785c5", "score": "0.0", "text": "private TropicalTreasuresResult generateTTResults() {\n\t\t\tif (model.currttblock != null) {\n\t\t\t\tttr = new TropicalTreasuresResult(model.currttblock.getPicks(), model.currttblock.isFixedCard());\n\t\t\t\tttr.setWager(currttblo...
[ { "docid": "19598c9d952722413eb42f56bd59ebb6", "score": "0.59598297", "text": "public void BOTONES(){\n\t\t}", "title": "" }, { "docid": "3e96cb0b4f71ba8f1db0df4d27f768a5", "score": "0.5409734", "text": "private void bloatingTarpeian() {\n\t\tint profMedia = 0;\n\n\t\tfor (int i = 0;...
18b311a6d5653246c0bc33d3e570f2d1
Do not compute all descendants, and apply predicate afterwards. That is way too expensive.
[ { "docid": "984c87a512e533c5df245b342a4d9c7c", "score": "0.64685535", "text": "public final List<Element> descendants(SafePredicate<Element> predicate) {\n \t\tList<? extends Element> tmp = childrenAux();\n \t\tpredicate.filter(tmp);\n \t\tList<Element> result = (List<Element>)tmp;\n \t\tfor (Element e ...
[ { "docid": "b9c3753a2531e00628264e1308fd30ab", "score": "0.6297227", "text": "public final <X extends Exception> List<Element> descendants(UnsafePredicate<Element,X> predicate) throws X {\n \t\tList<? extends Element> tmp = childrenAux();\n \t\tpredicate.filter(tmp);\n \t\tList<Element> result = (List<E...
9abc350db6780c39cc15872e2cdfbcab
Set Backup file retention period in days. Value range: 7732.
[ { "docid": "83fe7ad496772a68fd85b070d2282d87", "score": "0.459112", "text": "public void setExpireDays(Long ExpireDays) {\n this.ExpireDays = ExpireDays;\n }", "title": "" } ]
[ { "docid": "06d024bac6632ba4fb59d20e49e7326d", "score": "0.6687013", "text": "public void setLogFileRetention(String retention)\n {\n this.logFileRetainMillis = new Interval(retention).longValue();\n }", "title": "" }, { "docid": "1cd3838ed1490ab099209ebddd9fc680", "score...
d42d73ad55d4087d8654a78527eb6fca
barCode.setText("Bar: " + contents);
[ { "docid": "8e9bff8ccb11ba6e8491398a75f13f4a", "score": "0.0", "text": "public void scanCompleted(String contents, String formatName, byte[] rawBytes) {\n cnt.addComponent(new Label(contents));\n cnt.revalidate();\n }", "title": "" } ]
[ { "docid": "3e098509edfc04863a88c1764fc230b7", "score": "0.7083068", "text": "public void setBarCode(String bar) { barCode = bar; }", "title": "" }, { "docid": "698a5a4f948600b25e644bad62ccb23b", "score": "0.61899614", "text": "public String getBarCode() { return barCode; }", "ti...
eb75288545593feec958add3474d43d4
This method was generated by Apache iBATIS ibator. This method returns the value of the database column video_news.read_count
[ { "docid": "c2c0b313cfff2f14f7432109b4f1bedf", "score": "0.66626424", "text": "public Long getReadCount() {\r\n return readCount;\r\n }", "title": "" } ]
[ { "docid": "0fd5b392b5b90b4a187dec4ab8680254", "score": "0.7045762", "text": "int getObjNewsCount();", "title": "" }, { "docid": "349c514bfc2cd3a7cf907bd83479d75d", "score": "0.7028875", "text": "public int getObjNewsCount() {\n if (objNewsBuilder_ == null) {\n re...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "4f7ac8d69c1e9a224137c4fa4f138e6e", "score": "0.0", "text": "@Override\n public void afterTextChanged(Editable s) {\n }", "title": "" } ]
[ { "docid": "ef1b6c3f597a66c59960d73eadee6f25", "score": "0.6904447", "text": "private void apparence()\n\t\t{\n\n\t\t}", "title": "" }, { "docid": "4862518dedb9e169c3cc620e5ebe04c5", "score": "0.6696056", "text": "@Override\r\n\tpublic void atura() {\n\t\t\r\n\t}", "title": "" ...
f778bd91a32b35136e0fed8f34b3a49b
Add a value to a specified entry identified by instantiated key
[ { "docid": "8dc2c280f4fd5fd1f7c68c75386b8300", "score": "0.0", "text": "public int addFactor(Object[] key, double value) {\n if (factorTable != null) {\n int index = factorTable.getIndex(key);\n return addFactor(index, value);\n } else if (atomicFactor != null) {\n ...
[ { "docid": "563e30de2dda11dc05207f243fdde0b6", "score": "0.724607", "text": "void add(K key, V value);", "title": "" }, { "docid": "563e30de2dda11dc05207f243fdde0b6", "score": "0.724607", "text": "void add(K key, V value);", "title": "" }, { "docid": "a11c1c1451f659bc91f9...
954190e72fdf8ca4a3b550e878ac427a
Remove any characters after the last valid chip. Visible for testing. / package
[ { "docid": "b1501995221f662678ed61ea0d594513", "score": "0.642641", "text": "void sanitizeEnd()\n {\n // Don't sanitize while we are waiting for pending chips to complete.\n if(mPendingChipsCount>0)\n return;\n // Find the last chip; eliminate any commit characters after it.\n final ...
[ { "docid": "cab8827a77ff126ae832c4ae38da96bd", "score": "0.6750766", "text": "private String removeUnnecessaryChars(String currToken) {\n //run while there are Unnecessary characters at the start of the token\n //or at the end of the token.\n while ( !(currToken.equals(\"\")) && ((d...
4de142d229dbf3d6479abb9312e4a0b8
Score is as coding size of neighborgram AND some the certainty. the higher the score the better.
[ { "docid": "49dde72726434c5cf0dce2ce3db562cb", "score": "0.0", "text": "public double coverage() {\n\n if (dirty) {\n coverage = 0;\n\n for (int i : neighborSet) {\n if (distIdx == 0) {\n coverage += allPoints[i].dist()[distIdx];\n ...
[ { "docid": "cf8bba30420f70f40d35bf17dbae2527", "score": "0.5817183", "text": "public double getScore(String text){\n\t\tdouble score = 0f;\n\n\t\tfor (int i = 0; i < text.length(); i++){\n\t\t\tif (i + QuadGramMap.GRAM_SIZE <= text.length() -1){ //read the first four characters from plain text, then the...
edeb60d53d6857e050a16576368b7766
Get the databricksVirtualNetwork property: The remote virtual network should be in the same region. See here to learn more (
[ { "docid": "07e96b590dacfdf6a76c8de815939ade", "score": "0.8022153", "text": "public VirtualNetworkPeeringPropertiesFormatDatabricksVirtualNetwork databricksVirtualNetwork() {\n return this.innerProperties() == null ? null : this.innerProperties().databricksVirtualNetwork();\n }", "title":...
[ { "docid": "953e693063afc540cd047dac4a683cb4", "score": "0.6989487", "text": "public VirtualNetworkPeeringPropertiesFormatRemoteVirtualNetwork remoteVirtualNetwork() {\n return this.innerProperties() == null ? null : this.innerProperties().remoteVirtualNetwork();\n }", "title": "" }, {...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "17390449e06789d7d69fe31ec63d141e", "score": "0.0", "text": "@Override\n\tpublic Process peek() {\n\t\treturn (Process) this.head;\n\t}", "title": "" } ]
[ { "docid": "9208773f8d675a45ef2786d0cb668514", "score": "0.654538", "text": "@Override\n\tpublic void addiion() {\n\t\t\n\t}", "title": "" }, { "docid": "80d20df1cc75d8fa96c12c49a757fc43", "score": "0.65323734", "text": "@Override\n\tprotected void getExras() {\n\t\t\n\t}", "titl...
e483fb881d1bc94b0b1d718dd19b321d
private int nextIndex(int index) Helper method that finds the next index when adding or removing from this ArrayQueue.
[ { "docid": "e0448456a77ce6d69f55dc67f5bcac7d", "score": "0.80449694", "text": "private int nextIndex(int index) {\n if (++index == data.length) {\n return 0;\n } else {\n return index;\n }\n }", "title": "" } ]
[ { "docid": "353d834b0075b56c4d5f9afec8c919f2", "score": "0.74425226", "text": "private int incrementIndex(int index) {\r\n return (index + 1) % queue.length;\r\n }", "title": "" }, { "docid": "2d98abdacb1f7c3293afc816406c61fc", "score": "0.73920506", "text": "private int ge...
4f4f27c03333d1f705da4e2adb73531d
Here you have to write logic to decide which method to call If no search fields then show all
[ { "docid": "7230b250510af8abf5c4ea3f408afe0b", "score": "0.0", "text": "public List<Organization> searchAllOrganizations() {\n organizations = organizationFacade.findAll();\n return organizations;\n }", "title": "" } ]
[ { "docid": "71e2d2d6ddec0bcb4b655c3dbd250e3e", "score": "0.70954275", "text": "@Override\r\n\tpublic void searchShow() {\n\t\t\r\n\t}", "title": "" }, { "docid": "ed7d6b2493a938352941990da8b88122", "score": "0.69601613", "text": "private void search() {\r\n \r\n ...
c8d01459fbd02c16b28b9dba095c0b44
Gets the value of the upheldFailedPrecentCnt property.
[ { "docid": "3f635665a371d4eebc34c2bb43b039c9", "score": "0.91781425", "text": "public long getUpheldFailedPrecentCnt() {\n return upheldFailedPrecentCnt;\n }", "title": "" } ]
[ { "docid": "b8ad2c87ce6f5f9f68e8652a0fedbd65", "score": "0.8569109", "text": "public long getFailedPrecentCnt() {\n return failedPrecentCnt;\n }", "title": "" }, { "docid": "276dbdb7117c6a6eca88f614519ba604", "score": "0.8478693", "text": "public long getPartlyFailedPrecent...
012ca0cc33200dab6c19392ed56e8986
Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
[ { "docid": "f3ee87ca3710e935ab59d1fcbeea6d58", "score": "0.0", "text": "@Deprecated(\n since = \"forever\",\n forRemoval = false\n )\n public static void initStates() {\n Block.ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 7593, \"facing=north\", \"hal...
[ { "docid": "22fdfaa22e619042766ed4e64a98ee09", "score": "0.56676024", "text": "@Override\n\tpublic String getUserface() {\n\t\treturn null;\n\t}", "title": "" }, { "docid": "29cde3f10dab87cebafdd9412ef4b29f", "score": "0.54610705", "text": "@Override\r\n\tpublic void embala() {\n\t\t...
7d86541a8808c5a238b18a28bf7f3fef
Set the velocity of this fish object to the default value.
[ { "docid": "72562448e6ff499e9c3c9b72e9c603f0", "score": "0.66090107", "text": "@Override\n public void setGameDefault() {\n this.currDropSpeed = DEFAULT_DROP_SPEED;\n this.currJumpSpeed = DEFAULT_JUMP_SPEED;\n }", "title": "" } ]
[ { "docid": "a0fe011ba53045837efa86187cc8ecb2", "score": "0.7291663", "text": "public void setInitialVelocity(Vector2D velocity) { this.velocity = velocity; }", "title": "" }, { "docid": "3f139b336da2e9ca8545f90ab772c3b3", "score": "0.71522045", "text": "public void resetVelocity() { ...
5cb371d9a2987950e2f76744611463c1
/ renamed from: d
[ { "docid": "10781a76d829ddd32e3f5c57f4f4343b", "score": "0.0", "text": "public C2099s mo11074d(String str) {\n this.f6108f = str;\n return this;\n }", "title": "" } ]
[ { "docid": "9f469cde9b8a8717840b90103ccb3930", "score": "0.7020106", "text": "@Override\n\tpublic void d() {\n\t\t\n\t}", "title": "" }, { "docid": "9f469cde9b8a8717840b90103ccb3930", "score": "0.7020106", "text": "@Override\n\tpublic void d() {\n\t\t\n\t}", "title": "" }, { ...
a216a11b889e3f362c2e44f4d75acace
this tests that we throw when people violate the general contract for hashcode on java.lang.Object
[ { "docid": "252d9222865ed1953776f814e6cafc55", "score": "0.0", "text": "@SuppressWarnings({\"MismatchedQueryAndUpdateOfCollection\"})\n public void testSomeBadlyWrittenObject() {\n Set<Object> s = new THashSet<Object>();\n boolean didThrow = false;\n int i = 0;\n try {\n ...
[ { "docid": "f0e6d8c74d2f420d292dfed547c6a01e", "score": "0.805111", "text": "abstract int hash(Object o);", "title": "" }, { "docid": "41f2813d1eeb7bc5f8114f96666dc8a7", "score": "0.7624046", "text": "public int hashCode() {\n/* 141 */ throw new RuntimeException(\"Stub!\");\n/* ...
cbc9b99dacfa7d5d20f4d80c7e59a5b3
/ Filter parameter supports the following: Comma delimited list of subdirectories Each element can contain a regexp string (e.g. "integrationServer.")
[ { "docid": "44500a2c600e1e75e5a5914988ec73cb", "score": "0.5948947", "text": "public static LinkedList<String> getSubDirectories(String rootDir, String filter) {\n\t\t\tFile fRootDir = new File(rootDir);\n\t\t\tLinkedList<String> subDirs = new LinkedList<String>();\n\t\t\tLinkedList<String> filterElemen...
[ { "docid": "a22b6d1d10afef87693a8dc3beb664eb", "score": "0.58048266", "text": "public static FileFilter getDirectoriesFilter() {\n\t\tif (directoriesFilter == null)\n\t\t\tdirectoriesFilter = file -> file.isDirectory() && !file.getName().startsWith(\".\");\n\t\treturn directoriesFilter;\n\t}", "titl...
c6712e05b5fceaa49c9066b137c488ea
Retorna o atributo from
[ { "docid": "8a4e8a91660e9563094e571641271006", "score": "0.0", "text": "public String getFrom() {\r\n\t\treturn from;\r\n\t}", "title": "" } ]
[ { "docid": "c8b796c098b84f3f96dfe82fb30cd8f0", "score": "0.676511", "text": "String getAttribute();", "title": "" }, { "docid": "c8b796c098b84f3f96dfe82fb30cd8f0", "score": "0.676511", "text": "String getAttribute();", "title": "" }, { "docid": "a5af966a338b28c0a0d7c082f6...
ced9ed5f75573e5963bf80e56462d0b6
Make this return true when this Command no longer needs to run execute()
[ { "docid": "60cd0a4673732251927904f11aa19624", "score": "0.0", "text": "protected boolean isFinished() {\n return m_driveTrain.isHighGear == target;\n }", "title": "" } ]
[ { "docid": "14dee7d04fb1590ef0c3fc6814452fb5", "score": "0.7159166", "text": "@Override\n\tprotected boolean execute()\n\t{\n\t\treturn true;\n\t}", "title": "" }, { "docid": "4d3ea1a62cb6ff003d30d832f4598f3d", "score": "0.7122502", "text": "public boolean execute() {\r\n \t\treturn ...
efc83d1858d412a4db2981c6874f19f3
/ Displays the current default properties in the GUI.
[ { "docid": "89597cb7f2207e8408b48ff35226e83e", "score": "0.7509132", "text": "private void displayCurrentDefaults() {\n\t\t// Update GUI in EDT.\n\t\tSwingUtilities.invokeLater(new Runnable() {\n\t\t\t@Override\n\t\t\tpublic void run() {\n\t\t\t\t// Gets the directional properties in the direction selec...
[ { "docid": "299c20cf9bc0a58c74a2401b3464ca65", "score": "0.7144801", "text": "void showProperties() {\n // Fill the textarea with the properties\n boolean allowRestricted = safe.getSelectedIndex() != 0;\n captionLabel.setText(allowRestricted ? applicationProperties : appletPropertie...
54a5c246ca0fe157b166ac9e4ea93553
Return a "sanitized" patch. If data is insufficient, return a default patch or attempt a partial draw.
[ { "docid": "95c168979c43e285082eb90546c37677", "score": "0.0", "text": "public T getSafeFlat(int flatnum);", "title": "" } ]
[ { "docid": "9d20a046a3abd751524721593c8f2275", "score": "0.49370155", "text": "public static <T> PatchRequest<T> createFromEmptyPatchDocument()\n {\n return createFromPatchDocument(new DataMap());\n }", "title": "" }, { "docid": "87ee28edcb8e81dcd176e05289050c5b", "score": "0.478144...
8a58dcfc76d8176bb1948f84914053b3
This method was generated by MyBatis Generator. This method corresponds to the database table skill
[ { "docid": "4f5110d816b34590a5587c01c748bb03", "score": "0.5053522", "text": "int updateByPrimaryKey(Skill record);", "title": "" } ]
[ { "docid": "1ab3020940d6bd0ae31bfeade4991375", "score": "0.6888678", "text": "Skill selectByPrimaryKey(Integer skillId);", "title": "" }, { "docid": "f5270bed5c0f43bce176fa2fd9c7106d", "score": "0.6561878", "text": "public List<SkillBean> getSkills() {\n\t\tList<SkillBean> skills = n...
b476a41c88a2bfac27100e6cd455d1c9
Gets the accrual factor, defaulted from the index if not set. This is the year fraction of the contract, typically around 0.25 for a futures with a 3 month period.
[ { "docid": "aaa87a9207fd32c5e9822111cb745ceb", "score": "0.7148981", "text": "public double getAccrualFactor() {\n return accrualFactor;\n }", "title": "" } ]
[ { "docid": "15474857b0940534d4326f272f16ed56", "score": "0.60842973", "text": "public Builder accrualFactor(double accrualFactor) {\n ArgChecker.notNegativeOrZero(accrualFactor, \"accrualFactor\");\n this.accrualFactor = accrualFactor;\n return this;\n }", "title": "" }, { ...
82789c4dfc0a5cdd0802ecf69779a11c
optional .situation_castle castle = 1;
[ { "docid": "1efd5940cf183c44debade29badfd848", "score": "0.5671329", "text": "public Builder mergeCastle(com.protobuf.Situation.situation_castle value) {\n if (castleBuilder_ == null) {\n if (((bitField0_ & 0x00000001) == 0x00000001) &&\n castle_ != com.protobuf.Situation.si...
[ { "docid": "dd5413ab641d0df3c2755fe02507bba5", "score": "0.7369129", "text": "com.protobuf.Situation.situation_castle getCastle();", "title": "" }, { "docid": "904c38432856568bd6343ecacfff35fa", "score": "0.70711833", "text": "com.protobuf.Situation.situation_castleOrBuilder getCastl...
2d2ffaa4a1a8f3bee58a480791acf6af
$ANTLR end "rule__XFunctionTypeRef__Group_0__2" $ANTLR start "rule__XFunctionTypeRef__Group_0__2__Impl" ../org.eclipse.xtext.idea.example.entities.ui/srcgen/org/eclipse/xtext/idea/example/entities/ui/contentassist/antlr/internal/InternalEntities.g:16514:1: rule__XFunctionTypeRef__Group_0__2__Impl : ( ')' ) ;
[ { "docid": "2c9a5d99bdb7097b54cf2419e1d56728", "score": "0.7845349", "text": "public final void rule__XFunctionTypeRef__Group_0__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.eclipse.xtext.idea.example.entities...
[ { "docid": "e8fddb94dca8330f8bf2c520328eddc0", "score": "0.7925179", "text": "public final void rule__XFunctionTypeRef__Group_0__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.eclipse.xtext.idea.example.entities.ui/sr...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "42eea47ee9569fac3bb59ca4c2ab9a99", "score": "0.0", "text": "@Override\n\tprotected boolean hasFirstPagePostedDate() {\n\t\treturn false;\n\t}", "title": "" } ]
[ { "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...
79f9552ef0c5acb749334aea1cb17291
a projection cannot be an identity it doesn't make a lot of sense.
[ { "docid": "5454f6bac0cb01de64b852c68f75523b", "score": "0.483015", "text": "@Override\n public boolean isIdentity() {\n return false;\n }", "title": "" } ]
[ { "docid": "fcc49e813ff57e76eb4efa36c02300ba", "score": "0.6768317", "text": "public T caseProjection(Projection object)\n {\n return null;\n }", "title": "" }, { "docid": "cd8cd8ba5eeb6c4434173a8ca4012749", "score": "0.65030134", "text": "public interface IProjection\n{\n /**\...
bda630ee810370b3bd70c94832b6affe
Get a list of tag lists.
[ { "docid": "411f3e13bbc2a892e3c74649558b3de3", "score": "0.58550864", "text": "public ImmutableList<TagListView> getTagListView() {\n return TagListView;\n }", "title": "" } ]
[ { "docid": "07dbae58c9b163cdf25efe74565e3f84", "score": "0.7072787", "text": "Iterable<String> getTags();", "title": "" }, { "docid": "b532b7e758f8a7ee54878b6154c92493", "score": "0.6996457", "text": "public ArrayList<Tag> getTags()\n\t{\n\t\treturn new ArrayList<>(tags.keySet());\n\...
2e68c45e0efefd7d2dc925569629a4ee
Inserts and returns a new empty value (as xml) as the ith "ObstructionOffset" element
[ { "docid": "b31ca69c29325f35aa1423e9f503e5c2", "score": "0.6857163", "text": "public org.landxml.schema.landXML11.ObstructionOffsetDocument.ObstructionOffset insertNewObstructionOffset(int i)\r\n {\r\n synchronized (monitor())\r\n {\r\n check_orphaned();\r\n ...
[ { "docid": "b9e75c4d074fc4b017661110fb0b8bb7", "score": "0.70534545", "text": "public org.landxml.schema.landXML11.ObstructionOffsetDocument.ObstructionOffset addNewObstructionOffset()\r\n {\r\n synchronized (monitor())\r\n {\r\n check_orphaned();\r\n ...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "3a306203ec367a61cc89dcedfda746a2", "score": "0.0", "text": "protected void onCreate(Bundle savedInstanceState)\n\t{\n\t\tsuper.onCreate(savedInstanceState);\n\t\trequestWindowFeature(Window.FEATURE_NO_TITLE);\n\t\tsetContentView(R.layout.near_search);\n\t\tmylist=(ListView)findViewById(R.id....
[ { "docid": "fd7df110e087032be8c98522c4493f41", "score": "0.6681592", "text": "@Override\n public void otvori() {\n }", "title": "" }, { "docid": "fd7df110e087032be8c98522c4493f41", "score": "0.6681592", "text": "@Override\n public void otvori() {\n ...
c687ff61f0869ffbc1d20a82f1e563dc
solution built by swap
[ { "docid": "3f621a66cb7d59e5f659eaf8fdb57759", "score": "0.5855434", "text": "private void bySwap(Exam e1, Integer t1, Exam e2, Integer t2) {\r\n\t\tthis.copySolutionFromMap(this.fatherSolution.getMappedSol()); //by value!\r\n\t\t\r\n\t\t// t2 is the old pos of e1\r\n\t\tthis.complex_sol.get(t2).remove(...
[ { "docid": "715b60602ec6101c9618a1cf6be31aee", "score": "0.6444666", "text": "abstract void reverse(int[] curr_solution);", "title": "" }, { "docid": "df5acc17f7f756d65675cd7eb6483bed", "score": "0.63300973", "text": "Solution() {\n top = 0;\n front = 0;\n rear =...
5a71947b5b141bfcc0c44450627e2f4d
Creates a new TextBox with the given leading caption.
[ { "docid": "1880f77878ab706b61e28070f7a8e577", "score": "0.75251764", "text": "public LabeledTextBox(String caption) {\n HorizontalPanel panel = new HorizontalPanel();\n Label label = new Label(caption);\n panel.add(label);\n panel.setCellVerticalAlignment(label, HasVerticalAlignment.ALIGN_M...
[ { "docid": "14b0de5e8d020ac20f3cc017d73c1e51", "score": "0.63697326", "text": "private TextBox MakeTextBox() {\n TextBox tb = new TextBox();\n\n tb.addKeyPressHandler(new KeyPressHandler() {\n\n public void onKeyPress(KeyPressEvent event) {\n }\n });\n r...