query
stringlengths
7
33.1k
document
stringlengths
7
335k
metadata
dict
negatives
listlengths
3
101
negative_scores
listlengths
3
101
document_score
stringlengths
3
10
document_rank
stringclasses
102 values
Show user a popup asking if she wants to delete selected powers On yes will defer to Presenter to do the job
private void showConfirmDeletionDialog(){ //give builder our custom dialog fragment style new AlertDialog.Builder(this, R.style.dialogFragment_title_style) .setMessage(getString(R.string.powerlist_confirmRemoval)) .setTitle(getString(R.string.powerList_confirmRemoval_title)) .setPositiveButton(getString(R.string.action_remove), new DialogInterface.OnClickListener() { @Override public void onClick(DialogInterface dialog, int which) { myActionListener.userDeletingPowersFromList( PowerListActivity.this.adapter.getSelectedSpells()); deleteButton.setVisibility(View.GONE); //tell adapter to switch selection mode off PowerListActivity.this.adapter.endSelectionMode(); } }) .setNegativeButton(getString(R.string.action_cancel), null) .show(); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private void delete() {\n\t\tComponents.questionDialog().message(\"Are you sure?\").callback(answeredYes -> {\n\n\t\t\t// if confirmed, delete the current product PropertyBox\n\t\t\tdatastore.delete(TARGET, viewForm.getValue());\n\t\t\t// Notify the user\n\t\t\tNotification.show(\"Product deleted\", Type.TRAY_NOTI...
[ "0.67769736", "0.66646296", "0.66131043", "0.6526218", "0.6510207", "0.6491124", "0.64325637", "0.64184695", "0.63798887", "0.6357682", "0.63374805", "0.6318409", "0.63003045", "0.62874395", "0.62741625", "0.62393135", "0.6236855", "0.6230779", "0.6221147", "0.62179816", "0.6...
0.6985862
0
TODO please give additional methods for 'Player' entity.
public List<Player> selectByNationality(String nationality) throws Exception;
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "protected Player getPlayer() { return player; }", "public Player getPlayer() { return player; }", "public Player getPlayer() { return player;}", "public Player getPlayer()\r\n {\r\n return player;\r\n }", "public Player getPlayer();", "public Player getPlayer();", "public Player getPlayer(){\r\n ...
[ "0.7687792", "0.75161326", "0.7512176", "0.72473186", "0.7205734", "0.7205734", "0.7201845", "0.7097421", "0.70704347", "0.70704347", "0.7057153", "0.7033946", "0.6992821", "0.6992821", "0.6992821", "0.6992821", "0.6992821", "0.6943413", "0.6811818", "0.6754312", "0.6743263",...
0.0
-1
public List searchPlayerOrderBy(Player player) throws Exception;
public int calculatePlayerAge(int player_id) throws Exception;
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "List<Player> listPlayers();", "List<Player> findAllPlayers();", "List<Player> getPlayers();", "private void getPlayerList(){\r\n\r\n PlayerDAO playerDAO = new PlayerDAO(Statistics.this);\r\n players = playerDAO.readListofPlayerNameswDefaultFirst();\r\n\r\n }", "ArrayList<Player> getAllPlay...
[ "0.71696764", "0.7028877", "0.6913725", "0.68823475", "0.6867976", "0.68642354", "0.67426753", "0.66585934", "0.65465766", "0.64294666", "0.6347316", "0.63128436", "0.6289938", "0.62767", "0.6239465", "0.61534363", "0.6148413", "0.614701", "0.61295015", "0.6080321", "0.607353...
0.0
-1
created: Sep 4, 2010T7:15:29 PM
public interface EntityService<T> { void saveOrUpdate(T persistent); void delete(Long id); void delete(T persistent); T get(Long id); List<T> getAll(); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "String timeCreated();", "Date getDateCreated();", "String getCreated_at();", "public Date getCreateTime()\n/* */ {\n/* 177 */ return this.createTime;\n/* */ }", "public Date getDateCreated(){return DATE_CREATED;}", "public Date getDateCreated();", "long getCreatedTime();", "public Dat...
[ "0.7085898", "0.69937783", "0.6929207", "0.67607296", "0.66062963", "0.6527949", "0.65083563", "0.648574", "0.64050245", "0.63634294", "0.63511443", "0.6344092", "0.6342629", "0.63148785", "0.6302315", "0.6302315", "0.6302315", "0.6302315", "0.6302315", "0.6302315", "0.630231...
0.0
-1
Creates a new instance of Main
public Main() { }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public Main() {\n\t\tsuper();\n\t}", "public Main() {}", "public Main() {\r\n\t\tsuper();\r\n\t\tinitialize();\r\n\r\n\t}", "public Main() {\r\n\t}", "private Main() {\n\n super();\n }", "public static void main(String[] args) {\n new Main();\n }", "public Main() {\n }", "public M...
[ "0.7645495", "0.7643549", "0.7626631", "0.75407284", "0.7519115", "0.74812573", "0.7420559", "0.73955655", "0.73955655", "0.7375776", "0.7375776", "0.73171365", "0.72135895", "0.7197211", "0.71735054", "0.7159804", "0.7045752", "0.70416826", "0.7018528", "0.69894004", "0.6977...
0.73913425
9
Mapping from 'BookOrderItemEntity' to 'BookOrderItem'
@Test public void testMapBookOrderItemEntityToBookOrderItem() { // Given BookOrderItemEntity bookOrderItemEntity = new BookOrderItemEntity(); bookOrderItemEntity.setQuantity(mockValues.nextInteger()); bookOrderItemEntity.setPrice(mockValues.nextBigDecimal()); // When BookOrderItem bookOrderItem = bookOrderItemServiceMapper.mapBookOrderItemEntityToBookOrderItem(bookOrderItemEntity); // Then assertEquals(bookOrderItemEntity.getQuantity(), bookOrderItem.getQuantity()); assertEquals(bookOrderItemEntity.getPrice(), bookOrderItem.getPrice()); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Test\n\tpublic void testMapBookOrderItemToBookOrderItemEntity() {\n\t\t// Given\n\t\tBookOrderItem bookOrderItem = new BookOrderItem();\n\t\tbookOrderItem.setQuantity(mockValues.nextInteger());\n\t\tbookOrderItem.setPrice(mockValues.nextBigDecimal());\n\n\t\tBookOrderItemEntity bookOrderItemEntity = new BookOrder...
[ "0.7497513", "0.66061336", "0.62123567", "0.6075191", "0.5962275", "0.56868875", "0.5566555", "0.55552167", "0.5478769", "0.54637694", "0.5417313", "0.5413993", "0.53727967", "0.5285528", "0.5282298", "0.5265883", "0.5254287", "0.5247736", "0.5237076", "0.52254647", "0.521800...
0.7506445
0
Test : Mapping from 'BookOrderItem' to 'BookOrderItemEntity'
@Test public void testMapBookOrderItemToBookOrderItemEntity() { // Given BookOrderItem bookOrderItem = new BookOrderItem(); bookOrderItem.setQuantity(mockValues.nextInteger()); bookOrderItem.setPrice(mockValues.nextBigDecimal()); BookOrderItemEntity bookOrderItemEntity = new BookOrderItemEntity(); // When bookOrderItemServiceMapper.mapBookOrderItemToBookOrderItemEntity(bookOrderItem, bookOrderItemEntity); // Then assertEquals(bookOrderItem.getQuantity(), bookOrderItemEntity.getQuantity()); assertEquals(bookOrderItem.getPrice(), bookOrderItemEntity.getPrice()); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Test\n\tpublic void testMapBookOrderItemEntityToBookOrderItem() {\n\t\t// Given\n\t\tBookOrderItemEntity bookOrderItemEntity = new BookOrderItemEntity();\n\t\tbookOrderItemEntity.setQuantity(mockValues.nextInteger());\n\t\tbookOrderItemEntity.setPrice(mockValues.nextBigDecimal());\n\t\t\n\t\t// When\n\t\tBookOrde...
[ "0.8347223", "0.6756445", "0.61974806", "0.6124409", "0.6049691", "0.59487695", "0.59467435", "0.58428675", "0.5785177", "0.5746965", "0.57420844", "0.5736398", "0.57160985", "0.57130176", "0.57036537", "0.56965476", "0.5657169", "0.5628438", "0.5592357", "0.5572346", "0.5570...
0.84361416
0
Created by Joryun on 2016/11/30.
public interface PacketService { //根据uid获取packet对象 public Integer findPacketByUid(Integer uid); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\n public void perish() {\n \n }", "private stendhal() {\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@Override\n\tpublic void grabar() {\n\t\t\n\t}", "@Override\r\n\tpublic void bicar() {\n\t\t\r\n\t}", "@Override\r\n\tpublic void bicar() {\n\t\t\r\n\t}", "@Override\r...
[ "0.6015914", "0.59234774", "0.58290493", "0.58005524", "0.57505953", "0.57505953", "0.5732672", "0.5707888", "0.569614", "0.56893814", "0.56813043", "0.56147295", "0.5603107", "0.55988455", "0.5591407", "0.5586856", "0.5582703", "0.5571799", "0.5554197", "0.5535964", "0.55359...
0.0
-1
Put an event into the streams.
abstract void put(T event);
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void put(Event event) throws ChannelException {\n\t\t\n\t\t\n\t}", "void publish(Event event) throws PublishingException;", "public static synchronized void submit(Event event) {\n StreamConfig streamConfig = STREAM_CONFIGS.get(event.getStream());\n if (streamConfig == null) {\n ...
[ "0.6829845", "0.6370262", "0.6137985", "0.6060542", "0.60391587", "0.59251815", "0.5830578", "0.581154", "0.57941955", "0.5769763", "0.5741164", "0.5733748", "0.56055385", "0.5551151", "0.5518867", "0.5502349", "0.54796666", "0.54759884", "0.5457493", "0.5453277", "0.5446447"...
0.66920614
1
Stop and close all the streams.
abstract void close();
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private void closeStreams() {\n try {\n System.out.println(\"Closing streams and terminating thread.\");\n running = false;\n outputStream.close();\n inputStream.close();\n clientSocket.close();\n } catch (IOException e) {\n System.err...
[ "0.754436", "0.73348004", "0.7085859", "0.7064985", "0.6972567", "0.695634", "0.6928989", "0.6664295", "0.6585045", "0.6579895", "0.65657663", "0.6565552", "0.6564236", "0.65629345", "0.65544564", "0.6525521", "0.64975876", "0.64787126", "0.64735675", "0.6463516", "0.6456601"...
0.0
-1
Called upon block activation (right click on the block.)
@Override public boolean onBlockActivated(World par1World, int par2, int par3, int par4, EntityPlayer par5EntityPlayer, int par6, float par7, float par8, float par9) { Unsaga.debug("アクチベートされてます"); TileEntityChestUnsaga var10 = (TileEntityChestUnsaga)par1World.getTileEntity(par2, par3, par4); if(var10 == null){ Unsaga.debug("タイルエンチチーがとれない"); return true; } if(var10.hasItemSet){ chestFunc(par1World, par2, par3, par4, par5EntityPlayer, par6, par7, par8, par9); return false; } if(!var10.getWorldObj().isRemote){ Unsaga.debug("同期します"); int chestlevel = 0; if(!var10.hasSetChestLevel()){ var10.initChestLevel(par1World); } chestlevel = var10.getChestLevel(); PacketSyncChest ps = new PacketSyncChest(new XYZPos(par2,par3,par4),chestlevel); Unsaga.packetPipeline.sendTo(ps, (EntityPlayerMP) par5EntityPlayer); Unsaga.debug("パケット送ります"); PacketGuiOpen pg = new PacketGuiOpen(Unsaga.guiNumber.chest,new XYZPos(par2,par3,par4)); Unsaga.packetPipeline.sendToServer(pg); //PacketDispatcher.sendPacketToPlayer(PacketHandler.getChestSyncPacket(chestlevel, par2, par3, par4,false,var10.trapOccured,var10.unlocked,var10.defused,var10.magicLock,var10.hasItemSet), (Player) par5EntityPlayer); //PacketDispatcher.sendPacketToServer(PacketHandler.getChestGuiPacket(par2,par3,par4)); } if(var10.getWorldObj().isRemote){ } // boolean chestopen = var10.touchChest(par5EntityPlayer); // // if(chestopen){ // var10.setItemsToChest(par1World.rand); // chestFunc(par1World, par2, par3, par4, par5EntityPlayer, par6, par7, par8, par9); // } return false; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public boolean onBlockActivated(World p_149727_1_, int p_149727_2_, int p_149727_3_, int p_149727_4_, EntityPlayer p_149727_5_, int p_149727_6_, float p_149727_7_, float p_149727_8_, float p_149727_9_)\n {\n if (p_149727_1_.isClient)\n {\n return true;\n }\n else\n ...
[ "0.6938265", "0.68934083", "0.68934083", "0.68934083", "0.68190813", "0.6807783", "0.67337096", "0.6597978", "0.6588366", "0.6497091", "0.6477156", "0.6311755", "0.62702036", "0.6269958", "0.62540555", "0.619121", "0.61715627", "0.6164769", "0.61338675", "0.61338675", "0.6128...
0.5858026
51
The type of render function that is called for this block
@Override public int getRenderType() { return 22; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public int getRenderType()\n {\n return 2;\n }", "public int getRenderType()\n {\n return 40;\n }", "public int getRenderType() {\n\t\treturn 18;\n\t}", "@Override\n public int getRenderType()\n {\n return 31;\n }", "@Override\n public BlockRenderType getRenderT...
[ "0.7124026", "0.690835", "0.6839274", "0.6702707", "0.6697335", "0.655468", "0.649225", "0.64872676", "0.6480772", "0.64649147", "0.6457805", "0.6277297", "0.6201169", "0.61608946", "0.6132235", "0.5994838", "0.59908", "0.597434", "0.59094554", "0.5909267", "0.5886826", "0....
0.6742485
3
TODO Autogenerated method stub
public static void main(String[] args) { double media = 0, cont = 0, soma = 0; for (int aux = 1000; aux <= 2000; aux++) { if (aux % 2 != 0) { soma += aux; cont++; } } media = soma / cont; System.out.println(media); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@Override\n public void perish() {\n \n }", "@Override\r\n\t\t\tpublic void annadir() {\n\r\n\t\t\t}", "@Override\n\tpublic void anular() {\n\n\t}", "@Override\n\tprotected void getExr...
[ "0.6671074", "0.6567672", "0.6523024", "0.6481211", "0.6477082", "0.64591026", "0.64127725", "0.63762105", "0.6276059", "0.6254286", "0.623686", "0.6223679", "0.6201336", "0.61950207", "0.61950207", "0.61922914", "0.6186996", "0.6173591", "0.61327106", "0.61285484", "0.608016...
0.0
-1
TODO Autogenerated method stub
@Override public int compare(ScoreSum lhs, ScoreSum rhs) { ScoreSum temp1 = lhs; ScoreSum temp2 = rhs; int num = temp1.getScore().compareTo(temp2.getScore()); if (num == 0) return temp1.getAthleteName().compareTo(temp2.getAthleteName()); return num; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@Override\n public void perish() {\n \n }", "@Override\r\n\t\t\tpublic void annadir() {\n\r\n\t\t\t}", "@Override\n\tpublic void anular() {\n\n\t}", "@Override\n\tprotected void getExr...
[ "0.6671074", "0.6567672", "0.6523024", "0.6481211", "0.6477082", "0.64591026", "0.64127725", "0.63762105", "0.6276059", "0.6254286", "0.623686", "0.6223679", "0.6201336", "0.61950207", "0.61950207", "0.61922914", "0.6186996", "0.6173591", "0.61327106", "0.61285484", "0.608016...
0.0
-1
Fake implementation : always return false.
public boolean accept(String word) { // Ceci n'est pas une implémentation ! return false; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\n\tpublic boolean test() {\n\t\treturn false;\n\t}", "public boolean method_2453() {\r\n return false;\r\n }", "boolean test() {\n return false; // REPLACE WITH SOLUTION\n }", "public boolean method_2434() {\r\n return false;\r\n }", "public boolean method_4088() {\n ...
[ "0.78380567", "0.7472758", "0.7420831", "0.7340757", "0.73017687", "0.7285475", "0.7224095", "0.7125051", "0.7124551", "0.70579743", "0.70449626", "0.701589", "0.69410324", "0.6937139", "0.6932821", "0.6930583", "0.69262093", "0.6905081", "0.6905081", "0.6905081", "0.6880917"...
0.0
-1
TODO Autogenerated method stub
public Set<State> getTransitionSet(Set<State> fromSet, char letter) { return null; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@Override\n public void perish() {\n \n }", "@Override\r\n\t\t\tpublic void annadir() {\n\r\n\t\t\t}", "@Override\n\tpublic void anular() {\n\n\t}", "@Override\n\tprotected void getExr...
[ "0.6671074", "0.6567672", "0.6523024", "0.6481211", "0.6477082", "0.64591026", "0.64127725", "0.63762105", "0.6276059", "0.6254286", "0.623686", "0.6223679", "0.6201336", "0.61950207", "0.61950207", "0.61922914", "0.6186996", "0.6173591", "0.61327106", "0.61285484", "0.608016...
0.0
-1
Created by jack_xie on 17424.
public interface OnEditorInteraction { boolean onItemLongClick(MissionItemProxy item); void onItemClick(MissionItemProxy item, boolean zoomToFit); void onMapClick(LatLong coord); void onListVisibilityChanged(); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\n public void perish() {\n \n }", "public final void mo51373a() {\n }", "@Override\n\tpublic void grabar() {\n\t\t\n\t}", "private stendhal() {\n\t}", "@Override\n public void func_104112_b() {\n \n }", "@Override\r\n\tpublic void bicar() {\n\t\t\r\n\t}", "@Ov...
[ "0.6064955", "0.5984886", "0.59087414", "0.5877721", "0.58562267", "0.5850203", "0.5850203", "0.5825898", "0.5817512", "0.5795604", "0.5764101", "0.57462", "0.5735321", "0.57329345", "0.57278126", "0.5724088", "0.572404", "0.5700523", "0.5687422", "0.56760967", "0.5655628", ...
0.0
-1
logger.info(String.format("current task = %d", queue.size()));
@Override public void run() { if (queue.size() > 0) { ITask task = queue.poll(); pool.execute(task); } else { queue.setTaskRunning(false); } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "long getExcutorTasksInWorkQueueCount();", "public int queue() \n { return waiting; }", "public int size()\n {\n return tasks.size();\n }", "public int getCount() {\n return queue.size();\n }", "public String queueName();", "int getQueueSize();", "public void printQueue();", "pu...
[ "0.64472646", "0.6381153", "0.63701683", "0.6365935", "0.61683553", "0.6132471", "0.61082006", "0.6089342", "0.6087704", "0.60824305", "0.6071935", "0.60545933", "0.60416067", "0.6005919", "0.59987825", "0.5982468", "0.5968402", "0.59681535", "0.59593755", "0.5932652", "0.591...
0.0
-1
TODO AlexTsymbal: probably it makes sense to implement clickListener in presenter!?!?!?
@Override public void onClick(View view) { switch (view.getId()) { case R.id.buttonStart: mScreenPresenter.onStartButtonClicked(); break; case R.id.buttonClear: mScreenPresenter.onClearButtonClicked(); break; } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\n\tprotected void OnClick() {\n\t\t\n\t}", "public void clickedPresentationNew() {\n\t\t\n\t}", "protected abstract void onPresenter();", "@DISPID(-2147412104)\n @PropGet\n java.lang.Object onclick();", "@Override\n \t\tpublic void onClick(View v) {\n \t\t\t\n \t\t}", "@Override\n \t\tpublic ...
[ "0.7207857", "0.7068937", "0.70591956", "0.68791157", "0.68452746", "0.68452746", "0.6831826", "0.68169165", "0.6805727", "0.680483", "0.6800216", "0.6799626", "0.6799626", "0.6799626", "0.6791469", "0.6791469", "0.6791469", "0.6791469", "0.6791469", "0.6791469", "0.6786201",...
0.0
-1
Full GC / (STW) [GC (CMS Initial Mark) [1 CMSinitialmark: 53400K(344064K)] 79710K(498944K), 0.0032015 secs] [Times: user=0.01 sys=0.00, real=0.00 secs] [CMSconcurrentmarkstart] [CMSconcurrentmark: 0.005/0.005 secs] [Times: user=0.02 sys=0.00, real=0.01 secs] [CMSconcurrentprecleanstart] [CMSconcurrentpreclean: 0.002/0.002 secs] [Times: user=0.01 sys=0.00, real=0.00 secs] [CMSconcurrentabortableprecleanstart] [CMSconcurrentabortablepreclean: 0.711/1.578 secs] [Times: user=5.00 sys=0.12, real=1.58 secs] (STW) [GC (CMS Final Remark) [YG occupancy: 97189 K (154880 K)]20171120T19:55:50.907+0800: 4.148: [Rescan (parallel) , 0.0325130 secs]20171120T19:55:50.940+0800: 4.181: [weak refs processing, 0.0000407 secs]20171120T19:55:50.940+0800: 4.181: [class unloading, 0.0059425 secs]20171120T19:55:50.946+0800: 4.187: [scrub symbol table, 0.0044211 secs]20171120T19:55:50.950+0800: 4.191: [scrub string table, 0.0006347 secs][1 CMSremark: 118936K(344064K)] 216125K(498944K), 0.0442861 secs] [Times: user=0.13 sys=0.00, real=0.04 secs] [CMSconcurrentsweepstart] [CMSconcurrentsweep: 0.002/0.002 secs] [Times: user=0.00 sys=0.00, real=0.00 secs] [CMSconcurrentresetstart] [CMSconcurrentreset: 0.108/0.109 secs] [Times: user=0.34 sys=0.05, real=0.11 secs] Full GC
public void parseGCRecord(double timestamp, String line) { /* (STW) [GC (CMS Initial Mark) [1 CMS-initial-mark: 53400K(344064K)] 79710K(498944K), 0.0032015 secs] [Times: user=0.01 sys=0.00, real=0.00 secs] [CMS-concurrent-mark-start] [CMS-concurrent-mark: 0.005/0.005 secs] [Times: user=0.02 sys=0.00, real=0.01 secs] [CMS-concurrent-preclean-start] [CMS-concurrent-preclean: 0.002/0.002 secs] [Times: user=0.01 sys=0.00, real=0.00 secs] [CMS-concurrent-abortable-preclean-start] [CMS-concurrent-abortable-preclean: 0.711/1.578 secs] [Times: user=5.00 sys=0.12, real=1.58 secs] (STW) [GC (CMS Final Remark) [YG occupancy: 97189 K (154880 K)]2017-11-20T19:55:50.907+0800: 4.148: [Rescan (parallel) , 0.0325130 secs]2017-11-20T19:55:50.940+0800: 4.181: [weak refs processing, 0.0000407 secs]2017-11-20T19:55:50.940+0800: 4.181: [class unloading, 0.0059425 secs]2017-11-20T19:55:50.946+0800: 4.187: [scrub symbol table, 0.0044211 secs]2017-11-20T19:55:50.950+0800: 4.191: [scrub string table, 0.0006347 secs][1 CMS-remark: 118936K(344064K)] 216125K(498944K), 0.0442861 secs] [Times: user=0.13 sys=0.00, real=0.04 secs] [CMS-concurrent-sweep-start] [CMS-concurrent-sweep: 0.002/0.002 secs] [Times: user=0.00 sys=0.00, real=0.00 secs] [CMS-concurrent-reset-start] [CMS-concurrent-reset: 0.108/0.109 secs] [Times: user=0.34 sys=0.05, real=0.11 secs] */ // Full GC if (line.startsWith("[CMS-concurrent") || line.startsWith("[GC (CMS Initial Mark)") || line.startsWith("[GC (CMS Final Remark)")) { if (line.startsWith("[GC (CMS Initial Mark)")) { // 53400K(344064K)] 79710K(498944K), 0.0032015 secs String CMS_initial_mark = line.substring(line.indexOf(':') + 2, line.indexOf("secs]") + 4); double oCurrentMB = computeMB(CMS_initial_mark.substring(0, CMS_initial_mark.indexOf('K'))); double oldMB = computeMB(CMS_initial_mark.substring(CMS_initial_mark.indexOf("(") + 1, CMS_initial_mark.indexOf("K)"))); // 79710K(498944K), 0.0032015 secs CMS_initial_mark = CMS_initial_mark.substring(CMS_initial_mark.indexOf(']') + 2); double heapCurrentMB = computeMB(CMS_initial_mark.substring(0, CMS_initial_mark.indexOf('K'))); double heapMB = computeMB(CMS_initial_mark.substring(CMS_initial_mark.indexOf('(') + 1, CMS_initial_mark.indexOf("K)"))); double fgcSeconds = Double.parseDouble(CMS_initial_mark.substring(CMS_initial_mark.indexOf(", ") + 2, CMS_initial_mark.indexOf(" secs"))); // double yCurrentMB = heapCurrentMB - oCurrentMB; // double youngMB = heapMB - oldMB; // // usage.addYoungUsage(timestamp, yCurrentMB, youngMB, "FGC"); //usage.addOldUsage(timestamp, oCurrentMB, oldMB, "FGC"); } else if (line.startsWith("[GC (CMS Final Remark)")) { // 97189 K (154880 K) String YG_occupancy = line.substring(line.indexOf(':') + 2, line.indexOf(']')); double yCurrentMB = computeMB(YG_occupancy.substring(0, YG_occupancy.indexOf('K') - 1)); double youngMB = computeMB(YG_occupancy.substring(YG_occupancy.indexOf("(") + 1, YG_occupancy.indexOf("K)") - 1)); // 118936K(344064K)] 216125K(498944K), 0.0442861 secs] [Times: user=0.13 sys=0.00, real=0.04 secs] String CMS_remark = line.substring(line.indexOf("CMS-remark") + 12); double oCurrentMB = computeMB(CMS_remark.substring(0, CMS_remark.indexOf('K'))); double oldMB = computeMB(CMS_remark.substring(CMS_remark.indexOf("(") + 1, CMS_remark.indexOf("K)"))); // 216125K(498944K), 0.0442861 secs] [Times: user=0.13 sys=0.00, real=0.04 secs] CMS_remark = CMS_remark.substring(CMS_remark.indexOf(']') + 2); double heapCurrentMB = computeMB(CMS_remark.substring(0, CMS_remark.indexOf('K'))); double heapMB = computeMB(CMS_remark.substring(CMS_remark.indexOf('(') + 1, CMS_remark.indexOf("K)"))); double fgcSeconds = Double.parseDouble(CMS_remark.substring(CMS_remark.indexOf(", ") + 2, CMS_remark.indexOf(" secs"))); //usage.addYoungUsage(timestamp, yCurrentMB, youngMB, "FGC"); //usage.addOldUsage(timestamp, oCurrentMB, oldMB, "FGC"); } } // Young GC /* [GC (Allocation Failure) 2017-11-20T19:55:51.305+0800: 4.546: [ParNew: 148472K->15791K(154880K), 0.0136927 secs] 267406K->137259K(498944K), 0.0138721 secs] [Times: user=0.04 sys=0.01, real=0.02 secs] [GC (GCLocker Initiated GC) 2017-11-20T19:55:52.467+0800: 5.708: [ParNew: 2611K->1477K(154880K), 0.0019634 secs] 132956K->131822K(498944K), 0.0020074 secs] [Times: user=0.02 sys=0.00, real=0.00 secs] CMS: abort preclean due to time 2017-11-20T19:57:04.539+0800: 77.780: [CMS-concurrent-abortable-preclean: 0.651/5.055 secs] [Times: user=0.65 sys=0.01, real=5.06 secs] */ else if (line.startsWith("[GC") && line.contains("[ParNew:")){ String ygcCause = line.substring(line.indexOf('(') + 1, line.indexOf(')')); // 148472K->15791K(154880K), 0.0136927 secs String ParNew = line.substring(line.indexOf("[ParNew:") + 9, line.indexOf(']')); // System.out.println(ParNew); double yBeforeMB = computeMB(ParNew.substring(0, ParNew.indexOf('K'))); double yAfterMB = computeMB(ParNew.substring(ParNew.indexOf('>') + 1, ParNew.indexOf("K("))); double youngMB = computeMB(ParNew.substring(ParNew.indexOf('(') + 1, ParNew.indexOf("K)"))); double ygcSeconds = Double.parseDouble(ParNew.substring(ParNew.indexOf(", ") + 2, ParNew.indexOf(" secs"))); // System.out.println(ParNew); // System.out.println(" yBeforeMB = " + yBeforeMB + ", yAfterMB = " + yAfterMB + ", youngMB = " + youngMB); // 267406K->137259K(498944K), 0.0138721 secs String heapUsage = line.substring(line.indexOf("]") + 2, line.indexOf("] [Times:")); double heapBeforeMB = computeMB(heapUsage.substring(0, heapUsage.indexOf('K'))); double heapAfterMB = computeMB(heapUsage.substring(heapUsage.indexOf('>') + 1, heapUsage.indexOf("K("))); double heapMB = computeMB(heapUsage.substring(heapUsage.indexOf('(') + 1, heapUsage.indexOf("K)"))); double oldBeforeMB = heapBeforeMB - yBeforeMB; double oldAfterMB = heapAfterMB - yAfterMB; double oldMB = heapMB - youngMB; //usage.addYoungUsage(timestamp, yBeforeMB, youngMB, "YGC"); //usage.addYoungUsage(timestamp, yAfterMB, youngMB, ""); if (oldAfterMB != oldBeforeMB) { //usage.addOldUsage(timestamp, oldBeforeMB, oldMB, "YGC"); //usage.addOldUsage(timestamp, oldAfterMB, oldMB, ""); } } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private static void runGC () throws Exception \r\n {\n for (int r = 0; r < 4; ++ r) _runGC (); \r\n }", "@Override\r\n\tpublic void debit() {\n\t\tSystem.out.println(\"Core Method of GC\");\r\n\t}", "public void testPrintGcApplicationConcurrentTimeAnalysis() {\n // TODO: Create File in pl...
[ "0.6048645", "0.5969718", "0.58391786", "0.55172336", "0.5483786", "0.5462384", "0.53997403", "0.53723216", "0.53366613", "0.5329458", "0.532455", "0.53025407", "0.5230636", "0.5202156", "0.5185371", "0.5185371", "0.5148566", "0.5147907", "0.51271176", "0.5123533", "0.5082606...
0.63464516
0
TODO Autogenerated method stub
private void dfs(List<List<Integer>> res, List<Integer> tmp, int n, int k, int start) { if(tmp.size() == k) { res.add(new ArrayList<Integer>(tmp)); return; } for(int i=start;i<=n;i++) { //i <= (n - (k - tmp.size()) + 1) 剪枝,当可选的数已经不够时,直接剪枝 tmp.add(i); dfs(res,tmp,n,k,i+1);//i+1,别老忘写+1 tmp.remove(tmp.size()-1); } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@Override\n public void perish() {\n \n }", "@Override\r\n\t\t\tpublic void annadir() {\n\r\n\t\t\t}", "@Override\n\tpublic void anular() {\n\n\t}", "@Override\n\tprotected void getExr...
[ "0.6671074", "0.6567672", "0.6523024", "0.6481211", "0.6477082", "0.64591026", "0.64127725", "0.63762105", "0.6276059", "0.6254286", "0.623686", "0.6223679", "0.6201336", "0.61950207", "0.61950207", "0.61922914", "0.6186996", "0.6173591", "0.61327106", "0.61285484", "0.608016...
0.0
-1
TODO Autogenerated method stub
public static void main(String[] args) { }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@Override\n public void perish() {\n \n }", "@Override\r\n\t\t\tpublic void annadir() {\n\r\n\t\t\t}", "@Override\n\tpublic void anular() {\n\n\t}", "@Override\n\tprotected void getExr...
[ "0.6671074", "0.6567672", "0.6523024", "0.6481211", "0.6477082", "0.64591026", "0.64127725", "0.63762105", "0.6276059", "0.6254286", "0.623686", "0.6223679", "0.6201336", "0.61950207", "0.61950207", "0.61922914", "0.6186996", "0.6173591", "0.61327106", "0.61285484", "0.608016...
0.0
-1
The constructor should first build the main layout, set the composition root and then do any custom initialization. The constructor will not be automatically regenerated by the visual editor.
public Class4(final HttpServletRequest httpServletRequest) { Injector.inject(this, httpServletRequest); buildMainLayout(); setCompositionRoot(mainLayout); initForm(); // TODO add user code here }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public MainView() {\r\n\t\tinitialize();\r\n\t}", "public MainView() {\n initComponents();\n \n }", "public void init()\n {\n buildUI(getContentPane());\n }", "public MainContentPane() {\r\n\t\tsuper();\r\n\r\n\t\t// Add design-time configured components.\r\n\t\tinitComponents()...
[ "0.7466256", "0.7260828", "0.72130775", "0.71694535", "0.71473897", "0.7135913", "0.7095179", "0.70877945", "0.70776695", "0.70759374", "0.7069423", "0.7069423", "0.699752", "0.6995207", "0.699078", "0.6983214", "0.69580996", "0.6940307", "0.6921498", "0.6900615", "0.6897243"...
0.0
-1
common part: create layout
@AutoGenerated private VerticalLayout buildMainLayout() { mainLayout = new VerticalLayout(); mainLayout.setImmediate(false); mainLayout.setWidth("100%"); mainLayout.setHeight("100%"); mainLayout.setMargin(false); // top-level component properties setWidth("60.0%"); setHeight("60.0%"); // lblHeading lblHeading = new Label(); lblHeading.setImmediate(false); lblHeading.setWidth("-1px"); lblHeading.setHeight("-1px"); lblHeading.setValue("This is class 4"); mainLayout.addComponent(lblHeading); // button_1 button_1 = new Button(); button_1.setCaption("Button"); button_1.setImmediate(false); button_1.setWidth("-1px"); button_1.setHeight("-1px"); mainLayout.addComponent(button_1); return mainLayout; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "protected abstract void iniciarLayout();", "Board createLayout();", "public abstract void doLayout();", "public void layout() {\n TitleLayout ll1 = new TitleLayout(getContext(), sourceIconView, titleTextView);\n\n // All items in ll1 are vertically centered\n ll1.setGravity(Gravity.CENTE...
[ "0.7441121", "0.7408097", "0.73983043", "0.7349182", "0.7343956", "0.72837514", "0.7228967", "0.72196674", "0.716834", "0.7118178", "0.7112332", "0.71101266", "0.70597374", "0.70571274", "0.6990229", "0.6926798", "0.6901655", "0.6854118", "0.68504196", "0.68446213", "0.683686...
0.6319707
61
TODO Autogenerated method stub
@Override public void enter(final ViewChangeEvent event) { }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@Override\n public void perish() {\n \n }", "@Override\r\n\t\t\tpublic void annadir() {\n\r\n\t\t\t}", "@Override\n\tpublic void anular() {\n\n\t}", "@Override\n\tprotected void getExr...
[ "0.6671074", "0.6567672", "0.6523024", "0.6481211", "0.6477082", "0.64591026", "0.64127725", "0.63762105", "0.6276059", "0.6254286", "0.623686", "0.6223679", "0.6201336", "0.61950207", "0.61950207", "0.61922914", "0.6186996", "0.6173591", "0.61327106", "0.61285484", "0.608016...
0.0
-1
Gets the class uri.
public static String getClassURI( @SuppressWarnings("rawtypes") final Class clazz) throws RuntimeException { URI classURI = null; try { classURI = clazz.getProtectionDomain().getCodeSource() .getLocation().toURI(); } catch (final URISyntaxException e) { throw new RuntimeException(e); } final String selfString = classURI.toString(); return selfString; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public static String extractClassURI(Class klass) {\n\n\t\tString javaName = klass.getCanonicalName();\n\t\t// System.out.println(\"JAVA \" + javaName);\n\n\t\tIterator<String> keys = nsMap.keySet().iterator();\n\t\tString uri = Describer.defaultBase;\n\n\t\twhile (keys.hasNext()) {\n\t\t\tString key = keys.next()...
[ "0.6965924", "0.67547804", "0.661901", "0.6600347", "0.6585792", "0.6575092", "0.6575092", "0.65649873", "0.646596", "0.64587295", "0.6441939", "0.6441265", "0.64096", "0.64042", "0.63982594", "0.63907707", "0.63886493", "0.6387576", "0.6384188", "0.6379109", "0.63693994", ...
0.6887658
1
Checks if is running as jar.
public static boolean isRunningAsJar(final String classURI) { return classURI.startsWith("jar:"); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private static boolean isJar(){\n\t\tString str = IOHandler.class.getResource(\"IOHandler.class\").toString();\n\t\treturn str.toLowerCase().startsWith(\"jar\") && JAROVERRIDE;\n\t}", "boolean hasOutputjar();", "public boolean isJarURL(URL url) {\n\t\tString protocol = url.getProtocol();\n\t\treturn URL_PROTOC...
[ "0.77143943", "0.66407776", "0.63062704", "0.6132855", "0.59095854", "0.58142436", "0.5790569", "0.5721672", "0.5585518", "0.5581268", "0.5444305", "0.54100966", "0.54098266", "0.53469616", "0.53463846", "0.53378415", "0.5306467", "0.5294683", "0.52499914", "0.5225974", "0.52...
0.7560574
1
Removes the class uri prefix.
public static String removeClassUriPrefix(final String classURI) { String unprefixed = classURI.replace("jar:", ""); final String osname = System.getProperty("os.name"); // Detect Mac OS X from Java: // http://developer.apple.com/library/mac/#technotes/tn2002/tn2110.html if (osname.toLowerCase().contains("linux") || osname.startsWith("Mac OS X")) { unprefixed = unprefixed.replace("file:", ""); } else { unprefixed = unprefixed.replace("file:/", ""); } return unprefixed; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public static String removePostJarSuffix(final String classURI) {\n\t\tint seperator = classURI.length();\n\t\tif (classURI.contains(\"!\")) {\n\t\t\tseperator = classURI.lastIndexOf('!');\n\t\t}\n\t\treturn classURI.substring(0, seperator);\n\t}", "public static String removeProtocolPrefix(String prefixedUri)\r...
[ "0.59372383", "0.58100355", "0.5713237", "0.56171507", "0.5603509", "0.5572572", "0.5451386", "0.5451386", "0.5451386", "0.5451386", "0.5451386", "0.5417362", "0.5395594", "0.53867006", "0.53297997", "0.5322824", "0.5298186", "0.52903783", "0.5286615", "0.5248907", "0.5221208...
0.7568741
0
Removes the post jar suffix.
public static String removePostJarSuffix(final String classURI) { int seperator = classURI.length(); if (classURI.contains("!")) { seperator = classURI.lastIndexOf('!'); } return classURI.substring(0, seperator); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private String appendJarSuffixIfNeeded(String value) {\n if (!value.endsWith(JAR_SUFFIX)) {\n return value + JAR_SUFFIX;\n }\n\n return value;\n }", "public static String removeClassUriPrefix(final String classURI) {\n\n\t\tString unprefixed = classURI.repla...
[ "0.6890472", "0.6063495", "0.57749206", "0.5641777", "0.53317285", "0.53069746", "0.51966226", "0.51722234", "0.5148146", "0.5135757", "0.5107331", "0.5106244", "0.507078", "0.50449723", "0.501691", "0.50123674", "0.5011049", "0.50082207", "0.499867", "0.49869812", "0.4984723...
0.80028206
0
Gets the running jar name.
public static String getRunningJarName( @SuppressWarnings("rawtypes") final Class clazz) { final String classURI = RuntimeLogbasenamePropertyDefiner .getClassURI(clazz); String jarName = null; if (RuntimeLogbasenamePropertyDefiner.isRunningAsJar(classURI)) { final String vals[] = classURI.split("/"); for (final String val : vals) { // skip all path fragments until the one with the '!' if (val.contains("!")) { jarName = val.substring(0, val.length() - 1); break; } } } return jarName; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public static String getAppJarName() {\n try {\n String r = (String)Class.forName(\"hr.restart.util.IntParam\")\n .getMethod(\"getTag\", new Class[] {String.class})\n .invoke(null, new Object[] {\"appjarname\"});\n System.out.println(\"appjarname = \"+r);\n return r.equals(\"\")?\"r...
[ "0.74683064", "0.72496676", "0.7186017", "0.684836", "0.68021804", "0.65853125", "0.6472315", "0.62255824", "0.6166968", "0.6148517", "0.6113385", "0.5989815", "0.5987129", "0.5967992", "0.5940422", "0.5909903", "0.5909062", "0.5904864", "0.58994776", "0.5844385", "0.5841605"...
0.7397583
1
TODO Autogenerated method stub
public static void main(String[] args) { int k = 3; int max = Integer.MIN_VALUE, min = Integer.MAX_VALUE; int arr[] = new int[k]; for(int i = 0; i < k; i++) { if(max < arr[i]) max = arr[i]; if(min > arr[i]) min = arr[i]; } int [][] arr1 = {{3,8},{10,11},{1,3},{2,4}}; System.out.println(selection(arr1)); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@Override\n public void perish() {\n \n }", "@Override\r\n\t\t\tpublic void annadir() {\n\r\n\t\t\t}", "@Override\n\tpublic void anular() {\n\n\t}", "@Override\n\tprotected void getExr...
[ "0.6671074", "0.6567672", "0.6523024", "0.6481211", "0.6477082", "0.64591026", "0.64127725", "0.63762105", "0.6276059", "0.6254286", "0.623686", "0.6223679", "0.6201336", "0.61950207", "0.61950207", "0.61922914", "0.6186996", "0.6173591", "0.61327106", "0.61285484", "0.608016...
0.0
-1
Se obtinen los datos del resultaado
@Override protected void onPostExecute (String Resultado) { super.onPostExecute(Resultado); try{ Log.e("Salida", Resultado); Toast.makeText(contexto, Resultado,Toast.LENGTH_SHORT).show(); //Se mandan esos datos a otra actividad lista en formato string //Intent i = new Intent(contexto, MapsActivity.class); }catch (Throwable t){ Log.e("Falla",t.toString()); } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void buscarDatos() throws Exception {\r\n\t\ttry {\r\n\t\t\tString codigo_empresa = empresa.getCodigo_empresa();\r\n\t\t\tString codigo_sucursal = sucursal.getCodigo_sucursal();\r\n\t\t\tString parameter = lbxParameter.getSelectedItem().getValue()\r\n\t\t\t\t\t.toString();\r\n\t\t\tString value = tbxValue.g...
[ "0.7363824", "0.7312921", "0.7308864", "0.7302788", "0.72993505", "0.72183675", "0.7156887", "0.712434", "0.7094716", "0.7032224", "0.69614154", "0.6857029", "0.684217", "0.67589986", "0.67414385", "0.6731125", "0.67287284", "0.67269003", "0.672158", "0.6719837", "0.6691553",...
0.0
-1
A component that can offer autocomplete suggestions.
public interface AutoCompleter { /** Sets the callback that will be notified when items are selected. */ void setAutoCompleterCallback(AutoCompleterCallback callback); /** * Sets the new input to the autocompleter. This can change what is * currently visible as suggestions. * * The returned Future returns true if the lookup for autocompletions * completed succesfully. True does not indicate autocompletions are * available. It merely indicates that the lookup completed. * * Because AutoCompleters are allowed to be asynchronous, one should * use Future.get or listen to the future in order to see when * the future has completed. */ ListeningFuture<Boolean> setInput(String input); /** * Returns true if any autocomplete suggestions are currently available, based the data * that was given to {@link #setInput(String)}. */ boolean isAutoCompleteAvailable(); /** Returns a component that renders the autocomplete items. */ JComponent getRenderComponent(); /** Returns the currently selected string. */ String getSelectedAutoCompleteString(); /** Increments the selection. */ void incrementSelection(); /** Decrements the selection. */ void decrementSelection(); /** A callback for users of autocompleter, so they know when items have been suggested. */ public interface AutoCompleterCallback { /** Notification that an item is suggested. */ void itemSuggested(String autoCompleteString, boolean keepPopupVisible, boolean triggerAction); } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "void itemSuggested(String autoCompleteString, boolean keepPopupVisible, boolean triggerAction);", "private void suggestCategory() {\n String[] allCat = {\"Pizza\", \"Pasta\", \"Dessert\", \"Salad\", \"SoftDrinks\"};\n// for (ItemDTO i : allDetails) {\n// names.add(i.getName());\n...
[ "0.68513894", "0.68159664", "0.67920655", "0.6615996", "0.65837395", "0.65425503", "0.65371984", "0.63108253", "0.62984395", "0.6262855", "0.6116744", "0.61003107", "0.6043317", "0.6035177", "0.6017945", "0.59709597", "0.5951962", "0.5928707", "0.5916204", "0.5834718", "0.581...
0.7649463
0
Sets the callback that will be notified when items are selected.
void setAutoCompleterCallback(AutoCompleterCallback callback);
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void selectionChanged(Action item);", "public void onSelectionChanged();", "protected void onSelect() {\n\n }", "public interface Callbacks {\n /**\n * Callback for when an item has been selected.\n * public modifier left for readability\n */\n public void onIt...
[ "0.6793293", "0.67336035", "0.66613436", "0.664279", "0.6640055", "0.6600074", "0.65631354", "0.6543259", "0.6510992", "0.6475319", "0.64445925", "0.6442496", "0.64288396", "0.64257705", "0.64257705", "0.6341692", "0.63408804", "0.63348985", "0.6329348", "0.6326205", "0.63178...
0.0
-1
Sets the new input to the autocompleter. This can change what is currently visible as suggestions. The returned Future returns true if the lookup for autocompletions completed succesfully. True does not indicate autocompletions are available. It merely indicates that the lookup completed. Because AutoCompleters are allowed to be asynchronous, one should use Future.get or listen to the future in order to see when the future has completed.
ListeningFuture<Boolean> setInput(String input);
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public interface AutoCompleter {\n \n /** Sets the callback that will be notified when items are selected. */\n void setAutoCompleterCallback(AutoCompleterCallback callback);\n\n /** \n * Sets the new input to the autocompleter. This can change what is\n * currently visible as suggestions.\n ...
[ "0.6596486", "0.5958362", "0.5553353", "0.53239083", "0.5222005", "0.52080405", "0.5144375", "0.5096017", "0.5043702", "0.49424222", "0.4857787", "0.4837872", "0.48090458", "0.4784772", "0.47447544", "0.47357836", "0.47121677", "0.46766979", "0.46558145", "0.46479216", "0.463...
0.5619741
2
Returns a component that renders the autocomplete items.
JComponent getRenderComponent();
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private JComponent buildUserFilter() {\n JPanel panel = new JPanel(new BorderLayout(5, 0));\n panel.add(Labels.create(IconFactory.get().create(\"fa:search\")), BorderLayout.WEST);\n panel.add(Inputs.text()\n .preferredSize(new Dimension(100, 25))\n .subscribeValue...
[ "0.56372905", "0.54812205", "0.53980464", "0.5375102", "0.53535694", "0.53323996", "0.52602863", "0.5218742", "0.5182384", "0.5064026", "0.50586367", "0.50565445", "0.50473326", "0.50382584", "0.5025736", "0.49835432", "0.49702162", "0.49569818", "0.49467456", "0.49456012", "...
0.0
-1
Returns the currently selected string.
String getSelectedAutoCompleteString();
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private String getSelectedString() {\n\t\treturn menuItem[selectedIndex];\r\n\t}", "public String selection() {\n return inputter.selection();\n }", "public String getSelected()\n\t{\n\t\treturn _current.ID;\n\t}", "public String getSelectedItem() {\n if (selectedPosition != -1) {\n ...
[ "0.8203324", "0.7617381", "0.7428461", "0.7249825", "0.71409667", "0.70645326", "0.69662374", "0.6945034", "0.68590796", "0.67901397", "0.6755936", "0.6619222", "0.66119415", "0.6596935", "0.6584521", "0.65680504", "0.6532777", "0.6473288", "0.64616084", "0.64449847", "0.6442...
0.7185971
4
A callback for users of autocompleter, so they know when items have been suggested.
public interface AutoCompleterCallback { /** Notification that an item is suggested. */ void itemSuggested(String autoCompleteString, boolean keepPopupVisible, boolean triggerAction); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "void itemSuggested(String autoCompleteString, boolean keepPopupVisible, boolean triggerAction);", "public interface AutocompletionListener<T> {\n\t/**\n\t * The user has activated a suggested item.\n\t * \n\t * This means the user has explicitly activate the item, i.e., pressed enter on or clicked the\n\t * item...
[ "0.76459694", "0.7628593", "0.7550592", "0.7381738", "0.69927555", "0.6543003", "0.65406007", "0.6084969", "0.6029647", "0.59988767", "0.5958167", "0.59490466", "0.593207", "0.59165794", "0.5891657", "0.583174", "0.58045053", "0.5792038", "0.57894814", "0.5770564", "0.5760366...
0.8521065
0
Notification that an item is suggested.
void itemSuggested(String autoCompleteString, boolean keepPopupVisible, boolean triggerAction);
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public interface AutoCompleterCallback {\n /** Notification that an item is suggested. */\n void itemSuggested(String autoCompleteString, boolean keepPopupVisible, boolean triggerAction);\n }", "public void playerHasUsedSuggestion() {\n suggestionMade = true;\n }", "public abstract v...
[ "0.60652786", "0.6058199", "0.5855372", "0.5839053", "0.56170154", "0.5608556", "0.546927", "0.5468327", "0.54335004", "0.54228926", "0.5415254", "0.5339075", "0.5307561", "0.5206949", "0.5173771", "0.5147909", "0.5128294", "0.51273054", "0.51238596", "0.5115983", "0.5114354"...
0.67621183
0
Noop the constructor. The real constructor references the ColorSpace named constants, which require native calls to instantiate. This will cause native graphics libraries to be loaded any time an Application object is created. Instead override the constructor to avoid referencing the ColorSpace named constants, making application creation around 0.75s faster.
@Implementation protected void __constructor__(IDisplayManager dm) { }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "protected GraphicsEnvironment() {}", "private ColorUtil() {\n // do nothing\n }", "public Color() {\n\n\t\tthis(0, 0, 0);\n\t}", "private ColorUtil() {\n }", "public native void constructor();", "public ColorRenderer() {\r\n\t}", "protected GraphicsContext() {\n\t}", "private GraphicsUti...
[ "0.6730661", "0.65180296", "0.6195914", "0.6104542", "0.6102659", "0.60664845", "0.6007281", "0.5945154", "0.58966357", "0.58874667", "0.58533084", "0.5819067", "0.57728946", "0.569221", "0.56518173", "0.5624478", "0.5624478", "0.56236714", "0.56186986", "0.5590669", "0.55860...
0.57396984
13
Returns the 'natural' dimensions of the default display.
@Implementation(minSdk = O_MR1) public Point getStableDisplaySize() throws RemoteException { DisplayInfo defaultDisplayInfo = mDm.getDisplayInfo(Display.DEFAULT_DISPLAY); return new Point(defaultDisplayInfo.getNaturalWidth(), defaultDisplayInfo.getNaturalHeight()); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public static Dimension getDisplaySize() {\n\t\tString spec = System.getProperty(\"display.index\");\n\t\tint sizeIndex = MathHelper.parseIntDefault(spec, DISPLAY_SIZE_INDEX);\n\n\t\ttry {\n\t\t\treturn displaySizes.get(sizeIndex);\n\t\t} catch (IndexOutOfBoundsException e) {\n\t\t\tlogger.error(\"Invalid client s...
[ "0.6838825", "0.6554442", "0.6393026", "0.6359373", "0.635089", "0.63167775", "0.63085175", "0.61628675", "0.6147315", "0.61157376", "0.6100772", "0.6078474", "0.60265356", "0.6007919", "0.59920853", "0.5983611", "0.5938217", "0.5937834", "0.5931145", "0.59239286", "0.5882256...
0.6695924
1
Added in Android T
@SuppressWarnings("unused") public int[] getDisplayIds(boolean ignoredIncludeDisabled) { return getDisplayIds(); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public static String _activity_create(boolean _firsttime) throws Exception{\nmostCurrent._activity.LoadLayout(\"lay_mosquito_Main\",mostCurrent.activityBA);\n //BA.debugLineNum = 61;BA.debugLine=\"utilidades.ResetUserFontScale(Activity)\";\nmostCurrent._vvvvvvvvvvvvvvvvvvvvv7._vvvvvvvvv0 /*String*/ (mostCurrent.a...
[ "0.6149019", "0.6066995", "0.58765715", "0.5663423", "0.55877936", "0.5573293", "0.5563431", "0.5563431", "0.5561833", "0.55463606", "0.55369306", "0.55357015", "0.55255896", "0.5524331", "0.5509458", "0.55088216", "0.5499371", "0.54814607", "0.547272", "0.54674804", "0.54674...
0.0
-1
/ JADX WARNING: inconsistent code. / Code decompiled incorrectly, please refer to instructions dump.
public void m2108c() { /* r3 = this; r0 = "Calling this from your main thread can lead to deadlock"; com.google.android.gms.common.internal.C1305x.m6628c(r0); monitor-enter(r3); r0 = r3.f1274g; Catch:{ all -> 0x002a } if (r0 == 0) goto L_0x000e; L_0x000a: r0 = r3.f1268a; Catch:{ all -> 0x002a } if (r0 != 0) goto L_0x0010; L_0x000e: monitor-exit(r3); Catch:{ all -> 0x002a } L_0x000f: return; L_0x0010: r0 = r3.f1270c; Catch:{ IllegalArgumentException -> 0x002d } if (r0 == 0) goto L_0x001f; L_0x0014: r0 = com.google.android.gms.common.stats.C1530b.m6956a(); Catch:{ IllegalArgumentException -> 0x002d } r1 = r3.f1274g; Catch:{ IllegalArgumentException -> 0x002d } r2 = r3.f1268a; Catch:{ IllegalArgumentException -> 0x002d } r0.m6963a(r1, r2); Catch:{ IllegalArgumentException -> 0x002d } L_0x001f: r0 = 0; r3.f1270c = r0; Catch:{ all -> 0x002a } r0 = 0; r3.f1269b = r0; Catch:{ all -> 0x002a } r0 = 0; r3.f1268a = r0; Catch:{ all -> 0x002a } monitor-exit(r3); Catch:{ all -> 0x002a } goto L_0x000f; L_0x002a: r0 = move-exception; monitor-exit(r3); Catch:{ all -> 0x002a } throw r0; L_0x002d: r0 = move-exception; r1 = "AdvertisingIdClient"; r2 = "AdvertisingIdClient unbindService failed."; android.util.Log.i(r1, r2, r0); Catch:{ all -> 0x002a } goto L_0x001f; */ throw new UnsupportedOperationException("Method not decompiled: com.google.android.gms.ads.c.a.c():void"); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "protected void method_2241() {\r\n // $FF: Couldn't be decompiled\r\n }", "private void method_7083() {\r\n // $FF: Couldn't be decompiled\r\n }", "protected void method_2145() {\r\n // $FF: Couldn't be decompiled\r\n }", "protected void method_2247() {\r\n // $FF: Couldn't be decom...
[ "0.76183915", "0.75742555", "0.75272226", "0.745221", "0.7452071", "0.7438746", "0.7383058", "0.7383058", "0.7368018", "0.7355023", "0.7343784", "0.73164046", "0.7308747", "0.7307039", "0.7274416", "0.72539216", "0.72229797", "0.71990824", "0.71787626", "0.713798", "0.7107486...
0.0
-1
!!!!! If you have a compilation error here then you are using org.mbds.wolf.tsm.gp.systems.messaging2_1_0 version of ksoap2 library. Please upgrade to the latest version. !!!!! You can find a correct version in Lib folder from generated zip file!!!!!
@Override public java.lang.Object getProperty(int propertyIndex) { if(propertyIndex==0) { return P; } if(propertyIndex==1) { return Q; } if(propertyIndex==2) { return G!=null?G:SoapPrimitive.NullSkip; } if(propertyIndex==3) { return Y; } if(propertyIndex==4) { return J!=null?J:SoapPrimitive.NullSkip; } if(propertyIndex==5) { return Seed; } if(propertyIndex==6) { return PgenCounter; } return null; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public sample.ws.HelloWorldWSStub.GetServerVersionResponse getServerVersion(\n\n sample.ws.HelloWorldWSStub.GetServerVersion getServerVersion0)\n \n\n throws java.rmi.RemoteException\n \n {\n or...
[ "0.52820385", "0.51657134", "0.51021224", "0.50483525", "0.49557146", "0.49127075", "0.48984873", "0.48826313", "0.4880026", "0.48760703", "0.48725903", "0.48516542", "0.48436302", "0.4831261", "0.48115796", "0.48011717", "0.47875082", "0.47670913", "0.47419375", "0.47383618", ...
0.0
-1
It exposes methods for obtaining information on field position.
public interface Field { int getColumn(); int getRow(); default Position position() { return new Position(getColumn(), getRow()); } default Integer positionAsInteger() { int numberOfColumns = 10; return getColumn() + getRow() * numberOfColumns; } void markAsHit(); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public int getFieldIndex() { return _fldIndex; }", "@Override\n public synchronized LttngEventField getField(int position) {\n LttngEventField returnedField = null;\n String label = null;\n //\t\ttry {\n \t\t\tlabel = fParentEvent.getType().getFieldName(position);\n \t\t\treturnedField = (Ltt...
[ "0.7232325", "0.691253", "0.690907", "0.690907", "0.6902782", "0.6889962", "0.67147595", "0.6711642", "0.67089206", "0.670371", "0.6692599", "0.6688794", "0.6676254", "0.66719526", "0.66550934", "0.66547143", "0.66384774", "0.6624113", "0.6611976", "0.6608243", "0.65927684", ...
0.6992266
1
Starts this service to perform action startActionUpdate with the given parameters. If the service is already performing a task this action will be queued.
public static void startActionUpdate(Context context) { Intent intent = new Intent(context, UpdateIntentService.class); intent.setAction(ACTION_UPDATE_EPO); context.startService(intent); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public final void start(){\n cpt = 0;\n inProgress = true;\n init();\n UpdateableManager.addToUpdate(this);\n }", "private void execStartAction(String action){\n\n if (action.length() == 0) { return; }\n\n if (startTask != null ){\n startTask.interrupt();\n ...
[ "0.61395806", "0.6050572", "0.5817014", "0.57962364", "0.5717127", "0.56747764", "0.56024873", "0.5509169", "0.542794", "0.5406242", "0.5397452", "0.5337895", "0.53350955", "0.53272194", "0.5317646", "0.529249", "0.5288226", "0.52828205", "0.5278908", "0.52710736", "0.5252403...
0.6301009
0
Constructs a tuple of 5 elements.
public Tuple5(T1 t1, T2 t2, T3 t3, T4 t4, T5 t5) { this._1 = t1; this._2 = t2; this._3 = t3; this._4 = t4; this._5 = t5; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private Tuples() {}", "public Tuple()\n {\n // Creat a new tuple\n data = new byte[max_size];\n tuple_offset = 0;\n tuple_length = max_size;\n }", "TupleExpr createTupleExpr();", "@SafeVarargs\n\tpublic static <R> Tuple<R> construct(R... data) {\n\t\tLinkedList<R> list = new Linked...
[ "0.66406256", "0.64840144", "0.64558387", "0.631738", "0.6082957", "0.5957611", "0.5933598", "0.5889076", "0.58633226", "0.5848132", "0.5829996", "0.5808108", "0.5751946", "0.572885", "0.56309676", "0.5600138", "0.556655", "0.5549028", "0.5531438", "0.5516038", "0.5504959", ...
0.71035796
0
Getter of the 1st element of this tuple.
public T1 _1() { return _1; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public T getFirst() {\n return this.getHelper(this.indexCorrespondingToTheFirstElement).data;\n }", "@Override\r\n\t\tpublic T getFirst() {\n\t\t\treturn pair.getFirst();\r\n\t\t}", "@Override\r\n\t\tpublic E getFirst() {\n\t\t\treturn pair.getFirst();\r\n\t\t}", "@Override\r\n\t\tpublic E getFirst...
[ "0.79921436", "0.73554784", "0.73237824", "0.73237824", "0.71933854", "0.71431875", "0.7095059", "0.70833015", "0.7056803", "0.70331186", "0.7032384", "0.70315605", "0.7021494", "0.7010538", "0.6999326", "0.6987402", "0.697894", "0.6960854", "0.69464314", "0.69325864", "0.692...
0.0
-1
Getter of the 2nd element of this tuple.
public T2 _2() { return _2; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\r\n\t\tpublic S getSecond() {\n\t\t\treturn pair.getSecond();\r\n\t\t}", "@Override\r\n\t\tpublic E getSecond() {\n\t\t\treturn pair.getSecond();\r\n\t\t}", "@Override\r\n\t\tpublic E getSecond() {\n\t\t\treturn pair.getSecond();\r\n\t\t}", "public Position getSecond() {\n return positions[1...
[ "0.75527155", "0.74752593", "0.74752593", "0.73525393", "0.7082946", "0.7064388", "0.68169755", "0.68161094", "0.680201", "0.6800577", "0.6756805", "0.6718043", "0.6609752", "0.65711135", "0.65393937", "0.6475731", "0.64667", "0.64276534", "0.63041514", "0.6297885", "0.629353...
0.64014333
18
Getter of the 3rd element of this tuple.
public T3 _3() { return _3; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\n\tpublic int getField3() {\n\t\treturn _second.getField3();\n\t}", "public T third() {\n return this.third;\n }", "public IPoint getThirdPoint()\n {\n\n Set<IPoint> vertices = this.getVertices();\n Object[] verticesArray = vertices.toArray();\n IPoint thirdPoint = (...
[ "0.71713257", "0.70960027", "0.7039273", "0.6661963", "0.6616321", "0.64694697", "0.64572054", "0.6402636", "0.6399706", "0.6346856", "0.6346856", "0.6341652", "0.6325061", "0.62658346", "0.62604797", "0.62597543", "0.6250094", "0.62072355", "0.6139101", "0.6126584", "0.61057...
0.66880304
3
Getter of the 4th element of this tuple.
public T4 _4() { return _4; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\n\tpublic int getField3() {\n\t\treturn _second.getField3();\n\t}", "@VTID(13)\r\n java.lang.String getTuple();", "@Override\r\n\t\tpublic V getValue() {\n\t\t\treturn pair.getSecond();\r\n\t\t}", "@Override\r\n\t\tpublic E getSecond() {\n\t\t\treturn pair.getSecond();\r\n\t\t}", "@Override\r\n\...
[ "0.67942613", "0.65782464", "0.6364723", "0.6315361", "0.6315361", "0.63142854", "0.62988573", "0.6244863", "0.6134655", "0.6124579", "0.61029273", "0.6086314", "0.6084568", "0.60538363", "0.60383475", "0.6007086", "0.6006837", "0.59923536", "0.59609663", "0.5912561", "0.5901...
0.5781122
33
Getter of the 5th element of this tuple.
public T5 _5() { return _5; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\n\tpublic java.lang.String getField5() {\n\t\treturn _second.getField5();\n\t}", "public java.lang.String getSecondary5() {\n return secondary5;\n }", "@Override\r\n\t\tpublic E getSecond() {\n\t\t\treturn pair.getSecond();\r\n\t\t}", "@Override\r\n\t\tpublic E getSecond() {\n\t\t\treturn...
[ "0.6676559", "0.61429894", "0.61082274", "0.61082274", "0.60606796", "0.59290904", "0.5867038", "0.58660436", "0.5855529", "0.584801", "0.58469915", "0.58313215", "0.5828115", "0.58268946", "0.5793366", "0.57458967", "0.572941", "0.57142556", "0.56897944", "0.5681631", "0.567...
0.61324114
2
load a fresh copy of the frame that bypasses the cache
@Override protected void processFrame(Frame toProcess) { FrameIO.SuspendCache(); Frame fresh = FrameIO.LoadFrame(toProcess.getName()); if (_nameMap.containsKey(fresh.getName().toLowerCase())) { fresh .setName(_nameMap.get(fresh.getName() .toLowerCase())); } else { fresh.setFrameset(_nameTo); fresh.setFrameNumber(++_lastNumber); _nameMap.put(toProcess.getName().toLowerCase(), fresh .getName().toLowerCase()); } boolean added = false; for (Item i : fresh.getItems()) if (i.getLink() != null && !i.isAnnotation() && i.isLinkValid()) { String link = i.getLink().toLowerCase(); //convert to absolute link with the old framesetName if (FrameIO.isPositiveInteger(link)){ link = _nameFrom + link; } //check if we already have this in our map if (_nameMap.containsKey(link)) link = _nameMap.get(link); //otherwise add it to our map else if (link.startsWith(_nameFrom)) { _nameMap.put(link, _nameTo + (++_lastNumber)); link = "" + _lastNumber; } i.setLink(link); } else if (!added && i.getLink() != null && i.isAnnotation() && i.isLinkValid()) { // annotation links need to be parsed at the end if (i.getAbsoluteLink().toLowerCase().startsWith(_nameFrom)) { _toReparse.add(fresh.getName()); added = true; } } _frameCount++; fresh.setPath(_framePath); FrameIO.ForceSaveFrame(fresh); FrameIO.ResumeCache(); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void preloadNewVersion() {\n Timer timer = new Timer() {\n public void run() {\n if (iframe != null) {\n RootPanel.getBodyElement().removeChild(iframe.getElement());\n }\n String currentURL = Window.Location.getHref();\n iframe = new Frame(currentURL);\n i...
[ "0.66779333", "0.5541094", "0.549035", "0.546545", "0.5458301", "0.5414611", "0.5414611", "0.5414611", "0.53669465", "0.53192234", "0.530251", "0.5298497", "0.5283852", "0.5274402", "0.5269457", "0.5263488", "0.5233281", "0.52274466", "0.5216156", "0.52129215", "0.52030367", ...
0.0
-1
reparse all frames that have annotation links that may need updating
@Override protected void finalise(Frame frame) { for (String name : _toReparse) { Frame toParse = FrameIO.LoadFrame(name); boolean changed = false; for (Item i : toParse.getItems()) { if (i.getLink() != null && i.isAnnotation() && i.isLinkValid()) { String link = i.getLink(); link = link.toLowerCase(); // link = link.replace(_nameFrom, _nameTo); if (_nameMap.containsKey(link)) { link = _nameMap.get(link); i.setLink(link); changed = true; } } } if (changed) { FrameIO.SaveFrame(toParse); } } message("Tree successfully copied to " + _nameTo); FrameUtils.DisplayFrame(_nameTo + _firstNumber); super.finalise(frame); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\n\tprotected void processFrame(Frame toProcess) {\n\t\tFrameIO.SuspendCache();\n\n\t\tFrame fresh = FrameIO.LoadFrame(toProcess.getName());\n\t\tif (_nameMap.containsKey(fresh.getName().toLowerCase())) {\n\t\t\tfresh\n\t\t\t\t\t.setName(_nameMap.get(fresh.getName()\n\t\t\t\t\t\t\t.toLowerCase()));\n\t\t}...
[ "0.5832507", "0.5410109", "0.52709025", "0.5266312", "0.5166385", "0.5143058", "0.5091505", "0.49628484", "0.49305388", "0.48986596", "0.48717308", "0.48551914", "0.48394334", "0.48251617", "0.4816725", "0.47799957", "0.47240493", "0.47104475", "0.46904802", "0.46760046", "0....
0.6475584
0
TODO Autogenerated method stub
public static void main(String[] args) { computeMinBal(71); //System.out.println(computeLogBase3(3)); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@Override\n public void perish() {\n \n }", "@Override\r\n\t\t\tpublic void annadir() {\n\r\n\t\t\t}", "@Override\n\tpublic void anular() {\n\n\t}", "@Override\n\tprotected void getExr...
[ "0.6671074", "0.6567672", "0.6523024", "0.6481211", "0.6477082", "0.64591026", "0.64127725", "0.63762105", "0.6276059", "0.6254286", "0.623686", "0.6223679", "0.6201336", "0.61950207", "0.61950207", "0.61922914", "0.6186996", "0.6173591", "0.61327106", "0.61285484", "0.608016...
0.0
-1
Construtor da classe MultaDAO.
public MultaDAO() { super(MultaDAO.class); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public empresaDAO(){\r\n \r\n }", "public AdminDAO()\n {\n con = DataBase.getConnection();//crear una conexión al crear un objeto AdminDAO\n }", "protected MedicoDao() {\n super(Medico.class);\n }", "public AdministratorDAO() {\n super();\n DAOClassType = Administra...
[ "0.7021748", "0.6922795", "0.69062275", "0.6843097", "0.6825063", "0.6813587", "0.6793357", "0.67642593", "0.67289686", "0.6698527", "0.6681466", "0.666559", "0.6616236", "0.65460724", "0.65214604", "0.648708", "0.6476366", "0.6473861", "0.64231247", "0.6412557", "0.6409713",...
0.8784332
0
The IP address of the app. SimSpace Weaver dynamically assigns this IP address when the app starts.
public void setAddress(String address) { this.address = address; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public static String getIP() {\n\t\treturn ip;\r\n\t}", "public String getIpAddress()\n\t{\n\t\t/* TODO: The IP address returned is in this format: /127.0.0.1:9845\n\t\t * Rewrite to remove the unnessecary data. */\n\t\treturn getSession().getIpAddress();\n\t}", "public String getIp() {\n\t\treturn InfraUtil.g...
[ "0.6938663", "0.68820536", "0.6863981", "0.6812544", "0.6746437", "0.6733009", "0.6717712", "0.671257", "0.66962403", "0.66633546", "0.66567844", "0.66567844", "0.66567844", "0.6647925", "0.6605989", "0.6603623", "0.660172", "0.6597388", "0.6595749", "0.6588241", "0.65733004"...
0.0
-1
The IP address of the app. SimSpace Weaver dynamically assigns this IP address when the app starts.
public String getAddress() { return this.address; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public static String getIP() {\n\t\treturn ip;\r\n\t}", "public String getIpAddress()\n\t{\n\t\t/* TODO: The IP address returned is in this format: /127.0.0.1:9845\n\t\t * Rewrite to remove the unnessecary data. */\n\t\treturn getSession().getIpAddress();\n\t}", "public String getIp() {\n\t\treturn InfraUtil.g...
[ "0.6938461", "0.68824553", "0.68647456", "0.6813319", "0.67466205", "0.67327607", "0.67188835", "0.6712818", "0.6696176", "0.66640353", "0.6656718", "0.6656718", "0.6656718", "0.66481155", "0.6606398", "0.6603938", "0.66014713", "0.65984255", "0.65949684", "0.6589238", "0.657...
0.0
-1
The IP address of the app. SimSpace Weaver dynamically assigns this IP address when the app starts.
public SimulationAppEndpointInfo withAddress(String address) { setAddress(address); return this; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public static String getIP() {\n\t\treturn ip;\r\n\t}", "public String getIpAddress()\n\t{\n\t\t/* TODO: The IP address returned is in this format: /127.0.0.1:9845\n\t\t * Rewrite to remove the unnessecary data. */\n\t\treturn getSession().getIpAddress();\n\t}", "public String getIp() {\n\t\treturn InfraUtil.g...
[ "0.69357467", "0.68807733", "0.68621224", "0.6811066", "0.67450655", "0.67299134", "0.67168814", "0.6710908", "0.66928923", "0.66618323", "0.6653371", "0.6653371", "0.6653371", "0.664675", "0.6604413", "0.660169", "0.65992254", "0.6596482", "0.65925413", "0.6587794", "0.65711...
0.0
-1
The inbound TCP/UDP port numbers of the app. The combination of an IP address and a port number form a network endpoint.
public java.util.List<SimulationAppPortMapping> getIngressPortMappings() { return ingressPortMappings; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public int getPort();", "public int getPort();", "public int getPort();", "public int getInPort() {\n return inPort_;\n }", "public int getInPort() {\n return inPort_;\n }", "List<InboundNatRulePortMapping> inboundNatRulePortMappings();", "public int getPortNumber (){\r\n\t\tret...
[ "0.6613931", "0.6613931", "0.6613931", "0.66078275", "0.66078275", "0.64510804", "0.6377038", "0.6362605", "0.63410634", "0.63410634", "0.63410634", "0.63410634", "0.63410634", "0.63410634", "0.63410634", "0.63410634", "0.63410634", "0.63410634", "0.63410634", "0.63410634", "...
0.0
-1
The inbound TCP/UDP port numbers of the app. The combination of an IP address and a port number form a network endpoint.
public void setIngressPortMappings(java.util.Collection<SimulationAppPortMapping> ingressPortMappings) { if (ingressPortMappings == null) { this.ingressPortMappings = null; return; } this.ingressPortMappings = new java.util.ArrayList<SimulationAppPortMapping>(ingressPortMappings); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public int getPort();", "public int getPort();", "public int getPort();", "public int getInPort() {\n return inPort_;\n }", "public int getInPort() {\n return inPort_;\n }", "List<InboundNatRulePortMapping> inboundNatRulePortMappings();", "public int getPortNumber (){\r\n\t\tret...
[ "0.6613931", "0.6613931", "0.6613931", "0.66078275", "0.66078275", "0.64510804", "0.6377038", "0.6362605", "0.63410634", "0.63410634", "0.63410634", "0.63410634", "0.63410634", "0.63410634", "0.63410634", "0.63410634", "0.63410634", "0.63410634", "0.63410634", "0.63410634", "...
0.0
-1
The inbound TCP/UDP port numbers of the app. The combination of an IP address and a port number form a network endpoint.
public SimulationAppEndpointInfo withIngressPortMappings(java.util.Collection<SimulationAppPortMapping> ingressPortMappings) { setIngressPortMappings(ingressPortMappings); return this; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public int getPort();", "public int getPort();", "public int getPort();", "public int getInPort() {\n return inPort_;\n }", "public int getInPort() {\n return inPort_;\n }", "List<InboundNatRulePortMapping> inboundNatRulePortMappings();", "public int getPortNumber (){\r\n\t\tret...
[ "0.6613871", "0.6613871", "0.6613871", "0.66070396", "0.66070396", "0.6450878", "0.6377398", "0.63615257", "0.6341029", "0.6341029", "0.6341029", "0.6341029", "0.6341029", "0.6341029", "0.6341029", "0.6341029", "0.6341029", "0.6341029", "0.6341029", "0.6341029", "0.6341029", ...
0.0
-1
Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be redacted from this string using a placeholder value.
@Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getAddress() != null) sb.append("Address: ").append(getAddress()).append(","); if (getIngressPortMappings() != null) sb.append("IngressPortMappings: ").append(getIngressPortMappings()); sb.append("}"); return sb.toString(); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public String toString() { return stringify(this, true); }", "@Override\n public String toString() {\n return new JSONSerializer().serialize(this);\n }", "public String toString() {\n\t\treturn this.toJSON().toString();\n\t}", "public String toString() {\n\t\treturn this.toJSON().toString();\n\t...
[ "0.8098875", "0.80741036", "0.80486035", "0.80486035", "0.8025263", "0.7974008", "0.7938739", "0.792883", "0.79103583", "0.78947294", "0.77835965", "0.77835333", "0.77681744", "0.77674246", "0.77674246", "0.77674246", "0.77566695", "0.7727777", "0.7722578", "0.767433", "0.767...
0.0
-1
Thread que vai enviar as mensagens
private void Thread() { Thread thread = new Thread ( new Runnable() { @Override public void run() { String mensagem = ""; try { InputStreamReader isr = new InputStreamReader(socket.getInputStream()); BufferedReader br = new BufferedReader(isr); while ((mensagem = br.readLine()) != null) { enviarMensagem(mensagem); } } catch ( Exception e ) { e.printStackTrace(); } } }); //para iniciar a thread thread.start(); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private void sendMessage()\n\t{\n\t\tfinal String message = messageTextArea.getText(); \n\t\tif(message.length() == 0)\n\t\t{\n\t\t\treturn;\n\t\t}\n\t\tmessageTextArea.setText(\"\");\n\t\ttry\n\t\t{\n\t\t\teventsBlockingQueue.put(new MessageEvent(message));\n\t\t}\n\t\tcatch (final InterruptedException e1)\n\t\t{...
[ "0.6525434", "0.6398419", "0.6395416", "0.6319523", "0.6302682", "0.62959725", "0.62777585", "0.6243466", "0.6232729", "0.6217912", "0.6204103", "0.61677676", "0.61676466", "0.6143165", "0.6142676", "0.61345303", "0.6124347", "0.6114075", "0.60912675", "0.60887045", "0.608861...
0.6556876
0
Metodo para enviar a mensagem a todos os Clientes conectados
private void enviarMensagem(String mensagem) { //Este for anda de acordo com o tamanho do array da mensagem for ( int a = 0; a < clientes.size(); a++ ) { //Enquanto o cliente estiver enviado ele pega a mensagem clientes.get(a).println(mensagem); clientes.get(a).flush(); } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\n\tpublic void send(Trino mensaje, List<String> listaContactos) throws RemoteException{\n\t\tbbdd.almacenTrinos(mensaje);\n\t\tfor(String contacto : listaContactos){\n\t\t\t synchronized (contacto) {\n\t\t\t\t if(bbdd.buscarUsuarioConectado(contacto)){\n\t\t\t\t\t\tif(memoria.isEmpty()){\n\t\t\t\t\t\t\tA...
[ "0.66303027", "0.6379508", "0.6319238", "0.6298312", "0.6285963", "0.6284416", "0.6233555", "0.62303686", "0.6224917", "0.61303085", "0.61195284", "0.609595", "0.60473657", "0.59715325", "0.5936857", "0.59249926", "0.5917664", "0.59106135", "0.5907775", "0.5886553", "0.587764...
0.73565215
0
create getter and setter method
public String getStudentName() { return studentName; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\n String get();", "public Value makeGetter() {\n Value r = new Value(this);\n r.getters = object_labels;\n r.object_labels = null;\n return canonicalize(r);\n }", "public abstract String get();", "public void get() {\n }", "public String get();", "@Override\n...
[ "0.6266299", "0.6265634", "0.62499475", "0.62099415", "0.6160331", "0.61368805", "0.61017346", "0.6076044", "0.6076044", "0.60513675", "0.59859943", "0.59145576", "0.59027636", "0.5876042", "0.58751285", "0.585976", "0.585976", "0.5839214", "0.58053565", "0.58053565", "0.5792...
0.0
-1
Gets week variables from any date (can be within week)
public Week(LocalDate date) { days = new ArrayList<>(); LocalDate monday = getStartOfWeek(date); days.add(monday); for (int i = 1; i < 7; i++) { days.add(monday.plusDays(i)); } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "int getWeek();", "com.czht.face.recognition.Czhtdev.Week getWeekday();", "public static String getWeek(Date date) {\n String Week = \"\";\n Calendar c = Calendar.getInstance();\n c.setTime(date);\n if (c.get(Calendar.DAY_OF_WEEK) == 1) {\n Week += \"星期日\";\n }\n ...
[ "0.72377837", "0.71066606", "0.67029715", "0.66793", "0.6580216", "0.6507137", "0.6441193", "0.64224994", "0.6329914", "0.6262942", "0.6222333", "0.62222916", "0.6197052", "0.61575204", "0.6141453", "0.6130232", "0.60961986", "0.6069799", "0.6058595", "0.60544455", "0.5979005...
0.58088297
31
DayOfWeek enum starts with monday == 1
public LocalDate getDay(DayOfWeek dayOfWeek) { return days.get(dayOfWeek.getValue() - 1); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public int getDayOfWeek();", "@Test\n public void DayOfWeek() {\n System.out.printf(\"%s%n\\n\", DayOfWeek.MONDAY.plus(3));\n\n DayOfWeek dow = DayOfWeek.MONDAY;\n Locale locale = Locale.getDefault();\n System.out.println(dow.getDisplayName(TextStyle.FULL, locale));\n System.out.println(dow.getDi...
[ "0.7666417", "0.7007827", "0.7004271", "0.698796", "0.6908", "0.68067497", "0.6721178", "0.6683729", "0.6681245", "0.6664838", "0.6659188", "0.6656154", "0.6649999", "0.6587615", "0.6582807", "0.65557295", "0.65420204", "0.652695", "0.65123844", "0.6508869", "0.65083027", "...
0.0
-1
Created by rohit on 9/5/17.
public interface SareesCategoryAPI { @GET("category/") Call<ArrayList<Item>> getSareesCategory(); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\n public void perish() {\n \n }", "@Override\n\tpublic void grabar() {\n\t\t\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@Override\n\tprotected void interr() {\n\t}", "@Override\n\tpublic void sacrifier() {\n\t\t\n\t}", "private stendhal() {\n\t}", "@Override\n pu...
[ "0.60103834", "0.59669656", "0.58918077", "0.58539575", "0.5828331", "0.57548875", "0.57452637", "0.574403", "0.574403", "0.57390803", "0.5729595", "0.571372", "0.571372", "0.571372", "0.571372", "0.571372", "0.5712333", "0.5695358", "0.5693585", "0.56829935", "0.5671498", ...
0.0
-1
TODO Autogenerated method stub
@Override public void Update() { }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@Override\n public void perish() {\n \n }", "@Override\r\n\t\t\tpublic void annadir() {\n\r\n\t\t\t}", "@Override\n\tpublic void anular() {\n\n\t}", "@Override\n\tprotected void getExr...
[ "0.6671074", "0.6567672", "0.6523024", "0.6481211", "0.6477082", "0.64591026", "0.64127725", "0.63762105", "0.6276059", "0.6254286", "0.623686", "0.6223679", "0.6201336", "0.61950207", "0.61950207", "0.61922914", "0.6186996", "0.6173591", "0.61327106", "0.61285484", "0.608016...
0.0
-1
TODO Autogenerated method stub
@Override public void Delete(long id) { }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@Override\n public void perish() {\n \n }", "@Override\r\n\t\t\tpublic void annadir() {\n\r\n\t\t\t}", "@Override\n\tpublic void anular() {\n\n\t}", "@Override\n\tprotected void getExr...
[ "0.6671074", "0.6567672", "0.6523024", "0.6481211", "0.6477082", "0.64591026", "0.64127725", "0.63762105", "0.6276059", "0.6254286", "0.623686", "0.6223679", "0.6201336", "0.61950207", "0.61950207", "0.61922914", "0.6186996", "0.6173591", "0.61327106", "0.61285484", "0.608016...
0.0
-1
TODO Autogenerated method stub
@Override public List<Object> findAll() { return null; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@Override\n public void perish() {\n \n }", "@Override\r\n\t\t\tpublic void annadir() {\n\r\n\t\t\t}", "@Override\n\tpublic void anular() {\n\n\t}", "@Override\n\tprotected void getExr...
[ "0.6671074", "0.6567672", "0.6523024", "0.6481211", "0.6477082", "0.64591026", "0.64127725", "0.63762105", "0.6276059", "0.6254286", "0.623686", "0.6223679", "0.6201336", "0.61950207", "0.61950207", "0.61922914", "0.6186996", "0.6173591", "0.61327106", "0.61285484", "0.608016...
0.0
-1
TODO Autogenerated method stub
@Override public Object findById(long id) { return null; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@Override\n public void perish() {\n \n }", "@Override\r\n\t\t\tpublic void annadir() {\n\r\n\t\t\t}", "@Override\n\tpublic void anular() {\n\n\t}", "@Override\n\tprotected void getExr...
[ "0.6671074", "0.6567672", "0.6523024", "0.6481211", "0.6477082", "0.64591026", "0.64127725", "0.63762105", "0.6276059", "0.6254286", "0.623686", "0.6223679", "0.6201336", "0.61950207", "0.61950207", "0.61922914", "0.6186996", "0.6173591", "0.61327106", "0.61285484", "0.608016...
0.0
-1
TODO Autogenerated method stub
@Override public List<Object> findList(Object o) { return null; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@Override\n public void perish() {\n \n }", "@Override\r\n\t\t\tpublic void annadir() {\n\r\n\t\t\t}", "@Override\n\tpublic void anular() {\n\n\t}", "@Override\n\tprotected void getExr...
[ "0.6671074", "0.6567672", "0.6523024", "0.6481211", "0.6477082", "0.64591026", "0.64127725", "0.63762105", "0.6276059", "0.6254286", "0.623686", "0.6223679", "0.6201336", "0.61950207", "0.61950207", "0.61922914", "0.6186996", "0.6173591", "0.61327106", "0.61285484", "0.608016...
0.0
-1
Create private constructor to don't create object of the same class from outside.
private InnerClassSingleton(){}
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private Instantiation(){}", "private ATCres() {\r\n // prevent to instantiate this class\r\n }", "public StubPrivateConstructorPair() {\r\n this(null, null);\r\n }", "Reproducible newInstance();", "private ObjectFactory() { }", "private CloneFactory() {\n }", "public T instantiat...
[ "0.7358568", "0.72643393", "0.70980895", "0.70971936", "0.7066925", "0.70316494", "0.70310825", "0.70278627", "0.6974918", "0.69367915", "0.6918801", "0.690391", "0.69012", "0.6881999", "0.6850494", "0.6847173", "0.6844754", "0.6833478", "0.68237597", "0.6801327", "0.67912364...
0.63582623
71
TODO Autogenerated method stub
public static void main(String[] args) { MessageDialog test = new MessageDialog(); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@Override\n public void perish() {\n \n }", "@Override\r\n\t\t\tpublic void annadir() {\n\r\n\t\t\t}", "@Override\n\tpublic void anular() {\n\n\t}", "@Override\n\tprotected void getExr...
[ "0.6671074", "0.6567672", "0.6523024", "0.6481211", "0.6477082", "0.64591026", "0.64127725", "0.63762105", "0.6276059", "0.6254286", "0.623686", "0.6223679", "0.6201336", "0.61950207", "0.61950207", "0.61922914", "0.6186996", "0.6173591", "0.61327106", "0.61285484", "0.608016...
0.0
-1
TODO Autogenerated method stub
@Override public void keyTyped(KeyEvent arg0) { }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@Override\n public void perish() {\n \n }", "@Override\r\n\t\t\tpublic void annadir() {\n\r\n\t\t\t}", "@Override\n\tpublic void anular() {\n\n\t}", "@Override\n\tprotected void getExr...
[ "0.6671074", "0.6567672", "0.6523024", "0.6481211", "0.6477082", "0.64591026", "0.64127725", "0.63762105", "0.6276059", "0.6254286", "0.623686", "0.6223679", "0.6201336", "0.61950207", "0.61950207", "0.61922914", "0.6186996", "0.6173591", "0.61327106", "0.61285484", "0.608016...
0.0
-1
TODO Autogenerated method stub
@Override public void keyReleased(KeyEvent arg0) { }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@Override\n public void perish() {\n \n }", "@Override\r\n\t\t\tpublic void annadir() {\n\r\n\t\t\t}", "@Override\n\tpublic void anular() {\n\n\t}", "@Override\n\tprotected void getExr...
[ "0.6671074", "0.6567672", "0.6523024", "0.6481211", "0.6477082", "0.64591026", "0.64127725", "0.63762105", "0.6276059", "0.6254286", "0.623686", "0.6223679", "0.6201336", "0.61950207", "0.61950207", "0.61922914", "0.6186996", "0.6173591", "0.61327106", "0.61285484", "0.608016...
0.0
-1
TODO Autogenerated method stub
@Override public void intervalAdded(ListDataEvent e) { }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@Override\n public void perish() {\n \n }", "@Override\r\n\t\t\tpublic void annadir() {\n\r\n\t\t\t}", "@Override\n\tpublic void anular() {\n\n\t}", "@Override\n\tprotected void getExr...
[ "0.6671074", "0.6567672", "0.6523024", "0.6481211", "0.6477082", "0.64591026", "0.64127725", "0.63762105", "0.6276059", "0.6254286", "0.623686", "0.6223679", "0.6201336", "0.61950207", "0.61950207", "0.61922914", "0.6186996", "0.6173591", "0.61327106", "0.61285484", "0.608016...
0.0
-1
TODO Autogenerated method stub
@Override public void intervalRemoved(ListDataEvent e) { }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@Override\n public void perish() {\n \n }", "@Override\r\n\t\t\tpublic void annadir() {\n\r\n\t\t\t}", "@Override\n\tpublic void anular() {\n\n\t}", "@Override\n\tprotected void getExr...
[ "0.6671074", "0.6567672", "0.6523024", "0.6481211", "0.6477082", "0.64591026", "0.64127725", "0.63762105", "0.6276059", "0.6254286", "0.623686", "0.6223679", "0.6201336", "0.61950207", "0.61950207", "0.61922914", "0.6186996", "0.6173591", "0.61327106", "0.61285484", "0.608016...
0.0
-1
TODO: currently just clears the box... eventually make it do other stuff
private void sendMessage(JTextField text){ String message = text.getText(); for(int i = 0; i < listeners.size(); i++) { boolean b = listeners.get(i).sendMessage(userName, message); if(b == false) System.out.println("Error, could not send"); } text.setText(""); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "void unsetBox();", "public void clearData() {\n\t\tdrawnRect.clear();\n\t\tboxList.setListData(drawnRect);\n\t\tcurrRect = null;\n\t\ttextField.setText(\"\");\n\t}", "private void toClear()\n {\n tfPaintId.setText(\"\");\n tfName.setText(\"\");\n tfPrice.setText(\"\");\n tfColor....
[ "0.77161765", "0.72348386", "0.6936843", "0.6871961", "0.68566763", "0.6822882", "0.6785137", "0.6768766", "0.6701015", "0.6663695", "0.66553617", "0.66184604", "0.6611382", "0.6602279", "0.6600048", "0.6589663", "0.6556685", "0.6535248", "0.6519674", "0.6507389", "0.6500638"...
0.0
-1
Construct the ChartTypeChooser and set the button images
public ChartTypeChooser(GUI host){ this.SetHost(host); this.SetPieChartImage("pie_chart.jpg"); this.SetXYSplineChartImage("XYSpline.jpg"); this.SetBarChartImage("bar_chart.jpg"); this.SetStackedAreaChartImage("stacked_area.jpg"); this.SetScatterPlotChartImage("scatter.jpg"); this.SetLineChartImage("line.jpg"); this.SetBubbleChartImage("BubbleChart.jpg"); this.Set3DBarChartImage("3d_bar_chart.jpg"); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public ImageDataSetVisualPanel3() {\n initComponents();\n fillComboBox();\n }", "@Override\n protected void addControls() {\n super.addControls(); //Adds parent controls\n //adds the button for our 2016 filter (VisionFilter2016.java)\n addImageProcessingButton(\"No Filter...
[ "0.59641767", "0.5908874", "0.5764913", "0.56946206", "0.5570126", "0.55659676", "0.5538105", "0.5496981", "0.5471288", "0.5460243", "0.544717", "0.5431689", "0.5427748", "0.54156274", "0.53942764", "0.53758866", "0.53488976", "0.5341389", "0.53413117", "0.53407997", "0.53326...
0.7799871
0
A method used to get the pie chart image name \return the pie chart image name
public String Get3DBarChartImage() { return m_3DBarChartImage; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public String GetPieChartImage() {\n\t\treturn m_PieChartImage;\n\t}", "public String GetScatterPlotChartImage() {\n\t\treturn m_ScatterPlotChartImage;\n\t}", "public ImageIcon getChart() {\n\t\t// Creating a new ImageIcon with a with of 1197 and height of 657\n\t\t return new ImageIcon(chart.createBufferedIma...
[ "0.7803443", "0.64926904", "0.6350907", "0.6312871", "0.6302622", "0.6291834", "0.6127743", "0.61068535", "0.59852624", "0.59387183", "0.5914421", "0.58720934", "0.58511186", "0.58079714", "0.5769574", "0.57572323", "0.57311213", "0.57237977", "0.5721346", "0.57151115", "0.56...
0.621254
6
A method used to get the bar chart image name \return the bar chart image name
public String GetBarChartImage() { return m_BarChartImage; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public String GetBubbleChartImage() {\n\t\treturn m_BubbleChartImage;\n\t}", "public String Get3DBarChartImage() {\n\t\treturn m_3DBarChartImage;\n\t}", "public void SetBarChartImage(String bar) {\n\t\tboolean test = true;\n\t\t\n\t\tif((bar.isEmpty()) && (test)) {\n\t\t\tSystem.err.println(\"*** Warning Chart...
[ "0.67713225", "0.6688921", "0.66043305", "0.64806616", "0.62825537", "0.6244027", "0.61843574", "0.615682", "0.6066621", "0.60438645", "0.60302955", "0.6015994", "0.59995854", "0.5970111", "0.597002", "0.5959318", "0.5945294", "0.5911554", "0.5911554", "0.59108454", "0.589037...
0.8209761
0
A method used to get the bubble chart image name \return the bubble chart image name
public String GetBubbleChartImage() { return m_BubbleChartImage; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public String GetPieChartImage() {\n\t\treturn m_PieChartImage;\n\t}", "public String GetBarChartImage() {\n\t\treturn m_BarChartImage;\n\t}", "public String GetScatterPlotChartImage() {\n\t\treturn m_ScatterPlotChartImage;\n\t}", "static String getMascotImageFilename() {\n Path filePath = Paths.get(b...
[ "0.67784345", "0.6693012", "0.6662734", "0.6606957", "0.6524397", "0.64537627", "0.63808095", "0.63279504", "0.6327873", "0.63077456", "0.629137", "0.6216343", "0.62104255", "0.61771065", "0.6173286", "0.6128945", "0.6109501", "0.6108543", "0.6105591", "0.61044604", "0.607829...
0.79781944
0
A method used to get the XYSpline chart image name \return the XYSpline chart image name
public String GetXYSplineChartImage() { return m_XYSplineChartImage; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void SetXYSplineChartImage(String XYSpline) {\n\t\tboolean test = true;\n\t\t\n\t\tif((XYSpline.isEmpty()) && (test)) {\n\t\t\tSystem.err.println(\"*** Warning ChartTypeChooser::\" +\n\t\t\t\"SetXYSplineChartImage():: image is set to an empty string.\");\n\t\t}\n\t\tif ((XYSpline.length() > MAX_SIZE) && (te...
[ "0.65357465", "0.6496458", "0.6352612", "0.6092369", "0.5904631", "0.5855558", "0.5814223", "0.5785683", "0.5785046", "0.5767199", "0.5732518", "0.57207894", "0.5716397", "0.56953704", "0.566765", "0.56593263", "0.5655017", "0.5654656", "0.565019", "0.56479174", "0.5640917", ...
0.81813234
0
A method used to get the host instance of the class GUI \return the chosen file name
public GUI GetHost() { return m_Host; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "Gui getGui();", "GuiView getGui();", "private String getFile() {\r\n\t\tJFileChooser fileChooser = new JFileChooser(FileSystemView.getFileSystemView().getHomeDirectory());\r\n\t\tfileChooser.setDialogTitle(\"Choose a file to open: \");\r\n\t\tfileChooser.setFileSelectionMode(JFileChooser.FILES_ONLY);\r\n\t\tin...
[ "0.6646176", "0.6220855", "0.6219318", "0.61540437", "0.602252", "0.5997948", "0.597613", "0.5879248", "0.5820436", "0.5771839", "0.57597136", "0.5736479", "0.5734541", "0.57321966", "0.5716477", "0.56806976", "0.5676619", "0.5674585", "0.56743395", "0.56489617", "0.5620434",...
0.6606224
1
Returns the incrementation value
public static int GetIncrement(){ return m_Incrementer; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public double getIncrement() {\n return increment;\n }", "public Integer getIncrement() {\n return increment;\n }", "public final long getAndIncrement() {\n\t\treturn value++;\n\t}", "public int getIncrement() {\n \tcheckWidget();\n \treturn increment;\n }", "public int valueAndIn...
[ "0.8171258", "0.811189", "0.7988534", "0.79095006", "0.7735198", "0.7558991", "0.75527006", "0.7511467", "0.7438646", "0.72557294", "0.7245451", "0.7222395", "0.7159391", "0.7153878", "0.713413", "0.7054272", "0.70475775", "0.70390666", "0.7021099", "0.69601774", "0.695051", ...
0.7825687
4
A method used to get the line chart image name \return the line chart image name
public String GetLineChartImage() { return m_LineChartImage; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public String GetXYSplineChartImage() {\n\t\treturn m_XYSplineChartImage;\n\t}", "public String GetScatterPlotChartImage() {\n\t\treturn m_ScatterPlotChartImage;\n\t}", "public String GetBubbleChartImage() {\n\t\treturn m_BubbleChartImage;\n\t}", "public String GetPieChartImage() {\n\t\treturn m_PieChartImag...
[ "0.7594929", "0.66523707", "0.6354407", "0.6291759", "0.6208033", "0.6168849", "0.60956806", "0.6045284", "0.5979708", "0.5965168", "0.5964787", "0.59185344", "0.58975726", "0.58845305", "0.5851328", "0.5846991", "0.5795982", "0.57441187", "0.5739742", "0.5720188", "0.5712476...
0.80578834
0
A method used to get the pie chart image name \return the pie chart image name
public String GetPieChartImage() { return m_PieChartImage; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public String GetScatterPlotChartImage() {\n\t\treturn m_ScatterPlotChartImage;\n\t}", "public ImageIcon getChart() {\n\t\t// Creating a new ImageIcon with a with of 1197 and height of 657\n\t\t return new ImageIcon(chart.createBufferedImage(1197,657));\n\t}", "public String GetBubbleChartImage() {\n\t\treturn...
[ "0.6491296", "0.6350632", "0.63113105", "0.6302526", "0.62888163", "0.62116563", "0.61243135", "0.61057574", "0.59854364", "0.5936856", "0.5911919", "0.58693826", "0.58477926", "0.5806365", "0.5767688", "0.575434", "0.5727942", "0.57204354", "0.57203996", "0.57141954", "0.568...
0.7803189
0
A method used to get the scatter plot chart image name \return the scatter plot chart image name
public String GetScatterPlotChartImage() { return m_ScatterPlotChartImage; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "String getPlotterName();", "public String GetXYSplineChartImage() {\n\t\treturn m_XYSplineChartImage;\n\t}", "public String GetPieChartImage() {\n\t\treturn m_PieChartImage;\n\t}", "Icon getPlotterIcon();", "public String GetBubbleChartImage() {\n\t\treturn m_BubbleChartImage;\n\t}", "public void SetScat...
[ "0.7048962", "0.6890258", "0.6612507", "0.6588998", "0.6532227", "0.64913124", "0.6153906", "0.6149339", "0.6135263", "0.61352193", "0.60373324", "0.5995835", "0.59950286", "0.59776086", "0.59410053", "0.59218585", "0.5900665", "0.5871464", "0.5865853", "0.5863304", "0.584177...
0.7997589
0
A method used to get the stacked area chart image name \return the stacked area chart image name
public String GetStackedAreaChartImage() { return m_StackedAreaChartImage; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public String getAreaName() {\n\t\tif (areaName == null) {\n\t\t\tProtectedRegion p = getPlot();\n\t\t\tPlotInfo info = plugin.getPlotInfo(worldName, p.getId());\n\t\t\tif (info != null) {\n\t\t\t\tareaName = info.areaName;\n\t\t\t}\n\t\t}\n\t\treturn areaName;\n\t}", "public void SetStackedAreaChartImage(String...
[ "0.6587259", "0.6584647", "0.62195903", "0.6144051", "0.5838114", "0.5815593", "0.5756614", "0.57562906", "0.5725353", "0.57180023", "0.56971127", "0.5589407", "0.55777174", "0.5554212", "0.5544124", "0.55056274", "0.5500488", "0.54577947", "0.54565376", "0.54134303", "0.5404...
0.7954716
0
A method that sets the 3D Bar Chart image name \param threeDBar
public void Set3DBarChartImage(String threeDBar) { boolean test = true; if((threeDBar.isEmpty()) && (test)) { System.err.println("*** Warning ChartTypeChooser::" + "Set3DBarChartImage():: image is set to an empty string."); } if ((threeDBar.length() > MAX_SIZE) && (test)) { System.err.println("*** Warning ChartTypeChooser::" + "Set3DBarChartImage():: image is a very long name."); } else if (test) { System.out.println("ChartTypeChooser:: " + "Set3DBarChartImage():: chosen image is set to: " + threeDBar); } m_3DBarChartImage = threeDBar; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void MakeBar3D() {\n\t\tBarButton3D = new JButton(\n\t\t\t\t new ImageIcon(getClass().getResource(\n\t\t\t\t\tGet3DBarChartImage())));\n\t\tBarButton3D.addActionListener(new ActionListener() {\n\t\t\tpublic void actionPerformed(ActionEvent evt) {\t\n\t\t\t\tGetHost().instructionText.setVisible(false);\n\t...
[ "0.725761", "0.65905726", "0.63283515", "0.5729517", "0.558667", "0.52253544", "0.51522833", "0.5139721", "0.51372457", "0.5055269", "0.4978159", "0.49716616", "0.49526677", "0.49075398", "0.48965514", "0.48111588", "0.48103365", "0.48052", "0.47886854", "0.47627494", "0.4746...
0.8389532
0
A method that sets the bar chart image name \param bar
public void SetBarChartImage(String bar) { boolean test = true; if((bar.isEmpty()) && (test)) { System.err.println("*** Warning ChartTypeChooser::" + "SetBarChartImage():: image is set to an empty string."); } if ((bar.length() > MAX_SIZE) && (test)) { System.err.println("*** Warning ChartTypeChooser::" + "SetBarChartImage():: image is a very long name."); } else if (test) { System.out.println("ChartTypeChooser:: " + "SetBarChartImage():: chosen image is set to: " + bar); } m_BarChartImage = bar; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void MakeBar() {\n\t\tBarButton = new JButton(\n\t\t\t\t new ImageIcon(getClass().getResource(GetBarChartImage())));\t\n\t\tBarButton.addActionListener(new ActionListener() {\n\t\t\tpublic void actionPerformed(ActionEvent evt) {\n\t\t\t\tGetHost().instructionText.setVisible(false);\n\t\t\t\tGetHost().Expor...
[ "0.6455308", "0.6423296", "0.60401654", "0.59407717", "0.5786951", "0.57551", "0.57519144", "0.562522", "0.5622674", "0.5585945", "0.5577862", "0.55478954", "0.55183756", "0.54805875", "0.5453658", "0.5450357", "0.54335135", "0.5381498", "0.5334233", "0.5327724", "0.532728", ...
0.84894204
0
A method that sets the bubble chart image name \param bubble
public void SetBubbleChartImage(String bubble) { boolean test = true; if((bubble.isEmpty()) && (test)) { System.err.println("*** Warning ChartTypeChooser::" + "SetBubbleChartImage():: image is set to an empty string."); } if ((bubble.length() > MAX_SIZE) && (test)) { System.err.println("*** Warning ChartTypeChooser::" + "SetBubbleChartImage():: image is a very long name."); } else if (test) { System.out.println("ChartTypeChooser:: " + "SetBubbleChartImage():: chosen image is set to: " + bubble); } m_BubbleChartImage = bubble; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public String GetBubbleChartImage() {\n\t\treturn m_BubbleChartImage;\n\t}", "public void MakeBubble() {\n\t\tBubbleButton = new JButton(\n\t\t\t\tnew ImageIcon(getClass().getResource(GetBubbleChartImage())));\n\t\tBubbleButton.addActionListener(new ActionListener() {\n\t\t\tpublic void actionPerformed(ActionEve...
[ "0.6364746", "0.58612007", "0.56566423", "0.5628561", "0.5609041", "0.553717", "0.5517321", "0.5425254", "0.5364124", "0.53388125", "0.52641255", "0.52347046", "0.5214826", "0.5193479", "0.51643324", "0.51119554", "0.50839704", "0.5031349", "0.5031225", "0.5018289", "0.499447...
0.8277743
0
A method that sets the XYSpline chart image name \param XYSpline
public void SetXYSplineChartImage(String XYSpline) { boolean test = true; if((XYSpline.isEmpty()) && (test)) { System.err.println("*** Warning ChartTypeChooser::" + "SetXYSplineChartImage():: image is set to an empty string."); } if ((XYSpline.length() > MAX_SIZE) && (test)) { System.err.println("*** Warning ChartTypeChooser::" + "SetXYSplineChartImage():: image is a very long name."); } else if (test) { System.out.println("ChartTypeChooser:: " + "SetXYSplineChartImage():: chosen image is set to: " + XYSpline); } m_XYSplineChartImage = XYSpline; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public String GetXYSplineChartImage() {\n\t\treturn m_XYSplineChartImage;\n\t}", "public void MakeXYSpline() {\n\t\tXYSplineButton = new JButton(\n\t\t\t\t new ImageIcon(getClass().getResource(\n\t\t\t\t GetXYSplineChartImage())));\n\t\tXYSplineButton.addActionListener(new ActionListener() {\n\t\t\tpublic void...
[ "0.65745693", "0.6539172", "0.55237895", "0.5203616", "0.50810057", "0.50048983", "0.4833247", "0.47916457", "0.47850636", "0.47112474", "0.47075686", "0.46979117", "0.46673656", "0.46256632", "0.46170825", "0.45996445", "0.45979214", "0.45947477", "0.4586541", "0.45752794", ...
0.86871284
0
A method that sets an instance of GUI class named host (tests in GUI) \param host
public void SetHost(GUI host) { m_Host = host; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "void setGui(Gui gui);", "public void setGui(HMI gui) {\n this.gui = gui;\n }", "public void setHost(HostAgent host){\n\tthis.host = host;\n }", "public GUI GetHost() {\n\t\treturn m_Host;\n\t}", "void setVisualApp(T visualApp);", "public void setGuiObject(Object guiObject);", "@Override\n\...
[ "0.66668403", "0.6508661", "0.65029347", "0.61490047", "0.59952664", "0.5977673", "0.59462804", "0.59422445", "0.59422445", "0.5878331", "0.58771455", "0.57825476", "0.57789564", "0.57770014", "0.5736165", "0.5731649", "0.56818", "0.5667406", "0.5654741", "0.5645891", "0.5626...
0.7986675
0
A method that setvan integer for incrementing the data to use
public static void SetIncrement(int increment){ m_Incrementer = increment; System.out.println("m_Incrementer set to: "+ m_Incrementer); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void increment() {\n this.data++;\n }", "public void setIncrement(Integer increment) {\n this.increment = increment;\n }", "public void increment() {\n increment(1);\n }", "private static void setCounter() {++counter;}", "public void IncrementCounter()\r\n {\r\n ...
[ "0.7817944", "0.7453045", "0.7439369", "0.74310315", "0.7258316", "0.71809715", "0.7174753", "0.71435094", "0.7120809", "0.7033466", "0.69786334", "0.693758", "0.6932253", "0.6932253", "0.6898896", "0.68944263", "0.68944263", "0.6882026", "0.68676186", "0.6856269", "0.6854715...
0.6877964
18
A method that sets the line chart image name \param line
public void SetLineChartImage(String line) { boolean test = true; if((line.isEmpty()) && (test)) { System.err.println("*** Warning ChartTypeChooser::" + "SetLineChartImage():: image is set to an empty string."); } if ((line.length() > MAX_SIZE) && (test)) { System.err.println("*** Warning ChartTypeChooser::" + "SetLineChartImage():: image is a very long name."); } else if (test) { System.out.println("ChartTypeChooser:: " + "SetLineChartImage():: chosen image is set to: " + line); } m_LineChartImage = line; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void MakeLine() {\n\t\tLineButton = new JButton(\n\t\t\t\tnew ImageIcon(getClass().getResource(GetLineChartImage())));\n\t\tLineButton.addActionListener(new ActionListener() {\n\t\t\tpublic void actionPerformed(ActionEvent evt) {\n\t\t\t\tGetHost().instructionText.setVisible(false);\n\t\t\t\tGetHost().Expor...
[ "0.62579197", "0.6250692", "0.6224678", "0.6178339", "0.6170284", "0.6139451", "0.61269695", "0.6099647", "0.60679024", "0.604777", "0.6034814", "0.6033306", "0.5997561", "0.584118", "0.5821488", "0.5817019", "0.581285", "0.56518704", "0.56487185", "0.5597844", "0.5591467", ...
0.8562082
0
A method that sets the pie chart image name \param pie
public void SetPieChartImage(String pie) { boolean test = true; if((pie.isEmpty()) && (test)) { System.err.println("*** Warning ChartTypeChooser::" + "SetPieChartImage():: image is set to an empty string."); } if ((pie.length() > MAX_SIZE) && (test)) { System.err.println("*** Warning ChartTypeChooser::" + "SetPieChartImage():: image is a very long name."); } else if (test) { System.out.println("ChartTypeChooser:: " + "SetPieChartImage():: chosen image is set to: " + pie); } m_PieChartImage = pie; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private void setPieChart(PieChart pieChart, PieDataSet dataSet) {\n pieChart.setUsePercentValues(true);\n\n //set offests for the pie chart layout\n pieChart.setExtraOffsets(5, 5, 5, 5);\n\n //set the speed at which the graph decelerates after drag\n pieChart.setDragDecelerationF...
[ "0.6321394", "0.6234933", "0.5910979", "0.58860165", "0.58330643", "0.5664164", "0.56475097", "0.54734164", "0.5358841", "0.53505546", "0.5349465", "0.5288234", "0.52700937", "0.52691865", "0.5254454", "0.52041596", "0.51973504", "0.5066407", "0.50361204", "0.5021779", "0.501...
0.84350777
0