query_id
stringlengths
32
32
query
stringlengths
7
129k
positive_passages
listlengths
1
1
negative_passages
listlengths
88
101
4d367088c1472640f844fd4379a43278
/ This is the mapping that allows the user to make use of the credits service. The credit is purchased by the client and the client then has access to trailers. The details of credits is not clear but must plan for a. per trip credits b. time range credits, i.e over a period of x years serve the page with all the credi...
[ { "docid": "d8e13d8cc30ada01abf8cdea107b4de9", "score": "0.5230914", "text": "@RequestMapping({\"/users/{username}/credit\"})\n public String profileCreditPage(){\n return \"profile/credit\";\n }", "title": "" } ]
[ { "docid": "839b05e3cd75360d0f05af7e50d89730", "score": "0.66831076", "text": "public void credit();", "title": "" }, { "docid": "709a4edd8a2ae73f4ba0042efe806c5e", "score": "0.6529838", "text": "@Override\n\tpublic void payCredit() {\n\n\t}", "title": "" }, { "docid": "5...
e261c24feb1462ce94408fb8de174f9e
Uses regex to check if valid email and password
[ { "docid": "475cb2304c132f1c542f66fdfce172ca", "score": "0.6956487", "text": "private int isValidLogin(String email, String pass) {\n Matcher emailMatcher = emailPattern.matcher(email);\n Matcher passMatcher = passPattern.matcher(pass);\n if(!emailMatcher.matches()){\n re...
[ { "docid": "9fc1f6e4c9f27014c3e8ed6b295d1c26", "score": "0.76356673", "text": "public void validateValidEmailAndPassword() {\n\t\t\r\n\t}", "title": "" }, { "docid": "b0030be4d6417966b3cf414dea8405b3", "score": "0.75267303", "text": "private Boolean checkValidEmailAndPassword(Boolean...
b39318473bf880248c12b1a867b80487
this method returns the number of tabs in the tab strip
[ { "docid": "5ab67a060f40db68fb80297850d476de", "score": "0.0", "text": "@Override\n public int getCount() {\n return Title.length;\n }", "title": "" } ]
[ { "docid": "05951fec280327ad2bf0324579b2ef05", "score": "0.77627754", "text": "public int getTabCount() {\n return tabs.size();\n }", "title": "" }, { "docid": "46607bcf68098cca0304387a42eb3ac3", "score": "0.75373304", "text": "public int getTabCount() { return tabArray.siz...
2b817369cbf941fd88e535558851dfe8
Get the connectivityStatus property: Represents the connectivity status of the connected cluster.
[ { "docid": "09a51a2fcf1f31a4aad1f67c8bde2fd4", "score": "0.84470993", "text": "public ConnectivityStatus connectivityStatus() {\n return this.connectivityStatus;\n }", "title": "" } ]
[ { "docid": "cf4dc03515b759cef9c2e9b64148db93", "score": "0.79681885", "text": "public ClusterConnectionStatus clusterConnectionStatus() {\n return this.clusterConnectionStatus;\n }", "title": "" }, { "docid": "cb9b3fd6ec3f821f2e0cba6c9849bded", "score": "0.72748774", "text"...
a203091be962354de4f9d0d3d71b14b2
Subroutine returns transposed version of given 2D array. T[j][i] = M[i][j]
[ { "docid": "07635cc360dda8f3137cd34e32cfb80f", "score": "0.75373733", "text": "public static int[][] transpose(int[][] M) {\n int[][] T = new int[M[0].length][M.length];\n for (int i = 0; i < M.length; i++) \n for (int j = 0; j < M[i].length; j++ ) \n T[j][i] = M[i][j];\n return T;\...
[ { "docid": "54d9781321e358094f662846db1868d6", "score": "0.7633798", "text": "public static double [][] transposeMatrix(double [][] m){\n\t\tdouble [][] m2 = new double[m[0].length][m.length];\n\t\t\n\t\tfor(int i = 0; i < m.length; i++){\n\t\t\tfor(int j = 0; j < m[i].length; j++){\n\t\t\t\tm2[j][i] = ...
da20e9be60c0767bbad7b484f750f789
read the csv using this hand dandy library
[ { "docid": "dddb57a1f34b84a3152b3ee16bab36bf", "score": "0.0", "text": "public static double[] runTestFile(DecisionTree tree, String filename){\n CSVReader reader = null;\n List<String[]> trainingData = null;\n try {\n reader = new CSVReader(new FileReader(filename));\n trainingData =...
[ { "docid": "d2c44272407639ffecef67e71dffbd91", "score": "0.7007884", "text": "public void ReadFromCSVFile() throws IOException {\n\t FileReader fr = new FileReader(\"D:\\\\java\\\\AddressBook-System\\\\AddressBookData.csv\");\n\t \n\t // Declaring loop variable\n\t Scanner sc = new ...
ad02c256b30ba28de55ac4588b46bddb
Add a Column entity which column name is "ipfix" to the Row entity of attributes.
[ { "docid": "393f0885e0b1f778d09f573248cf7ce2", "score": "0.58741766", "text": "public void setIpfix(Uuid ipfix) {\n ColumnDescription columndesc = new ColumnDescription(FlowSampleCollectorSetColumn.IPFIX.columnName(),\n \"setIpfix\", Ver...
[ { "docid": "d3b157f490bd2d8d31077adb17f2329d", "score": "0.66607773", "text": "public Column getIpfixColumn() {\n ColumnDescription columndesc = new ColumnDescription(FlowSampleCollectorSetColumn.IPFIX.columnName(),\n \"getIpfixColumn\",...
8388d8d9a1caa7b6b76ea5408b4763f8
optional .AuthenticationChallenge authenticationChallenge = 2;
[ { "docid": "446d7d49e7a20af5c49f0ab93204083f", "score": "0.5450157", "text": "public Builder clearAuthenticationChallenge() {\n if (authenticationChallengeBuilder_ == null) {\n authenticationChallenge_ = com.github.yeriomin.playstoreapi.AuthenticationChallenge.getDefaultInstance();\n ...
[ { "docid": "ef9d9419c4c6ad4c745b56b477dc2ad9", "score": "0.64700353", "text": "public boolean authenticate(HttpServletResponse response) throws IOException, ServletException {\n/* 315 */ return _getHttpServletRequest().authenticate(response);\n/* */ }", "title": "" }, { "docid": "d...
c5677eb48060c718837c737a5c9ec277
whether to enforce mobile policy
[ { "docid": "de7a4f7744939bc4109845145740cbd5", "score": "0.0", "text": "@ZAttr(id=833)\n public Map<String,Object> setFeatureMobilePolicyEnabled(boolean zimbraFeatureMobilePolicyEnabled, Map<String,Object> attrs) {\n if (attrs == null) attrs = new HashMap<String,Object>();\n attrs.put(P...
[ { "docid": "e0c58752aecb53145110be7b7797c106", "score": "0.6418706", "text": "@ZAttr(id=1300)\n public int getMobilePolicyAllowBrowser() {\n return getIntAttr(Provisioning.A_zimbraMobilePolicyAllowBrowser, 1);\n }", "title": "" }, { "docid": "265f8ebaf5d3f7ad067aac2573e775f9", ...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "ca3c3861f02167c0502562ccf76aac4b", "score": "0.0", "text": "public void setServletResponse(HttpServletResponse arg0) {\n\t\t\r\n\t}", "title": "" } ]
[ { "docid": "d7194e467f51e022c107531d8614b6a3", "score": "0.6905833", "text": "@Override\r\n\tpublic void anular() {\n\t\t\r\n\t}", "title": "" }, { "docid": "941cb2826e3c700358fcaba402e6bb01", "score": "0.66775143", "text": "@Override\r\n\tpublic void hissetmek() {\n\r\n\t}", "ti...
b23d31aac62d65cbc60b61fa78236b77
This method was generated by MyBatis Generator. This method sets the value of the database column fms_docmain.CREATETIME
[ { "docid": "e76dea7909bfcf8a347d54e20d4f8a5b", "score": "0.6574576", "text": "public void setCreatetime(Date createtime) {\n\t\tthis.createtime = createtime;\n\t}", "title": "" } ]
[ { "docid": "a094234a5aefe134ce46802b4f39f0d4", "score": "0.6844457", "text": "public void setCreate_time(Date create_time) {\n this.create_time = create_time;\n }", "title": "" }, { "docid": "a094234a5aefe134ce46802b4f39f0d4", "score": "0.6844457", "text": "public void setC...
4a5a32ee3958d951c8fc0b452a3280ee
Replace the next line with any behavior you would like
[ { "docid": "2ccbbc9759c8f025791fce501c367947", "score": "0.0", "text": "public void onHitWall(HitWallEvent e) {\n\t\tback(20);\n\t}", "title": "" } ]
[ { "docid": "d9a70fce7804c4106f84101de484e70f", "score": "0.60831225", "text": "@Override\r\n\tprotected String modifyOneLine(String line) {\n\t\tString result=null;\r\n\t\tint index=line.indexOf(\"//\");\r\n\t\t//�����ж��Ƿ����\r\n\t\tif(index==-1)\r\n\t\t{\r\n\t\t\tresult=line;\r\n\t\t}//�����ھ�ִ������IJ...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "5d51778970d25f8febf6108a7d447958", "score": "0.0", "text": "@Override\n\tpublic void setDiffFirst(boolean flag) {\n\t\t\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": "" }, { ...
083a763d278062b98ae314df9944471d
Lance un de dont le resultat sera compris entre 1 inclus et 6 inclus
[ { "docid": "2aacffe78e0024ae877d29ea39ade8c0", "score": "0.0", "text": "@Override\n\tpublic int lancerDe() {\n\t\tint min = 1;\n\t\tint max = 6;\n\t\treturn min + (int)(Math.random() * ((max - min) + 1));\n\t}", "title": "" } ]
[ { "docid": "b918e86e8a0a14047bd2a3377dc5a834", "score": "0.6262823", "text": "public void coomprovarPremi(int [] numeroClient, int [] numeroSorteig, int reintegroJugador\n , int reintegroBombo, int complementari, String noReintegrament){\n opcioPremi = 0;\n int contador = 0;\n ...
65f82c59c0044d16fce75084573fb97e
BUSCAR TODOS OS GRUPOS DO BANCO
[ { "docid": "6ed3f4024ea8b2b0a74b5cc06727096d", "score": "0.0", "text": "private void listargrupos() {\n\n final GrupoCtrl grupoCtrl = new GrupoCtrl(ConexaoSQlite.getInstanciaConexao(GerenciarGrupo.this));\n\n this.grupoList = new ArrayList<>();\n grupoList = grupoCtrl.getListaGrupos...
[ { "docid": "8b7e0a1c629858e027d2db8e5febb2b0", "score": "0.6473545", "text": "private BonecrusherAlterno(){\n\t\tthis.ataque = 30;\n\t\tthis.distAtaque = 3;\n\t\tthis.velocidad = 8;\n\t}", "title": "" }, { "docid": "d65a28bbaef0b2782a031c453c266e27", "score": "0.6438139", "text": "@O...
a4c9abb1efd2d95e54418b208c73d169
Sets the start time to the given starttime
[ { "docid": "984bdb92d2ff665bbab319c67a29f573", "score": "0.79092306", "text": "private void setStartTime(LocalTime startTime) {\n\t\tif(startTime != null) {\n\t\t\tthis.startTime = startTime;\n\t\t} else {\n\t\t\tthrow new IllegalArgumentException(\"The start time can't be empty!\");\n\t\t}\n\t}", "...
[ { "docid": "a02a3ac651767696bcca11956be12bcd", "score": "0.865518", "text": "void setStarttime(java.lang.String starttime);", "title": "" }, { "docid": "eb23cf80bab5898ec74a8c1427d5eea6", "score": "0.8515928", "text": "public void setStarttime(Date starttime) {\r\n this.startt...
378279fd05213bc64aefcce57c17dc8b
Shifts are done with modulo arithmetic (so that we can avoid checks overhead).
[ { "docid": "89566aad8fab1ff92c152de8313b9157", "score": "0.0", "text": "public GPoint fromThisRelative(GPoint pos) {\n return pos.withDeltas(this.x, this.y);\n }", "title": "" } ]
[ { "docid": "470e55de5cb65a8137c6f355e0b74662", "score": "0.636711", "text": "public abstract void shift();", "title": "" }, { "docid": "d433c697e0e26638cdb8364c632a5bd6", "score": "0.63267493", "text": "private static int rol(int num, int cnt) {\n return (num << cnt) | (num >>...
2e2c280fa84450a837f1db5621509fe1
This function returns a copy of the instance
[ { "docid": "6859cc4bb73726b7e66d19e289d9ddc7", "score": "0.0", "text": "public NeuralVector clone() {\n\t\treturn new NeuralVector(rowVector);\n\t}", "title": "" } ]
[ { "docid": "613dd7d507f25420ca5d259f3a82d6b8", "score": "0.7667386", "text": "@Override\r\n public Object copy()\r\n {\n Object o = null;\r\n try\r\n {\r\n o = this.clone();\r\n }\r\n catch (CloneNotSupportedException e)\r\n {\r\n // TODO Auto-generated catch block\r\n ...
f4d2d78bb96da8b41969016c091848f5
Here green tea has an ingridient green_mixture, in this case the machine should reject the people who are trying to order It; Here 3 people came and ordered green_tea since no ingridient it dont need to wait 5 seconds to get the ingridients it can simply reject this order so the time it takes to execute this is almost ...
[ { "docid": "c40a66150d68531122f223aa7208278a", "score": "0.55025554", "text": "private static void testWhenIngridientSpecifiedIsnotthereinTheVendorMachine() throws IOException {\n VendingMachine vendingMachine = makeVendingMachine();\n User user1 = new User(vendingMachine, \"green_tea\");\...
[ { "docid": "6cf01a02ff18a7048e3fbea2159e1ba7", "score": "0.6513724", "text": "private static void testQueingMechanismWhenIngridientsNotEnoughThenRejectSome() throws IOException {\n VendingMachine vendingMachine = makeVendingMachine();\n User user1 = new User(vendingMachine, \"hot_tea\");\n...
2376a35b7d80059bfee0bb7f1f555ef4
The operation to start a virtual machine.
[ { "docid": "4c19eb95f0460bab67d54851ab4dd460", "score": "0.56545633", "text": "@ServiceMethod(returns = ReturnType.SINGLE)\n SyncPoller<PollResult<Void>, Void> beginStart(String resourceGroupName, String vmName);", "title": "" } ]
[ { "docid": "5cb01f8a40436fd888ac846e4993eb08", "score": "0.6750639", "text": "@ServiceMethod(returns = ReturnType.SINGLE)\n void start(String resourceGroupName, String vmName);", "title": "" }, { "docid": "0d613e5dd006a24e354c53b92627f437", "score": "0.6670447", "text": "@ServiceM...
28cfc855346bdd621a00096bc886076d
Creat a new builder instance.
[ { "docid": "95137c846eb4d664a156cd25f5b1678f", "score": "0.0", "text": "protected MapBuilder() {\n }", "title": "" } ]
[ { "docid": "70a8dfed31a6d286b8779bc3611c6197", "score": "0.81701916", "text": "public static Builder create() {\n\t\treturn new Builder();\n\t}", "title": "" }, { "docid": "d2a1dcdc1e9b25e918926fcfdd244a55", "score": "0.77372026", "text": "public Builder() {}", "title": "" }, ...
70b8345f95ea62f68edaef3221ff7c1d
init views used for activity
[ { "docid": "70d2ce48f691d33f94bbbe8d555e5967", "score": "0.77563566", "text": "protected void initViews(Bundle savedInstanceState) {\n\t}", "title": "" } ]
[ { "docid": "43f75d067eaf5193d7fc13b24c708a1e", "score": "0.8128274", "text": "private void initView() {\n\t\tmBtnBack=(Button) findViewById(R.id.btn_back);\n\t\tmTVContentType=(TextView) findViewById(R.id.tv_content_type);\n\t\tmGVContent=(GridView) findViewById(R.id.gv_content_detail);\n\t\tmLoadingLay...
8a66708dee82b4b08315f6eb7ad0afee
fastest solution on leetcode, please look at the code
[ { "docid": "6405553d8011276421ff0234c540eb05", "score": "0.0", "text": "public List<String> topKFrequent(String[] words, int k) {\n if (words == null || words.length == 0) {\n return new ArrayList<String>();\n }\n Map<String, Integer> map = getMap(words);\n Priorit...
[ { "docid": "6380eeb89175375285143a5d604c078d", "score": "0.6526363", "text": "public static void solve() throws Exception\n\t{\n\t\tint n = scan.nextInt();\n\t\tint k = scan.nextInt();\n\t\tInteger[] nums = new Integer[n];\n\t\tint[] w = new int[k];\n\t\tfor(int i=0;i<n;i++)\n\t\t{\n\t\t\tnums[i]=scan.n...
6a43065f29af104e758be21f1f49976a
Get the number of bytes necessary to represent the passed char array as an UTF8 string.
[ { "docid": "2fa1c52e150a0417dabc5efa8a2eca5e", "score": "0.71090996", "text": "@Nonnegative\n public static int getUTF8ByteCount (@Nullable final char [] aChars)\n {\n int nCount = 0;\n if (aChars != null)\n for (final char c : aChars)\n nCount += getUTF8ByteCount (c);\n return nC...
[ { "docid": "93f86ffb167d7d51e9e72b6a3064f759", "score": "0.7016445", "text": "@Nonnegative\n public static int getUTF8ByteCount (@Nullable final String s)\n {\n return s == null ? 0 : getUTF8ByteCount (s.toCharArray ());\n }", "title": "" }, { "docid": "a75aae5a15b432a51dae8f57d43a67d3...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "b468d7a409f4952a1e500d89ca1506d8", "score": "0.0", "text": "@Override\n public void onNothingSelected(AdapterView<?> arg0) {\n }", "title": "" } ]
[ { "docid": "c4efc9f9911178a27ec9261384d5f141", "score": "0.66613346", "text": "public void mo12644zk() {\n }", "title": "" }, { "docid": "81758c2988d9979c7d4b3fd5b3cce0e5", "score": "0.65680635", "text": "@Override\r\n\tpublic void pular() {\n\r\n\t}", "title": "" }, {...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "0eeeaff3fbffeea4a9d13de5962bb521", "score": "0.0", "text": "@Override\n\tpublic List<Translator> findAllById(Iterable<UUID> ids) {\n\t\treturn null;\n\t}", "title": "" } ]
[ { "docid": "3d9823aba51891281b4bbd4b1818b970", "score": "0.6671074", "text": "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "title": "" }, { "docid": "0b5b11f4251ace8b3d0f5ead186f7beb", "score": "0.6567672", "text": "@Override\n\tpublic void comer() {\n\t\t\n\t}", "ti...
ea8683784e08fa3e5591d7164e6cf728
/ 102: / 103:
[ { "docid": "c993ac10e6ebe9316a4afd0e121bd010", "score": "0.0", "text": "@SideOnly(Side.CLIENT)\r\n/* 104: */ public List<String> getToolTip()\r\n/* 105: */ {\r\n/* 106:115 */ if (this.curMax > 0)\r\n/* 107: */ {\r\n/* 108:116 */ List l = new ArrayList();\r\n/* 109:117 */ ...
[ { "docid": "ce28ddd4d9b73216b76497bacb679c73", "score": "0.5795509", "text": "public int method_4144() {\r\n return 9;\r\n }", "title": "" }, { "docid": "85f02832a0e63d2286d0eeccdd25067f", "score": "0.5646376", "text": "protected String bn()\r\n/* 49: */ {\r\n/* 50: 56 ...
178fa37250120961739bcfc7bceaf841
Returns the part of speech tag of the lexeme
[ { "docid": "96c743b2b6a732790dcec83fe49cb2ca", "score": "0.0", "text": "public String getPos() {\n return pos.name();\n }", "title": "" } ]
[ { "docid": "53075f1046785c91c723dad462cad6cc", "score": "0.65883696", "text": "private String getTagname() {\n String s = \"\";\n nextChar(); //First character in the Tagname\n while(c != ' ' && c != '<' && c != -1) {\n s = s + (char) c;\n nextChar();\n ...
3a6a5ac4b01011c2dc8b786ee8fc4b58
Check for the next even item.
[ { "docid": "3e07e4f9676a56306e2efab19f5df8c4", "score": "0.58287436", "text": "public boolean hasNext() {\n boolean result = false;\n while (index < numbers.length) {\n if (numbers[index] % 2 == 0) {\n result = true;\n break;\n }\n ...
[ { "docid": "7dc01bb4249cce9cd418042b8fe861cb", "score": "0.6385658", "text": "@Test\r\n\tpublic void testHasNext2() {\r\n\t\tIterator<Integer> itr = list2.iterator();\r\n\t\tassertFalse(itr.hasNext());\r\n\t}", "title": "" }, { "docid": "ccf37a964248ba36c2f75bd1392e1505", "score": "0.637...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "b1c51886ffa53e2a2c54c3f172ba5cb5", "score": "0.0", "text": "@Override\r\n\tpublic List loadMasterDataSet(int pageSize, int startRow) {\n\t\treturn null;\r\n\t}", "title": "" } ]
[ { "docid": "74a4209c94e08d9f5eb0b60e580f5e04", "score": "0.68867725", "text": "@Override\r\n\tpublic void comit() {\n\t\t\r\n\t}", "title": "" }, { "docid": "b645eacb329adc01490ab5013a6c4f7f", "score": "0.67295986", "text": "@Override\n\t\t\tpublic void perfom() {\n\n\t\t\t}", "t...
82b13f929fc1c55406d1e5b6bb2dfeba
Busca un usuario por su nombre
[ { "docid": "423d544bb11639a1f89c52e581bb5f31", "score": "0.6782444", "text": "public Usuario buscarUsuario(String nombreUsuario) throws MyException;", "title": "" } ]
[ { "docid": "7664f316e74b33e43398ce14c9f7b10d", "score": "0.79426116", "text": "Usuario buscarUsername(String username);", "title": "" }, { "docid": "226d6e649832b691bbe4cf4aa5737164", "score": "0.6952763", "text": "public String findUsername(String name);", "title": "" }, { ...
add212c734af747864cbb9ae4270cf37
called in the on mouse dragged event of a rectangle. It moves all rectangles and textAreas with the mouse position.
[ { "docid": "da66e9e032c1a1ed00129fe941a22493", "score": "0.71140707", "text": "private void drag(Pane pane) {\r\n\t\tdouble prevHeight = 0;\r\n\t\tRectangle2D primaryScreenBounds = Screen.getPrimary().getVisualBounds();\r\n\r\n\t\tint mouseX = MouseInfo.getPointerInfo().getLocation().x;\r\n\t\tint mouse...
[ { "docid": "4e173ab57ca0b2c62dc9c78aeaac4e76", "score": "0.7094713", "text": "private void handleMovingRectangle(){\n float offsetX = startX - layoutRect.left;\n float offsetY = startY - layoutRect.top;\n\n left = endX - offsetX;\n if (left < this.getLeft()) {...
e519febe8a53f780b1d43199a02b8665
The number of DataNodes to replicate the data to when writing to the HDFS cluster.
[ { "docid": "f8af3f0183b0ace244b8de2d3128bc7a", "score": "0.5512369", "text": "public Integer getReplicationFactor() {\n return this.replicationFactor;\n }", "title": "" } ]
[ { "docid": "94b4bd5ebd5d0e6c11428711e530b646", "score": "0.6657928", "text": "public long numNodes(){\n return numNodes;\n }", "title": "" }, { "docid": "27be22b6e5903487da21bd5d20907bca", "score": "0.65630513", "text": "public int getNumberOfNodes();", "title": "" },...
e62907d6d2185489b7a3c802a8e82117
Fonction qui retourne la taille du noeud.
[ { "docid": "ab56c917b55b1db7ae7ca3b4a0b68fe1", "score": "0.0", "text": "public int getSize(){\n if(this.nameNode.length() == 0 || this.nameNode.length() <= 4){\n return 40;\n }\n return this.nameNode.length()+40;\n }", "title": "" } ]
[ { "docid": "2e80b1fa5aa6f074b8baf835a7c09477", "score": "0.71176916", "text": "@Override\n public int taille() {\n return taille;\n }", "title": "" }, { "docid": "1055014d7ceda93eea18099c9af9180b", "score": "0.6700378", "text": "public abstract int taille();", "title...
95e72035d3c334f7631b71187fd767a4
Tests EditLogFileOutputStream doesn't throw NullPointerException on being closed twice. See
[ { "docid": "ce007e98a14146713cdb87cd3dadb3f2", "score": "0.84117705", "text": "public void testEditLogFileOutputStreamCloses()\r\n throws IOException,NullPointerException {\r\n System.out.println(\"Testing EditLogFileOutputStream doesn't throw \" +\r\n \"NullPointerException ...
[ { "docid": "3f6fc62538642d60dcae107175446ea1", "score": "0.60592103", "text": "void openOrReopenStream(Logger log) {\n if (stream != null && nextReopen.expired()) {\n stream.flush();\n stream.close();\n stream = null;\n }\n if (stream == null) {\n try {\n FileOutputSt...
31a67917d57f6337de9970bc24b4014f
Prints all the active lists.
[ { "docid": "15266ebd556753ff5362962ff488506c", "score": "0.77377117", "text": "private void printActiveLists() {\n debugPrint(\" CombinedActiveList: \" + combinedActiveList.size());\n for (Iterator i = linguist.getFeatureStreams(); i.hasNext();) {\n FeatureStream stream = (Featu...
[ { "docid": "a523dd481afcbec793807ee1dfd3ab69", "score": "0.7215351", "text": "public void printAll()\n {\n for(int i = 0; i < list.size(); i++)\n {\n String string = list.get(i).toString();\n \n System.out.println(string);\n }\n }", "title"...
cc9770f1e074e5cf9852f7ebae215cdf
uint64 version = 1;
[ { "docid": "fde0d5ade4a22562112abcc0ad412770", "score": "0.0", "text": "public long getVersion() {\n return version_;\n }", "title": "" } ]
[ { "docid": "e749261b45dba4784d50c98fdb49abe8", "score": "0.6973533", "text": "Integer version();", "title": "" }, { "docid": "dcedd791d239cb7c6098bbf8c9832651", "score": "0.6711172", "text": "protected abstract Long version();", "title": "" }, { "docid": "8cb0c0c3b42dce29...
ea8e7d29b8cc587bbfd28dc52454f8d7
Shows the imageView holding the control scheme by adding it to the raceViewPane.
[ { "docid": "bfb6db6b6d55566568a46e60abededbf", "score": "0.7846011", "text": "private void showControlScheme() {\n imageView.setLayoutX((pane.getWidth() / 2) - (image.getWidth() / 2));\n imageView.setVisible(true);\n controlsVisible = true;\n transition.setByY(image.getHeight...
[ { "docid": "5851dcb491da4c9e964e3d6fdcb0ec34", "score": "0.67551976", "text": "private void loadControlScheme() {\n String path = \"/images/controlScheme.png\";\n image = new Image(path);\n imageView = new ImageView(image);\n imageView.setPreserveRatio(true);\n pane.ge...
8e1b677ccfb44b72aa2be415cbf1f0c2
/ This method formalizes the indices for reading the information about the donors in the file
[ { "docid": "caa951b57a03f939fb27ae888389924d", "score": "0.46630934", "text": "@Override\n\tprotected void setValidIndex(Donor donor, String[] field) {\n\t\t//Variable to store the result of index validation\n\t\tboolean validationResult;\n\t\t\n\t\tvalidationResult = validIndex(this.indexDonorCpfCnpj);...
[ { "docid": "042fe19caa8ee00938d27cee6bfc15fc", "score": "0.59164923", "text": "static void indexDocs(IndexWriter writer, File file)\n throws IOException {\n if (file.canRead()) {\n if (file.isDirectory()) {\n String[] files = file.list();\n // an IO...
c5716a00280fefb6f13831a877940678
Opening the Url based upon the value from the option.property file for TEST.ENVIRONMENT.OPEN
[ { "docid": "d238bfe91c22a60b40de6fee079e9092", "score": "0.76026446", "text": "private static String OpenTheURL(String URL)\r\n\t{\r\n\t\ttry{\r\n\t\tif (URL.equalsIgnoreCase(option.getProperty(\"QA.VARIABLE\")))\r\n\t\t{\r\n\t\tdriver.get(option.getProperty(\"QA.URL.ENVIRONMENT\"));\r\n\t\t}else if (UR...
[ { "docid": "019a5dd1d4ed56e8a2cb2e78f46cb499", "score": "0.62790823", "text": "public void openURL(String websiteURLKey) {\r\n\t\tprop = new Properties();\r\n\r\n\t\ttry {\r\n\t\t\tprop.load(new FileInputStream(\"src/main/java/Config/config.properties\"));\r\n\t\t} catch (Exception e) {\r\n\t\t\te.print...
da7906f4f1a14926691f6287fdb8c896
Find one policy rule.
[ { "docid": "2eb6a0f1948459ace91388b2b8debe85", "score": "0.8080284", "text": "PolicyRule findOneByName(String name);", "title": "" } ]
[ { "docid": "9a115d4f9b8fdcf842a21fcf8e0b53e7", "score": "0.633108", "text": "Rule findById(Long id);", "title": "" }, { "docid": "3ad7ed7973c2c4a86fd804c54b1d2c49", "score": "0.6005357", "text": "public Rule getRuleByID(String id) {\n\t\tif (id == null) {\n\t\t\treturn null;\n\t\t}\n...
59cf9195575feecf20ca33ffd00473c8
/ The input is the longest phrase we can get before seeing a punctuation. Therefore, we need to add all possible phrases that can be found from the input phrase to the trie.
[ { "docid": "f7d25a3edc4623a319239b09d7e31bf8", "score": "0.62960255", "text": "public void add(ArrayList<String> phrase) {\t\t\r\n\t\tfor (int i = 0 ; i < phrase.size(); i++) {\r\n\t\t\tWordTrieNode cur = root;\r\n\t\t\tfor (int j = i; j < phrase.size(); j++) {\r\n\t\t\t\tString word = phrase.get(j);\r\...
[ { "docid": "b3ab09b11dc7a09d85155f8cb83434d5", "score": "0.66449004", "text": "public List<String> findPhrases() {\n\t\t\n\t\tTrie root = new Trie();\n\t\tList<String> result = new ArrayList<>();\n\t\tQueue<TrieNode> queue = new LinkedList<>();\n\n\t\tfor (String phrase : phrases) {\n\t\t\t// build the ...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "42c7186dd2556cf31c0e9393cb93ab8b", "score": "0.0", "text": "@Override\n\t\t\tpublic void onCheckedChanged(RadioGroup group, int checkedId) {\n\t\t\t\tDouble tip = null;\n\t\t\t\tif (ed.getText().toString() != null\n\t\t\t\t\t\t&& !ed.getText().toString().equals(\"\")) {\n\t\t\t\t\tcalculatio...
[ { "docid": "74a4209c94e08d9f5eb0b60e580f5e04", "score": "0.68867725", "text": "@Override\r\n\tpublic void comit() {\n\t\t\r\n\t}", "title": "" }, { "docid": "b645eacb329adc01490ab5013a6c4f7f", "score": "0.67295986", "text": "@Override\n\t\t\tpublic void perfom() {\n\n\t\t\t}", "t...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "a6b1690ef19947ad8c363e86ec459996", "score": "0.0", "text": "@Override\r\n protected void setupDatabase() {\n switch(mCalculateCycle) {\r\n case CYCLE_WEEK:\r\n setTableName(DatabaseConfig.DEFAULT_LISTED_TECH_WEEK);\r\n break;\r\n case CYCLE_MONTH...
[ { "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}"...
de8b5b92a4fa883b3bd1cbd16bc91e6e
Javafx for saving an organization in the database
[ { "docid": "ff28dad9b7e22957c44540629446ce4d", "score": "0.69774765", "text": "private void makeNewOrganization(boolean contributorInstead) {\n Stage stage = new Stage();\n stage.initModality(Modality.APPLICATION_MODAL);\n VBox vBox = new VBox();\n\n TextField textField = new...
[ { "docid": "c8d1153025d000d58a5aad2f599b9611", "score": "0.6183469", "text": "@FXML\n void addDepartment() {\n TextInputDialog dialog = new TextInputDialog();\n dialog.setContentText(\"Enter Department place:\");\n Optional<String> result = dialog.showAndWait();\n Database...
5e185150f8b61ce5105970ef4a853eb6
This method is called from within the constructor to initialize the form. WARNING: Do NOT modify this code. The content of this method is always regenerated by the Form Editor.
[ { "docid": "0a615df544d14881457ece1bdc605c60", "score": "0.0", "text": "@SuppressWarnings(\"unchecked\")\n // <editor-fold defaultstate=\"collapsed\" desc=\"Generated Code\">//GEN-BEGIN:initComponents\n private void initComponents() {\n\n jLabel1 = new javax.swing.JLabel();\n btnOrde...
[ { "docid": "0f21badeaf42d1b745bc4a2d835f9543", "score": "0.7431047", "text": "public Calendar2Form() {\n super();\n initAndShowGUI();\n }", "title": "" }, { "docid": "17113ab7a06544a62482637e283ac13d", "score": "0.7392612", "text": "@SuppressWarnings(\"unchecked\")\n...
19e186211b93836fb7ad9ac6da6e04b7
Instantiates a new Fancy message.
[ { "docid": "a1a1ae8767d2c1e95cb4f076550a1678", "score": "0.6489068", "text": "public FancyMessage(String string) {\n builder = new ComponentBuilder(ChatColor.RESET + string);\n }", "title": "" } ]
[ { "docid": "df68addc10b0c5844df5f9c3a9ea3036", "score": "0.7927485", "text": "public FancyMessage() {\n this(\"\");\n }", "title": "" }, { "docid": "70f980f3484f55deab00f70dfc815781", "score": "0.7375724", "text": "public FancyMessage(FancyMessage fancyMessage) {\n t...
849b954e3c184197abed170cdffeda4a
This method was generated by MyBatis Generator. This method returns the value of the database column third_part.unique_id
[ { "docid": "12e14dc051e2f18e2d5a6c326ad665da", "score": "0.5754592", "text": "public String getUniqueId() {\n return uniqueId;\n }", "title": "" } ]
[ { "docid": "1ef3a4698724dc761dd72864baec35e9", "score": "0.6398121", "text": "long getUniqueid();", "title": "" }, { "docid": "1d8f2cdedf90cc62faa6d1faf718abf6", "score": "0.6268939", "text": "@java.lang.Override\n public long getUniqueid() {\n return uniqueid_;\n }"...
bdc5426d0b8b77c2dad15b14792c2aa9
Attack using the currently equipped weapon and the angle of view to the target.
[ { "docid": "10575df0a0631559f2a3f35bc1c94c48", "score": "0.7517751", "text": "protected void attack(Entity target) {\n // Get the weapon of the subject.\n Weapon weapon = subject.getWeapon();\n\n // The subject cannot attack without a weapon.\n if (weapon == null) {\n ...
[ { "docid": "34861a2115e5dc70d44e03559debfc7c", "score": "0.75743604", "text": "public void attack()\n\t{\n\t\tLivingThing target = owner.getTarget();\n\t\tif( target == null ){\n\t\t\towner.unlockLookDirection();\n\t\t\treturn;\n\t\t}else\n\t\t{\n\t\t\ttempUnitVector.set( target.loc.x - owner.loc.x , t...
7efddd8d080cfa5aa4be0f7008d8cc8a
List getFeatures(); Integer getK();
[ { "docid": "dc77d3370084a7c215a473e1cba789d5", "score": "0.0", "text": "Integer getAutoencoderFilter();", "title": "" } ]
[ { "docid": "940b0776efc3883d218571313f7e27d7", "score": "0.7153181", "text": "List<Feature> getFeatures();", "title": "" }, { "docid": "7e56d2acbe9fe3f26ca8ab7960ed3013", "score": "0.6968487", "text": "List<String> getFeatures();", "title": "" }, { "docid": "1d36d6aafdf57...
9ba0f37156e0608e6e78b931b7a9e476
applies a filter to an image
[ { "docid": "468de51ef21252e42488e214f80ba448", "score": "0.7251833", "text": "public static final void applyFilter(BufferedImage img, ImageFilter filter) {\n FilteredImageSource src = new FilteredImageSource(img.getSource(),\n filter);\n ...
[ { "docid": "27c71addd90675c0ff36caefe4a5da5a", "score": "0.71826434", "text": "Image apply(Image input);", "title": "" }, { "docid": "c8d6025d67750ffe75ec2e29346cfa49", "score": "0.7071595", "text": "@Override\n public void filter(int kind, float param) {\n PImage temp = get();\n...
8a97b6a9251fd3ff204caf109fee5bcc
This method was generated by MyBatis Generator. This method corresponds to the database table baseinfo_company
[ { "docid": "16e4a57081303a8ea1c1ffe464e0a846", "score": "0.0", "text": "Integer insertSelective(BaseinfoCompany record);", "title": "" } ]
[ { "docid": "39ae42616f2c470e848797718730e876", "score": "0.65885246", "text": "BaseinfoCompany selectByPrimaryKey(Integer compId);", "title": "" }, { "docid": "f1f422cbc3bb7c07e8958ebad126ddbe", "score": "0.59636444", "text": "@Override\n\tpublic void getCompanyInfo(Company company) ...
0696d30781e79309df385cde62000fb9
Fills the hand back to 7
[ { "docid": "d174fd72146088937c38735a855d9e43", "score": "0.6398573", "text": "public void fillHand() {\r\n\t\tgetMaxTurnID();\r\n\t\tif (maxTurn == 1 && myTurn) {\r\n\t\t\tdbh.updateTurn(maxTurn, gameID, getOwnName(), 0, \"Begin\");\r\n\t\t} else if (maxTurn == 2 && myTurn) {\r\n\t\t\tdbh.updateTurn(max...
[ { "docid": "6b37cd0b6a17eb8409ddf5d5ce64b234", "score": "0.6472643", "text": "private void fillRowWithBeepers() {\n\t\tputBeeper();\n\t\twhile (frontIsClear()) {\n\t\t\tmove();\n\t\t\tputBeeper();\n\t\t}\n\t}", "title": "" }, { "docid": "6f856d6f39152142a98deb5391b5a5cc", "score": "0.571...
9a2f7015e1b7703fe9da501b130f3ae3
Create an image file name
[ { "docid": "73565ebcf05a7b140df45f41c98dd854", "score": "0.64609534", "text": "private File createImageFile() throws IOException {\n\n StringBuilder stringBuilder = new StringBuilder();\n Calendar calendar =Calendar.getInstance();\n\n String sAmPm = Boolean.valueOf(String.valueOf(ca...
[ { "docid": "124b879628649b0b3f12428ae373167e", "score": "0.8093278", "text": "private String createFileName() {\n\t\tDate date = new Date();\n\t\tSimpleDateFormat dateFormat = new SimpleDateFormat(\"yyyy-MM-dd-HH-mm-ss\", Locale.US);\n\t\tString s = dateFormat.format(date);\n\t\treturn \"dc\" + s + \".j...
011b360a672051df970f431f3a308efa
Attempts to grow a sapling into a tree
[ { "docid": "e5a4aa90cb439041f4f36081e9e8a194", "score": "0.5375719", "text": "public void growTree(World world, int i, int j, int k, Random rand)\n {\n \n \tWorldGenBush worldgenbush = new WorldGenBush();\n \t\n if (!((WorldGenerator)worldgenbush).generate(world, rand, i, j, k))\n...
[ { "docid": "a6468f9caf77873d9b578d37f525ca40", "score": "0.6700441", "text": "public void expandTree() {\n expandTree(3);\n }", "title": "" }, { "docid": "51f29b69977cdc5e113a58405dd311e2", "score": "0.6608092", "text": "private void grow(){\n\t\n }", "title": "" }, ...
953d58aff51c95c83fd7e648ff939b29
DO NOT CHANGE THIS !!!
[ { "docid": "8dc8f3443d3ecf9ab93fb544598acb57", "score": "0.0", "text": "public void initModel(String fileName) throws IOException {\n mVocabulary = buildVocabularyIndex(fileName);\n mBigramCounts = buildCountsArray(fileName, mVocabulary);\n\n }", "title": "" } ]
[ { "docid": "33d41636b65afa8267c9085dae3d1a2d", "score": "0.70446223", "text": "private void apparence() {\r\n\r\n\t}", "title": "" }, { "docid": "8619203d4867f5c6d05eb9a5354405c0", "score": "0.66783404", "text": "@Override\n\t\tpublic void pintate() {\n\t\t\t\n\t\t}", "title": ""...
7f69261fc982dbcf55307216b55a5018
optional uint32 label = 4; may be using PHP
[ { "docid": "21a2fcb941f1ff9640ed8b84469e1366", "score": "0.53787214", "text": "public boolean hasLabel() {\n return ((bitField0_ & 0x00000008) == 0x00000008);\n }", "title": "" } ]
[ { "docid": "cda60e1601bdfd2fca468e8df43082b8", "score": "0.6526935", "text": "com.google.protobuf.ByteString\n getLabelBytes();", "title": "" }, { "docid": "63b7f42a6b00d3f2cfd2659922dff454", "score": "0.6486471", "text": "int getLabel();", "title": "" }, { "docid": ...
1de1dc0eeab271899edf2eabb4dbeaee
====== bean methods ===========//
[ { "docid": "1c8907d8273d69d3000658015222eddd", "score": "0.0", "text": "public List<Tank> getTargets() {\n\t\treturn targets;\n\t}", "title": "" } ]
[ { "docid": "968896d94a91d038b8c8a3c3b9264142", "score": "0.68850845", "text": "ExtravalBean()\n {\n }", "title": "" }, { "docid": "2089ade2acc2202a0d07c770cf9a7dc5", "score": "0.6442215", "text": "Object getBean();", "title": "" }, { "docid": "716a63c4222cb11388e2e1...
0be6e00dc6d90ab9aa7df63b0f5e3b4a
repeated .PropertyDefProto property = 5;
[ { "docid": "d083f4851d610d5efd96643068bd205e", "score": "0.0", "text": "public Builder removeProperty(int index) {\n if (propertyBuilder_ == null) {\n ensurePropertyIsMutable();\n property_.remove(index);\n onChanged();\n } else {\n propertyBuilder_.remove(index);\n...
[ { "docid": "4aaabd0b6a639c54345c5f9510ea0dbb", "score": "0.6079914", "text": "protobuf.schema.UserOuterClass.TestUserOrBuilder getProp5OrBuilder();", "title": "" }, { "docid": "cf3195915b8eac7c748e59ebaa288ff9", "score": "0.58984804", "text": "protobuf.schema.UserOuterClass.TestUser ...
8d1662e1bd67ac6cf5d95eb1a5e3e19c
/ synartisi pou kaleitai otan vrethei paketo sto arxeio eisodou
[ { "docid": "91874486280af2129542eb104c73513a", "score": "0.0", "text": "public void packageHandler(DataToken token){\n\t\t\n\t\t\tif((activePackage=doSearchPackage(retString))==null){\n\t\t\t\tactivePackage = new thePackage(retString);\n\t\t\t\tSystem.out.println(\"packageHandler willing to add: \"+retS...
[ { "docid": "2e3af6e40acd1a06b3b9966545bbe889", "score": "0.68976426", "text": "public void jokaldiaEgin() {\r\n\t\tSystem.out.println(\" \");\r\n\t\tSystem.out.println(\"IA-ren txanda da.\");\r\n\t\tthis.azeriaErabiliDu = false;\r\n\t\tKarta k1 = null,k2 = null,k3 = null,k4 = null, baztertzekoKarta;\r\n...
518bf5364cda3c6202a1a392996f93d1
Inflate the menu; this adds items to the action bar if it is present.
[ { "docid": "ab6a1d2a514c2d80477b5b3ba125dce2", "score": "0.0", "text": "@Override\n public boolean onCreateOptionsMenu(Menu menu) {\n getMenuInflater().inflate(R.menu.menu, menu);\n return true;\n }", "title": "" } ]
[ { "docid": "b470b12158e9a37414c1897a8fc7b04e", "score": "0.71318436", "text": "@Override\n\tpublic boolean onCreateOptionsMenu(Menu menu) {\n\t\tMenuInflater mif = getMenuInflater();\n\t\tmif.inflate(R.menu.main_activity_action, menu);\n\t\treturn super.onCreateOptionsMenu(menu);\n\t}", "title": "" ...
ee4a3addad071db01d39ac2189094e63
Add the AccessControlAllowOrigin header
[ { "docid": "9253c47341b15ebffc651d916c3041e2", "score": "0.6811344", "text": "protected void addHeaders(WebResponse rsp) {\n\t\tif (origin != null) {\r\n\t\t\trsp.setHeader(\"Access-Control-Allow-Origin\", origin);\r\n\t\t}\r\n\r\n\t\t// Add the Access-Control-Allow-Methods header\r\n\t\tif (methods != ...
[ { "docid": "9cc6193967dae9be8e85570426bc1f2a", "score": "0.75373626", "text": "public static void addCorsHeader(HttpServletResponse response){\n response.addHeader(\"Access-Control-Allow-Origin\", \"*\");\n response.addHeader(\"Access-Control-Allow-Methods\", \"POST, GET, OPTIONS, PUT, DEL...
aadd72c8952f1f972e3e5edcf33c7b11
if it is already compressed, return the input file
[ { "docid": "5846c3891602d9f5bff12cf14a053221", "score": "0.54193354", "text": "public static File compressGZipFile(File inputFile, File outputFile, boolean append) throws IOException {\n\t\tif (FilenameUtils.getExtension(inputFile.getName()).equalsIgnoreCase(\"gz\"))\n\t\t\treturn inputFile;\n\n\t\tif (...
[ { "docid": "696f49f2d765d885d72fd208aed8233e", "score": "0.70555854", "text": "private static File tryGetUncompressedFile(final File src) {\n try {\n final File dst = File.createTempFile(PREFIX, SUFFIX);\n dst.deleteOnExit();\n try (\n final InputSt...
9516e782a9645864f9c495d44e729dca
Genereates a static SocketAddressFactory from a list of SocketAddresses
[ { "docid": "8af1305b174ed0e8e279ebd3b3d7e7ab", "score": "0.8082947", "text": "static SocketAddressFactory from(List<? extends SocketAddress> addresses) {\n return () -> Flux.fromIterable(addresses).map(DiscoveryEvent::add);\n }", "title": "" } ]
[ { "docid": "16c496208b51f5da69f8bdce71a8c891", "score": "0.7712862", "text": "static SocketAddressFactory from(SocketAddress address, SocketAddress... addresses) {\n List<SocketAddress> list = new ArrayList<>();\n list.add(address);\n\n if (addresses != null) {\n list.addAll(Arrays.asList(...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "fc680577dbe11f435a8490379dd5316f", "score": "0.0", "text": "@Override\n\tpublic void onItemClick(AdapterView<?> arg0, View arg1, int arg2, long arg3) {\n\t\tLessonInfo info = list.get(arg2);\n\t\tstartActivity(new Intent(this, AcLessonDetail.class).putExtra(\"info\",\n\t\t\t\tinfo));\n\t}", ...
[ { "docid": "f4bccec648e6eb25ae6f4d7165ffc5a1", "score": "0.7037216", "text": "@Override\n\t\t\tpublic void Goruntule() {\n\t\t\t\t\n\t\t\t}", "title": "" }, { "docid": "27bc40cf2c5e26e0bf8b70807e0bcaed", "score": "0.68683225", "text": "@Override\r\n\tpublic void caminar() {\n\t\t\r\n...
4a05c9e724493b09d5c9a5a681f0660b
Getter for a database field.
[ { "docid": "28366fcb8ea642445dd1d709983bb0de", "score": "0.0", "text": "public java.math.BigDecimal getReferenceNumber() {\r\n return referenceNumber;\r\n }", "title": "" } ]
[ { "docid": "23951e65bdbd7ed83116255f58a79d4c", "score": "0.74931365", "text": "private String getField() {\n return this.field;\n }", "title": "" }, { "docid": "d72d0be80fa08bbc5dde0817e71900b2", "score": "0.7416886", "text": "public String getValue(){\n\t\treturn d...
461a06be17292ece3a57dad5e60e11bd
Notification of state change either as a result of a direct call result, or an asynchronous event from the scanner.
[ { "docid": "189edeff8f605755d95b7ffe12d4dd12", "score": "0.0", "text": "@Override\n public void onStateChanged(final Session session, final State oldState, final State newState) {\n Log.i(TAG, \"onStateChanged, new state=\" + newState.toString());\n runOnUiThread(new Runnable() {\n ...
[ { "docid": "41989343dda55a2901b14c53458eaf9e", "score": "0.66640276", "text": "public abstract void eventOccurred(boolean newState);", "title": "" }, { "docid": "1ab1729cd5130506dd532c9bac4e38d1", "score": "0.64546835", "text": "private void channelStateCallback() {\n final Co...
56ec1d0a88f2af5499b6c17f623379c2
cleans the line stored in rawLine, stores it in cleanLine, then splits the cleaned line on spaces and stores the result in lineParts
[ { "docid": "d889e6057338edfbf5702f80cbf26d00", "score": "0.77039945", "text": "private void cleanLine() {\n int comment = rawLine.indexOf(\"//\");\n String intermediate = rawLine;\n if (comment != -1) { // remove any comments, should they exists\n intermediate = rawLine.s...
[ { "docid": "2d9214caaec32e08d8d28602167fde95", "score": "0.6315774", "text": "private String[] splitLine(String line) {\n return line.trim().split(\"\\\\s+\");\n }", "title": "" }, { "docid": "2704e5cf2ab25921129163872db95085", "score": "0.59541804", "text": "public String ...
0fc991629ed5e1310aa350e3aa968bc1
Este metodo fue cambiado de nombre desde saveContact a saveOrUpdateContact
[ { "docid": "1af23ce2bfb4d1397abb9e2a323f6913", "score": "0.55912703", "text": "@RequestMapping(value = \"/user/save_contact\")\n public String saveOrUpdateContact(@ModelAttribute(\"command\") Contacto c, Model m, HttpSession session) {\n Integer contactId = (Integer) session.getAttribute(\"aCo...
[ { "docid": "9b7225fe9000f7cf359bc96cfe44ac60", "score": "0.6559561", "text": "@Override\r\n public Contact updateContact(Contact contact, String nom) {\n return null;\r\n }", "title": "" }, { "docid": "8b2fe1798af6623298d2f4c916ef92d3", "score": "0.6521868", "text": "voi...
faa3b4275775789a1004de345c472b17
Method for getting the reference to the previous node of the this node
[ { "docid": "849fd10fa9993f510367ad4f0ac13741", "score": "0.7474066", "text": "public FileLine getPrevious() {\n return previous;\n }", "title": "" } ]
[ { "docid": "2b6157aa1eb002f9915c2b63dfb76dcb", "score": "0.8682778", "text": "public Node getPrev()\n\t\t{\n return prev; // XXX-CHANGED-XXX\n\t\t}", "title": "" }, { "docid": "bda7879a3e933e94abf24d2349357034", "score": "0.8614535", "text": "public Node<E> getPreviousNode...
f15fd5d24dd9b85a2f97052295390419
insert a new Cloathing
[ { "docid": "602c3ef7c69f1e12d4e0cafb0121b13c", "score": "0.0", "text": "@Override\r\n\tpublic int insert(Equipment equip) throws Exception{\r\n\t\tint idFromProduct = GetMax.getMaxId(\"Select max(id) from PRODUCT\");\r\n\t\tSystem.out.println(\"Id of the product coresponding to equipment= \" + idFromPro...
[ { "docid": "41282d66e6d20526a0f554613ab8b30e", "score": "0.6658552", "text": "void insert(PCB newPCB);", "title": "" }, { "docid": "68cd08567dc817d9c8b538221b9e104a", "score": "0.6569509", "text": "@Override\n\tpublic void insert() {\n\t\t\n\t}", "title": "" }, { "docid":...
b9d98b8a52fa7d28e8eb841f0b1b4960
This method was generated by MyBatis Generator. This method returns the value of the database column PDSCI.RES_ASSESS_CFG.RECORD_STATUS
[ { "docid": "1d87089bf4aad7692fc53bd3ed817d34", "score": "0.6808533", "text": "public String getRecordStatus() {\r\n\t\treturn recordStatus;\r\n\t}", "title": "" } ]
[ { "docid": "16ead6b5a237b8f43742424b45ebea11", "score": "0.68958277", "text": "public Integer getRecordStatus() {\n return recordStatus;\n }", "title": "" }, { "docid": "b560a98b8cd8dc45018cabcb79c5000c", "score": "0.6776141", "text": "public String getRecordStatus() {\r\n ...
9b8b3da58a475ff5b598d0f1aa417c93
TODO: read settings from configuration file
[ { "docid": "734bc29b98f01c891cb230c812aceeb8", "score": "0.0", "text": "@Bean\n public DataSyncClient dataSyncClient() {\n return new DataSyncClient(false, \"127.0.0.1\", 9000, simpleClientChannelHandler, 10);\n }", "title": "" } ]
[ { "docid": "430658526661589e8d30b0c6935f1417", "score": "0.7414462", "text": "private void ReadFromConfig() {\r\n\r\n }", "title": "" }, { "docid": "7260b23c8bcf2004abcfc1cfd736b718", "score": "0.6993148", "text": "public void loadSettings() {\n \n }", "title": "" }, ...
7fea8663d8a3c49ec1d2900d54aa8962
Gets a Transform Group containing the representation for a specific appearance label (e.g. 'cube', 'red_train'). If a TranformGroup is provided, the nodes needed for representation should be added as children, otherwise a new TransformGroup should be created.
[ { "docid": "1e64f90b6ddac6cf1c751f2977ef07df", "score": "0.5694656", "text": "public TransformGroup buildTransformGroupForShape(appearance.Shape shape,\n \t\t\tTransformGroup transformGroup) {\n \t\tif (transformGroup == null)\n \t\t{\n \t\t\ttransformGroup = new TransformGroup();\n \t\t\ttransformGroup...
[ { "docid": "c0345d82e3da2b30ba23a3652b193df2", "score": "0.6861609", "text": "public TransformGroup getTransformGroup();", "title": "" }, { "docid": "8d1d3d5bcb2fb95aaff8dc9660765079", "score": "0.5258106", "text": "public Node cloneObject() {\n\n Groups group = new Groups(nul...
c54a087f920c4abddf55b04e4ecfd430
This method was generated by MyBatis Generator. This method returns the value of the database column PLT_COMMON_LOG.BUSI_ITEM_15
[ { "docid": "800c4356197b65192bc392218852696c", "score": "0.7282943", "text": "public String getBUSI_ITEM_15() {\n return BUSI_ITEM_15;\n }", "title": "" } ]
[ { "docid": "ac8a054b5f45d56996eec58c649ad151", "score": "0.6910445", "text": "public String getBUSI_ITEM_11() {\n return BUSI_ITEM_11;\n }", "title": "" }, { "docid": "45813ca1f3a0a29b238e6ed135781d6f", "score": "0.6901248", "text": "public String getBUSI_ITEM_5() {\n ...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "bfd1f434601a08603b9a4dd2e0d1d5eb", "score": "0.0", "text": "private void aggiornamentoSalvataggio() {\n\t\tSharedPreferences pref = getSharedPreferences(\"CARPOOLING\", MODE_PRIVATE);\n\n\t\tif(pref.getInt(\"checked\", -1)==1){\n\t\t\tString user = pref.getString(\"username\", \"-1\");\n\t\t...
[ { "docid": "74a4209c94e08d9f5eb0b60e580f5e04", "score": "0.68867725", "text": "@Override\r\n\tpublic void comit() {\n\t\t\r\n\t}", "title": "" }, { "docid": "b645eacb329adc01490ab5013a6c4f7f", "score": "0.67295986", "text": "@Override\n\t\t\tpublic void perfom() {\n\n\t\t\t}", "t...
3171d309656a640ed0d92a6458dd6038
Returns the ending date in a nicely formatted string.
[ { "docid": "d1de3f7cd50124e7bdc889978319ff34", "score": "0.7190263", "text": "public String getEndDate() {\n return endDate.format(OutputDateTimeFormat.OUTPUT_DATE_FORMAT);\n }", "title": "" } ]
[ { "docid": "eac6e00e1df16d1019296c75e1ccfb3a", "score": "0.7730047", "text": "public String getEndingDate() {\r\n\t\t\r\n\t}", "title": "" }, { "docid": "1d259e4bb81952a1778aa274bd5eb343", "score": "0.71110296", "text": "public String getDateEnd() {\n\t\treturn dateEnd.get();\n\t}", ...
263dcb9838302d75cdd3db372cfbdb5b
Inflate the layout for this fragment
[ { "docid": "12ae58dd600cc3082a0ff941185f3344", "score": "0.0", "text": "@Override\n // TODO: Add layout type here\n public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {\n view = inflater.inflate(R.layout.fragment_home_2, container, false);\n ...
[ { "docid": "8b5df47011cc799d795dc7120e1c0c49", "score": "0.68263656", "text": "@Override\n public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {\n return inflater.inflate(R.layout.kuliahfragisidata, container, false);\n }", "title": "" }, ...
1cee87926784171f90f6ce67c6444ad2
Specify the value which is the unique id for this persistent object, normally the values on this property should be assigned by the database (e.g. autoincrement)
[ { "docid": "67b00d7403e9ef4b388e59f9b79027fb", "score": "0.0", "text": "public String getIdPropertyName();", "title": "" } ]
[ { "docid": "ae5af7f9ab9ee1e5e0f874ff36a5c263", "score": "0.7008709", "text": "@Override\r\n\tpublic Long getId() {\n\t\treturn asseroomid;\r\n\t}", "title": "" }, { "docid": "313f9932065e8c002b532a882ae481bb", "score": "0.69761163", "text": "public void setId(long value) { _id = valu...
a4cf38c4a32b240da372f794f8c84c11
Este metodo retorna uma referencia do endereco da imagem do candidato.
[ { "docid": "d447f5767fec65ef7fff05e9ab0a6bc0", "score": "0.0", "text": "public String getCaminhoImagem() {\n\t\treturn caminhoImagem;\n\t}", "title": "" } ]
[ { "docid": "b4d49a72d48c67703f47dbc419249ef8", "score": "0.5972067", "text": "String getAvatarUrl();", "title": "" }, { "docid": "b4d49a72d48c67703f47dbc419249ef8", "score": "0.5972067", "text": "String getAvatarUrl();", "title": "" }, { "docid": "8964b236a7755e53ab9d6950...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "ba18c15a9f07dfaa8f91cb2c523c404c", "score": "0.0", "text": "@Override\n\t\t\tpublic void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {\n\t\t\t\tif(isChecked) {\n\t\t\t\t engine = TPSVG_CODE;\n\t\t\t\t webkit.setChecked(false);\n\t\t\t\t svgand2.setChecked(false);\...
[ { "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...
13f3cc544934cd9c6dd574a3535153a2
Will be called just after the interchange process service has been finished.
[ { "docid": "908e4653c81581ff2d69a6a75b72b9fe", "score": "0.7751619", "text": "public void onFinished(InterchangeProcessInfo interchangeProcessInfo);", "title": "" } ]
[ { "docid": "d6dd45055cb238a1153ea503943cbc4a", "score": "0.6653642", "text": "@Override\n\tpublic void afterProcessStarted(ProcessStartedEvent event) {\n\t}", "title": "" }, { "docid": "0b24b03befb644dc37bbe644a0c8985b", "score": "0.64840055", "text": "private void finish() {\n\n ...
49616622b94ff5ce0939ccaab2d6fabd
Force synchronization for all subgroups (recursively whole tree) of the group (useful for group structure)
[ { "docid": "164a1f517aa9a04cbc6c3060336f674b", "score": "0.78285813", "text": "void forceAllSubGroupsSynchronization(PerunSession sess, Group group) throws GroupNotExistsException, PrivilegeException;", "title": "" } ]
[ { "docid": "029850d20137343e5590e727670f5b05", "score": "0.6425509", "text": "@Override\n public void onSyncGroups(GroupMessage message)\n {\n }", "title": "" }, { "docid": "029850d20137343e5590e727670f5b05", "score": "0.6425509", "text": "@Override\n public void onSyncGr...
4caf0814efa0365bd413416e61953610
Add user key words.
[ { "docid": "d1a37f05b94dcb788304e571fddef2ba", "score": "0.55956715", "text": "@PostMapping(\"/user/resume/key-words\")\n @Nonnull\n public String keyWordSave(\n @Nonnull @RequestParam(value = \"words\", defaultValue = \"\") final String words,\n @Nonnull final Map<String, Ob...
[ { "docid": "0867fb26c13d2dd7027a6b28be6a29a3", "score": "0.6904213", "text": "private void addWord() {\n System.out.print(\"Enter the word you'd like to add: \");\n \tString input = getUserInput();\n \tDictionaryWord word = editor.find(input);\n \tif (word == null) {\n\t\t\tSystem.out.pr...
7ecdac505ce54530cb524bf73f0c0db5
I do not need any action here you might
[ { "docid": "ab7425585eb8a29ff5530f30923dcc29", "score": "0.0", "text": "@Override\n public void onClick(DialogInterface dialog,\n int which) {\n dialog.dismiss();\n ...
[ { "docid": "33d41636b65afa8267c9085dae3d1a2d", "score": "0.7078042", "text": "private void apparence() {\r\n\r\n\t}", "title": "" }, { "docid": "f777356e2cd2fecd871f35f7e556fda8", "score": "0.6725506", "text": "public void mo3640e() {\n }", "title": "" }, { "docid"...
35186183627bf9e26af84c2824f5d7a7
Get the catalog host id for the corresponding SiteProcedureConnection
[ { "docid": "4dda9c92a1303e4f691df9fac6a328d8", "score": "0.6455372", "text": "public int getCorrespondingHostId();", "title": "" } ]
[ { "docid": "42d4b5abe246a058c81d8b561b223a18", "score": "0.6192345", "text": "public String getSiteCatalogImplementor() {\n return mProps.getProperty(PegasusProperties.PEGASUS_SITE_CATALOG_PROPERTY);\n }", "title": "" }, { "docid": "4941e9a578e5fa8bac3afb3b82707873", "score": "...
1f51ae370e3b92e2a8910b23e08b3792
converts a bitmap to a string so it can be sent to the server check if image is null in which case we will return an empty string
[ { "docid": "a9254f6d3e0fa6494edb66d85d3c2f27", "score": "0.7904604", "text": "private String imageToString(Bitmap bitmap) {\n if (bitmap == null)\n return \"\";\n\n ByteArrayOutputStream output = new ByteArrayOutputStream();\n bitmap.compress(Bitmap.CompressFormat.JPEG, 1...
[ { "docid": "5423b6bc86904ffb6350ecf21db7e2a2", "score": "0.7902482", "text": "private String imageToString(Bitmap bitmap){\n if(bitmap==null){\n return \"\";\n }else{\n ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();\n bitmap.comp...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "a644c96c326dacf1946b41e87cd4e54a", "score": "0.0", "text": "@Override\n public DateTime creationTime() {\n return null;\n }", "title": "" } ]
[ { "docid": "1acc57d42c31dee937ac33ea6f2a5b0b", "score": "0.68399656", "text": "@Override\r\n\tpublic void comer() {\n\t\t\r\n\t}", "title": "" }, { "docid": "0c69424878be03e50f19e2ca61ef640b", "score": "0.68002176", "text": "@Override\r\n\tpublic void leggi() {\n\t\t\r\n\t}", "ti...
15a2cc6a98c10ed6166c34977f31461d
Is the provided short VDC id this VDC's id (or empty)
[ { "docid": "80d85656bf1ea2b0634657fc1e664a07", "score": "0.7069584", "text": "public boolean isLocalVdcId(String shortVdcId) {\n return StringUtils.isBlank(shortVdcId) || StringUtils.equals(shortVdcId, VdcUtil.getLocalShortVdcId());\n }", "title": "" } ]
[ { "docid": "bfbfaa155130ccfa690bf2a9373f88da", "score": "0.66598177", "text": "public void verifyVdcId(String shortVdcId) {\n // TODO: we may want to also check the connection status of this VDC\n if (StringUtils.isNotBlank(shortVdcId) && (VdcUtil.getVdcUrn(shortVdcId) == null)) {\n ...
d8369e1a103dc2e98e1a95d9c36d8f9b
Utility function to add an item to the queue
[ { "docid": "54d2d0985f6d781a35af366064a3ad8d", "score": "0.64545846", "text": "public void enqueue(int item)\r\n\t{\r\n\t\t// check for queue overflow\r\n\t\tif (isFull())\r\n\t\t{\r\n\t\t\tSystem.out.println(\"OverFlow\\nProgram Terminated\");\r\n\t\t\tSystem.exit(1);\r\n\t\t}\r\n\r\n\t\tSystem.out.pri...
[ { "docid": "6637d14699738a7d00a3b0e9b6d53817", "score": "0.7883371", "text": "public void enqueueItem(E item);", "title": "" }, { "docid": "a600d22cf7f18c7c62732c030590416d", "score": "0.76090634", "text": "public void enqueue(T item);", "title": "" }, { "docid": "837dcd5...
d17c3194fafa09d66a84dbe1678f2438
lets print number between 0 10
[ { "docid": "67124fc26a05d7b53acb4124529e8f45", "score": "0.5768819", "text": "public static void main(String[] args) {\n\t \n\t\tint i ;\n\t\t\n \n\tfor (i = 0; i <= 10; i++ )\n \t\n {System.out.println(i);}\n\t\n\t\t\n\t}", "title": "" } ]
[ { "docid": "83721c8831587b63a83fd64cd8367d12", "score": "0.69701016", "text": "private static void printNumUsingForLoop() {\n for (int i = 1; i <= 10; i++) {\n System.out.println(i);\n }\n }", "title": "" }, { "docid": "3119676007c9fa9a876de0026388e0ff", "scor...
5c7e4fd1033b58610665b5458d35caca
string GroupAmount = 2;
[ { "docid": "5bc1cd9e90c0f71e0cfe24844f202032", "score": "0.6326341", "text": "public java.lang.String getGroupAmount() {\n java.lang.Object ref = groupAmount_;\n if (!(ref instanceof java.lang.String)) {\n com.google.protobuf.ByteString bs =\n (com.google.protobuf.ByteString)...
[ { "docid": "22bd0feac5961c06cc6317ff1c8db60f", "score": "0.68160325", "text": "String getGroupNum();", "title": "" }, { "docid": "8e652a9be56846dde59b7be9f77d51b4", "score": "0.66187656", "text": "public String group(String groupVar);", "title": "" }, { "docid": "50aa3c4a...
b9515bed24d456a99014f1a4f63c4ee3
.ratis.common.NotReplicatedExceptionProto notReplicatedException = 4;
[ { "docid": "9874435106e26fa8cda1f8e839dffa6e", "score": "0.61805415", "text": "private org.apache.ratis.shaded.com.google.protobuf.SingleFieldBuilderV3<\n org.apache.ratis.shaded.proto.RaftProtos.NotReplicatedExceptionProto, org.apache.ratis.shaded.proto.RaftProtos.NotReplicatedExceptionProto.B...
[ { "docid": "469ca4a10a1d277c24dd3a96040139a0", "score": "0.8460043", "text": "org.apache.ratis.shaded.proto.RaftProtos.NotReplicatedExceptionProto getNotReplicatedException();", "title": "" }, { "docid": "3a3ebf7c1d80814d256318acd1786921", "score": "0.82809865", "text": "org.apache.r...
8b12597e75dac6903b989ba8526aab07
Load the serialized data into the JID.
[ { "docid": "7bcd98c4337b21896134da34b6af2520", "score": "0.0", "text": "@Override\n public void load(final ReadableBytes readableBytes) throws Exception {\n super.load(readableBytes);\n _len = _loadLen(readableBytes);\n tuple = null;\n readableBytes.skip(_len);\n }", ...
[ { "docid": "087a18940bd297a01f0e01560b25e1ad", "score": "0.64062667", "text": "public void load() {\r\n\t\tPersistence persistence = new Persistence();\r\n\t\tObject[] result = persistence.load();\r\n\t\tmembers = (ArrayList<Member>) result[0];\r\n\t\tidCounter = (int) result[1];\t\t//Set the idCounter ...
cb7e675b3a3de751a41eecc625af0122
please look at below code
[ { "docid": "36a666cce984f3d428ca772f54ea3c29", "score": "0.0", "text": "public boolean equals(Object obj) {\n\t\tif(obj instanceof MyObject) {\n\t\t\tboolean result1 = s.equals(((MyObject)obj).s);\n\t\t\treturn result1;\n\t\t}\n\t\telse {\n\t\t\treturn false;\n\t\t}\n\t}", "title": "" } ]
[ { "docid": "9144a32a2cd5a72f1d1380aa1f1d5f09", "score": "0.60226935", "text": "public void mo5774g() {\n }", "title": "" }, { "docid": "80d20df1cc75d8fa96c12c49a757fc43", "score": "0.59372175", "text": "@Override\n\tprotected void getExras() {\n\t\t\n\t}", "title": "" },...
470e8b3753c34c31078297fcd76259ee
Persist commit in the database
[ { "docid": "16c9e7c3133bfb0bb1b6cd1ee6d80097", "score": "0.0", "text": "private synchronized ChunkCommitDao persistChunkCommit(ChunkCommitDao chunkCommit)\n\t\t\tthrows InvalidBeanException, SQLException {\n\t\tccdao = new ChunkCommitDao();\n\t\tChunkCommitDao aux = ccdao.get(chunkCommit);\n\t\tif (aux ...
[ { "docid": "ad9a1ee137c0aaa261fac6299d9bd216", "score": "0.8198553", "text": "public void commit() {\n\t//save();\n\t}", "title": "" }, { "docid": "fc70ad0878497831845f4b81f9ab0e64", "score": "0.8044131", "text": "public void commit() {}", "title": "" }, { "docid": "428ae...
22d8b349b4c36bf4249baed6c5f244d5
region ================================ Campaign create ================================
[ { "docid": "8b7a24d4b7795fb580b17a8143cb7099", "score": "0.66526866", "text": "AccessCertificationCampaignType createCampaignObject(AccessCertificationDefinitionType definition,\n Task task, OperationResult result) throws SecurityViolationException...
[ { "docid": "ee43062e7df9848848aee91efb243b6f", "score": "0.72504014", "text": "public native void campaignCreate();", "title": "" }, { "docid": "d527aae062126eddf837adb0446ca602", "score": "0.7204372", "text": "public MailchimpResponse<CampaignResponse> create(CampaignRequest request...
f41c1e953058ac65978b6db842caa751
Test case number: 7 /Coverage entropy=1.0986122886681096
[ { "docid": "a92accd8ab0ac362638988f0c9980445", "score": "0.0", "text": "@Test(timeout = 4000)\n public void test07() throws Throwable {\n DynamicSelectModel dynamicSelectModel0 = new DynamicSelectModel();\n // Undeclared exception!\n try { \n dynamicSelectModel0.translateValue(\...
[ { "docid": "0ef0b4c562e56cbcdb375b4e19c4662a", "score": "0.732844", "text": "@Test(timeout = 4000)\n public void test077() throws Throwable {\n TestInstances testInstances0 = new TestInstances();\n Instances instances0 = testInstances0.generate();\n Evaluation evaluation0 = new Evaluat...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "64ec1cd2e8837d0bce24303eec6c77e5", "score": "0.0", "text": "public static void main(String[] args) {\n\t\tVehicle car1=new Car(\"bike\");\r\n\t\tBufferedReader reader=new BufferedReader(new InputStreamReader(System.in));\r\n\t\tString input = null;\r\n\t\ttry {\r\n\t\t\twhile(input!=\"quit\"...
[ { "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...
60d39b68e0097a160c67382de81d055c
This method was generated by MyBatis Generator. This method sets the value of the database column persons.city
[ { "docid": "8f9e1ff83c70e12f8c00f3971c32ce26", "score": "0.6988063", "text": "public void setCity(String city) {\n this.city = city;\n }", "title": "" } ]
[ { "docid": "d0957d02c4d7e51a775bf0f53575804a", "score": "0.7239875", "text": "public void setCity(String city);", "title": "" }, { "docid": "577df40dc05208b7a1a6b693ea45de45", "score": "0.72193974", "text": "public void setCity(String city) {\r\n\t this.city=city;\r\n }", "title"...