query_id
stringlengths
32
32
query
stringlengths
7
129k
positive_passages
listlengths
1
1
negative_passages
listlengths
88
101
d6d01eeb5a2268515ae8038724724dd2
TODO: Warning this method won't work in the case the id fields are not set
[ { "docid": "96f4b7a54de0ac002ab274d20aef7d47", "score": "0.0", "text": "@Override\r\n public boolean equals(Object object) {\n if (!(object instanceof Couleur)) {\r\n return false;\r\n }\r\n Couleur other = (Couleur) object;\r\n if ((this.idcouleur == null && ot...
[ { "docid": "bc78245d570ba115c32fd79d320c8221", "score": "0.682261", "text": "private void setId(int id) { this.id = id; }", "title": "" }, { "docid": "91b4d6a7274fd74467c1fed2a60f74c8", "score": "0.67789435", "text": "public void setId (long id) {this.id = id;}", "title": "" },...
513eac6c6946aeb46571342770825a3f
Constructor to initializes the contents of the paper
[ { "docid": "e80a6d11752c1d37f9123d14169170c7", "score": "0.0", "text": "public Paper(String s, boolean readable) {\n\t\tcontents=s;\n\t\tthis.readable = readable;\n\t}", "title": "" } ]
[ { "docid": "cbf94cceb503bfa14d4f5252fd31c79e", "score": "0.701562", "text": "public Paper(){\n\t\tauthorsList = new ArrayList<Author>();\n\t}", "title": "" }, { "docid": "fa4c60fd7d701b6d46d8f47c5c2a45f9", "score": "0.69654006", "text": "private void initialisePaper() {\n for (int...
4ed37ae6c71d0a2f626ca196460a60ff
Computes the area of intersection between a given 2D circle and 2D polygon.
[ { "docid": "691588c909e09df720dd18482614d373", "score": "0.79629636", "text": "public static double intersectionArea(Circle2D circle, Polygon2D polygon) {\n // check for intersection\n if (!LinAlg2D.intersects(circle, polygon))\n return 0;\n \n // polygon in circle...
[ { "docid": "9f82e1c74acc975c27a9aa51fcfed81c", "score": "0.67317426", "text": "public static double intersectionArea(Circle2D circle1, Circle2D circle2) {\n // algorithm derived from equations found at:\n // http://mathworld.wolfram.com/Circle-CircleIntersection.html\n \n // ...
c3648e8597cf508e56fdb05d6b24e96d
// Purpose : This function matches two templates and return similar match score. This function is for 1:1 Matching and only used in fingerprint verification. Function : CompareTemplates Arguments : (In) : byte[] itemplateToMatch : template to match : This template must be used as that is created by function "CreateANSI...
[ { "docid": "5adbd29f546386463f931fb0ae0fac7a", "score": "0.827734", "text": "public native int CompareTemplates(byte[] itemplateToMatch, byte[] itemplateToMatched);", "title": "" } ]
[ { "docid": "c5691224363c35c2cdc948fa948194b3", "score": "0.62740487", "text": "@Override\n\tpublic void analyzeTemplate() {\n\t\t\n\t\tLevenshteinDistance dist = new LevenshteinDistance();\n\t\tfor (String tempName: this.templates.keySet()) {\n\t\t\tStaticMethodMiner tempRep = this.templates.get(tempNam...
54a4e2c62728881f517539d1ad79bc12
test MyInteger for equals
[ { "docid": "1a95886acd04ee341532282cf45efbf9", "score": "0.7447719", "text": "public boolean equals(MyInteger myInt) {\r\n\t\treturn equals(myInt.getValue());\r\n\t}", "title": "" } ]
[ { "docid": "0b65beb639e95b4f70329dec134115f0", "score": "0.74103844", "text": "@Test\r\n\tpublic void isEqualsMyInteger(){\r\n\t\tassertTrue(\"This number is equal to 3\",value2.equals(3));\r\n\t}", "title": "" }, { "docid": "358b84e18dceaca5dc29db06cc4b0436", "score": "0.67292607", ...
f1dd31d4bd0a14a577537201388bff70
write your code here
[ { "docid": "d2efe1c34452e929164926e78ec526c1", "score": "0.0", "text": "public static void main(String[] args) {\n System.out.println(\"请输入一个数字\");\n Scanner input=new Scanner(System.in);\n int res=0;\n try {\n int number=input.nextInt();\n res=10/number...
[ { "docid": "ccbad2fe39581989696edf7ff479266d", "score": "0.6468065", "text": "private static void somrtinhg() {\n\t\t\r\n\t}", "title": "" }, { "docid": "51050f1fab8bce705862601a3358f633", "score": "0.59082246", "text": "public void Morir() {\n // TODO implement here\n }", ...
e8f8fa077dde5480994ff364b87d776e
more efficient way by computing prec and determinant starndard normal density
[ { "docid": "de186c563056dde776734f3b01dc16ab", "score": "0.58078593", "text": "public static double multivariate_normal_logdensity(double[] x){\n double lik = 0;\n for(int i = 0; i < x.length; i++){\n lik -= 0.5 * x[i] * x[i];\n }\n lik -= 0.5 * x.length * Math.log...
[ { "docid": "f1ea81b969a28e0086bbd3b4a408423e", "score": "0.6695226", "text": "double getDensity();", "title": "" }, { "docid": "cc26bbd67d384e042cc3638a85f57b07", "score": "0.65498716", "text": "Double getMassDensity();", "title": "" }, { "docid": "bcdfa66a4ebddc05d9ed479...
3b6af528637ba9a7471ce08d7d475be3
move camera to clickpoint mMap.animateCamera(CameraUpdateFactory.newLatLng(LatLng)); Latitude und Longitude werden als Toast (LENGHT_LONG) angezeigt
[ { "docid": "68ef49a250ad6cc56d71241a921aa224", "score": "0.7080739", "text": "@Override\n public void onMapLongClick(LatLng LatLng) {\n Toast.makeText(getApplicationContext(), \"Latitude: \" + String.format(formatForDisplay, LatLng.latitude) + \" Longitude: \" + String.format(f...
[ { "docid": "a3701d3c5e69a43fc4a6b99507ce08b1", "score": "0.7650233", "text": "@Override\r\n public void onMapClick(LatLng point) {\n mMap.clear();\r\n mMap.addMarker(new MarkerOptions().position(point).title(\"Modified Position\"));\r\n ...
1b0db9a86fbc30535f4932272842fb48
/ renamed from: a
[ { "docid": "e4c51ddff8e0b2962b60e64a60495787", "score": "0.0", "text": "private final C8393z m16098a(C5733d dVar, String str, Function1<? super List<C7991b0>, C12956q> function1) {\n Context context = this.f14528a;\n String str2 = \"context\";\n C12932j.m33815a((Object) context, str...
[ { "docid": "8c202bef975a1ce9b229619975cdce2f", "score": "0.6234015", "text": "public interface aacac {\n /* renamed from: a */\n void mo29386a(String str);\n}", "title": "" }, { "docid": "d9afe0b047b7674b49c3d401ac2542aa", "score": "0.62241286", "text": "public interface C4823a...
303f09667e2d404528668b0e71045ee0
Utility method (recursive) to add a touch listener to each nonEditText UI component such that the keyboard is hidden once this component is touched. This facilitates cleaner user interaction as the keyboard is hidden automatically saving the user an additional click operation.
[ { "docid": "e8183b09ce9e65c2ad390aa00af23131", "score": "0.5873564", "text": "public void addSoftKeyboardHandling(View view) {\n\t //Set up touch listener for non-text box views to hide keyboard.\n\t if(!(view instanceof EditText)) {\n\t view.setOnTouchListener(new OnTouchListener() {\n\t ...
[ { "docid": "b6b597bd775b5ec96714195c134f58b9", "score": "0.6912843", "text": "private void hideKeyboard(View view) {\n if (!(view instanceof EditText)) {\n view.setOnTouchListener(new View.OnTouchListener() {\n public boolean onTouch(View v, MotionEvent event) {\n ...
9e5ba0ac0c5faf6d9a782f0131d61b11
VDMTOOLS END Name=TestInserirObjeto VDMTOOLS START Name=TestEditarObjeto KEEP=NO
[ { "docid": "dc993ececc1b3e81295cf15aff3fd9fe", "score": "0.6872452", "text": "public void TestEditarObjeto () throws CGException {\n\n sentinel.entering(((DiagramaTesteSentinel) sentinel).TestEditarObjeto);\n try {\n\n Objeto obj = new Objeto(new String(\"nome1\"), geradorId(), new String(\"A...
[ { "docid": "9357741e9499a1eeebe5be03d0583dcc", "score": "0.6601311", "text": "public void TestInserirObjeto () throws CGException {\n\n sentinel.entering(((DiagramaTesteSentinel) sentinel).TestInserirObjeto);\n try {\n\n Objeto obj = new Objeto(new String(\"nome1\"), geradorId(), new String(\...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "e0ffa481c2e977cbc674722208edb426", "score": "0.0", "text": "public void doAfterCharsWritten(char[] charsWritten) {\n\t\t\n\t}", "title": "" } ]
[ { "docid": "81005989525ec80103fbaf46f9c37779", "score": "0.6694239", "text": "@Override\n\tpublic void agit() {\n\n\t}", "title": "" }, { "docid": "0b5b11f4251ace8b3d0f5ead186f7beb", "score": "0.65686274", "text": "@Override\n\tpublic void comer() {\n\t\t\n\t}", "title": "" }, ...
4122b166c7a80352fa0274073412e990
This method was generated by MyBatis Generator. This method corresponds to the database table events_transactions_history
[ { "docid": "199d8dc4626afdda29b40d25aace5c9b", "score": "0.56742334", "text": "List<EventsTransactionsHistory> selectByExample(EventsTransactionsHistoryExample example);", "title": "" } ]
[ { "docid": "59022fa5ef380187634d3852243dd9cd", "score": "0.59980285", "text": "public List<OrderDTO> getOrderHistoryOfTable(TableDTO dto);", "title": "" }, { "docid": "519f38e25f1d1185ecae0907949788fc", "score": "0.59730107", "text": "public LinkedList<Transaction> getHistory(){\n \t...
7f1c27f98ef2a495c5011bd02d28835b
Get the part of speech tags list used by the lexicon.
[ { "docid": "ebce92f68a8503a27c956c7cc945d46a", "score": "0.747505", "text": "public PartOfSpeechTags getPartOfSpeechTags();", "title": "" } ]
[ { "docid": "a515dc6367c9beb6a4cba0ca4efd8287", "score": "0.7173478", "text": "java.util.List<java.lang.String>\n getTagsList();", "title": "" }, { "docid": "a515dc6367c9beb6a4cba0ca4efd8287", "score": "0.7173478", "text": "java.util.List<java.lang.String>\n getTagsList(...
23c7a25b58ced1a4f5e3e3111343f01d
Repaints the canvas whenever the mouse is moved on the canvas.
[ { "docid": "ebfe79b134b83f93fc395fa8490eb62a", "score": "0.66141737", "text": "@Override\r\n public void mouseMoved(MouseEvent e) {\r\n repaint();\r\n }", "title": "" } ]
[ { "docid": "faa4d6a269474d4e34c8e4a5b9e4a276", "score": "0.7431932", "text": "public void mouseMoved(MouseEvent e) {\r\n Object src = e.getSource();\r\n if (src.equals(canvas)) {\r\n // get x window coordinate\r\n int x = (int)e.getX();\r\n int y = (int)e.g...
f73d52ccd9974449158df351316a5ff8
Get the current ammo that this weapon has
[ { "docid": "8812a4c96153306ba288f7454e37f189", "score": "0.8170258", "text": "public int getAmmo() {\n\t\treturn ammo;\n\t}", "title": "" } ]
[ { "docid": "e82353f0abc146f5d3cec204a4c54bd3", "score": "0.8197421", "text": "public int getAmmo()\n\t{\n\t\treturn ammo;\n\t}", "title": "" }, { "docid": "c10d38af2ffe0a641673f02bb905ef88", "score": "0.7505938", "text": "public int ammoCounter() {\n\t\treturn gun.getAmmo();\n\t}", ...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "ac639437e50d7da1f2d064bde92da948", "score": "0.0", "text": "public void save(Member member) {\n\t\tmemberDao.save(member);\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...
46f7ada49a7d51bf712c7716c7622e48
Method computes the asset allocation of each types of assets and returns them in decimal form stored in a HashMap.
[ { "docid": "7f2f13254b09c585f424e425f528bf91", "score": "0.80237615", "text": "public HashMap<Integer, Double> getAssetAllocation(ArrayList<Assets> assets){\n\t\tHashMap<Integer, Double> assetAllocation = new HashMap<Integer,Double>();\n\t\tdouble totalAssets = 0;\n\t\tfor(int i = 0; i < assets.size(); ...
[ { "docid": "2c11025140e44a3e264bba88826485f5", "score": "0.6490822", "text": "public HashMap<Integer,Double> assetGrowth() {\n\t\tArrayList<Assets> assets = new ArrayList<>(); //Arraylist that will store a copy of assets that we can change\n\t\tHashMap<Integer,Double> totalAssets = new HashMap<>(); //g...
a8a764b8b2b123f1655125ca3856b36f
Shows block id and metadata when player target it
[ { "docid": "89fd4d14848906cb69799cfde2c73e7f", "score": "0.56110424", "text": "@EventHandler\n\tpublic void onMove(PlayerMoveEvent event) {\n\t\tPlayer player = event.getPlayer();\n\t\tif (player.hasPermission(PermissionsUtils.USE_PERMISSION)) {\n\t\t\tItemStack itemInHand = event.getPlayer().getItemInH...
[ { "docid": "91182de580ece7a26494de53bfeef42a", "score": "0.6353344", "text": "public void onPlayerHarvestBlock(PlayerHarvestBlockEvent event) {}", "title": "" }, { "docid": "14d443fecdaf87ef9f4005f1491a2811", "score": "0.6308403", "text": "@Default\n @Permission(PERM_INFO)\n pu...
abe09b413875086ab412d6f079dadedd
checks if the user input string is wrong.
[ { "docid": "289d5a350f4540ec5e7e9292cea1df18", "score": "0.6435951", "text": "public void checkForInputErrors(String input) {\n boolean comma = false;\n String afterComma;\n char c;\n\n //check if string is empty\n if (input.isEmpty() == true) {\n sendErrorM...
[ { "docid": "5663c7063da52215cc5a686e0ebf6c2e", "score": "0.7116769", "text": "public static void checkInputError(String myString) throws DukeException {\n String[] userInputArray = Parser.userInputStringToArray(myString);\n\n if(userInputArray.length <= 1) {\n throw new DukeExce...
a64b4516b2a8ddf6620674602607cfff
Implement Hanoi using an explicit Run Time Stack rts Initially, there is one Frame [state,n,from,to] on rts (put there by itHanoi) When popping a frame: if n == 0 do nothing (discard frame) else if frame in state 0: Go into state 1 by pushing [1,n,from,to] and call hanoi(n1,from,via) by pushing [0,n1,from,via] else if ...
[ { "docid": "8b2ca7c67b5c38dca3fec7b960e4de92", "score": "0.8515756", "text": "private void rtsHanoi() throws StackException{\n\t \t// while rts not empty\n\t\twhile(!isEmpty()){\n\t\t\t// use ArrayList toString method to print rts\n\t\t\tif(debug)System.out.println(\"RTS: \" + rts);\n\t\t\t// put yo...
[ { "docid": "b3bb8888424fedc2ebde6a1eaacb089f", "score": "0.74919885", "text": "public void itHanoi(int n, int from, int to) throws StackException{\n\t\tFrame start = new Frame(n,from,to);\n\t\tinitRTS();\n\t\tpush(start);\n\t\trtsHanoi();\n\t}", "title": "" }, { "docid": "fbaca242270e75b9eab...
51fa0fbee474b627747c0d20d5604aff
string imei = 19;
[ { "docid": "c7fcf6fea70aac54aef776d6a4ec27be", "score": "0.0", "text": "@java.lang.Override\n public com.google.protobuf.ByteString\n getImeiBytes() {\n java.lang.Object ref = imei_;\n if (ref instanceof java.lang.String) {\n com.google.protobuf.ByteString b = \n co...
[ { "docid": "6e230d2a2e08562d3937eb3fd568deae", "score": "0.7428328", "text": "int mo4930i(String str);", "title": "" }, { "docid": "de2c8db9b406632668f27ddd1770a5a7", "score": "0.69184303", "text": "String mo5626a(int i);", "title": "" }, { "docid": "5d4628bbacf483b43b95a...
3f73afb1dde43c2c865f8215d2ed51af
normal iterative way to get CartesianProduct
[ { "docid": "2012ffb799a31690da8db711fde9c7fa", "score": "0.6765699", "text": "public <T> List<Set<T>> cartesianProduct(List<Set<T>> sets) {\r\n\t\tif (sets.size() < 2) {\r\n\t\t\t// we can either throw exception\r\n\t\t\t// Or, we can return the original input\r\n\r\n\t\t\tthrow new IllegalArgumentExcep...
[ { "docid": "321f7bfe68e4574a2fa43698cb8ed566", "score": "0.70140815", "text": "boolean isDoCartesianProduct();", "title": "" }, { "docid": "f2dc471597c5d02a69136124fb2d5858", "score": "0.65630704", "text": "public ArrayList<ArrayList<Object>> produceCartesianProduct(ArrayList<ArrayLi...
2cce17659a1466bc5bc2f4967b9303e1
Inflate the layout, initialize the View Holder
[ { "docid": "626a6a284cae2e22449d92ca9c2ea621", "score": "0.0", "text": "@Override\n public DiceSetSaverScrollViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {\n View v = LayoutInflater.from(parent.getContext()).inflate(R.layout.activity_dice_set_saver_recycler, parent, false);\n ...
[ { "docid": "311c71f61bbb8c84f1ab52886ca947eb", "score": "0.75598454", "text": "private void inflateView() {\n\n LayoutInflater inflater = (LayoutInflater) getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);\n inflater.inflate(layoutResId, this);\n onInflateView();\n\n ...
81212514226f68b7ce9367be79b102b7
Initializes the controller class.
[ { "docid": "88a60f14d4c92800bbfe5e07e321b524", "score": "0.0", "text": "@Override\r\n public void initialize(URL url, ResourceBundle rb) {\r\n date.setText(String.valueOf(formatter.format(todayDate)));\r\n try {\r\n loadTable();\r\n loadId();\r\n } catch (Cl...
[ { "docid": "7d66a58c53b5c95b26be5449465be288", "score": "0.79505724", "text": "private Controller() {\n initBoard();\n initMainCharacter();\n initEnemies();\n initRegs();\n manageBonusRewards();\n initPuns();\n }", "title": "" }, { "docid": "cc4ea...
faea357b433b83fec2f74908555732fa
This method will provide a FileWriter object for writing in files. If the override parameter is true, the content will be written at the end of the file. If false, the file will be written from scratch.
[ { "docid": "cb7b458e24153359d0667b7b207ff43d", "score": "0.7802535", "text": "public FileWriter fileWrite(String path, boolean override) {\n\t\tFileWriter result = null;\n\t\ttry {\n\t\t\tresult = (new FileWriter(new File(path), override));\n\t\t} catch (IOException e) {\n\t\t\te.printStackTrace();\n\t\...
[ { "docid": "3a748a420e915f8a065acd682f95821e", "score": "0.61394453", "text": "public static void fileWrite() { // todo imast uni filewriter-i jk bufferwriter ogtagorcel?\n try {\n FileWriter writer = new FileWriter(\"abc.txt\");\n writer.write(\"File write\");\n ...
7040b65a5ccb923b11b8db83123dde45
B U S I N E S S M E T H O D S P E R S I S T E N C E M E T H O D S
[ { "docid": "761a23f72f307a4781ca5b4b8d9c22ba", "score": "0.0", "text": "com.spirit.crm.entity.ClienteWebIf addClienteWeb(com.spirit.crm.entity.ClienteWebIf model) throws GenericBusinessException;", "title": "" } ]
[ { "docid": "5591787d26f0e961a939a498b4ca230e", "score": "0.5131709", "text": "private static java.lang.String c(java.lang.String r7) {\n /*\n r1 = new java.io.FileInputStream;\t Catch:{ Exception -> 0x0048 }\n r1.<init>(r7);\t Catch:{ Exception -> 0x0048 }\n r2 = new java.io....
1bf89447b80ec86ff401a389c9f91f7d
/ access modifiers changed from: protected
[ { "docid": "4eaa6822a06b6e00a9cc56ba68a76b8c", "score": "0.0", "text": "public void wrapObserver() {\n if (this.mDataSetObserver != null && this.mIsSupportAnim) {\n this.mAdapter.unregisterDataSetObserver(this.mDataSetObserver);\n this.mDataSetObserver = new AnimateAdapterDa...
[ { "docid": "0c69424878be03e50f19e2ca61ef640b", "score": "0.7095287", "text": "@Override\r\n\tpublic void leggi() {\n\t\t\r\n\t}", "title": "" }, { "docid": "eaeafae753257c4f617a400374c698f3", "score": "0.70800626", "text": "protected void s() {}", "title": "" }, { "docid"...
6255d46cc53d3f459a247c09854faaff
Std Signature : S(delete,466,,P(d142)) TE Signature : S(delete,P(d142))
[ { "docid": "50fec150908c8ad3a84a4e736b59c6c9", "score": "0.0", "text": "public native IDBRequest delete(IDBKeyRange key);", "title": "" } ]
[ { "docid": "4177e4917fc53e507ae42ca625ada121", "score": "0.6559231", "text": "public void beforeDelete0X53( )\n {\n }", "title": "" }, { "docid": "88b9d07554c1d17da0f64ae673072039", "score": "0.6440063", "text": "public void beforeDelete0Z36( )\n {\n }", "title": "" }, ...
e5b35cbf06e59e7f13c9bc7ca0818efd
Get a member based on the member name.
[ { "docid": "555a4144ecaf3b44274bc9b4521fc47c", "score": "0.7273861", "text": "public JsonMemberMap getMember( String theMemberName ) {\n\t\tPreconditions.checkArgument( !Strings.isNullOrEmpty( theMemberName ), \"need a member name to get a member\" );\n\t\treturn members.get( theMemberName );\n\t}", ...
[ { "docid": "1872d666a47cc2172559cad92a3b1ba6", "score": "0.7399435", "text": "default DistributedMember getMember(final String memberName) {\n DistributedMember member = findMember(memberName);\n\n if (member == null) {\n throw new EntityNotFoundException(\n CliStrings.format(CliStri...
03d3862a22ded7441c1900e9bd901c64
Get the icon file path
[ { "docid": "24f83885a22d8ca071b659bb3c472505", "score": "0.8234644", "text": "public File getIconFilePath() {\n return iconFilePath;\n }", "title": "" } ]
[ { "docid": "3ded50fe1d0026cfef0d40b8b7940d64", "score": "0.8029278", "text": "public String getIconPath() {\r\n\t\treturn this.iconPath;\r\n\t}", "title": "" }, { "docid": "1d4f1be41fa8a25b07e032e9cffbc6b2", "score": "0.7666618", "text": "public ImageIcon getFileIcon()\n {\n ...
781c627d22a01869f27b9520aad28871
Positive test case for getAllTimeEntries method with optional parameters.
[ { "docid": "ba4e40e28f29381012a6b7872ea8620e", "score": "0.8110414", "text": "@Test(description = \"teamwork {getAllTimeEntries} integration test with optional parameter.\")\n public void testGetAllTimeEntriesWithOptionalParameters() throws IOException, JSONException {\n\n String methodName = ...
[ { "docid": "1f1d64d9b9f6a895a64cb208225eece5", "score": "0.7516856", "text": "@Test(description = \"teamwork {getAllTimeEntries} integration test with mandatory parameter.\")\n public void testGetAllTimeEntriesWithMandatoryParameters() throws IOException, JSONException {\n\n String methodName ...
1c2916845c890a75aae8c150012fc377
Creates a named class loader as a child of the specified parents.
[ { "docid": "d9865f6f08e6cce71cf5e0ef80fc11bf", "score": "0.6368683", "text": "public InternalClassLoader(String name, URL[] urls, ClassLoader parent, ClassLoader ancestor)\n {\n super(name, urls, parent);\n this.parent = parent;\n this.ancestor = ancestor;\n ...
[ { "docid": "426f7584302d4e68e43c06e7138ff851", "score": "0.6220473", "text": "public InternalClassLoader(String name, URL[] urls, ClassLoader parent, ClassLoader ancestor, URLStreamHandlerFactory factory)\n {\n super(name, urls, parent, factory);\n this.parent = parent;\n ...
3d50a7cdba97ae174c204d355cdab3b0
Return the override state of the controller
[ { "docid": "5c95b802f1cbd0640806894f902f54e6", "score": "0.527822", "text": "public boolean isOverridden() {\n return mIsOverridden;\n }", "title": "" } ]
[ { "docid": "8f60fcbee07a725c48adbfddf3643b2e", "score": "0.59890735", "text": "State getRedefinedState();", "title": "" }, { "docid": "1ab54994fb62ff09f4b9c8ecdc28cf28", "score": "0.5757832", "text": "public abstract void defaultStateOperation();", "title": "" }, { "docid...
2f7eebbea35ac206c02d1bd89ed2c502
A scope with the shape of a tree branch following the rules: the first node with depth 0 will have all of its children visited any node above the root node that fits in the path array will be matched only if the node name matches the corresponding value in the path array. The last node whose depth is equals to the path...
[ { "docid": "429c5af6bd874ce0263b089c5d59dfa7", "score": "0.6557644", "text": "public static Scope branchShape(final List<String> path, Scope federated) throws NullPointerException\n {\n if (path == null)\n {\n throw new NullPointerException(\"No null path accepted\");\n }\n ...
[ { "docid": "5b6a67ccb774f801dbb1e9a10e221925", "score": "0.5520069", "text": "public Branch(Scope federated) throws NullPointerException\n {\n if (federated == null)\n {\n throw new NullPointerException(\"no null federated scope accepted\");\n }\n\n //\n ...
9b6c7318cd4a0a8ebf4de34fda70c32d
optional string i_fk = 6;
[ { "docid": "9cdbf4d2a7bdf351fe3c9b8e2b29a77d", "score": "0.0", "text": "public java.lang.String getIFk() {\n java.lang.Object ref = iFk_;\n if (ref instanceof java.lang.String) {\n return (java.lang.String) ref;\n } else {\n com.google.protobuf.ByteString bs = \n ...
[ { "docid": "2854f50f98d450e5d67b251d9008a574", "score": "0.67738074", "text": "java.lang.String getFk();", "title": "" }, { "docid": "2854f50f98d450e5d67b251d9008a574", "score": "0.6773148", "text": "java.lang.String getFk();", "title": "" }, { "docid": "2854f50f98d450e5d...
4e5d39b1f05ef11d6ea5f716be8bc214
Set a feature selected state with the ability to scroll the RecycleViewer to the provided index.
[ { "docid": "70a2ea45f2b456f1c509e844a69c9c21", "score": "0.7991262", "text": "private void setSelected(int index, boolean withScroll) {\n if (recyclerView.getVisibility() == View.GONE) {\n recyclerView.setVisibility(View.VISIBLE);\n }\n\n deselectAll(false);\n\n Fe...
[ { "docid": "a783fb20ea49e0f9c9159dd3d5ac654b", "score": "0.6823545", "text": "public void setSelection(int index) {\n\tcheckWidget();\n\tint count = items.length;\n\tif (!(0 <= index && index < count)) return;\n\tsetSelection(index, false);\n}", "title": "" }, { "docid": "e179eb682ce7f2b441e...
bd40e1d6ec5fc24fcb6d2d8c670816a4
Gets the value of the 'field275' field. doc for field275
[ { "docid": "7f6cd1fc365de54b52f9e1801ce73cdf", "score": "0.7703771", "text": "public java.lang.CharSequence getField275() {\n return field275;\n }", "title": "" } ]
[ { "docid": "9f30071ef0b66ec497a06884198b1988", "score": "0.7627625", "text": "public java.lang.CharSequence getField275() {\n return field275;\n }", "title": "" }, { "docid": "2de8c04add6119ee42ad2f10ead78839", "score": "0.71006805", "text": "public java.lang.CharSequence get...
3728fe430d52f20af705185ff3b2fd53
A UtamArgument object should throw the appropriate exception when the argument is not an object
[ { "docid": "805c05b4fcf6eec3796ac7387e2a8396", "score": "0.5171439", "text": "@Test\n public void testArgsStringArrayThrows() {\n String json =\n \"{\"\n + \" \\\"name\\\" : \\\"testParameterMethod\\\",\\n\"\n + \" \\\"args\\\" : [\\n\"\n + \" \\\"attrNam...
[ { "docid": "888e7c08e301a96f0bad777de6cb9e46", "score": "0.6543337", "text": "private void checkArg(Countable args) {\n if(args ==null)\n throw new NullPointerException();\n if (this.getClass() != args.getClass())\n throw new IllegalArgumentException();\n }", "...
f7e933b41f32b7476f1b68afd19009d9
optional uint32 ark = 3;
[ { "docid": "5986f2ad1523860dfa8759f361935c70", "score": "0.5771487", "text": "@java.lang.Override\n public int getArk() {\n return ark_;\n }", "title": "" } ]
[ { "docid": "00ac30008d08c5a107c71fea65ffc10c", "score": "0.5879636", "text": "int getArk();", "title": "" }, { "docid": "00ac30008d08c5a107c71fea65ffc10c", "score": "0.5879636", "text": "int getArk();", "title": "" }, { "docid": "00ac30008d08c5a107c71fea65ffc10c", "sc...
a7493eff0321f861d202f009f1b35087
/ Sets the input file
[ { "docid": "c67e07ad17f18dc9fff4536c2c732e3a", "score": "0.0", "text": "public void setImportSession(ImportSession importSession);", "title": "" } ]
[ { "docid": "010f22bdd923deea1b633f5ea7243968", "score": "0.76461077", "text": "public void setInputFile(String inputFile)\r\n\t{\r\n\t\tm_inputFile = inputFile;\r\n\t}", "title": "" }, { "docid": "761f1318de7af94d331b35b577a66bcf", "score": "0.73527324", "text": "public void initiali...
6a9a893cec3a8f744bc9a3144d93b464
Get a compiler generated position.
[ { "docid": "19766f2dcf2196bc95c7e24aa68cd497", "score": "0.7933109", "text": "public static Position compilerGenerated() {\n return compilerGenerated(2);\n }", "title": "" } ]
[ { "docid": "047f521f369b72635f6f8b0f9d4f20e6", "score": "0.6972911", "text": "public int position() {\n return codeBuffer.position();\n }", "title": "" }, { "docid": "e12f48d8db19891dc98262b3b1f90d98", "score": "0.6955638", "text": "public static Position compilerGenerated(...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "139c8dba82f48c35e639a0f061114cc8", "score": "0.0", "text": "@Override\n\tpublic User createUser(User user) {\n\t\tUser result = null;\n\t\tif (user != null) {\n\t\t\t// 加密密码\n\t\t\tString hash = encoder.encode(user.getPassword());\n\t\t\tuser.setPassword(hash);\n\t\t\tuser.setAvatar(NginxUti...
[ { "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...
4ce1db8a3d6d989420c6f271071e9d3f
Test case number: 1 / 91 covered goals: Goal 1. org.apache.commons.math3.distribution.HypergeometricDistribution.getSampleSize()I: rootBranch Goal 2. org.apache.commons.math3.distribution.HypergeometricDistribution.getPopulationSize()I: rootBranch Goal 3. org.apache.commons.math3.distribution.HypergeometricDistribution...
[ { "docid": "063311ebbd6daf84751f23aeaf8ad935", "score": "0.668843", "text": "@Test\n public void test01() throws Throwable {\n HypergeometricDistribution hypergeometricDistribution0 = new HypergeometricDistribution(994, 994, 994);\n int int0 = hypergeometricDistribution0.getSupportLowerBoun...
[ { "docid": "fed470c7e7ec4f6ae5621ce9ab0626d3", "score": "0.7322985", "text": "@Test\n public void test29() throws Throwable {\n HypergeometricDistribution hypergeometricDistribution0 = null;\n try {\n hypergeometricDistribution0 = new HypergeometricDistribution(946, 1436, 590);\n ...
2caa1a5b8d5d1bb7820c4f5183f58f6b
reverse the entire string
[ { "docid": "74f82083229176cb8882d0ce2ccc6df4", "score": "0.64597076", "text": "private static String betterReverse(String s) {\n\t\tchar[] sArr = s.toCharArray();\n\t\tint i = 0, j=sArr.length-1; \n\t\t\t\t\n\t\twhile (i <=j ) {\n\t\t\tchar tmp = sArr[i];\n\t\t\tsArr[i]=sArr[j];\n\t\t\tsArr[j]=tmp;\n\t\...
[ { "docid": "46a1c7ef52b026b061d645c70ee526a6", "score": "0.74344784", "text": "private static String reverse(String str) {\r\n\t\tStringBuffer sb = new StringBuffer(str);\r\n\t\treturn sb.reverse().toString();\r\n\t}", "title": "" }, { "docid": "9befb5a4328cd07ba0b53ce827aa9040", "score"...
1937a18e07575a6670fd34d4cea12c78
Display the first 500 characters of the response string.
[ { "docid": "c81a7a98a1a074a9c216795f053e0b2a", "score": "0.0", "text": "@Override\n public void onResponse(String response) {\n System.out.println(\"IN STRING REQUEST GET RESPONSE\");\n String apiText = response.toString();\n ...
[ { "docid": "49f8b53a52cc82eb77df8cf94ca33f03", "score": "0.64063627", "text": "@Override\n public void onResponse(String response) {\n txt.setText(\"Response is: \" + response.substring(0, 500));\n }", "title": "" }, { ...
bdf891b3f4d5020808bbaabcfcabf908
Get all the intervenants.
[ { "docid": "eccea80bfb20eff6797a54b172ec2e70", "score": "0.78417754", "text": "@Override\n @Transactional(readOnly = true)\n public List<Intervenant> findAll() {\n log.debug(\"Request to get all Intervenants\");\n return intervenantRepository.findAll();\n }", "title": "" } ]
[ { "docid": "b5a7b94c667811ddf03f585067c2dccd", "score": "0.60794514", "text": "public ArrayList<GameContinent> getAllContinents() {\n return new ArrayList<GameContinent>(this.continentHashMap.values());\n }", "title": "" }, { "docid": "06439193ad3c6181f40f8f1ca8fdea36", "score"...
d751d331e4ce16d9cd53c77a37e3eea7
As both InterfaceParentBV8 and InterfaceParentCV8 have "default String getName()", this InterfaceChildBV8 must implement its own "default String getName()" to solve confusion! Otherwise, not compile.
[ { "docid": "a8244e6f08d71c8ef9b7be157444f6ec", "score": "0.8460591", "text": "default String getName(){\n\t\t// If want to refer to super one.\n\t\treturn InterfaceParentCV8.super.getName() + InterfaceParentDV8.super.getName();\n\t\t// If ignore super one.\n\t\t// return \"InterfaceChildBV8\";\n\t}", ...
[ { "docid": "99470cdf75dd8e67518e29900d93e172", "score": "0.63955724", "text": "@Override\n\tpublic abstract String getName();", "title": "" }, { "docid": "cde78bbadb4efd781f049f0209dc58d5", "score": "0.6371816", "text": "@Override\n protected String[] childrenNamesSpi() {\n ...
9ab0360b355213c769489488f15d8fe5
$ANTLR end "rule__XExpressionInClosure__Group_1__1__Impl" $ANTLR start "rule__XShortClosure__Group__0" ../org.sqlproc.model.ui/srcgen/org/sqlproc/model/ui/contentassist/antlr/internal/InternalProcessorModel.g:32606:1: rule__XShortClosure__Group__0 : rule__XShortClosure__Group__0__Impl rule__XShortClosure__Group__1 ;
[ { "docid": "c6692f65008ed5e0b016cd16fbf89bea", "score": "0.82707614", "text": "public final void rule__XShortClosure__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.sqlproc.model.ui/src-gen/org/sqlproc/model/ui...
[ { "docid": "66df88206fe76273217ec6f9dbe6b99e", "score": "0.8437827", "text": "public final void rule__XShortClosure__Group_0_0__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.sqlproc.model.ui/src-gen/org/sqlproc...
cc7c4dcc71cd0006a218588a3977ad70
Called by the recovery manager when logging a transaction aware object. This method is synchronized by the caller, by being called within the log latch. Record the last LSN for this transaction, to create the transaction chain, and also record the LSN in the write info for abort logic.
[ { "docid": "63565d12b94ba787421a36d7d854b799", "score": "0.6551882", "text": "public void addLogInfo(long lastLsn)\n throws DatabaseException {\n\n /* Save the last LSN for maintaining the transaction LSN chain. */\n lastLoggedLsn = lastLsn;\n\n /* Save handle to LSN for abo...
[ { "docid": "023bcf8de18149cc1627258b63457326", "score": "0.6201383", "text": "public Txn() {\n lastLoggedLsn = DbLsn.NULL_LSN;\n }", "title": "" }, { "docid": "65222d5ba51cfa6ebaf5e4aeaa1b5b5d", "score": "0.58038574", "text": "public long logRollback(TransactionMetaData tm)...
edca17379593caba3d10b34b9fefebcf
.google.protobuf.UInt32Value timeOutType = 6;
[ { "docid": "093d93f3b7796ca6e1041b757714abbd", "score": "0.0", "text": "public boolean hasTimeOutType() {\n return timeOutType_ != null;\n }", "title": "" } ]
[ { "docid": "355dec0195e68beec5b824f5e3b08793", "score": "0.7132121", "text": "public com.google.protobuf.UInt32ValueOrBuilder getTimeOutTypeOrBuilder() {\n return getTimeOutType();\n }", "title": "" }, { "docid": "55d097312e28eb554cca8844c54d0063", "score": "0.66763455", "text": ...
8c13ffafff4216d7568fffe83c4d07f1
/ 69: / 70:
[ { "docid": "7f72e69b6127e29513335c10fc2309f5", "score": "0.0", "text": "public Map<String, MultipartFile> getFileMap()\r\n/* 71: */ {\r\n/* 72: 95 */ return getMultipartFiles().toSingleValueMap();\r\n/* 73: */ }", "title": "" } ]
[ { "docid": "2762ca3c2d0df2e43c2974f74b6f5794", "score": "0.6405356", "text": "public void mo23507LF() {\n }", "title": "" }, { "docid": "e19cd6c93b6b99ee3210b769bede51b0", "score": "0.62748015", "text": "public void mo4866n() {\n }", "title": "" }, { ...
a66e20ea12dd41cdcae0acaa720f1bab
Removes bird at the right end of the "V" formation (last)
[ { "docid": "3a6fdce6f58de184e3d5220e29298313", "score": "0.61378795", "text": "private Bird removeRightEnd()\n {\n if(size() == 0)\n return null;\n Bird rightBird = rightEnd.getValue();\n if(size() == 1)\n leftEnd = rightEnd = null;\n else{\n rightEnd = rightEnd.getPrev...
[ { "docid": "8e1ab4cc38c855379fe5a2f658cb4b28", "score": "0.56535834", "text": "private void deleteLastCharacter() {\n try {\n mainExpression = mainExpression.substring(0, mainExpression.length() - 1);\n viewer.update(mainExpression);\n } catch (StringIndexOutOfBoundsE...
13082fbdc51ad7ce6d7d7a23e6b61af2
Load device info, load property info.
[ { "docid": "adf97a362f5803635e03faebd89cd33a", "score": "0.5326683", "text": "private static void init(String path){\n\t\tdevices = SwaterDevice.loadDeviceInfo(path);\n\t\tproperty = SwaterProperty.loadProperties();\n\t\tfor(DataDevice device: devices){\n\t\t\tGlobal.IMEIS.put(device.getDtuID(), device....
[ { "docid": "3019bb4b80e20e4578f14f3601761334", "score": "0.6454293", "text": "private void initDeviceInfo() {\n\t\tPhoneManager pm = PhoneManager.getPhoneManage(this);\n\t\tString brand = pm.getPhoneName1();\n\t\ttv_device.setText(brand);\n\t\tString version = pm.getPhoneSystemVersion();\n\t\ttv_version...
518bf5364cda3c6202a1a392996f93d1
Inflate the menu; this adds items to the action bar if it is present.
[ { "docid": "fec76c40228664328aef22d2120faef3", "score": "0.0", "text": "@Override\n public boolean onCreateOptionsMenu(Menu menu) {\n getMenuInflater().inflate(R.menu.menu_task_list, menu);\n return true;\n }", "title": "" } ]
[ { "docid": "336240563eed6d025065f97a46803a2c", "score": "0.7246102", "text": "@Override\n public boolean onCreateOptionsMenu(Menu menu) {\n \tMenuInflater inflater = getMenuInflater();\n \tinflater.inflate(R.menu.main_activity_actions, menu);\n \treturn super.onCreateOptionsMenu(menu);\n ...
600cd0ac216b38692d83cbc3e0cf1c73
Object needed for report generation This method ignores sources, though we could hook source dirs in at this point
[ { "docid": "d308c1ad3be7f4636135e21a5ba51691", "score": "0.0", "text": "public static String getCoverageReportFromCoverageObject(ProjectData pd)\n\t\t\tthrows IOException {\n\t\tFileFinder sources = new FileFinder();\n\n\t\t// Need an output stream for Cobertura to use in-memory\n\t\tByteArrayOutputStre...
[ { "docid": "5efd9efa346af8ed6c10cd8d475731a8", "score": "0.63358504", "text": "protected void generateCustomReport() {\n\n\t}", "title": "" }, { "docid": "15b6351295a56a21b95e1d555fe3e90b", "score": "0.62116045", "text": "public SourcesUsed() {\n }", "title": "" }, { "...
5df47928e3cf79be3027a6fa9ebb7223
Parameterless constructor uses the Esri world geocoding service.
[ { "docid": "1d2b423931fd2bfd8b7a109c0bfa335a", "score": "0.0", "text": "private void setupLocator() {\n mLocator = Locator.createOnlineLocator();\n\n // Set up the outFields parameter for the search.\n mFindOutFields.add(getResources().getString(R.string.result_title));\n mFi...
[ { "docid": "fac43321778d820c1c5445bdf137605e", "score": "0.6860436", "text": "public City (String n) {\n name = n;\n indexPos = cityCount;\n cityCount++;\n try {\n Geocoder geocoder = new Geocoder();\n GeocodeResponse geocodeResponse;\n String addr;\n double lat;\...
d54d87aeb573009d8f05254d9a63e6bd
Processes requests for both HTTP GET and POST methods.
[ { "docid": "fdcdbf14bb6354f3cdfcceac094080f3", "score": "0.0", "text": "protected void processRequest(HttpServletRequest request, HttpServletResponse response)\r\n throws ServletException, IOException {\r\n response.setContentType(\"text/html;charset=UTF-8\");\r\n\r\n StringBuff...
[ { "docid": "d74c6e9d00c3fbc385a238e280b85a6f", "score": "0.72003925", "text": "@Override\n\tpublic void process(HttpServletRequest rq, HttpServletResponse rs) throws ServletException, IOException {\n\t\tString method = rq.getMethod();\n\n\t\tswitch (method) {\n\t\tcase \"GET\":\n\t\t\thandleGet(rq, rs);...
322d6e8ab168821c824a02d0a1696ae6
Returns true if stack contains no elements.
[ { "docid": "36622bf1f7be140987d4c4524b005b97", "score": "0.0", "text": "public boolean isEmpty() {\n\t\treturn array.isEmpty();\n\t}", "title": "" } ]
[ { "docid": "7b6559e0d67e7359207c32cb219a09d9", "score": "0.89418113", "text": "public boolean hasEmptyStack() {\n return stack.isEmpty();\n }", "title": "" }, { "docid": "b81a2ed7885d3c3f918ca2424d2d0770", "score": "0.8894937", "text": "public boolean isStackEmpty() {\n re...
520346213fc01d7f6240f87bf1c9dd5f
This Method returns a List of WorkerDTO objects.
[ { "docid": "6125a82d44b068548e46462500057c40", "score": "0.8075002", "text": "List<IWorkerDTO> getWorkerList () throws DALException;", "title": "" } ]
[ { "docid": "2619e9f03ab059f415088f2cc7b04176", "score": "0.79706055", "text": "@RequestMapping(method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE)\n public final Collection<WorkerDTO> getWorkers(){\n\t\tLOG.debug(\"REST call - get all workers\");\n\t\treturn workerFacade.getAllWo...
4251adcccd7646c340d3829108cd21eb
Simply selects the home view to render by returning its name.
[ { "docid": "102f092739454c22be10346e816b6d95", "score": "0.0", "text": "@RequestMapping(value = \"/\", method = RequestMethod.GET)\n\tpublic String home(Locale locale, Model model) {\n\t\t\n\t\tlogger.info(\"Welcome home! The client locale is {}.\", locale);\n\t\t\n\t\tDate date = new Date();\n\t\tDateF...
[ { "docid": "250b0fb69f7bb0bbab1ce6c63d568346", "score": "0.66037333", "text": "void backToHomePage(String name);", "title": "" }, { "docid": "29490123b45341ac070e9ccc6b6cf801", "score": "0.6487983", "text": "@RequestMapping(value = \"/\", method = RequestMethod.GET)\n\tpublic String ...
1b0db9a86fbc30535f4932272842fb48
/ renamed from: a
[ { "docid": "67c7c4543378a747b7e7283b34a53346", "score": "0.0", "text": "public void mo19333a(C3480a0 a0Var, C3480a0 a0Var2) {\n C3487c.this.mo19321a(a0Var, a0Var2);\n }", "title": "" } ]
[ { "docid": "ae4048f417bf94dfd212d61cfae413ce", "score": "0.61427313", "text": "public interface C25752e {\n /* renamed from: a */\n void mo66812a();\n }", "title": "" }, { "docid": "6970f3058f2856f3c7f6df66714797c7", "score": "0.611846", "text": "public void func_152...
a3f06f0ac3371a8f61eda32b8c8e5feb
Returns the last (highest) element currently in this set.
[ { "docid": "cd66c6daa932571fe933b2dac1c9cdf5", "score": "0.0", "text": "@Override\n public E last() {\n return (E)finish.value;\n }", "title": "" } ]
[ { "docid": "771bcbc5b18ee3089928b6fda7c9310a", "score": "0.8179767", "text": "public R last() {\n assertSize().isGreaterThan(0);\n List<R> list = get();\n return list.get(list.size() - 1);\n }", "title": "" }, { "docid": "d22f879f26dab76d926bcd8514bfa8a3", "score"...
44a6adbc8f903c8ffd22f18b1684182c
Returns a set view of the keys contained in this map. The set is backed by the map, so changes to the map are reflected in the set, and viceversa. The set supports element removal, which removes the corresponding mapping from this map, via the Iterator.remove, Set.remove, removeAll, retainAll, and clear operations. It ...
[ { "docid": "8aeb7cbaabc2f7923024e7bf41dbdca7", "score": "0.7981467", "text": "@Override\n public Set<Integer> keySet() {\n final Set<Integer> ks = this.keySet;\n return ks != null ? ks : (this.keySet = new KeySet());\n }", "title": "" } ]
[ { "docid": "58192d039b86f5c90a8f5e0679b9d334", "score": "0.8331605", "text": "public Set keySet() {\n\t\treturn map.keySet();\n\t}", "title": "" }, { "docid": "e5b82334b900943ec4da5f6ec2deaeaf", "score": "0.8269886", "text": "public Set<K> keySet() {\n\t\treturn map.keySet();\n\t}", ...
495de6a9384804e230023a4a1f92e9a8
Looks for a requested user among the registered users.
[ { "docid": "2e609cc349ca2b6c579efc9c5d7c7796", "score": "0.0", "text": "public synchronized User findUser(User dummyUser) {\r\n User foundUser = null;\r\n if (userNameAvailable(dummyUser.getUsername())) {\r\n return null;\r\n } else {\r\n foundUser = getUserFro...
[ { "docid": "eddebe4c8c8f57b255513fb9f801757d", "score": "0.6224125", "text": "private User findUser(String username) {\r\n User user = null;\r\n \r\n Iterator<User> itr = this.users.iterator(); \r\n while(itr.hasNext() && user == null) {\r\n User u = itr.next(...
dbeb1ac29e8df00ba90bf9747c74ac15
/ JADX WARNING: Removed duplicated region for block: B:25:0x0081 / Code decompiled incorrectly, please refer to instructions dump.
[ { "docid": "38b0ed93ab7e11e62050d66b6bed9770", "score": "0.0", "text": "public final int bD(List<a> list) {\n h hVar;\n Exception e;\n long j = -1;\n AppMethodBeat.i(73611);\n if (list.size() <= 0) {\n AppMethodBeat.o(73611);\n return 0;\n ...
[ { "docid": "ce1231e5de8a5b5a6754d732a922228b", "score": "0.6088946", "text": "protected void h()\r\n/* 67: */ {\r\n/* 68:103 */ super.h();\r\n/* 69: */ \r\n/* 70:105 */ this.J.retainAll(this.E);\r\n/* 71:106 */ if (this.J.size() == this.E.size()) {\r\n/* 72:107 */ thi...
0f3601ec48e7fc9b1a8d89a4e0f7bacf
Mutator for setting the player's gold count
[ { "docid": "f5b3a6e1dd16979793b4e0a472212e42", "score": "0.71002644", "text": "public void setGoldCount(JLabel gold_count) {\n\t\tthis.gold_count = gold_count;\n\t}", "title": "" } ]
[ { "docid": "da6be0a57fceca0f6e628accb1fff3cb", "score": "0.6982524", "text": "public void addGold(int g){\n this.gold += g;\n }", "title": "" }, { "docid": "be5bb56bb577cdb1f2c1e8e683258164", "score": "0.675757", "text": "public int getGold(){\n return this.gold;\n ...
dd4c419aed7d1e362bb1f8e9f9d31821
Gets customer id text field.
[ { "docid": "8a471f53337b965ec911bb64d642c8fc", "score": "0.8376737", "text": "public TextField getCustomerIDTextField() {\n return customerIDTextField;\n }", "title": "" } ]
[ { "docid": "805a88e99107ae025ad945ff2241157b", "score": "0.7939151", "text": "private void CustomerID() {\n try {\n String customerId;\n customerId = IDGenerator.getNewID(\"Customer\", \"customerID\", \"C\");\n txtCustomerId.setText(customerId);\n } catch (S...
08984967fbc59665ec810e1e7bbfc2cb
/ renamed from: e
[ { "docid": "e9b1ff73436079f683b57128b2b41cee", "score": "0.0", "text": "public void mo108940e(SH sh) {\n }", "title": "" } ]
[ { "docid": "3ca752f7b33a4f7bda8fdf76f89fb905", "score": "0.6604645", "text": "public void e() {\n }", "title": "" }, { "docid": "b109fef5f53ecce27d70b88af98e37d6", "score": "0.64841896", "text": "@Override\n\tpublic void visit(Enemigo e) {\n\n\t}", "title": "" }, { "do...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "db416d48798801753eae28fcb27645c2", "score": "0.0", "text": "@Override\n\t\t\tpublic void onReceive(Context context, Intent intent) {\n\t\t\t\tBaseFragment.this.onReceive(intent.getAction());\n\t\t\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": "" }, { ...
518bf5364cda3c6202a1a392996f93d1
Inflate the menu; this adds items to the action bar if it is present.
[ { "docid": "b503fc7fa1f36527045b729accf7ab38", "score": "0.0", "text": "@Override\n public boolean onCreateOptionsMenu(Menu menu) {\n getMenuInflater().inflate(R.menu.menu_main, menu);\n return true;\n }", "title": "" } ]
[ { "docid": "9813d71a4b724b9d132f23a2cb80322c", "score": "0.7081741", "text": "@Override\n\tpublic boolean onCreateOptionsMenu(Menu menu) {\n\t\tMenuInflater inflater = getMenuInflater();\n\t\tinflater.inflate(R.menu.main_activity_actions, menu);\n\t\treturn super.onCreateOptionsMenu(menu);\n\t}", "t...
a2df00de92a2a07c4368af9e013c449b
millisUntilFinished The amount of time until finished.
[ { "docid": "d007ce0214424ba5c9f45f053bb12fae", "score": "0.57365566", "text": "public void onTick(long millisUntilFinished) {\n }", "title": "" } ]
[ { "docid": "8017e4a25499d25d57f57c331e3834f8", "score": "0.6421647", "text": "long getFinishedCount();", "title": "" }, { "docid": "28b6ae9adf7fd87b434a35eb86203148", "score": "0.61867034", "text": "public void onFinished(float pTimeLeftover);", "title": "" }, { "docid": ...
95f3afa9265ce25a60d018bde8b0d539
Return the content of the specified file as an array of byte.
[ { "docid": "9d2e5786afbf8c0bdf7677ea859882f4", "score": "0.0", "text": "public static byte[] getBytesFromFile(String filename,\n List<String> directories, boolean cachedOnly, boolean ignoreFail)\n {\n InputStream is = getInputStream(filename, directories, server != null,\n ca...
[ { "docid": "48ea4110223de9a040db9c9ae926b4c2", "score": "0.77324", "text": "public static byte[] getFileContentAsByteArray(String fileName) {\n\n\t\tByteArrayOutputStream buf = null;\n\n\t\ttry (BufferedInputStream bis = new BufferedInputStream(new FileInputStream(fileName))) {\n\n\t\t\tbuf = new ByteAr...
15180029f7920bed5f331d2108095c40
Test whether this simple type is namespacesensitive, that is, whether it is derived from xs:QName or xs:NOTATION
[ { "docid": "c7f5dfa82b5be9ad9c411357a882cada", "score": "0.60747224", "text": "public boolean isNamespaceSensitive() {\n return false;\n }", "title": "" } ]
[ { "docid": "10cbe8517e2f210be3454cd773590144", "score": "0.67173314", "text": "@Override\n public boolean isInternalNamespace(String namespace) {\n return true;\n }", "title": "" }, { "docid": "684d443a8e22a2822bd560cbe32e43c4", "score": "0.6514045", "text": "public fina...
f68fa5b893cb8303f62434f7bbca6ef9
Classify the glossary term to indicate that it describes an abstract concept.
[ { "docid": "e8f5016acb4a402d7a8776f631b54049", "score": "0.5008133", "text": "public void setTermAsAbstractConcept(String userId,\n MetadataCorrelationProperties correlationProperties,\n String ...
[ { "docid": "472625d7e74fccd92b79d7ac76f4e44b", "score": "0.63648784", "text": "public interface Concept {\n public static final int TYPE_TERM=1;\n public static final int TYPE_PHRASE=2;\n public static final int TYPE_TOKEN=3;\n\n /**\n * Return 1 for ontological term, 2 for multiword phr...
484b48c7357de167f00b700ad4cc3be8
this is used to iterate settings of this group
[ { "docid": "776ba4f3325fee02991ae2bb333ea0b3", "score": "0.0", "text": "public @Nullable Settings.Setting getSetting(int index) {\n return index >= 0 && index < settings.length ? settings[index] : null;\n }", "title": "" } ]
[ { "docid": "3f65b7501edaa60d7f7376d7c23c7d7c", "score": "0.6749796", "text": "public Iterator list() {\n return settings.keySet().iterator();\n }", "title": "" }, { "docid": "290515a9db6c797bd31350b43dfc2119", "score": "0.5732747", "text": "private void addSettingsItems()\n...
9cb8e936b4fa7d620b5f6690e86872d5
Indicates that this builder can be used with all kinds of project types
[ { "docid": "6094ad49b1a0f0bf3cd3e5229f3a205b", "score": "0.57611614", "text": "@SuppressWarnings(\"rawtypes\")\n public boolean isApplicable(Class<? extends AbstractProject> jobType) {\n return true;\n }", "title": "" } ]
[ { "docid": "a71faaa23b8c42feb1e88c20755a8839", "score": "0.6364107", "text": "@Override\n public boolean isApplicable(Class<? extends AbstractProject> jobType) {\n return true;\n }", "title": "" }, { "docid": "4e356a52e12e2b0c5a5141dbf3d27fe7", "score": "0.60662...
178ea3609adb47c4fb178fe61a37fdda
Method to get the local metadata for a given local key
[ { "docid": "e1aa4f133756afbfb6a111c544c41412", "score": "0.9048809", "text": "public String getLocalMetadata(String localKey);", "title": "" } ]
[ { "docid": "1a2d68a397a36df4ff2fcb4688f54f3f", "score": "0.7117042", "text": "java.lang.String getMetadataOrThrow(java.lang.String key);", "title": "" }, { "docid": "47fae86127ba08f4681685ca1b62f726", "score": "0.69133145", "text": "public native String extractMetadata(String key);",...
dbc9bd2dd2ee8deb611b318c67aea25d
TODO: Setup field here
[ { "docid": "e170c89c8dd4590838a63c3fcb874304", "score": "0.63780534", "text": "private void setupField() {\n }", "title": "" } ]
[ { "docid": "49558b85eeae3a7d950c3e165aa09e74", "score": "0.5903469", "text": "@Override\n protected void handleFieldInsideMeta(FieldModel model) {\n }", "title": "" }, { "docid": "d5680217225377495ef5a610ebe7ddf8", "score": "0.5902987", "text": "@Override\n protected void ha...
4a486109b7c9a2e374df65d23d86852c
Sets the content of this science app description.
[ { "docid": "a608e43348f2f3f3aa627d955ef0cf0e", "score": "0.82844484", "text": "@Override\n\tpublic void setContent(java.lang.String content) {\n\t\t_scienceAppDescription.setContent(content);\n\t}", "title": "" } ]
[ { "docid": "c89516f774f3ec5e5305bee087fded7e", "score": "0.75910795", "text": "@Override\n\tpublic void setContent(java.lang.String content, java.util.Locale locale) {\n\t\t_scienceAppDescription.setContent(content, locale);\n\t}", "title": "" }, { "docid": "944136e06c7d8e6dcf936bc216c89586"...
d5ef84e4c646f316b68dea98016c5c30
JOptionPane.showMessageDialog(null, "RIchmond Yeboah 000996904");
[ { "docid": "d9af5928127e8e40a7446717559ec959", "score": "0.0", "text": "public static void main(String[] args) throws FileNotFoundException {\n Coursework prg = new Coursework();\r\n }", "title": "" } ]
[ { "docid": "0cda361c90df348474d8bff33151e89a", "score": "0.7511085", "text": "private void showMessage(String n) {\n JOptionPane.showMessageDialog(this, n, \"FEIL\", JOptionPane.ERROR_MESSAGE);\n }", "title": "" }, { "docid": "0252a173e53513dcefc7cb2d79c02546", "score": "0.728...
52bec2ab4562c75f0fe799a5066d72f0
Metode que retorna una llista de strings amb el nom de les llistes de reproduccio existents.
[ { "docid": "637013f530629dca7b676bed0a4c96eb", "score": "0.67744815", "text": "public String[] getLlistesReproduccio() {\n String[] ret = new String[dr.getLlistes().size()];\n ArrayList<LlistaReproduccio> tmp = dr.getLlistes();\n Iterator itList = tmp.iterator();\n int i = 0;...
[ { "docid": "dcdc8569b052bbbfe6bdf6293d74035d", "score": "0.61281", "text": "java.util.List<String> getNameList();", "title": "" }, { "docid": "6ed30fe706af32e9cc360c9fff942c70", "score": "0.6023944", "text": "public List<String> getUpdatedLore() {\n\t\tList<String> newLore = new Arra...
2cb79f5504682e283a05c2a6b707ffce
Negative: nExample2LocalVariable, initialize PBEKeySpec and PBEParameterSpec with a iteration count >= 1000
[ { "docid": "9120d79d00dd9721ed258256dbcdefb8", "score": "0.0", "text": "public byte[] nExample2LocalVariable(byte[] plaintext, String password, byte[] salt) throws NoSuchAlgorithmException, NoSuchPaddingException, InvalidKeySpecException, InvalidAlgorithmParameterException, InvalidKeyException, BadPaddi...
[ { "docid": "03d21e96bb4ffb7525f42cd894a50211", "score": "0.5464693", "text": "@DISPID(31) //= 0x1f. The runtime will prefer the VTID if present\n @VTID(43)\n IList inBPParamsIdsWithIterationsMismatch();", "title": "" }, { "docid": "26d4a170e1c46d2fcae0d615c1a62f80", "score": "0.5452686...
333af3e4850d6bf29cc75686e8f42679
load the sqliteJDBC driver using the current class loader no longer needed as of JDBC4.0 Class.forName("org.sqlite.JDBC");
[ { "docid": "955b06162c0efaf4ffebb5d6567066c3", "score": "0.52392787", "text": "private void initDB(String dbFilename) \n throws ClassNotFoundException, SQLException\n {\n this.connection = DriverManager.getConnection(\"jdbc:sqlite:\"+dbFilename);\n\n Statement statement = this.connec...
[ { "docid": "409d288eacf411b868c1734d32709f16", "score": "0.82309055", "text": "private void loadDriver(){\n try {\n Class.forName(DB_DRIVER);\n }catch (ClassNotFoundException e){\n System.out.println(\"Failed to load SQLite JDBC driver.\");\n e.printStackTr...
0671e8b114da90cd5bbbee9abaaf52b7
Kill the octave process without remorse
[ { "docid": "f5e61076c1a071a881c4ab8ed6b95ab2", "score": "0.0", "text": "public void destroy() {\n setDestroyed(true);\n executor.shutdownNow();\n process.destroy();\n errorStreamThread.close();\n try {\n processWriter.close();\n } catch (final IOExcep...
[ { "docid": "ed78349bc6f70754faef738629db6dbc", "score": "0.6391382", "text": "public void kill(){\r\n\t\t\t\r\n\t\t}", "title": "" }, { "docid": "d21b57697d1474dd93e3a0094dc3b2fa", "score": "0.6259163", "text": "public void killProcess() {\n stop = true;\n }", "title": ...
8cee76614a1efa87c890a623b849a846
Returns true if the represented path is a directory. The response is not cached and will reflect the current state of the filesystem represented at all times.
[ { "docid": "6fdde82bae0f8e6d1e805c772828083b", "score": "0.0", "text": "abstract public boolean isCollection();", "title": "" } ]
[ { "docid": "9b8b4faddfb560fd91614035e9f6190f", "score": "0.8401765", "text": "public boolean isDirectory()\n {\n return getPath().endsWith(\"/\") && getCache().lastModified >= 0;\n }", "title": "" }, { "docid": "a6b2195a74ce1ea8bc2599fdf32b8faf", "score": "0.82330334", "text"...
1316a9ca7fbab1d3e69a2268dba825bb
AlarmManager alarmManager = new AlarmManager(DrugReminderApp.getAppContext()); Log.d(TAG,"resid");
[ { "docid": "a6670748b829995fd130fc6e5bbb6378", "score": "0.0", "text": "@Override\n public void onReceive(Context context, Intent intent) {\n preferences = context.getSharedPreferences(\"com.mibarim.driver\", MODE_PRIVATE);\n if (preferences.getInt(Constants.Service.TripStateLocation, 1...
[ { "docid": "641de795eee1c562c9dacaa90b84338d", "score": "0.7566421", "text": "@Override\n public void onCreate() {\n\n alarmManager = (AlarmManager) getSystemService(Service.ALARM_SERVICE);\n\n }", "title": "" }, { "docid": "f1d3359cb41e1a35ce7f7fbe94289799", "score": "0.743...
a3bf068deb94336e17ae76a2c9a4ae66
Converting from String to int manually. Later example will let JSF do it for us.
[ { "docid": "a78e73b062c5e5d9c41e8f6db96c9b38", "score": "0.0", "text": "public void setCountString(String countString) {\r\n try {\r\n count = Math.abs(Integer.parseInt(countString));\r\n this.countString = countString;\r\n } catch (NumberFormatException | NullPointer...
[ { "docid": "e86a7eded229c07aa25d4c4c5bf03ed8", "score": "0.6649772", "text": "private static int toInt(String number){\n\t\treturn Integer.parseInt(number);\n\t}", "title": "" }, { "docid": "f5e63e2b0434be7987e0373c4ebb7d3e", "score": "0.6623842", "text": "private static int toInt(St...
f9af91a4f75f1506541865c1714023a7
get para devolver la primera posicion del array donde se encuentra el usuario
[ { "docid": "63a83c075db84fca22eb8a0f4091bd38", "score": "0.0", "text": "public String getUsuario0() {\n\t\treturn this.usuarioContr[0];\n\t}", "title": "" } ]
[ { "docid": "f63d744ee6f78d4c73ed6b48855e9525", "score": "0.63765466", "text": "public int[] getPos() { return pos; }", "title": "" }, { "docid": "4956373f2f30299c84b43eb150b9b3c5", "score": "0.62095696", "text": "public int[] getPosition();", "title": "" }, { "docid": "6c...
6833b4b70d54f19c23f9ef07da66a001
Provides the number of milliseconds since January 1, 1970, 00:00:00 GMT when the execution started for the script associated with this simulation.
[ { "docid": "f788ae1e98b2cc2a90474a4e19dceba9", "score": "0.7678683", "text": "public long getScriptStartedAt() {\n return (scriptHistory != null) ? scriptHistory.getStartedAt() : DateTime.ERROR_TIME;\n }", "title": "" } ]
[ { "docid": "6f38b53a8b755b09a61b8d4e28734abe", "score": "0.75488174", "text": "long getExecutionTime();", "title": "" }, { "docid": "33cf499f958c806463dd8b6f8f09655c", "score": "0.7187246", "text": "public long getStartTime () {\n if (isPerformance) {\n return System.currentT...
e44878ba154086784b1c1bd55a2070a6
Get the scope property: operations scope.
[ { "docid": "b17143f22299ec64ff8b8762c4583c0d", "score": "0.6991303", "text": "public String scope() {\n return this.scope;\n }", "title": "" } ]
[ { "docid": "a2fa148eb65eb0f5b53a66306d06b077", "score": "0.7193909", "text": "public Scope getScope();", "title": "" }, { "docid": "6864505287d4b65f3ca14d561ebee8c9", "score": "0.71848273", "text": "String getScope();", "title": "" }, { "docid": "0d3ed9cd9997f4207f7c85e47...
57a6d5a04654cee691d4cc5ebc506060
Restoring a file or folder from the Trash
[ { "docid": "35c52698f98d67f656b3789452e58ecb", "score": "0.55443877", "text": "public Link restoreFromTrash(final String path, final String name, final Boolean overwrite)\n throws IOException, ServerIOException {\n return new RestClientIO(client, credentials.getHeaders())\n ...
[ { "docid": "473718ad18a07459fd9710979f01f0a1", "score": "0.5707245", "text": "private void restartLocalStorage() {\n\t\taddRoot();\n\t\tcheckSessionStorage();\n\t\twriteToFile();\n\t\tsetIdGenerator(0);\n\t}", "title": "" }, { "docid": "5acaafb0f7dd1586de1efd0c99a0653d", "score": "0.5586...
8f78f4b782d8d1f46b9edc1ae1dd01f8
/ access modifiers changed from: 0000 / renamed from: a
[ { "docid": "9ce66862da3ad90c572b306ca9e07b0c", "score": "0.0", "text": "public final /* synthetic */ void mo118131a(int i) {\n if (i > 0) {\n this.f120536g.setVisibility(0);\n } else {\n this.f120536g.setVisibility(4);\n }\n }", "title": "" } ]
[ { "docid": "d2943418684c57f5722c53696e5f27f8", "score": "0.65657073", "text": "private interface C0423a {\n void a();\n }", "title": "" }, { "docid": "aa38e472c95c8727f1c6e809e412bccf", "score": "0.6556694", "text": "public interface C0433a {\n /* renamed from: a */\...
b2067d54ef0cd55a07da3627c88e13a2
Performs a deep copy on other.
[ { "docid": "fb3ad76f285b0891afc3f4861c1eecaf", "score": "0.0", "text": "public FridgeState(FridgeState other) {\n __isset_bitfield = other.__isset_bitfield;\n this.temperature = other.temperature;\n this.isFreezing = other.isFreezing;\n }", "title": "" } ]
[ { "docid": "422aa3aedd51a4824c3d714f62c73982", "score": "0.71398515", "text": "Copiable copy();", "title": "" }, { "docid": "87e9ae5a2bffcb75f04fc2f130734d02", "score": "0.6807433", "text": "public void copy(Bounds other) {\n top = other.top;\n left = other.left;\n ...
f38522081cf7c2270b9433fb386dc8ae
This method returns the connected component with starting given vertex of vtx.
[ { "docid": "8a357cf5aae4e6912de2a4e82527e948", "score": "0.0", "text": "public Subgraph runBFS(Vertex Vtx);", "title": "" } ]
[ { "docid": "485fbfb8be2d5fc2e8f24383cf9d8d54", "score": "0.5744248", "text": "synchronized public Iterator getConnectedComponents(final Vertex vertex) {\r\n Vector<Vertex> visited = new Vector<Vertex>();\r\n resetVisitState();\r\n DFS(vertex);\r\n for (Iterator i = getAllVert...
f17b3c7fe3d24f7db267dcdbf3ef8bda
Create a HeaderCard from its component parts
[ { "docid": "08794adb217bd63bd0ca3e4cf6dd48c1", "score": "0.47211105", "text": "public HeaderCard(String key, boolean value, String comment) throws HeaderCardException {\n this(key, value ? \"T\" : \"F\", comment, false, false);\n }", "title": "" } ]
[ { "docid": "e3ef431e8b51a0bd79b5a4dadf5ee8a1", "score": "0.6648222", "text": "private void createHeader(Composite completeComposite) {\r\n\t\tComposite header = new Composite(completeComposite, SWT.NONE);\r\n\t\theader.setLayout(new FillLayout(SWT.HORIZONTAL));\r\n\r\n\t\trecipe.debugDumpExtended();\r\n...
c2c01ab7e2f7f06ac3a0578c98ddf264
Returns a random length for a stock symbol, with certain distribution.
[ { "docid": "2e5afd5ebefc9ce3a9c0d59d40960081", "score": "0.8597103", "text": "private int generateStockSymbolLength() {\n float r = mRandom.nextFloat();\n if (r < 0.25) {\n return 1;\n }\n if (r < 0.44) {\n return 2;\n }\n if (r < 0.82) {\n...
[ { "docid": "9036fa687fe0fc685c7228f30b6cc251", "score": "0.6391432", "text": "private int generateLength() {\n int length = (int) (Math.random() * MAX_SONG_LENGTH_SECONDS + MIN_SONG_LENGTH_SECONDS);\n return length;\n }", "title": "" }, { "docid": "2b0e3eab917fd7aca14da83f96...
4c2121986ef1edcb8b21e14e94ce9d65
Cargar datos rpg qtobin.
[ { "docid": "1967c73f8c11a0faa45991e77d114feb", "score": "0.6747981", "text": "@SuppressWarnings(\"unchecked\")\r\n\tprivate void cargarDatosRpgQtobin(TituloAccion ta) {\r\n\t\ttry {\r\n\t\t\tList<Map> resQuery = cargarPorNombreQuery(\r\n\t\t\t\t\tIConstantesConsultasAcciones.QTOBIN_RPG_POR_NEMO,\r\n\t\t...
[ { "docid": "bd24b26114dfd9536f1209a52a550a3d", "score": "0.5597356", "text": "public void exportaMomentoBinario(String rutaFichero) {\r\n FileOutputStream fOS = null;\r\n ObjectOutputStream escribeObjeto = null;\r\n try {\r\n fOS = new FileOutputStream(rutaFichero);\r\n ...
b9d7c9761b286254e7696ac3fd8a941c
public method to test sortItems method
[ { "docid": "84f36799d4ae6cf93b2fcfdbc98fb3e1", "score": "0.9083839", "text": "public static void testSortItems() {\n\t\tsortItems();\n\t}", "title": "" } ]
[ { "docid": "e835e966b6ed75c27c85927697a769d6", "score": "0.7328131", "text": "private static void sortItems() {\n\t\tif (list.size() != EMPTY) {\n\t\t\tCollections.sort(list);\n\t\t\tshowToUser(SUCCESS_IN_SORTING);\n\t\t} else {\n\t\t\tshowToUser(NOTHING_TO_SORT);\n\t\t}\n\t}", "title": "" }, { ...
72bb59b937d7e119fc029be430061818
This method was generated by MyBatis Generator. This method sets the value of the database column user_info.user_password
[ { "docid": "3b858487e9a05f3f46c4d962b3581267", "score": "0.6288631", "text": "public void setUserPassword(String userPassword) {\n this.userPassword = userPassword == null ? null : userPassword.trim();\n }", "title": "" } ]
[ { "docid": "8b56f289af5e9c63d5b362e7d207eb43", "score": "0.7165551", "text": "public void setUserPassword(String userPassword) {\r\n this.userPassword = userPassword;\r\n }", "title": "" }, { "docid": "87cc6b87a37388440c83281f1bae05b7", "score": "0.68836707", "text": "publi...