query_id
stringlengths
32
32
query
stringlengths
7
129k
positive_passages
listlengths
1
1
negative_passages
listlengths
88
101
dfe93b325b5f1b82914977b53067c016
Check is a method which identifies if a selected vertex has neighbours with the same color as it
[ { "docid": "ec75a683a3f8a48a0b4d0697ef73da53", "score": "0.74486756", "text": "public static boolean Check(int vertex) {\r\n\t\t\tDrawer.g.adjacentNodes(vertex);\r\n\t\t\tint neighbours [] = Drawer.g.getAdjacentNodes();\r\n\t\t\tColor color = Drawer.colorList[vertex - 1];\r\n\t\t\tfor (int i = 0; i < ne...
[ { "docid": "b11275aff143b5156fc2e0b95d26f9a2", "score": "0.7072196", "text": "public static boolean Check(NodeButton nb) {\r\n\t\t\tint vertex = nb.getVertexNumber();\r\n\t\t\tDrawer.g.adjacentNodes(vertex);\r\n\t\t\tint neighbours [] = Drawer.g.getAdjacentNodes();\r\n\t\t\tColor color = Drawer.colorLis...
215ce0b8d9d27fa96ff211dafd427434
Creates new form PnStudentManager
[ { "docid": "15320653939cd8b5fd920d0d91df0f83", "score": "0.6453908", "text": "public PnStudentManager() {\n initComponents();\n\n final StudentController studentController = new StudentController(tbStudent, tfSearch, btExport, btAdd);\n studentController.loadData();\n student...
[ { "docid": "66057051391a413a3029843d1419d292", "score": "0.7103027", "text": "public New_Student() {\n initComponents();\n conn=sqlConnection.dbConnector();\n show_user();\n }", "title": "" }, { "docid": "87b772873194c1fa2bf7c7e27f623908", "score": "0.7065861", ...
423c92a81fb3abba750f05f22c425208
Get all the ogrencis.
[ { "docid": "c5204bee9a2af2bc4fd14c73dcf0e6d7", "score": "0.596156", "text": "List<OgrenciDTO> findAll();", "title": "" } ]
[ { "docid": "5f96169b5df7bd7eaed4926f6d14ae59", "score": "0.7013687", "text": "@GET\n\t@Produces({MediaType.APPLICATION_XML ,MediaType.APPLICATION_JSON})\n\tpublic List<Allergies> getAllergies() {\n\t\t\n\t\tSystem.out.println(\"getAllergies is called\");\n\t\treturn repo.getAllergies() ;\n\t}", "tit...
4b333b137c2454b5c7ad4ad595252481
repeated int32 appids = 1;
[ { "docid": "bb8df7da53b6b110c6b228446f1422a4", "score": "0.58096", "text": "public Builder addAppids(int value) {\n ensureAppidsIsMutable();\n appids_.add(value);\n onChanged();\n return this;\n }", "title": "" } ]
[ { "docid": "b1f35f73e4e66123f38f65bb9a4a2436", "score": "0.6988374", "text": "int getAppids(int index);", "title": "" }, { "docid": "7d8ba4c1573ebdd4d1c4d23dee18bb1b", "score": "0.6920456", "text": "int getAppidsCount();", "title": "" }, { "docid": "35619fe3813e17e2dc8c54...
7292acb6920f538980a38187da0b1848
Handle product posts when the server got a request POST /product & MIME that contains an organization.
[ { "docid": "96509697c925bd76b2ed61356defb399", "score": "0.0", "text": "@POST\n public Response createProduct(@Auth final DbCredential credential, final String productName){\n if(!credential.getRoles().contains(DbCredential.AvailableRoles.DATA_UPDATER)){\n throw new WebApplicationEx...
[ { "docid": "9372989b4096621a45d591bfd8e577f2", "score": "0.57317936", "text": "@PostMapping(\"/admin/product\")\n\tpublic void addProduct(@RequestBody Product product) {\n\t\ttry {\n\t\t\tproductService.addProductService(product); // Adding Product using Product Service\n\t\t\tif (product != null)\n\t\t...
bb4cab246098f6aac8858b5fc9e22afe
returns boolean whether data is in tree
[ { "docid": "81e716e693103ed232a7e9c3edca031e", "score": "0.6580263", "text": "private boolean contains(T data, BSTNode<T> node) {\r\n if (node == null) {\r\n return false;\r\n } else if (data.compareTo(node.getData()) == 0) {\r\n return true;\r\n } else if (dat...
[ { "docid": "3d7e18b8849ac42b8ffe4d92dacf39ac", "score": "0.720833", "text": "boolean hasDataNode();", "title": "" }, { "docid": "1fdb6ecc105925d57b1798ec9071205d", "score": "0.71114767", "text": "public boolean contains(Comparable data) { // *\r\n if (bstFind(root, data...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "5bab7dcafa74340892a17c34002ee038", "score": "0.0", "text": "public String getRepeatId() {\n\t\treturn repeatId;\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...
e65ba1d896fc0aa8ddabd0f27636b74c
Creates a BigInteger from the specified decimal String representation of a BigInteger.
[ { "docid": "ad4f3be04c7685e1e4b0b82f124c906d", "score": "0.6117279", "text": "public BigInteger(String val) {\n digits = new ArrayList<>();\n if ((val.length() == 1 && val.charAt(0) == '0') || val.length() == 0) {\n sign = 0;\n } else {\n int limit = 0;\n if (val.charAt(0) == '-'...
[ { "docid": "08a512cbd4203589fad69c6f66cfd169", "score": "0.68798465", "text": "public static BigInteger parse(String integer) \n\tthrows IllegalArgumentException {\n\t\t\n\t\t// following line is a placeholder - compiler needs a return\n\t\t// modify it according to need\n\t\tinteger = integer.trim(); /...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "3c6dde88ff0a5e8cfe66b3abeec15e44", "score": "0.0", "text": "@Override\r\n\tpublic void mouseExited(MouseEvent arg0) {\n\r\n\t}", "title": "" } ]
[ { "docid": "663ac6f718361fb243bf093a1c7ded6a", "score": "0.66285414", "text": "@Override\r\n\tprotected void Goukakyuu() {\n\t\t\r\n\t}", "title": "" }, { "docid": "80d20df1cc75d8fa96c12c49a757fc43", "score": "0.65323734", "text": "@Override\n\tprotected void getExras() {\n\t\t\n\t}"...
674d1d2f31fd30b9c77a50227a873ecd
The lifetime of the Restricted Data Token, in seconds.
[ { "docid": "2d80ce60cb4d33b8af7a57d84add4d13", "score": "0.7204944", "text": "@Schema(description = \"The lifetime of the Restricted Data Token, in seconds.\")\n public Integer getExpiresIn() {\n return expiresIn;\n }", "title": "" } ]
[ { "docid": "d115de197ee058c085229c1adc1f6fa3", "score": "0.71026504", "text": "long getTokenExpiry();", "title": "" }, { "docid": "c564d357b1ff70ef06d504eb4da8e221", "score": "0.70338", "text": "public long getRememberTokenDuration();", "title": "" }, { "docid": "39d98f70...
0672f237c21a844226132b4d24893dab
returns an array containing the nonambiguous states that this state represents.
[ { "docid": "8f3c550f1b5fe6830d2f10536f4f5109", "score": "0.6506609", "text": "public int[] getStates(int state) {\n\n int[] states;\n if (!isAmbiguousState(state)) {\n states = new int[1];\n states[0] = state;\n } else {\n states = new int[stateCount...
[ { "docid": "29ff2540eb88edab7968a07cdb1adec6", "score": "0.65757906", "text": "public boolean[] getStateSet(int state) {\n\n boolean[] stateSet = new boolean[stateCount];\n if (!isAmbiguousState(state)) {\n for (int i = 0; i < stateCount; i++) {\n stateSet[i] = fa...
4e1a3ae98a0eaa303b6c481209f51894
parse the resultset received into a list of users
[ { "docid": "c78c9a3fc07cb618e63a41d571cfb6ab", "score": "0.0", "text": "private List<Fee> parseResultSet(ResultSet resultSet) {\n\t\tList<Fee> feeList = new ArrayList<>();\n\t\ttry {\n\t\t\twhile (resultSet.next()) {\n\t\t\t\t// while there is data\n\t\t\t\tFee fee = new Fee();\n\t\t\t\t// set the param...
[ { "docid": "b99afcd1ca945d8dc5c24678ab0e2c87", "score": "0.73595786", "text": "public ArrayList<User> getUserList(){\n \n try {\n String query = String.format(\"SELECT name FROM emt_users\");\n ResultSet resultSet = executeQuery(query);\n \n Arra...
c7dd5fe7fea7632bfd521b5e361198cc
optional uint32 timing_func = 2 [default = 0];
[ { "docid": "26c7f5377dad8770a94c570337a3d6b2", "score": "0.6635753", "text": "boolean hasTimingFunc();", "title": "" } ]
[ { "docid": "2c37c7d3a2e7dc41da18861979acfbf4", "score": "0.80689603", "text": "int getTimingFunc();", "title": "" }, { "docid": "2c37c7d3a2e7dc41da18861979acfbf4", "score": "0.80689603", "text": "int getTimingFunc();", "title": "" }, { "docid": "2c37c7d3a2e7dc41da18861979...
4ca2429d62235b4be366accb76848428
Return a list of JobExecutionContext objects that represent all currently executing Jobs in this Scheduler instance. This method is not cluster aware. That is, it will only return Jobs currently executing in this Scheduler instance, not across the entire cluster. Note that the list returned is an 'instantaneous' snapsh...
[ { "docid": "5c6b619228078e2bf9274e70a96a321a", "score": "0.7500642", "text": "List getCurrentlyExecutingJobs() throws SchedulerException;", "title": "" } ]
[ { "docid": "253a610d80480d55c2032aa89f059e3e", "score": "0.669412", "text": "public List<JobDefinition> getJobs() {\n return engine.getManagementService().createJobDefinitionQuery().list();\n }", "title": "" }, { "docid": "1a17ea852158d1019ab3324b26867438", "score": "0.663618",...
6acc6a8f2385a8aa1691683fecf47cf5
This method was generated by MyBatis Generator. This method sets the value of the database column recommanddes.doc8
[ { "docid": "4a0682d2c2fc5d94828f32d7382fe314", "score": "0.66453624", "text": "public void setDoc8(String doc8) {\n this.doc8 = doc8 == null ? null : doc8.trim();\n }", "title": "" } ]
[ { "docid": "237a131bc168e6cfe9b66d70dadfbe32", "score": "0.59762603", "text": "public String getDoc8() {\n return doc8;\n }", "title": "" }, { "docid": "faec4f36517a49797928fe81387307f6", "score": "0.58865994", "text": "public void setDoc9(String doc9) {\n this.doc9 ...
7015c183a44d60bde9e0c3188c5d1397
binds the data to the TextView in each row
[ { "docid": "0316fd3ef2b3804dd641e0d6cc558084", "score": "0.0", "text": "@Override\n public void onBindViewHolder(ViewHolder holder, int position) {\n String question = mData.get(position);\n holder.myTextView.setText(question);\n }", "title": "" } ]
[ { "docid": "a2ed5cdebe318984521cb941541a28cf", "score": "0.66863555", "text": "private void fillData() {\n String[] from = new String[] { QSOContactTable.KEY_CALL, QSOContactTable.KEY_RXFREQ, QSOContactTable.KEY_TIMEON };\n // Fields on the UI to which we map\n int[] to = new int[] { R.id...
a3a876c3282b2054e9c975e9b4c96374
change the make of the Car
[ { "docid": "7340c295a474486c76aa7ea547eea36c", "score": "0.64184535", "text": "public void setMake(String mk) {\n make = mk;\n }", "title": "" } ]
[ { "docid": "e8cbd42b40e95af9b80bd84fc8655449", "score": "0.74144787", "text": "public void setMake(String make) {\n this.make = make;\n }", "title": "" }, { "docid": "4e3abfbd4b406f0bff984e6f15c867ed", "score": "0.7339505", "text": "public void setMake(String make)\n{\n\tth...
ac69869bf174aac58f6315c973e5d40c
a constructor that prohibits to create a Tester class object within other classes
[ { "docid": "971c2f31e11dcdb2bc63b1fe11bdc61e", "score": "0.0", "text": "private TesterForExtraTask(String name, String surname) {\n\t\tthis.name = name;\n\t\tthis.surname = surname;\n\n\t}", "title": "" } ]
[ { "docid": "5180c8c8e595d7eebcd8c6179810b113", "score": "0.69857144", "text": "@Test\n\tpublic void constructorTest() throws Exception {\n\t\tthis.getTestingInstance();\n\t}", "title": "" }, { "docid": "9efb3aa77f34fa6652756f90bf01641a", "score": "0.6884978", "text": "public Test(){}...
4597cc33f5e2ee6492bf59fcf90fa5c1
ExitCode is status code provided by validators to specify error, if any. Exit code is usually filled by the exit code returned from execution of specified data source script. With code 0 means there is no error. uint32 exit_code = 2;
[ { "docid": "c063a4a2ddd45f8b27814824567806c1", "score": "0.67956865", "text": "int getExitCode();", "title": "" } ]
[ { "docid": "a3d602ff8fdec44962e024dc02f2f31e", "score": "0.66785157", "text": "public synchronized void setExitCode(int exitCode)\n {\n this.exitCode = \"\" + exitCode;\n synchronized(this.queuedRequests)\n {\n for (int i = 0; i < this.queuedRequests.size(); i++)\n ...
a989e2d2803d36ffe95e2705c447ed85
Added for v1.4 soundPath for accessibility purposes
[ { "docid": "994ebfab7e15c3a36344acd53974e072", "score": "0.68085116", "text": "public void setSoundPath( String soundPath ) {\r\n \r\n this.soundPath = soundPath;\r\n if (soundPath!=null){\r\n AllElementsWithAssets.addAsset( this );\r\n }\r\n }", "title": "" }...
[ { "docid": "4a5711002b67595790c9b3db532bc17d", "score": "0.7368021", "text": "void loadSound(String name, Path p);", "title": "" }, { "docid": "a9c0c9c894ac8df7b8c9e5e5da24e762", "score": "0.71890455", "text": "public String getSoundPath( ) {\r\n \r\n return soundPath;\...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "eaaa4f32fc88296ab93006234d6f9c99", "score": "0.0", "text": "@Override\n\tpublic Employee getEmployeeById(int employeeId) {\n\t\treturn null;\n\t}", "title": "" } ]
[ { "docid": "d7194e467f51e022c107531d8614b6a3", "score": "0.6905833", "text": "@Override\r\n\tpublic void anular() {\n\t\t\r\n\t}", "title": "" }, { "docid": "cdf542363f5b089e84183e3d9020935f", "score": "0.6697644", "text": "@Override\n\t protected void ramana() {\n\t\t\n\t}", "ti...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "439e44bc47ba8e42737860b8358fa6d1", "score": "0.0", "text": "public ElibraryOutputData returnBookFormDetail(Long bookId) {\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...
9832aa29da06635761348972f101fba5
Gets the ivaequ value for this PagoAnticipadoStructResCons.
[ { "docid": "50c7d563ddac4fa1cbbeb5515787a495", "score": "0.6890745", "text": "public java.math.BigDecimal getIvaequ() {\n return ivaequ;\n }", "title": "" } ]
[ { "docid": "3a59f705f98f2d55e57c2b8bb4c55774", "score": "0.64778775", "text": "public double getIva() {\r\n return iva.get();\r\n }", "title": "" }, { "docid": "ddf1367f3ee0a1562c55cb1e33ed590f", "score": "0.6276042", "text": "public double getIva()\n {\n return i...
1ce976c946ab4ba6e8d1a2d566b9e043
Getter de int radio
[ { "docid": "2ce491fffab2c767954377c21f16a83f", "score": "0.85878956", "text": "public int getRadio(){\n return this.radio;\n }", "title": "" } ]
[ { "docid": "e1154e78647ba164b05055b8d8fbc7fd", "score": "0.76264936", "text": "public double getRadio() {\n return radio;\n }", "title": "" }, { "docid": "897c5795f1d572d676d801742c3c0b78", "score": "0.7162547", "text": "public void setRadio(double radio){\n this.rad...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "4a4258ece41aab1e78ff0020353618b2", "score": "0.0", "text": "@Override\n protected void onPostExecute(JSONObject results) {\n super.onPostExecute(results);\n Log.d(\"hi\", \"getresults\" + results);\n mDialog.dismiss();\n\n\n\n if(results!=nu...
[ { "docid": "da34ed11fe7c5649b3cd0bdad6dca5df", "score": "0.7115143", "text": "@Override\n\t\tpublic void 비행() {\n\t\t\t\n\t\t}", "title": "" }, { "docid": "99cfe01c5035e9a9ca6dafada0e4a005", "score": "0.67343336", "text": "@Override\r\n\tpublic void caminar() {\r\n\t\t// TODO Auto-g...
007e62f6c350fdbbb55b3f6a5d048972
$ANTLR end "rule__Opportunity__Group__1__Impl" $ANTLR start "rule__Opportunity__Group__2" InternalRM.g:1691:1: rule__Opportunity__Group__2 : rule__Opportunity__Group__2__Impl rule__Opportunity__Group__3 ;
[ { "docid": "aee9c4060c3e76a89ca94fb583e0f0a4", "score": "0.77769285", "text": "public final void rule__Opportunity__Group__2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalRM.g:1695:1: ( rule__Opportunity__Grou...
[ { "docid": "8ceba368fdcab2b65f185d0dad3f1fe3", "score": "0.7246493", "text": "public final void rule__Opportunity__Group__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalRM.g:1668:1: ( rule__Opportunity__Group...
da6bdf22e7d059588d4cb4b35a157dd0
Clear the fontsize css property.
[ { "docid": "a7a61eaa479df86ea930c53c17a27a93", "score": "0.74844706", "text": "static void clearFontSize(DomStyle domStyle) {\n\t\tdomStyle.clearProperty(STYLE_FONT_SIZE);\n\t}", "title": "" } ]
[ { "docid": "06427710764d301c00c4a88b55b24b6b", "score": "0.65311366", "text": "public void setFontsize(Short fontsize) {\n this.fontsize = fontsize;\n }", "title": "" }, { "docid": "f195c0644bf1ea1b2701ef817588f671", "score": "0.6245065", "text": "private static void decrem...
ddb43722e3a153fdf2fe077a5d154e81
This method is called every time a player lands on an element. If player lands on a element that is owned by another player, it calls the rent method.
[ { "docid": "3a6db1e5cdce0aa40f409cc574b9937d", "score": "0.6168354", "text": "public static void checkRent(Player player) {\n\t\tint position = player.getPlayerPosition();\n\t\tfor (Element element : elements) {\n\t\t\tif ((element.getSquareNum() == position)) {\n\t\t\t\tif (element.getOwnedBy() != 0 &&...
[ { "docid": "0acf734ad9b05e95c762c178bdff6ca0", "score": "0.6510583", "text": "@Override\r\n\tpublic void landedOn() {\n\t\tif(this.isOwned()) {\r\n\t\t\tMonopolyGameController.allowCurrentPlayerToPayRent();\r\n\t\t}else MonopolyGameController.allowCurrentPlayerToBuy();\r\n\t}", "title": "" }, { ...
d83c4530c38c51b539748758b0a75d89
Returns the result of interpreting the object as an instance of 'Inline'. This implementation returns null; returning a nonnull result will terminate the switch.
[ { "docid": "0b327e9347438521c149f9d86fdcdd2b", "score": "0.7437635", "text": "public T caseInline(Inline object) {\n\t\treturn null;\n\t}", "title": "" } ]
[ { "docid": "99642436617e305f268c13ee11d9a7bc", "score": "0.57550716", "text": "public boolean isInline() {\n return !isBlock;\n }", "title": "" }, { "docid": "18000e60543a8158f07aaf492a65d79e", "score": "0.5627097", "text": "protected boolean isInline() {\n return fa...
cc7ec6ae154ff565a0db0ca09d458a91
DocumentationEntry: "loglevel" '=' level=DocumentLevelSpecification;
[ { "docid": "6d0de5f635a279bdae9abef499fbd82d", "score": "0.0", "text": "@Override public ParserRule getRule() { return rule; }", "title": "" } ]
[ { "docid": "3571e239b45cc2eefba9e1416b2beffe", "score": "0.5749937", "text": "public void setLogLevel(int level);", "title": "" }, { "docid": "b965ebacc1ab758d99e14761c81017ae", "score": "0.5656395", "text": "@Test\n public void testLogLevelHandlerOutput() throws Exception {\n as...
2c0d2d31da7cc8b2039682a5bf2a4b24
~ Methods //////////////////////////////////////////////////////////////// Get a Hibernate configuration object
[ { "docid": "73d7912ee35f6255e5a4a68973106a66", "score": "0.6105967", "text": "public Configuration getConfiguration();", "title": "" } ]
[ { "docid": "83f58813188d6852863cbb4aa9a85293", "score": "0.7119951", "text": "public static String getHibernateConfigFile() {\r\n return hibernateConfigFile;\r\n }", "title": "" }, { "docid": "b8a06ea5045f626bcd516c79e0cb9309", "score": "0.6877298", "text": "private static Sessio...
664f0de4deae144073c9c812e036518f
Removes a value of property StartedAtTime given as an instance of java.util.Calendar
[ { "docid": "07f8cf4bd193aa6fa260a2c17a3df547", "score": "0.6957134", "text": "public static void removeStartedAtTime(Model model, org.ontoware.rdf2go.model.node.Resource instanceResource, java.util.Calendar value) {\r\n\t\tBase.remove(model, instanceResource, STARTEDATTIME, value);\r\n\t}", "title":...
[ { "docid": "6743fec14f030fb439454075043fbc78", "score": "0.7897926", "text": "public void removeStartedAtTime(java.util.Calendar value) {\r\n\t\tBase.remove(this.model, this.getResource(), STARTEDATTIME, value);\r\n\t}", "title": "" }, { "docid": "b316e9055dacfb53c5d64805b769167c", "scor...
578e39b70016f16847818b3ef971450a
Upate an existing equipment specification
[ { "docid": "225a2fc9262c573ad26fea910c77b99e", "score": "0.0", "text": "private void update()\n{\n // implementation of update button\n try\n {\n // check the data validity enterd by user using the defined checkValidity method\n if(checkValidity())\n {\n\n // s...
[ { "docid": "2fc4a92ef798d1ea2d7fb9fa5428720e", "score": "0.58901364", "text": "public void setEquipmentUsage(EquipmentUsage equipmentUsage) { this.equipmentUsage = equipmentUsage; }", "title": "" }, { "docid": "0bb0db750ce052c9d642861d275b862b", "score": "0.5832208", "text": "@PutMap...
10f13c9f1fd110734e3530cd29c77adb
DELETE /statusitems/:id : delete the "id" statusItem.
[ { "docid": "2b63b775abed4cffa89339ebfc98bd22", "score": "0.8804061", "text": "@DeleteMapping(\"/status-items/{id}\")\n @Timed\n public ResponseEntity<Void> deleteStatusItem(@PathVariable Long id) {\n log.debug(\"REST request to delete StatusItem : {}\", id);\n statusItemService.delet...
[ { "docid": "9f725a93d461a2e725ca470240065f92", "score": "0.72983354", "text": "int deleteByPrimaryKey(Integer statusId);", "title": "" }, { "docid": "bd697aba9f8ccfdebceb5996c7bcce83", "score": "0.72703284", "text": "@DeleteMapping(Constants.Endpoints.ITEM_CONTROLLER_ENDPOINT + \"/{i...
661b67a20f15fa2b9c73391cedf97b4a
Every M20 based engine will be 6 cylinders There are no exceptions to this rule
[ { "docid": "48f465005e065f79e52d56b44d7fc022", "score": "0.695556", "text": "public int GetNumberCylinders() {\r\n return 6; \r\n //throw new UnsupportedOperationException(\"Not supported yet.\"); //To change body of generated methods, choose Tools | Templates.\r\n }", "titl...
[ { "docid": "0ff75d2b12a2c7d98b00c1b0b43c3c65", "score": "0.72201073", "text": "Engine(int numCylinders){\n this.numCylinders = numCylinders;\n }", "title": "" }, { "docid": "92fd36627e2dc22226328126f6569527", "score": "0.6802558", "text": "Engine(){\n numCylinders = ...
9c72bb551ae15da435d3bc3cc50f8fe3
Actualizar la lista de favoritos
[ { "docid": "746fdcbc68d4753c21d7bd51c21582f4", "score": "0.0", "text": "public void updateData() {\n AsyncHttpClient client = new AsyncHttpClient();\n RequestParams params = new RequestParams();\n params.add(\"idseller\", id);\n\n client.put(Utils.ID_SEGUIDOS_SERVICE + Utils....
[ { "docid": "eb1a7d0c5871a2ad3f5a02a6e213c81a", "score": "0.6853274", "text": "public void saveFavorites(List<UUID> list){\n\t\tsaveItems(list, VAL_FAVORITES_LIST);\n\t}", "title": "" }, { "docid": "6a11d3632bc93a088991124efe802994", "score": "0.67084706", "text": "private void update...
86e6791950919448252ea3296c918d31
Get all values of property Means as a ReactorResult of RDF2Go nodes
[ { "docid": "66f1fc39fac6e77e5560ad9e514b8405", "score": "0.49558786", "text": "public static ReactorResult<org.ontoware.rdf2go.model.node.Node> getAllMeans_asNode_(Model model, org.ontoware.rdf2go.model.node.Resource instanceResource) {\r\n\t\treturn Base.getAll_as(model, instanceResource, MEANS, org.on...
[ { "docid": "fa71e3107f58922fd5b637f26279373a", "score": "0.59707123", "text": "public ReactorResult<Thing> getAllMeans_as() {\r\n\t\treturn Base.getAll_as(this.model, this.getResource(), MEANS, Thing.class);\r\n\t}", "title": "" }, { "docid": "78e28be8ca6af3208df0b71ad42e72db", "score": ...
dc56bd8e799acf9259b671e86c31a553
getRunnerDB Sets name of Derby database data source
[ { "docid": "64c945c45cbfc41765f8c0b70261872b", "score": "0.7204941", "text": "public void setRunnerDB( String runnerDB ) {\n this.runnerDB = runnerDB;\n }", "title": "" } ]
[ { "docid": "596a585d408dd70d1989009e619606c1", "score": "0.7040241", "text": "public String getRunnerDB() {\n return runnerDB;\n }", "title": "" }, { "docid": "9e161fe658a9fcefc970af0311ccfc46", "score": "0.64976156", "text": "String getDBName();", "title": "" }, { ...
b6b4a8c60a0d64a98e1ab7d68ab036ce
Clears the Event table in the database
[ { "docid": "7312fc28503fb6b9048f75ba93710fa6", "score": "0.6625447", "text": "public boolean clear(){\n String sql = \"DELETE FROM Event;\";\n String check = \"SELECT * FROM Event;\";\n ResultSet rs = null;\n try(PreparedStatement stmt = conn.prepareStatement(sql)) {\n ...
[ { "docid": "4e9747f968f157ed5a1b7d093643d697", "score": "0.7423204", "text": "public void deleteToDB(Event event){\n try{\n Connection conn = connectionDB();\n if (conn != null) {\n System.out.println(\"Connected to the database...\");\n Databas...
8a3aa7804422e42566c56461e11b9506
Connects /favors route with /helpers route which are dependent of favor resource, by redirecting to the service managing the URL segment in charge of the helpers
[ { "docid": "da01c009d43144342bdf2284a7dd2938", "score": "0.60318226", "text": "@Path(\"{favorsId: \\\\d+}/helpers\")\n public Class<FavorHelperResource> getFavorHelperResource(@PathParam(\"favorsId\") Long favorsId, @PathParam(\"neighborhoodId\") Long neighId) {\n if (favorLogic.getFavor(favor...
[ { "docid": "9d3cc1e5cb3d238d4b14e5a2041c233e", "score": "0.5117871", "text": "private void handleResponse(List<ArrivalsFormatedEntity> favourites) {\n if (favourites != null && !favourites.isEmpty()) {\n mFavouriteAdapter.addFavourites(favourites);\n mFavouriteAdapter.addCur...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "c393e3db0cb66f85510190753d7118f6", "score": "0.0", "text": "public static void main(String[] args) {\n\t\tInteger autoBoxing = 12;\r\n\t\tSystem.out.println(\"AutoBoxing : \" + autoBoxing.toString());\r\n\t\t\r\n\t\tint autoUnboxing = autoBoxing;\r\n\t\tSystem.out.println(\"AutoUnboxing : \"...
[ { "docid": "1acc57d42c31dee937ac33ea6f2a5b0b", "score": "0.68399656", "text": "@Override\r\n\tpublic void comer() {\n\t\t\r\n\t}", "title": "" }, { "docid": "118f2b8a20f48999973063ac332d07d3", "score": "0.6563993", "text": "@Override\r\n\t\t\tpublic void atras() {\n\r\n\t\t\t}", ...
9be6557376e9a5e169af27f5458d7540
Delete an existing ApplicationParameter entity
[ { "docid": "4a95b552d33c893ffcbec1cd88974815", "score": "0.81286734", "text": "@Transactional\r\n\tpublic void deleteApplicationParameter(ApplicationParameter applicationparameter) {\r\n\t\tapplicationParameterDAO.remove(applicationparameter);\r\n\t\tapplicationParameterDAO.flush();\r\n\t}", "title"...
[ { "docid": "ba0310415674694e8b0443b4d2ac0ca3", "score": "0.64475757", "text": "@Test\n public void deleteApplicationTest() throws ApiException {\n UUID applicationId = null;\n Application response = api.deleteApplication(applicationId);\n\n // TODO: test validations\n }", ...
a3c66a7be4fa630532d00d9a15270c39
/ Happens when the extension is uninstalled. Clean up files.
[ { "docid": "7a1809d9c263ae5242d8d3d1275bb088", "score": "0.6325376", "text": "@Override\n\tpublic void onUninstall()\n\t{\n\t\t\n\t}", "title": "" } ]
[ { "docid": "e310882ae625ce3d6283656500deac50", "score": "0.7067039", "text": "public void cleanup() {\n try {\n if (mMain != null && mMain.isFile()) {\n FileUtils.delete(mMain);\n }\n\n if (mActualResult != null && mActualResult....
1bf89447b80ec86ff401a389c9f91f7d
/ access modifiers changed from: protected
[ { "docid": "7f097d5cee83e55fe99458f08194447b", "score": "0.0", "text": "@Override // com.android.settings.development.bluetooth.AbstractBluetoothDialogPreferenceController\n public int getCurrentIndexByConfig(BluetoothCodecConfig bluetoothCodecConfig) {\n if (bluetoothCodecConfig == null) {\n ...
[ { "docid": "ce01e16cbc1fc0a29d28a4365b63f79d", "score": "0.7213067", "text": "@Override\n\tprotected void specialFuntion() {\n\t\t\n\t}", "title": "" }, { "docid": "9b9787eedaf8ab2866634795354c59ac", "score": "0.6794715", "text": "@Override\n\tprotected void special() {\n\n\t}", ...
ed039948172b59a40bf5f9879580fe23
I don't change any property...
[ { "docid": "28ec92654a34cd6957e990f7950c31f2", "score": "0.0", "text": "public void addPropertyChangeListener(PropertyChangeListener listener) {\n }", "title": "" } ]
[ { "docid": "5319fad14f9144934a476dae52364d0b", "score": "0.6667364", "text": "public void brownProperty() {\n\t\t\n\t}", "title": "" }, { "docid": "e9efce7d6842e377d7998e7a95de4f3d", "score": "0.66275036", "text": "public void redProperty() {\n\t\t\n\t}", "title": "" }, { ...
32fd08d8ac587b2bd8367f5e0d8b8aff
optional string enum_value = 1;
[ { "docid": "ef1506599ef628048d420ca1e812d2c3", "score": "0.0", "text": "public boolean hasEnumValue() {\n return ((bitField0_ & 0x00000001) == 0x00000001);\n }", "title": "" } ]
[ { "docid": "02970a4896e531c162714b5a25d8dca7", "score": "0.7373444", "text": "java.lang.String getEnumValue();", "title": "" }, { "docid": "02970a4896e531c162714b5a25d8dca7", "score": "0.7373444", "text": "java.lang.String getEnumValue();", "title": "" }, { "docid": "0297...
6980d511b72f6aabbc1ceaf2d02d3972
Returns the value of desired output nodes for one order
[ { "docid": "d263a0ca8848b072d9d97bd8e8e5f909", "score": "0.71531296", "text": "static double[] getSupervisedDesiredOutputNodesForOrder(Map<String, Object> order) {\n double[] outputs = new double[3];\n if (!StringUtils.isEmpty(order.get(\"retailer_moniker\")) &&\n !order.get...
[ { "docid": "002f7c1012e7db841b9081edb7bd77c5", "score": "0.61732465", "text": "public Map<Long, Float> getOutputs() {\n\t\tcalculate();\n\t\tMap<Long, Float> values = new HashMap();\n\t\tfor (CalcNode node : outputs.getSet()) {\n\t\t\tvalues.put(node.innovationNumber, node.value);\n\t\t}\n\t\treturn val...
835637f02efe2559f94af280abb15a49
This is a sample web service operation
[ { "docid": "5f18161b2d66f246803b3a8f8f17bc4b", "score": "0.6528021", "text": "@WebMethod\n public String getHelloWorldAsString();", "title": "" } ]
[ { "docid": "4c114f58cc8d7b7288ec4b161c7aa3dc", "score": "0.7274517", "text": "public static void main(String[] strings) {\n String serviceEpr = \"http://10.89.5.227/YXGLXXXT4_WAP_ReportService/services/YXGLXXXT_Service.asmx?wsdl\";\n String nameSpace = \"http://localhost/TreeService\";\n ...
d829781f3e63d587b82e14b902299221
uses an arraylist with appliance properties taken from text file as a parameter to add appliances to the house
[ { "docid": "eb85a03baba74b41224e8fca35d895ba", "score": "0.7472917", "text": "public void addAppliancesFromTextArrayList(House testHouse, ArrayList<String> lineArrayList) throws IllegalArgumentException\n\t{\n\t\t// looping through arraylist of text\n\t\tfor (int i = 0; i < lineArrayList.size(); i++)\n\...
[ { "docid": "37649b2b6be25e78c0be0799228ab01f", "score": "0.5819574", "text": "private void readFile(ArrayList<IndividualStatistics> arrayList, File file) {\n\n String[] temp;\n String nextLine;\n try (Scanner in = new Scanner(file)) {\n arrayList.clear();\n whi...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "50e382d2f209c66ec01e6419a35f1323", "score": "0.0", "text": "@Override\r\n\t\tpublic void getDate(Object obj, String msg) {\n\r\n\t\t\tContentValues cv = new ContentValues();\r\n\r\n\t\t\tif (obj != null) {\r\n\t\t\t\tif (obj instanceof String) {\r\n\r\n\t\t\t\t\tString obj1 = (String) obj;\r...
[ { "docid": "663ac6f718361fb243bf093a1c7ded6a", "score": "0.66285414", "text": "@Override\r\n\tprotected void Goukakyuu() {\n\t\t\r\n\t}", "title": "" }, { "docid": "80d20df1cc75d8fa96c12c49a757fc43", "score": "0.65323734", "text": "@Override\n\tprotected void getExras() {\n\t\t\n\t}"...
a6cada1d4347e7ece02360d4c823aa0d
SpringMVC and JAXRS both support methods that return a builder object that contains the real underlying response payload. These should not be expressed as response values.
[ { "docid": "579b0b04714734c98dd33b49fd6687b6", "score": "0.0", "text": "private void buildTypeContents(JsonObject o, TypeElement element) {\n if (ModelAndView.class.getName().equals(element.getQualifiedName().toString())) {\n return;\n }\n if (Response.cla...
[ { "docid": "3d606f8a173d592e997dab74f7f1d017", "score": "0.6929633", "text": "public Response buildResponse()\n {\n return shadowBuilder.build(requestGlobals, \"response\", Response.class);\n }", "title": "" }, { "docid": "6020a1d6976b8442ab03ca2e62450365", "score": "0.67024...
f24f969d849f06194344a79356ab17fc
Created by Frederik on 12/01/2017.
[ { "docid": "0f3a02d7cf69d663e703f0d459f1d4ce", "score": "0.0", "text": "public interface DatePickerFragment {\n void setToDate(Date date);\n void setFromDate(Date date);\n}", "title": "" } ]
[ { "docid": "a55a150557f80abcbd733ee3162b0661", "score": "0.6047362", "text": "private void m18301a() {\n }", "title": "" }, { "docid": "33d41636b65afa8267c9085dae3d1a2d", "score": "0.5974812", "text": "private void apparence() {\r\n\r\n\t}", "title": "" }, { "docid...
ce0f799bc92dcb963af3839bd0c66f78
Create map about user and role in each attend project
[ { "docid": "530857e002fe344dbd1da5ee4fac44e0", "score": "0.0", "text": "public boolean createProjectRole(long projectId, long accountId,\n\t\t\tRoleEnum role) {\n\t\tQuerySet valueSet = new MySQLQuerySet();\n\t\tvalueSet.addTableName(ProjectRoleEnum.TABLE_NAME);\n\t\tvalueSet.addInsertValue(ProjectRoleE...
[ { "docid": "94f3cac9e7ba6b9fb7902b398e063f47", "score": "0.61725557", "text": "Map<Project, Set<PermissionLevel>> listAccessibleProjectsWithPermissions(User aUser);", "title": "" }, { "docid": "f773015909e550b1d56cdf011b3690de", "score": "0.5977119", "text": "private void createMap()...
92c8b7207b9ec6d4bb08fd9edf44c729
Compares two strings. Upper or lower case characters are not considered differently.
[ { "docid": "76173d7f48110062d0512d547ef3960d", "score": "0.6907306", "text": "public static boolean equalsCaseless(String sA_, String sB_) \n {\n String sFirst = sA_.toUpperCase();\n String sSecond = sB_.toUpperCase();\n \n return sFirst.equals(sSecond);\n }", "titl...
[ { "docid": "754e9ed4b54123a3617cfbb662774c2e", "score": "0.73103535", "text": "public static void compareString() {\r\n\t\tString s1 = \"Mohammed\";\r\n\t\tString s2 = \"Mohammed\";\r\n\t\tSystem.out.println(s1 == s2); // -3\r\n\t\tSystem.out.println(s1.equals(s2));\r\n\r\n\t}", "title": "" }, {...
c3dbc518a16cc2709bd934597b5ae4f7
Insert the method's description here. Creation date: (29.11.2004 11:07:04)
[ { "docid": "97700b93f9ef889b318b51eed150d9e4", "score": "0.0", "text": "public java.lang.String getAzimA() {\n\treturn azimA;\n}", "title": "" } ]
[ { "docid": "b4d7f671f527efc3e048a88ada2fe816", "score": "0.677438", "text": "@Override\n\tpublic void 말한다() {\n\t\t\n\t}", "title": "" }, { "docid": "b4d7f671f527efc3e048a88ada2fe816", "score": "0.677438", "text": "@Override\n\tpublic void 말한다() {\n\t\t\n\t}", "title": "" }, ...
3efa0183afbf32c75333a5036511358a
Handle the key pressed event from the text field.
[ { "docid": "dd50d50d69d313aecce8f9c498b133a8", "score": "0.0", "text": "public void keyPressed(KeyEvent e) {\n if (e.getKeyCode() == 36 || e.getKeyChar() == 'q' || e.getKeyChar() == 'Q' || e.getKeyChar() == '7')\n {\n mice.get(0).velocity().setX(-mouseSpeed);\n mice.g...
[ { "docid": "b20cc9eff7262870b97dacfd298fdb63", "score": "0.7701487", "text": "void handleKeyEvent(int event);", "title": "" }, { "docid": "d88caefa4fdca3828050ade7d655c867", "score": "0.7520498", "text": "@FXML\n\tprivate void handleTextFieldAction(KeyEvent event) {\n\t\tkeyPressed =...
5eda41deb705792a9abe78d60e52cb1b
Adds a case to the list of failed cases.
[ { "docid": "3bbbf92d1c980a308e1f7e41abd87e76", "score": "0.73570305", "text": "public static boolean addFailed(Case failed) {\n if (!failed.getStatus().equals(CaseStatus.FAILED)) throw new IllegalArgumentException(\"Incorrect case status\");\n return failedDefects.add(failed);\n }", ...
[ { "docid": "6425dffce2ffa67f211cf56940ae526e", "score": "0.6764561", "text": "void addCase(CaseData caseData)\n {\n if (cases == null) {\n cases = new ArrayList();\n }\n\n cases.add(caseData);\n }", "title": "" }, { "docid": "38ebc6264867ab175293dbb12f82...
5c436c35d8f83a9e0dbe1af5322f2696
Created by tangyiwu on 2016/11/25.
[ { "docid": "31882032f996a2701346f88d13372b26", "score": "0.0", "text": "public interface BaseResponseCallback<T> {\n void parseResponse(Response<T> response);\n}", "title": "" } ]
[ { "docid": "1acc57d42c31dee937ac33ea6f2a5b0b", "score": "0.60607684", "text": "@Override\r\n\tpublic void comer() {\n\t\t\r\n\t}", "title": "" }, { "docid": "10ead2e988bf977cb8edb2bacf974891", "score": "0.59420127", "text": "@Override\n\tprotected void init() {\n\t\t\n\t}", "titl...
febf72ef0b9df509b7e6fa826bf6c4d1
required string object_uuid = 1;
[ { "docid": "1dd7f87093c9e275fba779e97e7d913f", "score": "0.0", "text": "public boolean hasObjectUuid() {\n return ((bitField0_ & 0x00000001) == 0x00000001);\n }", "title": "" } ]
[ { "docid": "9c0c49bbf94bfd8b0a0a5fc8f04a5570", "score": "0.7618485", "text": "java.lang.String getObjectUuid();", "title": "" }, { "docid": "9c0c49bbf94bfd8b0a0a5fc8f04a5570", "score": "0.7618485", "text": "java.lang.String getObjectUuid();", "title": "" }, { "docid": "9c...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "eadddc1422315dd8c14006c7b758f207", "score": "0.0", "text": "private void lastPhaseProcessing() {\n \t}", "title": "" } ]
[ { "docid": "9208773f8d675a45ef2786d0cb668514", "score": "0.654538", "text": "@Override\n\tpublic void addiion() {\n\t\t\n\t}", "title": "" }, { "docid": "80d20df1cc75d8fa96c12c49a757fc43", "score": "0.65323734", "text": "@Override\n\tprotected void getExras() {\n\t\t\n\t}", "titl...
a1e567a408568753ea909d51875c1839
Show location settings when the user acknowledges the alert dialog
[ { "docid": "32bb6f862dd914400c59447d8a2b5abc", "score": "0.0", "text": "public void onClick(DialogInterface dialogInterface, int i) {\n Intent intent = new Intent(Settings.ACTION_LOCATION_SOURCE_SETTINGS);\n startActivity(intent);\n }", "title": "...
[ { "docid": "8aeb05cdf14a082721c24d5d019924cc", "score": "0.7833687", "text": "public void showSettingsAlert() {\n final Dialog confirmDlg = Utils.setupConfirmDialog(myContext);\n confirmDlg.show();\n ((TextView) confirmDlg.findViewById(R.id.tv_content)).setText(getString(R.string.lo...
10ba5229fbd12422501c11fb65b54bcb
The persistence interface for the patron category service. Caching information and settings can be found in portal.properties
[ { "docid": "379da934fd319bb73ace313cda41d483", "score": "0.73448247", "text": "public interface PatronCategoryPersistence extends BasePersistence<PatronCategory> {\n\t/*\n\t * NOTE FOR DEVELOPERS:\n\t *\n\t * Never modify or reference this interface directly. Always use {@link PatronCategoryUtil} to acc...
[ { "docid": "ae666bcda5f4aa9f598ce4405316a9ee", "score": "0.653545", "text": "public interface CategoryPersistence extends BasePersistence<Category> {\n /*\n * NOTE FOR DEVELOPERS:\n *\n * Never modify or reference this interface directly. Always use {@link CategoryUtil} to access the cate...
56902cd4d43bb88bb7809b1d71d0dd09
Convenient method to quickly set the value and label backinglist for the comboRol property. This method takes a collection of objects, as well as the property names to query on these objects in order to find the corresponding values and labels. Let's say you have a set of value objects with the following properties: id...
[ { "docid": "97e1aae678a48892cdb70abb0095ac73", "score": "0.83258224", "text": "public void setComboRolBackingList(java.util.Collection items, String valueProperty, String labelProperty);", "title": "" } ]
[ { "docid": "9c9938d108e00a2791c7964a41ff33d6", "score": "0.73502475", "text": "public void setComboIdiomaBackingList(java.util.Collection items, String valueProperty, String labelProperty);", "title": "" }, { "docid": "2b5461f1ec51b615b6fa642afb379728", "score": "0.73432523", "text":...
768ac6487cc93683e898448f3ed1491b
Action log post processor.
[ { "docid": "15d7971a1477c7df5d5c1731983adb48", "score": "0.5542676", "text": "public static void actionLogPostProcessor(ResponseStatus statusCode, String responseCode, String responseDescription,\n boolean isServiceMetricLog) {\n actionLogPostProcessor...
[ { "docid": "1af77a28cc2f944f81c5efb35beffbc3", "score": "0.642185", "text": "LogAction createLogAction();", "title": "" }, { "docid": "9887883896ad8c72463360eeb1a3be3d", "score": "0.64039177", "text": "private void Log(String action) {\r\n\t}", "title": "" }, { "docid": "...
c3f87f4c020b2275f1e841e7209a8852
Clears the overridden Device Orientation. experimental
[ { "docid": "029d11511dd4d507449bbf686634f94a", "score": "0.7243925", "text": "public void clearDeviceOrientationOverride(int timeout) throws Exception {\n session.send(\"DeviceOrientation.clearDeviceOrientationOverride\", null, timeout);\n }", "title": "" } ]
[ { "docid": "6ae0e0332943e3ab712f9af91f210558", "score": "0.78295237", "text": "public CompletableFuture<Void> clearDeviceOrientationOverride() {\n Map<String,Object> params = new HashMap<>();\n return rpcClient.call(\"Page.clearDeviceOrientationOverride\", params, Void.class);\n }", "title": ...
b42951f6a80a7118453a652a7961eda1
Returns the track that is being played by the level. This is mainly used when the level is being changed, so that the track currently being played can be accessed and stopped.
[ { "docid": "d4d6e3b7ce84b0166cea47755282a6eb", "score": "0.0", "text": "public abstract SoundClip getGameMusic();", "title": "" } ]
[ { "docid": "c87a9673e4424fbf46a30cb9904a5bb9", "score": "0.681217", "text": "public TrackObject getCurrentTrack() {\n if (mCurrentTrackIndex > -1 && mCurrentTrackIndex < getTracks().size()) {\n return getTracks().get(mCurrentTrackIndex);\n }\n return null;\n }", "t...
6499265bb0811939a9fd03aafc005a53
Check the user status if a push is marked as for premium or not.
[ { "docid": "3ae8a86ca9590d67c1b17ce3353e7c73", "score": "0.711835", "text": "private boolean isPremiumCompatible(RemoteMessage remoteMessage)\n {\n try\n {\n if( remoteMessage.getData().containsKey(INTENT_PREMIUM_KEY) )\n {\n boolean isForPremium = \...
[ { "docid": "548ae1d736f184c6bf9bf3e0863272e2", "score": "0.64419585", "text": "boolean hasPremiumPointsHeld();", "title": "" }, { "docid": "a247235d7fa69b40875501a191c7fdac", "score": "0.6406111", "text": "boolean hasUserStatus();", "title": "" }, { "docid": "c2ac9d6629e3...
0fddb3eb04c094797460880d84697511
.dstore.values.BooleanValue case_sensitive = 3;
[ { "docid": "93fb3fe346227dbabfcdf8fcf1039c58", "score": "0.62740415", "text": "public io.dstore.values.BooleanValue getCaseSensitive() {\n return caseSensitive_ == null ? io.dstore.values.BooleanValue.getDefaultInstance() : caseSensitive_;\n }", "title": "" } ]
[ { "docid": "0ab4242ce60085a60fe69f61b8483589", "score": "0.8549549", "text": "io.dstore.values.BooleanValue getCaseSensitive();", "title": "" }, { "docid": "c8034fa5fbb19e205f5f979db6614295", "score": "0.7444809", "text": "io.dstore.values.BooleanValueOrBuilder getCaseSensitiveOrBuil...
3b84d067b3e3dd083013fbff4d4ad1ca
Returns the s c o r m contents before and after the current s c o r m content in the ordered set where userId = &63;.
[ { "docid": "90b4e81add36a416063433edcbb2b89d", "score": "0.61594546", "text": "public SCORMContent[] findByUserId_PrevAndNext(long scormId, long userId,\n\t\tOrderByComparator orderByComparator)\n\t\tthrows NoSuchSCORMContentException, SystemException {\n\t\tSCORMContent scormContent = findByPrimaryKey(...
[ { "docid": "829f5e90d2b40cb0f99468b6ff8cb2c0", "score": "0.57273597", "text": "public SCORMContent[] findByUserIdGroupId_PrevAndNext(long scormId,\n\t\tlong userId, long groupId, OrderByComparator orderByComparator)\n\t\tthrows NoSuchSCORMContentException, SystemException {\n\t\tSCORMContent scormConten...
b26fcc07159e6fcd03957f47975d8158
Export the results to a string
[ { "docid": "85c9026d8675d998e6015a88d9235f65", "score": "0.63547367", "text": "private String exportResults(ArrayList<Results> resultsFifo, ArrayList<Results> resultsKnapsack) {\n String out = \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\" standalone=\\\"yes\\\"?>\\r\\n\" +\n \...
[ { "docid": "fa409cd58dcef7c98934383c0d868586", "score": "0.68839777", "text": "public static String exportResults(AlgorithmResults results) {\n StringBuilder sb = new StringBuilder();\n\n for (String tableName : results.partitions.keySet()) {\n\n sb.append(tableName).append(\"\\...
818366f809f7a74b97419dfde6630b5c
Build a Dafoe term saillance from a Syntex term saillance.
[ { "docid": "fc933e4c9b2902b46ba5bbc2893bc279", "score": "0.6058811", "text": "public ITermSaillance getDafoeTermSaillance() {\n\t\tITermSaillance dafoeSaillance = new TermSaillanceImpl();\n\t\tdafoeSaillance.setFrequency(getFreq());\n\t\tdafoeSaillance.setHeadNeighborSize(getNbvoiscont());\n\t\tdafoeSai...
[ { "docid": "51e83316fc845dbb2c775fa37c1c6cc0", "score": "0.5771026", "text": "public SyntexTermSaillance(SyntexTerm syntexTerm) {\n\t\tthis.linkedTerm = syntexTerm;\n\t}", "title": "" }, { "docid": "0ade4fd5af3eea85930260c2974e92fc", "score": "0.57013196", "text": "public SyntexTermS...
1464bd3b262133ff7df24ba2eef2e970
funcion de tipo setter que se encarga de insertar el tipo del prodcuto a nuestro nodo.
[ { "docid": "118a124d930eef8e0f8e05c9c5e0ca07", "score": "0.6129234", "text": "public void setTipo(String tipo) {\r\n this.tipo = tipo;\r\n }", "title": "" } ]
[ { "docid": "a179278db78d3eed858b22de276755f3", "score": "0.66249317", "text": "public void setTipoDeComida(String tipodecomida) {\n\r\n }", "title": "" }, { "docid": "2ee8df0903be6e79ab0fd59916571469", "score": "0.6507709", "text": "public void setTipo(String tipo)\r\n {\r\n ...
9566447c9ba22c2a46cb61967ecef5b0
Used to reject application.
[ { "docid": "a4987143146190170cb27c975f7c3d5e", "score": "0.7603755", "text": "public String rejectApplication() {\r\n\t\tfinal String applicationId = this.terApprBean.getTerminationID();\r\n\t\tfinal String status = this.terApprBean.getStatus();\r\n\t\ttry {\r\n\t\t\tfinal TerminationApprovalModel model...
[ { "docid": "afebceb6d8665f514373cd4d07685ba2", "score": "0.8140365", "text": "Application rejectApplication(PerunSession session, Application app, String reason) throws PerunException;", "title": "" }, { "docid": "b8e8cd24fe9e429388b12bc77eceb200", "score": "0.7396938", "text": "publ...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "d9949839593677cf8349f1fae3a1393c", "score": "0.0", "text": "@Override\r\n\tpublic List<EventsDTO> returnAllEventsModelModel() \r\n\t{\n\t\treturn null;\r\n\t}", "title": "" } ]
[ { "docid": "e5fa0eebc721dea67da872fd14413bc7", "score": "0.69744676", "text": "@Override\n\tpublic void formule() {\n\t\t\n\t}", "title": "" }, { "docid": "8b7f87c22e268a87686c66398c2c442b", "score": "0.6936331", "text": "@Override\r\n\t\t\tpublic void atras() {\n\t\t\t\t\r\n\t\t\t}"...
433f0072061ed4446b3b3d6b8feb5137
/ Methods Default Constructor. Does nothing extra.
[ { "docid": "545e98b2ce5cefd7d16e8b4f69bfd138", "score": "0.0", "text": "public ModuleParams() {\n }", "title": "" } ]
[ { "docid": "2fda59f727914730e1ccc0c0b05e57bd", "score": "0.8116633", "text": "Constructor() {\r\n\t\t \r\n\t }", "title": "" }, { "docid": "a914e44ffa4c341e5c03a8435fe7d85b", "score": "0.7932449", "text": "@SuppressWarnings(\"unused\")\n public NoConstructor() {\n /...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "644ac4a2aec67715d2c4807dd9d69b19", "score": "0.0", "text": "public static void main(String[] args) {\n\t\t\n\t\t\n\t\tboolean[][] arr = new boolean[3][3];\n\t\tSystem.out.println(Arrays.deepToString(arr));\n\n\t}", "title": "" } ]
[ { "docid": "63a51b9825ac81396e1d7ad0b9f3ed82", "score": "0.6866318", "text": "@Override\n\tpublic void 군무() {\n\t\t\n\t}", "title": "" }, { "docid": "15ae679aae74424c73fde647cf4332f6", "score": "0.68461496", "text": "@Override\r\n\t\t\tpublic void hissetmek() {\n\r\n\t\t\t}", "ti...
14b2c148ffa8972e494497f1bd6de1e3
Test of feature method, of class Bag.
[ { "docid": "cedc756bf9a65a4612bd6abf9ce717ba", "score": "0.73146814", "text": "@Test\n public void testFeature() {\n System.out.println(\"feature\");\n String[][] text = new String[2000][];\n\n BufferedReader input = new BufferedReader(new InputStreamReader(this.getClass().getRes...
[ { "docid": "0060bffd5cbc6603e8c2a8ba1eb4581e", "score": "0.6511168", "text": "@Test\n\tpublic void TestFeatureGetter() {\n\t\tassertEquals(featureTransformer.getFeatures() , features);\n\t}", "title": "" }, { "docid": "67be14d989f99cdedf8bca2f215f5141", "score": "0.64992774", "text":...
9024412f99cc0f4c9d4061f0bd03f09b
Creates a message box asking the user for input
[ { "docid": "aa9e9646889c0b7461e1d8547f91cd18", "score": "0.0", "text": "protected String userInputDialog(String question, String title, String defString) {\n return (String) JOptionPane.showInputDialog(\n this,\n question,\n title,\n JOp...
[ { "docid": "99dd8a47b0f6d191c287c551989a681c", "score": "0.7561687", "text": "String showPrompt(String message);", "title": "" }, { "docid": "f1f1630a8ba0d9bf43dbdd255f08bb85", "score": "0.7550273", "text": "private String inputPopup(String title, String message) {\n JFrame fr...
4036395037010978776d96e3575b055d
Created by allen on 1796.
[ { "docid": "42e31fe7d87a2be5608450f329c59bf9", "score": "0.0", "text": "public interface MapService {\n /**\n * 获取分类/全部站点列表\n *\n * @param userId 用户id\n * @param page 页数\n * @param pageNumber 每页条数\n * @param stationType 站点类型\n * @param sortType 分类\n ...
[ { "docid": "33d41636b65afa8267c9085dae3d1a2d", "score": "0.63362503", "text": "private void apparence() {\r\n\r\n\t}", "title": "" }, { "docid": "05a606445504484958a1c21e14b7198e", "score": "0.6071582", "text": "@Override\r\n\tpublic void sapace() {\n\t\t\r\n\t}", "title": "" }...
940ff673dadc4e742d2d965b084a9a42
Lists all the profiles for an account. Arguments required are Login token and accountID.
[ { "docid": "570321a9e75d62fea32c76425b434c4b", "score": "0.57933474", "text": "@WebMethod(action = \"http://www.birst.com/listProfiles\")\n @WebResult(name = \"listProfilesResult\", targetNamespace = \"http://www.birst.com/\")\n @RequestWrapper(localName = \"listProfiles\", targetNamespace = \"htt...
[ { "docid": "8ee7bf7dfe81551bdfa7bf5f33361392", "score": "0.6581826", "text": "public List<Profile> findProfiles() throws FinancialChatException;", "title": "" }, { "docid": "1641100eb4461e8f75ecb2e50b5539d7", "score": "0.6499118", "text": "public List<UserProfile> fetchUserProfiles()...
8b5694f2d418fea71f42266ccf757d44
Retrieves the title of the book instance
[ { "docid": "4c21f05ffaa8f1f8d0a21c17f435627c", "score": "0.7585658", "text": "public String getTitle() {\r\n\t\treturn this.title;\r\n\t}", "title": "" } ]
[ { "docid": "7687746b89040fd025c6aec89dc2df2b", "score": "0.83485526", "text": "@Override\n\tpublic java.lang.String getTitle() {\n\t\treturn _book.getTitle();\n\t}", "title": "" }, { "docid": "9558d6ae2e985b6008b0824ced2cd64f", "score": "0.77473354", "text": "public java.lang.String ...
bd8311ad32476b8f8ba4c363776633a3
Calculates and returns the individual error = 1/2 sum (teacher y net y)^2 for one pattern
[ { "docid": "a73160145f41ee07e02058154cea6806", "score": "0.8217077", "text": "public float getErrorForOnePattern() {\n float error = 0;\n if (this.layerCount > 0) { // Failsafe if e.g. only input layer exists\n float[] mlpOutput = this.getOutput();\n for (int y = 0; y...
[ { "docid": "0d86b21bae50be66c4c404dad84302c6", "score": "0.66633934", "text": "public void calculateOverallError(){\n OverallError = 0;\n for(int i = 0; i < NumberOfSamples; i++){\n for(int j = 0; j < layers[NumberOfLayers - 1].nodes.length; j++){\n OverallError =...
8ae30f5c88cb208a12b1b9c8cbfdb016
Add/Remove Guest in/from this room
[ { "docid": "4fd1ce0cd53777572f22db5d7491c6a4", "score": "0.4961572", "text": "public String getGuest(){\n\t\treturn guestName;\n\t}", "title": "" } ]
[ { "docid": "9d9c839d6d8f44369bed2386112b97af", "score": "0.6437414", "text": "void removeRoom(Rooms room);", "title": "" }, { "docid": "9e3a28c4a841931e319c228fc297e489", "score": "0.62697357", "text": "void addRoom(Rooms room);", "title": "" }, { "docid": "a99d0a871a9924...
08af4cee5b663bcce31fe4b190a1a842
optional int64 src_id = 2;
[ { "docid": "b99f4ce76346016b7188bbbef16ad269", "score": "0.69044757", "text": "public long getSrcId() {\n return srcId_;\n }", "title": "" } ]
[ { "docid": "1940d71909f2fdd201884e20ce24beee", "score": "0.7641069", "text": "long getSrcId();", "title": "" }, { "docid": "440c32db34e997ad127999c8a1398ce7", "score": "0.6858493", "text": "long getSteamIdSrc();", "title": "" }, { "docid": "440c32db34e997ad127999c8a1398ce...
db0a0f127ab1aabb9b51f93af0305513
query node list by page.
[ { "docid": "b9aff62fd93928c50e049784a48f21ba", "score": "0.59749454", "text": "public List<NodeInfoDto> queryNodeList(BaseQueryParam queryParam) throws BaseException {\n try {\n List<NodeInfoDto> listOfNode = groupMapper.queryNodeList(queryParam);\n return listOfNode;\n ...
[ { "docid": "94ec07b5d30ccc07c8508b32027dafa5", "score": "0.62987024", "text": "List<Node> getQueryNodes();", "title": "" }, { "docid": "0d766e54907e6ef6d4ecbbf23f47207b", "score": "0.6231845", "text": "private List<FindResult> findOnPage(int page) {\r\n \t\t\tif (this.text == null) t...
9b421633a4ae02836c30544889b1ccce
Construction d'Iterator s'appuyant sur 2 iterateurs (Iterator).
[ { "docid": "343cf0a087bc83508e9b0df40283f716", "score": "0.733339", "text": "public MultiIterator( // --------------------------------------------------\n final Iterator<T> iter0,\n final Iterator<T> iter1\n )\n{\n final List<Iterator<T>> listOfIterator = new LinkedList<Iterator<T>>();\n\n ...
[ { "docid": "c17d8bc907907da95eaf74119f4393d7", "score": "0.6146542", "text": "private DescendingIterator() {}", "title": "" }, { "docid": "db404d255bed193c78c3dd63b055a0fe", "score": "0.61356527", "text": "@Override\n\tpublic Iterator CreateIterator() {\n\t\treturn new ConcreateItera...
d9055c48ba1577ea399e648b7457fce1
Create an empty collection of bits.
[ { "docid": "ab377e0609f30b0cc6896c2bcdde4a70", "score": "0.71697575", "text": "public BitImmutableCollection() {\n this.internal = new Vector<>(Boolean.class);\n }", "title": "" } ]
[ { "docid": "825b3965a417dc48982dd3dbd9ff1aba", "score": "0.63616824", "text": "public ArrayList<Integer> emptyBag() {\r\n ArrayList<Integer> copy = new ArrayList<Integer>(myPebbles);\r\n myPebbles.clear();\r\n return copy;\r\n }", "title": "" }, { "docid": "de636eb04d...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "1d4b5083c8dd6461df36a24cea57b967", "score": "0.0", "text": "@Override\n\t\t\tpublic void keyPressed(KeyEvent e) {\n\t\t\t\t\n\t\t\t}", "title": "" } ]
[ { "docid": "e5fa0eebc721dea67da872fd14413bc7", "score": "0.69744676", "text": "@Override\n\tpublic void formule() {\n\t\t\n\t}", "title": "" }, { "docid": "8b7f87c22e268a87686c66398c2c442b", "score": "0.6936331", "text": "@Override\r\n\t\t\tpublic void atras() {\n\t\t\t\t\r\n\t\t\t}"...
fded7018ba174b45934366379f4292ec
required .xtreemfs.pbrpc.SnapConfig snap_config = 9; Snapshot configuration for the file, required by OSDs.
[ { "docid": "31c725f929ba69ca66345322a7e9aa9a", "score": "0.67100644", "text": "org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.SnapConfig getSnapConfig();", "title": "" } ]
[ { "docid": "409602d1f2bc2cfb52eb237acd524d1a", "score": "0.5961874", "text": "public org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.SnapConfig getSnapConfig() {\n return snapConfig_;\n }", "title": "" }, { "docid": "5b62094230a6ca5a07ac79ef4def6c23", "score": "0.5882431", ...
8bffb74734ed31ba0d56cc6e924a72a1
Given A variety of path strings
[ { "docid": "8372df36faf4d67ae2967b88938285d7", "score": "0.0", "text": "@Test\n public void shouldSetLeadingSlash() throws IOException {\n String leadingSlash = \"/folder\";\n String noLeadingSlash = \"folder\";\n String slash = \"/\";\n String empty = \"\";\n Strin...
[ { "docid": "086827f27db8d6a440793b949f298cfb", "score": "0.6264875", "text": "public static void path(String input, String output, Set<String> set) {\n\n\t}", "title": "" }, { "docid": "fd3445664f7aea12b5891d5c99757aa2", "score": "0.61817557", "text": "@Test\n public void testPat...
1f50f2f514ac87ee27f71c0affe02b0c
Define el valor de la propiedad fechainicio.
[ { "docid": "6c2fc54560be627e0e66f8a202cc8f34", "score": "0.69938666", "text": "public void setFECHAINICIO(int value) {\n this.fechainicio = value;\n }", "title": "" } ]
[ { "docid": "84774b402da5231b7ad1a7498c6280ec", "score": "0.6813519", "text": "public int getFECHAINICIO() {\n return fechainicio;\n }", "title": "" }, { "docid": "84774b402da5231b7ad1a7498c6280ec", "score": "0.6813519", "text": "public int getFECHAIN...
6b24911f13054797bfb02cf3a219f9da
Checks the size of the deck
[ { "docid": "40c44bc1bc93f0af0c70e7e4a6f8a872", "score": "0.64708966", "text": "public int getSize()\n {\n return colorCards.size();\n }", "title": "" } ]
[ { "docid": "9f62b1c4bfde65eaf86d9f2413fe8548", "score": "0.84720176", "text": "public int checkDeckSize() {\n\t\treturn cards.size();\n\t}", "title": "" }, { "docid": "6501238a51506f3cb51020e852e5f644", "score": "0.75880194", "text": "public int size()\n\t{\n\t\treturn deck.size();\n...
8df775233c879b5705f072588778e515
Mark the specified imageListEntry as needing reload
[ { "docid": "3270d6d262f89d7ae46b782297dbb9b0", "score": "0.7178978", "text": "public void reloadImage(ImageEntry entry) {\n\t\tif (entry != null) {\n\t\t\tfor (int n=0; n<sortedPanImageList.length; n++) {\n\t\t\t\tif (sortedPanImageList[n].imageListEntry == entry) {\n\t\t\t\t\tsortedPanImageList[n].load...
[ { "docid": "2290d9992ca26521ff20d672495323fc", "score": "0.62593704", "text": "protected void onReloadImage() {\n String url = DataProvider.SCREEN + DataProvider.SCREEN_INDEX + mScreenId + \"&time=\" + System.currentTimeMillis();\n image.setUrl(url); //just to avoid caching\n loadTr...
b729641304482a4084ca91d5ed874e02
/ repeat 4 [ fd 100 rt 90 fd 100 rt 90 fd 50 rt 90 fd 50 rt 90 fd 100 rt 90 fd 25 rt 90 fd 25 rt 90 fd 50 ]
[ { "docid": "ea4b55f9cfbad5a8f8495458fa31470b", "score": "0.0", "text": "@Test\n public void testDragon(){\n updateActiveTurtle();\n controller.interpretCommand(\"repeat 4 [ fd 100 rt 90 fd 100 rt 90 fd 50 rt 90 fd 50 rt 90 fd 100 rt 90 fd 25 rt 90 fd 25 rt 90...
[ { "docid": "9b08d392623fea9f7c2f14d6ccbee489", "score": "0.57452303", "text": "@Override\n\t\t\t\t\tpublic void repeat() {\n\n\t\t\t\t\t}", "title": "" }, { "docid": "866eb37a0c892661bbf290f17eed8570", "score": "0.5651626", "text": "Repeat createRepeat();", "title": "" }, { ...
fa76c43094e9d6ee49024a4c8ada841c
update catalogue line by changing its catalog
[ { "docid": "09911cc01ceedc5075662550ba1d4ede", "score": "0.0", "text": "@Test\n public void test07_updateCatalogueLine() throws Exception{\n MockHttpServletRequestBuilder request = get(\"/catalogue/\" + secondCatalogueId + \"/catalogueline\")\n .param(\"lineId\", secondCatalogue...
[ { "docid": "f2360ceb9afa04eecf384612b342d1f9", "score": "0.60461223", "text": "public int updateCatalog(Catalog catalog, DataBaseHandler dh){\n int updated;\n SQLiteDatabase db = dh.getWritableDatabase();\n ContentValues values = new ContentValues();\n values.put(DataBaseHand...
b51982876d0285fa5b8739f7416969ef
by deafault it is public abstract
[ { "docid": "91cf3e144334c8d144320df26c00f5f5", "score": "0.0", "text": "public abstract void draw();", "title": "" } ]
[ { "docid": "534c466f09845319b9edaf959a891c09", "score": "0.72173893", "text": "@Override\r\n\tpublic void debriyaj() {\n\t\t\r\n\t}", "title": "" }, { "docid": "260f2737db50c500dc82d2abf62a53e3", "score": "0.7135314", "text": "@Override\n public void son_abstract() {\n }", ...
8602bd3b4cafd1fca7c7b2229d40f1ad
Create a virtual appliance. Ask the IPs for an invalid virtual appliance identifier value.
[ { "docid": "af79eaedbfdbabc0930be2fd6be7b77f", "score": "0.5763145", "text": "@Test\n public void getVirtualApplianceActionIPsRaises404WhenVappIsARandomValue()\n {\n setup(ent, datacenter, vdc);\n ClientResponse response = get(resolveVirtualApplianceActionGetIPsURI(vdc.getId(), new R...
[ { "docid": "c430821c42ae2ee0c99305d0d7d92be9", "score": "0.62960476", "text": "public void createAppliance(String appliancePid, Dictionary props) throws HacException {\n\n\t}", "title": "" }, { "docid": "d4dcc46fa61c6c9c73b360e6163f9674", "score": "0.59142953", "text": "@Test\n pu...
c2b269477437f3943b2a91bd225da227
SETTER INJECTION.. Spring do the dependency injection by type..
[ { "docid": "c3bde557d338cf35ff28374c4111afce", "score": "0.0", "text": "@Autowired\n\t //@Qualifier(\"creditCards\")\n\t public void setGreetingService(ProductService productService) {\n\t this.productService = productService;\n\t }", "title": "" } ]
[ { "docid": "cd12fb187962ddd714d5f83afa3c85df", "score": "0.6121385", "text": "void inject(CustomizationProvider customizationProvider);", "title": "" }, { "docid": "8dc099cf408a55570803dbeb4349d51f", "score": "0.6100299", "text": "void autowireProperty () {\n switch (this.atom...
3e411c1aaf1e07600b608bd52cc7f2e9
Handle navigation view item clicks here.
[ { "docid": "2841a0bf7aa58166cc27e127b1d4c697", "score": "0.0", "text": "@SuppressWarnings(\"StatementWithEmptyBody\")\n @Override\n public boolean onNavigationItemSelected(MenuItem item) {\n int id = item.getItemId();\n\n if (id == R.id.nav_home) {\n FragmentTransaction ft...
[ { "docid": "f171236b111e3d27bbd8c06fab59a235", "score": "0.7308112", "text": "@Override\n\t\t\t\t\tpublic void onItemClick(AdapterView<?> arg0, View v,\n\t\t\t\t\t\t\tint position, long id)\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tswitch (position) {\n\t\t\t\t\t\t\t\tcase 0:\n\t\t\t\t\t\t\t\t\topenNavigation();\n\...
f912f3586bf42675c4beb36a9261b370
repeated .ContainedWithin contained_within = 3;
[ { "docid": "bb212b4b9b3ff5255c21537d68f89db6", "score": "0.60294706", "text": "int getContainedWithinCount();", "title": "" } ]
[ { "docid": "3bb464975ad1d875d95009d4eea50caf", "score": "0.6009243", "text": "public Twitter.ContainedWithin.Builder addContainedWithinBuilder() {\n return getContainedWithinFieldBuilder().addBuilder(\n Twitter.ContainedWithin.getDefaultInstance());\n }", "title": "" }, { ...