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
TransformedDataSource Sometimes you want to calculate a value on a data source that doesn't have an appropriate type. You can wrap the data source with a TransformedDatSource and do back and forth conversions as necessary. The transform needs to use a couple procedures for translating between types.
void example14() { // original data: a bunch of ints IndexedDataSource<SignedInt32Member> list = nom.bdezonia.zorbage.storage.Storage.allocate(G.INT32.construct(), 100); // a procedure to transforms ints to doubles Procedure2<SignedInt32Member,Float64Member> intToDblProc = new Procedure2<Sig...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "DoubleDataSource apply(DoubleDataSource input, String param);", "private static ValueSource getValueSource(String field, Type type) {\n if (type == Type.BYTE) {\n return new ByteFieldSource(field);\n }\n if (type == Type.SHORT) {\n return new ShortFieldSource(field);\n }\n if (type == Ty...
[ "0.5852458", "0.52779526", "0.51329017", "0.51262206", "0.5117311", "0.5114573", "0.50593334", "0.5048154", "0.5009793", "0.499437", "0.4979994", "0.49280253", "0.490887", "0.4871801", "0.48491186", "0.48203564", "0.4819449", "0.48134375", "0.47985485", "0.4795591", "0.477750...
0.55125177
1
TrimmedDataSource Make a list that is a window on another list. Sometimes you might want some calculation of the next N numbers of a list (for example sum the next 100 numbers of a list). You can define a trimmed view of a list and pass the trimmed list to algorithms that do further calculations.
@SuppressWarnings("unused") void example15() { // make a list of 10,000 numbers IndexedDataSource<Float32Member> original = nom.bdezonia.zorbage.storage.Storage.allocate(G.FLT.construct(), 10000); // make a list that is a subset of the previous list (numbers from locations 1,000 - 2,999) IndexedDat...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@SuppressWarnings(\"unused\")\n\tvoid example17() {\n\t\t\n\t\t// make a list of 10,000 numbers\n\t\t\n\t\tIndexedDataSource<Float32Member> original =\n\t\t\t\tnom.bdezonia.zorbage.storage.Storage.allocate(G.FLT.construct(), 10000);\n\n\t\t// make a list that is a subset of the previous list (numbers from location...
[ "0.61843914", "0.51134884", "0.5041306", "0.50177145", "0.49958894", "0.4973042", "0.49693674", "0.4968622", "0.49548206", "0.49110103", "0.48884103", "0.47957245", "0.47720277", "0.47435382", "0.47322425", "0.4685629", "0.46764916", "0.46754953", "0.46593723", "0.46498787", ...
0.70310485
0
WriteNotifyingDataSource Make a list that notifies listeners every time it stores a value
void example16() { // allocate 10,000 float16's IndexedDataSource<Float16Member> origData = nom.bdezonia.zorbage.storage.Storage.allocate(G.HLF.construct(), 10000); // wrap a notifier around it WriteNotifyingDataSource<Float16Algebra, Float16Member> observedData = new WriteNotifyingDataSourc...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public List<PersistRequestBean<?>> listenerNotify() {\n return listenerNotify;\n }", "public void notifyState() {\n\t\tList<T> alldata = new ArrayList<T>(this.dataMap.values());\t\r\n\t\t// call them with the current data\r\n\t\t// for each observer call them\r\n\t\tfor( ModelEvents<T> observer : this.Obser...
[ "0.59480494", "0.5774183", "0.5762268", "0.55825603", "0.54431975", "0.53748906", "0.5370607", "0.53639835", "0.53610134", "0.5336075", "0.5315234", "0.52948976", "0.5281514", "0.52772427", "0.52691287", "0.52630246", "0.5252129", "0.52265507", "0.5224693", "0.5203706", "0.52...
0.0
-1
DeepCopy Many of the data sources shown above make what is called a shallow copy of the data source around which they are wrapped. A TrimmedDataSource does not make a copy of the list it wraps but rather passes data input and output calls to it. Sometimes you might want to make a full copy of the data underlying any an...
@SuppressWarnings("unused") void example17() { // make a list of 10,000 numbers IndexedDataSource<Float32Member> original = nom.bdezonia.zorbage.storage.Storage.allocate(G.FLT.construct(), 10000); // make a list that is a subset of the previous list (numbers from locations 1,000 - 2,999) IndexedD...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "DataSource clone();", "@SuppressWarnings(\"unused\")\n\tvoid example15() {\n\n\t\t// make a list of 10,000 numbers\n\t\t\n\t\tIndexedDataSource<Float32Member> original =\n\t\t\t\tnom.bdezonia.zorbage.storage.Storage.allocate(G.FLT.construct(), 10000);\n\n\t\t// make a list that is a subset of the previous list (...
[ "0.62623703", "0.5899936", "0.5874736", "0.5755885", "0.5701255", "0.5602303", "0.5589196", "0.551617", "0.5447543", "0.53621876", "0.53592336", "0.5293107", "0.5219561", "0.5203651", "0.5201828", "0.5196146", "0.5182342", "0.51632017", "0.51394445", "0.5130379", "0.5124973",...
0.6687111
0
This method will be called if the game save is initiated
void onGameSaved(File file);
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private void saveGame(){\n\t\t\n\t}", "@Override\n public void saveGame() {\n\n }", "public void saveGame() {\n\t\tmanager.saveGame();\n\t}", "public void save(){\r\n\t\ttry {\r\n\t\t\tgame.suspendLoop();\r\n\t\t\tGameStockage.getInstance().save(game);\r\n\t\t\tgame.resumeLoop();\r\n\t\t} catch (GameNo...
[ "0.8215079", "0.8104656", "0.8043186", "0.7708531", "0.7642311", "0.76330304", "0.760488", "0.74920946", "0.74377453", "0.7423733", "0.74026644", "0.7386086", "0.7372519", "0.7254897", "0.7234319", "0.70975846", "0.70202607", "0.69878864", "0.6987097", "0.69796824", "0.694978...
0.7099397
15
TODO jenia: was a pointer
public ME_Model() { _nheldout = 0; _early_stopping_n = 0; _ref_modelp = null; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\n public void func_104112_b() {\n \n }", "@Override\n\tpublic void grabar() {\n\t\t\n\t}", "public abstract void mo70713b();", "protected boolean func_70814_o() { return true; }", "public final void mo51373a() {\n }", "public void method_4270() {}", "public void mo38117a()...
[ "0.5797176", "0.55860627", "0.5584094", "0.5535476", "0.5533396", "0.552574", "0.55119574", "0.5470522", "0.54522175", "0.54361904", "0.5427765", "0.5373425", "0.5360333", "0.5360142", "0.53562456", "0.5353352", "0.5345733", "0.5340423", "0.5331016", "0.53127885", "0.5311131"...
0.0
-1
public void get_features(list, Double> > & fl);
public void set_heldout(final int h, final int n) { _nheldout = h; _early_stopping_n = n; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "List<Feature> getFeatures();", "List<IFeature> getFeatureList();", "java.util.List<iet.distributed.telemetry.Feature> \n getFeatureList();", "java.util.List<java.lang.Float> getInList();", "java.util.List<org.landxml.schema.landXML11.FeatureDocument.Feature> getFeatureList();", "java.util.List<org.l...
[ "0.6819819", "0.6808422", "0.6758721", "0.6672154", "0.6516264", "0.6516264", "0.6504454", "0.6302709", "0.62943465", "0.6269238", "0.62641275", "0.62443864", "0.6164228", "0.6102517", "0.5989585", "0.58834493", "0.58834493", "0.5854324", "0.5831782", "0.5827027", "0.5795619"...
0.0
-1
jenia: n = 0 default in set_heldout
public void set_heldout(final int h) { set_heldout(h, 0); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void set_heldout(final int h, final int n) {\n _nheldout = h;\n _early_stopping_n = n;\n }", "protected void pktsOut(int n) {}", "public void setNumErode(int n) {\r\n itersErode = n;\r\n }", "@Override\n\tpublic int sount() {\n\t\treturn 0;\n\t}", "public abstract int finalN();",...
[ "0.7023492", "0.6240253", "0.59860396", "0.5926743", "0.5829261", "0.58106387", "0.57038975", "0.5687484", "0.5643669", "0.5633632", "0.5612083", "0.55939823", "0.55935746", "0.5593554", "0.5551447", "0.5540152", "0.5507381", "0.55067134", "0.55060816", "0.5502869", "0.549478...
0.65327764
1
reference probability distribution jenia, converted to Comparator
final boolean operator_less(final Sample x) { for (int i = 0; i < positive_features.size(); i++) { if (i >= x.positive_features.size()) return false; int v0 = positive_features.get(i); int v1 = x.positive_features.get(i); if (v0 < v1) return true; if (v0 > v1) return ...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public Comparator<Integer> comparator() {\n return new Comparator<Integer>() {\n @Override\n public int compare(Integer o1, Integer o2) {\n Http2PriorityNode n1 = nodesByID.get(o1);\n Http2PriorityNode n2 = nodesByID.get(o2);\n if(n1 == null...
[ "0.6811209", "0.62138355", "0.61119336", "0.5770945", "0.5763723", "0.5637151", "0.5632833", "0.5626401", "0.56248254", "0.56248254", "0.5622052", "0.5607154", "0.5512504", "0.54979914", "0.5478693", "0.547383", "0.5455216", "0.5455139", "0.54531664", "0.544864", "0.544583", ...
0.0
-1
TODO watch out, this doesn't appear in operator_less
@Override public int compare(Sample s1, Sample s2) { if (s1.positive_features.size() < s2.positive_features.size()) return -1; else if (s1.positive_features.size() > s2.positive_features.size()) return +1; else { for (int i = 0; i < s1.positive_features...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private boolean less(Comparable a, Comparable b) {\n return a.compareTo(b) < 0;\n }", "private static boolean lt(Comparable lhs, Comparable rhs) \n {\n return lhs.compareTo(rhs) < 0;\n }", "@Test\n\tpublic void lessThanTest() {\n\t\tassertTrue(x.less(y));\n\t\tassertFalse(y.less(x));\n\t...
[ "0.7063472", "0.702036", "0.6923319", "0.68805414", "0.68475336", "0.67443454", "0.6729771", "0.67040974", "0.6693631", "0.6650627", "0.6650627", "0.6650627", "0.6626219", "0.65889764", "0.6575969", "0.6511729", "0.64547867", "0.63979536", "0.63849545", "0.638181", "0.6372783...
0.0
-1
the parameter is discarded and set to 1 at the beginning
public int perform_GIS(int C) { // cerr << "C = " << C << endl; C = 1; // cerr << "performing AGIS" << endl; ArrayList<Double> pre_v = newArrayList(_vl.size(), 0.0); // jenia: same size as _vl's because later it can set _vl double pre_logl = -999999; for (int iter = 0; iter < 200; iter++) ...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void setValue(int param1Int) {\n/* 294 */ this.s.setValue(-param1Int);\n/* */ }", "private static void setCounter() {++counter;}", "@Override\n public int retroceder() {\n return 0;\n }", "@Override \n\t\tprotected int getNumParam() {\n\t\t\treturn 1;\n\t\t}", "public void...
[ "0.64104825", "0.6315749", "0.62300605", "0.6203835", "0.6199114", "0.6194261", "0.6161371", "0.6160136", "0.60886186", "0.60626173", "0.60002035", "0.59685016", "0.5914385", "0.589373", "0.58845204", "0.5875221", "0.58455175", "0.5842475", "0.58384734", "0.58239526", "0.5823...
0.0
-1
cerr << "performing LMVM" << endl;
public int perform_LMVM() { if (_inequality_width > 0) { int nvars = _fb.Size() * 2; double[] x = new double[nvars]; // INITIAL POINT for (int i = 0; i < nvars / 2; i++) { x[i] = _va.get(i); x[i + _fb.Size()] = _vb.get(i); } // int info = BLMVMSolve(x...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private void psvm() {\n\t\tSystem.out.println(\"test\");\r\n\t}", "public void helloVM()\n {\n \ttry {\n\n\t\t\t\n\t\t\tVirtualMachineConfigInfo vminfo = vm.getConfig();\n\t\t\tVirtualMachineCapability vmc = vm.getCapability();\n\t\t\tVirtualMachineRuntimeInfo vmri = vm.getRuntime();\n\t\t\tVirtualMachineS...
[ "0.71038115", "0.5967423", "0.5722872", "0.57188755", "0.55415463", "0.5526368", "0.55178076", "0.54995936", "0.5480185", "0.54713714", "0.5440552", "0.54299754", "0.54168236", "0.5399685", "0.53862476", "0.5355866", "0.5347202", "0.5345128", "0.53433114", "0.53328496", "0.53...
0.6349821
1
obsolete. just for downward compatibility
public int train(final ArrayList<ME_Sample> vms, final int cutoff, final double sigma, final double widthfactor) { // convert ME_Sample to Sample // ArrayList<Sample> vs; _vs.clear(); for (ME_Sample i : vms) { add_training_sample(i); } return train(cutoff, sigma, widthfactor); ...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private stendhal() {\n\t}", "protected boolean func_70041_e_() { return false; }", "protected boolean func_70814_o() { return true; }", "@Override\n\tpublic void sacrifier() {\n\t\t\n\t}", "public final void mo51373a() {\n }", "@Override\n public void func_104112_b() {\n \n }", "pub...
[ "0.6359502", "0.6302779", "0.6295758", "0.6142734", "0.61233854", "0.612282", "0.60925245", "0.60758257", "0.60369134", "0.60283774", "0.6024933", "0.5997845", "0.5971866", "0.59647965", "0.5914302", "0.5911314", "0.58930457", "0.5880401", "0.58774805", "0.58767027", "0.58643...
0.0
-1
auths not ready at this time The purpose of Dao method is to perform fetch operation of IPATestStage noun from database based on given noun id
public IPATestStage ipateststage_search_for_update(long id, IPUser user) throws Exception { log.setLevel(Level.INFO); log.info("ipateststage_search_for_update Dao started operation!"); try{ Query result = entityManager. createNativeQuery(search_for_update_IPATestStage,IPATestStage.class) .setP...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public ArrayList<TestNoun> get_all_testnoun() throws Exception {\n\t\t log.setLevel(Level.INFO);\n\t log.info(\"get_all_testnoun Dao started operation!\");\n\n\t\ttry{\n\n\t\t\tQuery result = entityManager.\n\t\t\tcreateNativeQuery(get_all_TestNoun,TestNoun.class)\n\n;\n\n\t\t\tArrayList<TestNoun> TestNoun_...
[ "0.5795813", "0.57545054", "0.575171", "0.5700125", "0.55816436", "0.55574197", "0.5504387", "0.54649216", "0.5434663", "0.5426015", "0.54259264", "0.5423358", "0.5374122", "0.5341946", "0.53376454", "0.5335463", "0.53214884", "0.5308639", "0.5301778", "0.5290744", "0.5282068...
0.49973497
66
auths not ready at this time The purpose of Dao method is to get list of IPATestStage noun from database
public ArrayList<IPATestStage> get_all_ipateststage() throws Exception { log.setLevel(Level.INFO); log.info("get_all_ipateststage Dao started operation!"); try{ Query result = entityManager. createNativeQuery(get_all_IPATestStage,IPATestStage.class) ; ArrayList<IPATestStage> IPATestStage_list...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public ArrayList<TestNoun> get_all_testnoun() throws Exception {\n\t\t log.setLevel(Level.INFO);\n\t log.info(\"get_all_testnoun Dao started operation!\");\n\n\t\ttry{\n\n\t\t\tQuery result = entityManager.\n\t\t\tcreateNativeQuery(get_all_TestNoun,TestNoun.class)\n\n;\n\n\t\t\tArrayList<TestNoun> TestNoun_...
[ "0.66631794", "0.61398154", "0.60438216", "0.5644529", "0.5552517", "0.55466866", "0.5440571", "0.5398454", "0.5396645", "0.5378684", "0.53518856", "0.5305352", "0.52078885", "0.519873", "0.5177522", "0.5171791", "0.5153366", "0.5133475", "0.5109291", "0.5088844", "0.5082477"...
0.65176284
1
auths not ready at this time The purpose of Dao method is to search a value in IPATestStage table from database based on given inputs
public ArrayList<IPATestStage> search_ipateststage(String name) throws Exception { log.setLevel(Level.INFO); log.info("search_ipateststage Dao started operation!"); try{ Query result = entityManager. createNativeQuery(search_IPATestStage,IPATestStage.class) .setParameter("name", name.concat("...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public IPATestStage ipateststage_search_for_update(long id, IPUser user) throws Exception {\n\t\t log.setLevel(Level.INFO);\n\t log.info(\"ipateststage_search_for_update Dao started operation!\");\n\n\t\ttry{\n\n\t\t\tQuery result = entityManager.\n\t\t\tcreateNativeQuery(search_for_update_IPATestStage,IPAT...
[ "0.60779333", "0.58059543", "0.5758348", "0.5624857", "0.5400799", "0.5400237", "0.5351253", "0.53212667", "0.52777624", "0.5270068", "0.5242715", "0.5234195", "0.5233704", "0.5201614", "0.5178712", "0.5178329", "0.51683414", "0.516445", "0.5136346", "0.511166", "0.5104401", ...
0.6423791
0
auths not ready at this time The purpose of Dao method is to perform save operation of IPATestStage noun into database
@Transactional public IPATestStage create_ipateststage(IPATestStage IPATestStage, IPUser user) throws Exception { log.setLevel(Level.INFO); log.info("create_ipateststage Dao started operation!"); try{ Query query = entityManager .createNativeQuery(create_IPATestStage) .setParameter("name", I...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Transactional\n\tpublic TestNoun create_testnoun(TestNoun TestNoun, LuUser user) throws Exception {\n\n\t \t log.setLevel(Level.INFO);\n\t log.info(\"create_testnoun Dao started operation!\");//dhina updateverb\n\n\t\ttry{\n\t\t\tQuery query = entityManager\n\t\t\t\t\t.createNativeQuery(create_TestNoun)\n\t...
[ "0.6140679", "0.60414946", "0.601763", "0.59233874", "0.5842039", "0.58146536", "0.5745208", "0.57307225", "0.57153875", "0.5713219", "0.5710568", "0.57098603", "0.56729317", "0.5667085", "0.5661583", "0.5638747", "0.56341314", "0.5623607", "0.5608302", "0.55722266", "0.55699...
0.53659594
65
auths not ready at this time The purpose of Dao method is to perform update operation of IPATestStage noun into database
@Transactional public IPATestStage update_ipateststage(IPATestStage IPATestStage, IPUser user) throws Exception { log.setLevel(Level.INFO); log.info("update_ipateststage Dao started operation!"); try{ Query query = entityManager .createNativeQuery(update_IPATestStage) .setParameter("id", IPA...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private void updateDB() {\n }", "@Transactional\n\tpublic TestNoun update_testnoun(TestNoun TestNoun, LuUser user) throws Exception {\n\n\t \t log.setLevel(Level.INFO);\n\t log.info(\"update_testnoun Dao started operation!\");//dhina updateverb\n\n\t\ttry{\n\t\t\tQuery query = entityManager\n\t\t\t\t\t....
[ "0.669791", "0.63268787", "0.61889744", "0.61300147", "0.60818404", "0.607838", "0.60654205", "0.60590804", "0.60332", "0.6031545", "0.60189337", "0.60052466", "0.5998296", "0.5976927", "0.5968224", "0.596713", "0.59554446", "0.59347206", "0.5900041", "0.58869123", "0.5882110...
0.0
-1
auths not ready at this time The purpose of Dao method is to perform delete operation of IPATestStage noun from database based on given noun id
@Transactional public String delete_ipateststage(long id, IPUser user) throws Exception { log.setLevel(Level.INFO); log.info("delete_ipateststage Dao started operation!"); try{ Query query = entityManager .createNativeQuery(delete_IPATestStage) .setParameter("id", id); query.executeUpda...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Transactional\n\tpublic String delete_testnoun(long id, LuUser user) throws Exception {\n\n\t \t log.setLevel(Level.INFO);\n\t log.info(\"delete_testnoun Dao started operation!\");//dhina updateverb\n\n\t\ttry{\n\t\t\tQuery query = entityManager\n\t\t\t\t\t.createNativeQuery(delete_TestNoun)\n\t\t\t.setPar...
[ "0.6920704", "0.6780835", "0.67604625", "0.6670626", "0.65905064", "0.65822107", "0.6518991", "0.6517877", "0.65175813", "0.6509112", "0.6497942", "0.6495199", "0.6478352", "0.64778626", "0.64650023", "0.64510113", "0.64486206", "0.6445678", "0.6428311", "0.64270395", "0.6423...
0.0
-1
Creates the currency unit for the given currency code. See the for more information, including a table of currency codes. The currency code is added to the standard (UCUM) symbol map.
public Currency(String code) { _code = code; UnitFormatImpl.getInstance().getSymbolMap().label(this, code); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public Currency(String code) {\n _toBaseUnit = new Converter(code, false);\n UnitFormat.getInstance().label(this, code);\n }", "Uom getCurrencyUom();", "public void buy(String code, Integer units) throws InsufficientUnitsException, InvalidCodeException {\n\t\tAtomicInteger count = new AtomicIn...
[ "0.6478456", "0.5717727", "0.5683488", "0.5413608", "0.5358906", "0.52889323", "0.5185299", "0.5164495", "0.5127171", "0.5083051", "0.50124305", "0.49411076", "0.49340224", "0.49236232", "0.48916444", "0.4890748", "0.48904678", "0.48754779", "0.48597756", "0.48147592", "0.481...
0.63259053
1
Returns the currency for the country of the given locale.
public static Currency getInstance(Locale locale) { String code = java.util.Currency.getInstance(locale).getCurrencyCode(); return new Currency(code); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "Currency getCurrency();", "com.google.ads.googleads.v6.resources.CurrencyConstant getCurrencyConstant();", "public Pokemon.Currency getCurrency() {\n if (currencyBuilder_ == null) {\n return currency_;\n } else {\n return currencyBuilder_.getMessage();\n }\n }", "p...
[ "0.60687137", "0.58482987", "0.5796933", "0.5742888", "0.5742888", "0.5742888", "0.5742888", "0.57042474", "0.5669697", "0.5631312", "0.55858696", "0.5562916", "0.55618846", "0.5539181", "0.5522759", "0.55176276", "0.5495793", "0.54729366", "0.544468", "0.5425167", "0.5416348...
0.6930758
0
Returns the currency code for this currency.
public String getCode() { return _code; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public String getCurrencyCode() {\n\t\treturn currencyCode;\n\t}", "public String getCurrencyCode()\r\n {\r\n return (m_currencyCode);\r\n }", "com.google.protobuf.StringValue getCurrencyCode();", "public String getCurrencyCode() {\n return currencyCode;\n }", "public String getCurrencyC...
[ "0.7569751", "0.75657195", "0.7564407", "0.74672455", "0.7384697", "0.6917925", "0.6872157", "0.6866739", "0.6846752", "0.6846752", "0.6846752", "0.6778326", "0.67521125", "0.67002106", "0.6674115", "0.66420454", "0.66248363", "0.6571028", "0.6546925", "0.6526476", "0.651697"...
0.0
-1
set the attribute names in the 1st column
public void setPropNames(ArrayList<String> props) { this.prop_names = props; fireTableDataChanged(); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void changeAttrName() {\r\n }", "public void setColumnName (String ColumnName);", "protected void setAttributeNames(String[] newColumnNames) {\n\n\t\tadjustAttributeColumnsNumbers(newColumnNames.length);\n\t\tassert attributeColumns.size() == newColumnNames.length;\n\n\t\tif (attributeNamesDefinedBy...
[ "0.6606308", "0.6402141", "0.63941175", "0.63040805", "0.6177223", "0.6170239", "0.6125693", "0.60973674", "0.60854423", "0.6008991", "0.6000492", "0.59830856", "0.593816", "0.593626", "0.59276533", "0.5917722", "0.58757246", "0.58550143", "0.5835047", "0.58228385", "0.580846...
0.0
-1
get the attribute name list in the 1st column
public ArrayList<String> getPropNames() { return this.prop_names; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public List getAttributeNames() {\n log.debug(\"getAttributeNames()\");\n ResultSet resultSet = attrNST.selectRows(\"name\");\n return resultSet.toStringList(1);\n }", "List<String> get_attribute_name(String table) {\n //table does not exist\n if (!get_table_names().contains...
[ "0.7185972", "0.7147023", "0.7037781", "0.6886781", "0.68217474", "0.6792866", "0.6701698", "0.6630431", "0.6545637", "0.6456863", "0.64546084", "0.64421695", "0.6415137", "0.6402202", "0.6398895", "0.6396641", "0.63815224", "0.636557", "0.6359269", "0.63479877", "0.6338941",...
0.0
-1
get the value of the table, names are stored in 1st column values are stored in 2nd column
public Object getValueAt(int row, int col) { //if row is greater than the total attributes length return null if (row > prop_names.size() - 1) return null; //if column is 0 then return the name of the attribute //as names are stored at nth row column 0 if (col ==...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "protected Object getTableValue()\n\t\t{\n\t\t\treturn Value ;\n\t\t}", "String getValue(String column, int row);", "public Table<Integer, Integer, String> getData();", "public void get_TableValues(){\r\n\tFFM=99;\r\n\tADFM=99;\r\n\tDF=0;\r\n\tFLOAD=0;\r\n\t\r\n}", "Object getDataValue(String column, int ro...
[ "0.7125729", "0.69375664", "0.6634007", "0.64568114", "0.6438691", "0.6352218", "0.6336585", "0.6335755", "0.6174293", "0.6162174", "0.6152261", "0.6119018", "0.6112524", "0.6093699", "0.6083084", "0.60381955", "0.60381955", "0.60381955", "0.60381955", "0.60381955", "0.603819...
0.0
-1
change the value at the given row and column
public void setValueAt(Object value, int row, int col) { if (col != 1) return; prop_map.put(row,value); fireTableCellUpdated(row, col); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void set(int row, int col, double value){\n \tarray[row-1][col-1] = value;\n }", "public void setValueAt(Object value, int row, int col)\r\n throws IllegalStateException {\r\n\r\n if(columnsAreNum != null && columnsAreNum.length>0){\r\n\t for(int i =0; i< columnsAreNum.length; i++){...
[ "0.75165504", "0.7485203", "0.73901504", "0.7365078", "0.7318909", "0.72994983", "0.7285391", "0.72374296", "0.7224305", "0.72055596", "0.72041637", "0.71575785", "0.71383566", "0.71347356", "0.7117917", "0.7112204", "0.7071588", "0.7070225", "0.7056121", "0.70558506", "0.704...
0.6644618
50
the 1st name column cannot be edited
public boolean isCellEditable(int row, int col) { return col != 0; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private static String getEditingOnColumn (String windowName2) {\n\t\tString editColumn = \"\";\r\n\t\tVector<WindowTableModelMapping> maps = getMapColumns(windowName2);\r\n\t\teditColumn = editColumn +\"public boolean isCellEditable(int row, int col) {\\n\";\r\n\t\tfor (int i = 0; i < maps.size(); i++) {\r\n\t\t\t...
[ "0.60579574", "0.602098", "0.5966826", "0.5872984", "0.5813824", "0.57940876", "0.57451445", "0.5657512", "0.563557", "0.5630727", "0.55869937", "0.55556804", "0.55486137", "0.5522477", "0.55199677", "0.5516289", "0.5513962", "0.55083585", "0.5507524", "0.55057234", "0.550389...
0.0
-1
Initializes the controller class.
@Override public void initialize(URL url, ResourceBundle rb) { if(rateService.ratesListById("task", th.getId())==0){ rateLabel.setVisible(true); ratingId.setVisible(false); }else { System.out.println(rateService.ratesListById("task", th.getId())); ...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private void initialize() {\n\t\tcontroller = Controller.getInstance();\n\t}", "public MainController() {\n\t\tcontroller = new Controller(this);\n\t}", "public abstract void initController();", "public Controller() {\n super();\n }", "public Controller() {\n super();\n }", "public Co...
[ "0.8125658", "0.78537387", "0.78320265", "0.776199", "0.776199", "0.76010174", "0.74497247", "0.7437837", "0.7430714", "0.742303", "0.74057597", "0.7341963", "0.7327749", "0.72634363", "0.72230434", "0.7102504", "0.70575505", "0.69873077", "0.69721675", "0.6944077", "0.691256...
0.0
-1
IntegratingGyroscope gyro; ModernRoboticsI2cGyro modernRoboticsI2cGyro; ElapsedTime timer = new ElapsedTime(); int spikeTime = 0; / Code to run when the op mode is initialized goes here
@Override public void init() { BackRight = hardwareMap.dcMotor.get("BackRight"); BackLeft = hardwareMap.dcMotor.get("BackLeft"); FrontRight = hardwareMap.dcMotor.get("FrontRight"); FrontLeft = hardwareMap.dcMotor.get("FrontLeft"); FrontRight.setDirection(DcMotor.Directi...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void initGyro() {\r\n\t\tresult = new AccumulatorResult();\r\n\t\tif (m_analog1 == null || m_analog2 == null) {\r\n\t\t\tSystem.out.println(\"Null m_analog\");\r\n\t\t}\r\n\t\tm_voltsPerDegreePerSecond = kDefaultVoltsPerDegreePerSecond;\r\n\t\t\r\n\t\t\r\n\t\tm_analog1.setAverageBits(kAverageBits);\r\n\t\tm...
[ "0.73942494", "0.7036652", "0.68824184", "0.6785464", "0.67816496", "0.6558956", "0.6517386", "0.65114707", "0.6470462", "0.6358405", "0.63164425", "0.6288348", "0.62445015", "0.6179822", "0.61791563", "0.6098057", "0.60874397", "0.60861856", "0.6081984", "0.60748076", "0.607...
0.0
-1
/ This method will be called repeatedly in a loop SUNLIGHTU YELLOW
@Override public void loop() { // throttle: left_stick_y ranges from -1 to 1, where -1 is full up, and // 1 is full down // direction: left_stick_x ranges from -1 to 1, where -1 is full left // and 1 is full right double y1 = -gamepad1.left_stick_y; double ...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\n public void periodic() {\n\n if (lastcolor != sColor())\n {\n lastcolor = sColor();\n colorcount++;\n }\n\n DriverStation.reportError(sColor() + /*\",\" + sRGB() +*/ \", \" + sIsClose() + \",\" + String.valueOf(colorcount), false);\n\n\n \n }", "@Override\n void individu...
[ "0.7265129", "0.6882044", "0.67436546", "0.6629186", "0.65546054", "0.64549243", "0.6407474", "0.6397444", "0.63712573", "0.6357339", "0.6356455", "0.63360244", "0.63273245", "0.6314445", "0.6294025", "0.6291781", "0.6279386", "0.6263594", "0.62631744", "0.6259403", "0.625435...
0.0
-1
/ Code to run when the op mode is first disabled goes here
@Override public void stop() { }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\n public void runOpMode() {\n servo0 = hardwareMap.servo.get(\"servo0\");\n servo1 = hardwareMap.servo.get(\"servo1\");\n digital0 = hardwareMap.digitalChannel.get(\"digital0\");\n motor0 = hardwareMap.dcMotor.get(\"motor0\");\n motor1 = hardwareMap.dcMotor.get(\"mot...
[ "0.7218687", "0.70883465", "0.68440586", "0.6828813", "0.67650455", "0.6723159", "0.665032", "0.6556356", "0.6555784", "0.652499", "0.6470446", "0.6459811", "0.6415281", "0.64098233", "0.64084053", "0.6385399", "0.6381864", "0.63631314", "0.63502395", "0.63021505", "0.6299293...
0.0
-1
The activity must call the GL surface view's onResume() on activity onResume().
@Override protected void onResume() { super.onResume(); mGLSurfaceView.onResume(); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\n protected void onResume() {\n super.onResume();\n mGLSurfaceView.onResume();\n }", "@Override\n public void onResume() {\n \tsuper.onResume();\n mGLSurfaceView.onResume();\n }", "@Override\n\tprotected void onResume() {\n\t\tsuper.onResume();\n\t\tmGLView.onResum...
[ "0.9159589", "0.91277796", "0.87837905", "0.848264", "0.8351304", "0.82544804", "0.80400294", "0.7781469", "0.76859254", "0.7595853", "0.7470616", "0.7470616", "0.7360346", "0.7341314", "0.7341314", "0.7327331", "0.7309444", "0.7302582", "0.7257028", "0.7234893", "0.7220193",...
0.9171822
1
The activity must call the GL surface view's onPause() on activity onPause().
@Override protected void onPause() { super.onPause(); mGLSurfaceView.onPause(); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\n protected void onPause() {\n super.onPause();\n mGLSurfaceView.onPause();\n }", "@Override\n public void onPause() {\n \tsuper.onPause();\n mGLSurfaceView.onPause();\n }", "@Override\n\tprotected void onPause() {\n\t\tsuper.onPause();\n\t\tmGLSurfaceView.onPause(...
[ "0.8832655", "0.8734953", "0.8688291", "0.8431665", "0.8350776", "0.80450004", "0.7792342", "0.7651672", "0.7580013", "0.7497345", "0.7484416", "0.73815125", "0.7376477", "0.7366757", "0.7366757", "0.7338082", "0.73281544", "0.7318343", "0.72775435", "0.72610027", "0.7223264"...
0.88510925
1
HashSet visited = new HashSet();
public static void postOrderTraverse2(TreeNode head){ if(head == null) return; Stack<TreeNode> stack = new Stack<>(); stack.push(head); TreeNode node; while (!stack.isEmpty()){ while (( node = stack.peek()) != null){ if(node.lChild != null && node.lChi...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void setVisited()\n {\n visited = true;\n }", "public void resetVisited() {\n\t\tthis.visited = new HashSet<Point>();\n\t}", "public void clearVisited()\n {\n visited = false;\n }", "public void setVisited(boolean value){this.visited = value;}", "public boolean getVisited()...
[ "0.7541651", "0.7378335", "0.72635496", "0.7101113", "0.7030284", "0.68498427", "0.67915833", "0.67700315", "0.672014", "0.6688198", "0.66633946", "0.6657503", "0.65999556", "0.65739816", "0.6530075", "0.6516627", "0.64494604", "0.6431533", "0.642827", "0.64278823", "0.642077...
0.0
-1
metoda za provjeru tacnosti unosa(tip podataka)
public static double provjera() { double broj = 0; boolean provjera = true; do { //ucitavanje unosa i provjera da li je int try { broj = unos.nextDouble(); //ako je sve ok, vrati broj provjera = false; } //hvata greska i trazi ponovni unos ...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private void tallennaTiedostoon() {\n viitearkisto.tallenna();\n }", "private String tulostuksenApu(){\r\n String apu = \"Rivitiedosto: \";\r\n for(int i = 0; i<rivitiedot.length; i++){\r\n apu = apu + i+\": \";\r\n for(int k = 1; k <= rivitiedot[i].getKoko(); k++){\...
[ "0.692054", "0.6905883", "0.64707816", "0.62992567", "0.6298006", "0.6290718", "0.6287224", "0.62409437", "0.6222945", "0.6222827", "0.61967766", "0.6174616", "0.6159217", "0.61502314", "0.61463845", "0.61435664", "0.61195254", "0.61088294", "0.60882574", "0.60784304", "0.607...
0.0
-1
TODO Autogenerated method stub unos podataka
public static void main(String[] args) { System.out.println("Unesite tezinu(u gramima) prvog pakovanja: "); double gram1=provjera(); System.out.println("Unesite cijenu prvog pakovanja: "); double km1=provjera(); System.out.println("Unesite tezinu(u gramima) drugog pakovanja: "); double gram2=prov...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\n public void perish() {\n \n }", "@Override\r\n\t\t\tpublic void ayuda() {\n\r\n\t\t\t}", "@Override\n\tpublic void anular() {\n\n\t}", "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "@Override\r\n\tpublic void rozmnozovat() {\n\t}", "@Override\n\tpublic void comer() {...
[ "0.6499094", "0.6328467", "0.61594594", "0.6143442", "0.6131912", "0.6094324", "0.604923", "0.60050166", "0.598546", "0.598546", "0.5984658", "0.59602547", "0.5949276", "0.59457", "0.593837", "0.5917045", "0.5865748", "0.5835949", "0.5822599", "0.5816023", "0.5812859", "0.5...
0.0
-1
/ Update text views
@Override public void onChanged(Measurement measurement) { updateTextViews(measurement.getTimeStamp(), measurement.isGi(), measurement.getAmount(), measurement.getStress(), measurement.getTired(), measurement.isP...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private void update(String text, TextView view) {\r\n handler.post(new TextUpdater(text, view));\r\n }", "public void updateTextViews() {\n // Set the inputs according to the initial input from the entry.\n //TextView dateTextView = (TextView) findViewById(R.id.date_textview);\n //...
[ "0.7565304", "0.7417287", "0.71122855", "0.7020788", "0.696962", "0.6892523", "0.6884191", "0.68468374", "0.6771364", "0.67454034", "0.6715992", "0.6715992", "0.6699263", "0.66988355", "0.6690203", "0.6607724", "0.6601401", "0.6574937", "0.6530213", "0.6497273", "0.64915", ...
0.0
-1
Build a string of a date by using the calender class with the pattern dd.mm.yyyy Example: 11.10.2019
@Override public void onDateSet(DatePicker view, int year, int month, int dayOfMonth) { Calendar calendar = Calendar.getInstance(); calendar.set(year, month, dayOfMonth, 0, 0, 0); Date date = calendar.getTime(); SimpleDateFormat sdf = new SimpleDateFormat("dd.MM.yyyy", Locale.getDefa...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private static String getDateStr() {\n\t\tDate date = Calendar.getInstance().getTime();\n\t\tDateFormat dateFormat = new SimpleDateFormat(\"MMddyyy\");\n\t\tString dateStr = dateFormat.format(date);\n\t\treturn dateStr;\n\t}", "private String dateToString(Date datum)\r\n\t{\n\t\tSimpleDateFormat df = new SimpleD...
[ "0.69854796", "0.66807574", "0.66705656", "0.66182494", "0.65712446", "0.6551308", "0.6519945", "0.6500068", "0.63469803", "0.6327338", "0.6327305", "0.6294213", "0.62934506", "0.6251062", "0.6245724", "0.624113", "0.62329984", "0.62311095", "0.6224563", "0.6215999", "0.62064...
0.0
-1
Create a calender instance to create a date object with the pattern hh:mm to get a String like that of the given hours and minute. Finally add the formatting at the end and updateFood the view Example: 06:25 AM
@Override public void onTimeSet(TimePicker view, int hourOfDay, int minute) { Calendar calendar = Calendar.getInstance(); calendar.set(0, 0, 0, hourOfDay, minute, 0); Date date = calendar.getTime(); SimpleDateFormat sdf = new SimpleDateFormat("hh.mm aa", Locale.getDefault()); ...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void actionPerformed(ActionEvent ae){\n Date date = new Date();\n //instantiate new Date object\n\n DateFormat format = new SimpleDateFormat(\"E, MMM d y HH:mm:ss\");\n //set format of clock\n\n DateFormat otherFormat = new SimpleDat...
[ "0.6262512", "0.6246306", "0.61734056", "0.6106533", "0.6104968", "0.60769886", "0.60651135", "0.6037279", "0.6026983", "0.60211575", "0.6017589", "0.6011155", "0.6007749", "0.6000879", "0.59941685", "0.59915626", "0.5990557", "0.59806716", "0.5978301", "0.59715825", "0.59665...
0.5996904
14
Opens a dialog to choose the date with predefined date values (the current ones).
private void chooseDateDialog() { Calendar c = Calendar.getInstance(); int year = c.get(Calendar.YEAR); int month = c.get(Calendar.MONTH); int day = c.get(Calendar.DATE); DatePickerDialog datePickerDialog = new DatePickerDialog(Objects.requireNonNull(getContext()...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\n public void onClick(View v) {\n new DatePickerDialog(MainActivity.this, date, myCalendar\n .get(Calendar.YEAR), myCalendar.get(Calendar.MONTH),\n myCalendar.get(Calendar.DAY_OF_MONTH)).show();\n ...
[ "0.74876356", "0.73822635", "0.7380768", "0.7334227", "0.7330351", "0.7312856", "0.72907674", "0.7250154", "0.7242669", "0.72398984", "0.7224816", "0.72227967", "0.7214459", "0.71911323", "0.7178382", "0.7178382", "0.7173564", "0.7172434", "0.71649104", "0.7158146", "0.715027...
0.8089274
0
Opens a dialog to choose the time with predefined date values (the current ones).
private void chooseTimeDialog() { Calendar c = Calendar.getInstance(); int hourOfDay = c.get(Calendar.HOUR_OF_DAY); int minute = c.get(Calendar.MINUTE); TimePickerDialog timePickerDialog = new TimePickerDialog(getContext(), this, hourOfDay, minute, false); timePi...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private void showDialogTime() {\n final TimePickerDialog timePickerDialog = new TimePickerDialog(getActivity(),\n new TimePickerDialog.OnTimeSetListener() {\n\n @Override\n public void onTimeSet(TimePicker view, int hourOfDay, int minute) {\n\n ...
[ "0.7639344", "0.7096858", "0.70474505", "0.70363283", "0.69886345", "0.6961351", "0.6884426", "0.6868672", "0.68243927", "0.6794674", "0.6780464", "0.6751257", "0.6750552", "0.6741721", "0.67204475", "0.6717374", "0.6693069", "0.66762716", "0.66712755", "0.6670151", "0.666874...
0.769149
0
Updates the text views.
private void updateTextViews(String timeStamp, boolean isGi, int amount, String stress, String tired, boolean isPhysicallyActive, boolean hasAlcoholConsumed, boolean isIll, boolean takesMedication, boolean hasPeriod, ...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void updateTextViews() {\n // Set the inputs according to the initial input from the entry.\n //TextView dateTextView = (TextView) findViewById(R.id.date_textview);\n //dateTextView.setText(DateUtils.formatDateTime(getApplicationContext(), mEntry.getStart(), DateUtils.FORMAT_SHOW_DATE))...
[ "0.7581997", "0.73927504", "0.73272306", "0.7250001", "0.7049791", "0.7020753", "0.6960249", "0.68160355", "0.68160355", "0.6747407", "0.6672468", "0.66347927", "0.6599015", "0.6569213", "0.6529846", "0.6479389", "0.6472587", "0.6472277", "0.6466752", "0.6456758", "0.6436409"...
0.657746
13
Checks if the user input has been valid. The input is okay if at least the minimum data has been entered Required data for valid input: date, time, amount, stress, tired and glucose begin Checkboxes are not required because they are default set to false.
private boolean isInputOkay() { // checks the text fields if (mBinding.date.getText() == null || mBinding.date.getText().toString().equals("")) { snackBar("Please select the date."); return false; } if (mBinding.time.getText() == null || mBinding.time.getText().t...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public boolean checkEntryInputs() {\n\t\tboolean isValid = true;\n\t\tif(sampleNumberTF.getText().equals(\"\")) {\n\t\t\tisValid = false;\n\t\t}\n\t\t\n\t\tif(materialDescriptionTF.getText().equals(\"\")) {\n\t\t\tisValid = false;\n\t\t}\n\t\t\n\t\tif(Double.valueOf(bacteroidesConcentrationTF.getText())==null) {\n...
[ "0.7313417", "0.71822226", "0.71387726", "0.709391", "0.7077869", "0.7066727", "0.70442426", "0.7018639", "0.69686455", "0.69618756", "0.6948806", "0.6927725", "0.6905708", "0.68966794", "0.68701524", "0.68550485", "0.68493307", "0.6799252", "0.6789526", "0.6782191", "0.67762...
0.73864627
0
Updates the current measurement database entry. If the measurement is done get the viewModel updated
private void save() { // Get the current measurement final LiveData<Measurement> ldm = mViewModel.getMeasurementById(mMeasurementId); ldm.observe(getViewLifecycleOwner(), new Observer<Measurement>() { @Override public void onChanged(final Measurement measurement) { ...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Update\n void update(Measurement measurement);", "public void updateDataModel() {\n //this.dataModel = new TelemetryChartDataModel();\n this.dataModel.\n setModel(getStartDate(), getEndDate(), selectedProjects, telemetryName, parameters);\n Thread thread = new Thread() {\n @Override\n...
[ "0.6921897", "0.60287255", "0.6014405", "0.59928036", "0.59631705", "0.59509104", "0.59509104", "0.5926199", "0.5876565", "0.5865083", "0.5852458", "0.5846703", "0.5812052", "0.5800215", "0.5782242", "0.5782242", "0.5782242", "0.5780771", "0.57538253", "0.57367396", "0.572346...
0.6805313
1
Helper function for faster SnackBar creation
private void snackBar(String msg) { MySnackBar.createSnackBar(Objects.requireNonNull(getContext()), Objects.requireNonNull(getView()), msg); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private void showSnackBar(String message) {\n }", "private void createSnack() {\n }", "public void DisplaySnackBarAboveBar(String message, Boolean setAction) {\n int marginSide = 0;\n int marginBottom = 150;\n Snackbar snackbar = Snackbar.make(\n coordinatorLayout,\n ...
[ "0.6895972", "0.683639", "0.6465948", "0.64314544", "0.61043954", "0.60274833", "0.5983804", "0.59502757", "0.59219414", "0.58640033", "0.5742379", "0.5725801", "0.5716366", "0.5674249", "0.567381", "0.56690437", "0.56141865", "0.5564288", "0.55134314", "0.548876", "0.544671"...
0.72635645
0
Initiate a generic request to load it with an ad
private static AdRequest getAdRequest() { AdRequest request = new AdRequest(); // add test devices request.addTestDevice(AdRequest.TEST_EMULATOR); request.addTestDevice("CF95DC53F383F9A836FD749F3EF439CD"); Log.d(AbstractSmsActivity.OLD_SCHOOL_SMS, "New AdRequest: Location=[" + request.getLocation() + "] Gender...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "void load(Request req);", "private void loadInterstitial(AdRequest adRequest) {\n mInterstitialAd.loadAd(adRequest);\n }", "private void requestNewBanner(){\n AdView mAdView = (AdView) findViewById(R.id.adView);\n AdRequest adRequest = new AdRequest.Builder().build();\n mAdView.l...
[ "0.6661345", "0.6363776", "0.6234573", "0.6139343", "0.6061303", "0.60573554", "0.59844697", "0.59257483", "0.59040254", "0.57429403", "0.57202435", "0.5581557", "0.5555274", "0.55363405", "0.5481522", "0.54217976", "0.53774524", "0.53597283", "0.53577816", "0.53555787", "0.5...
0.5322124
22
Get the manifest aieon for this parswer
public ManifestAieon getManifest();
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public Manifest getManifest()\n\t{\n\t\treturn manifest;\n\t}", "private Manifest getManifest() {\n Manifest manifest = new Manifest();\n Attributes attributes = manifest.getMainAttributes();\n attributes.put(Attributes.Name.MANIFEST_VERSION, \"1.0\");\n attributes.put(Attributes.Name...
[ "0.73589575", "0.7293171", "0.7145607", "0.66441625", "0.65772235", "0.6405273", "0.6339626", "0.6170449", "0.6109734", "0.5943118", "0.5845792", "0.57066417", "0.57035446", "0.56722766", "0.5631006", "0.56211394", "0.5585725", "0.55165213", "0.5432907", "0.5424064", "0.53846...
0.85296744
0
Get the persistence object that reads and writes the content
public IPersistence<T> getPersistence();
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public abstract FHIRPersistence getPersistenceImpl() throws Exception;", "private static PersistenceSession getPersistenceSession() {\n return NakedObjectsContext.getPersistenceSession();\n }", "public abstract int getPersistence();", "OStorage getStorage();", "public FooPersistence getFooPersist...
[ "0.7124204", "0.6764136", "0.66909647", "0.65289074", "0.6510063", "0.62832147", "0.62776595", "0.6145867", "0.6141428", "0.61304766", "0.611309", "0.6089469", "0.6014759", "0.6013596", "0.6007122", "0.5991224", "0.59850276", "0.59640664", "0.5961079", "0.5901131", "0.5891335...
0.7230267
0
If true, the parser only parses descriptors. This can be very efficient if the descriptor info is contained, for instance in a file or entry name. In such a case, the content of the file or entry does not need to be parsed
public boolean isDescriptorOnly();
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public final boolean isValidDescriptor(String desc) {\n return getValidDescriptors().contains(desc);\n }", "boolean supports(Object descriptor);", "public void setDescriptorOnly( boolean descriptorOnly );", "internal boolean hasDataDescriptor (){\r\n\t\t\treturn _hasDataDescriptor;\r\n\t\t}", "p...
[ "0.6013711", "0.5992219", "0.5959877", "0.56699675", "0.55621046", "0.5447026", "0.5357951", "0.53528893", "0.53281236", "0.53224415", "0.5297106", "0.5275801", "0.50926554", "0.505881", "0.50098604", "0.49668723", "0.4964098", "0.4964098", "0.4964098", "0.49482265", "0.49474...
0.69068366
0
Set whether or not the descriptor alone is parsed
public void setDescriptorOnly( boolean descriptorOnly );
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "boolean isSetDesc();", "public void setDescriptor(Descriptor inDescriptor);", "public boolean isDescriptorOnly();", "boolean isSetDescription();", "boolean isSetDescription();", "boolean isSetInterpretation();", "public void setDirezione(boolean direzione) {\n\r\n }", "public boolean isSetDescripti...
[ "0.5963095", "0.5914092", "0.59113026", "0.572992", "0.572992", "0.571069", "0.5694911", "0.56236905", "0.5543963", "0.55107343", "0.5404696", "0.5396891", "0.53886986", "0.538546", "0.5370427", "0.53561294", "0.53540295", "0.5352106", "0.5332122", "0.533143", "0.53124833", ...
0.64676046
0
Parse the collection according to the provided filter
public void parse( IFilter<? extends IDescribable> filter ) throws ParseException;
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "Results processFilter(FilterSpecifier filter) throws SearchServiceException;", "@Override\n public List runFilter(String filter) {\n return runFilter(\"\", filter);\n }", "public void parse( String ldapFilter )\n {\n // reset state\n filterStack = new Stack<LdapFilter>();\n ...
[ "0.5676743", "0.56606954", "0.5529514", "0.5499255", "0.52744514", "0.52522904", "0.5252185", "0.5125889", "0.50905716", "0.50580895", "0.50300604", "0.5029987", "0.5012422", "0.5011471", "0.49935886", "0.49644378", "0.4929734", "0.49183205", "0.49080837", "0.490734", "0.4906...
0.6305962
0
Get the results that was parsed
public Collection<T> getResults();
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public Result getResults()\r\n {\r\n return result;\r\n }", "public String getResults() {\r\n return returnObject.getResults();\r\n }", "@Override\n\tprotected void parseResult() {\n\t\t\n\t}", "public List<CorpusSearchHit> getResult() {\n return result;\n }", "CParserResult getP...
[ "0.67480385", "0.65574604", "0.6509368", "0.6476393", "0.6461029", "0.6429122", "0.63472384", "0.6341619", "0.62874496", "0.6242029", "0.6240632", "0.617057", "0.616361", "0.6141654", "0.61407506", "0.611485", "0.6105356", "0.6104801", "0.6104801", "0.60175717", "0.5990918", ...
0.6022624
19
Get current spell from spell API trough filter
public static Spell createSpellFromJsonString(String spellJsonString, String name) throws JSONException { JSONArray jsonArray = null; try { jsonArray = new JSONArray(spellJsonString); } catch (JSONException e) { e.printStackTrace(); } for (int i = 0; i < j...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public Spell getSpell(String spellType, Name spellName, Money price, Level level, Damage damage, Mana mana);", "SpellResponse spellQuery(SearchRequest request, Map<SearchParam, String> params);", "public final ItemScroll getSpell(int id) {\n\t\treturn spellmap.get(Integer.valueOf(id - Config.scrollStartIndex()...
[ "0.64552635", "0.61346465", "0.604456", "0.5917846", "0.5890714", "0.5888592", "0.56160355", "0.5530465", "0.5530465", "0.5530465", "0.5495981", "0.5484183", "0.54780406", "0.547116", "0.5462718", "0.5436712", "0.5436442", "0.5432829", "0.5419235", "0.5385231", "0.53577876", ...
0.50747114
35
TODO Autogenerated method stub
@Override public void add() { person.addRelationship("Friend", friend); }
{ "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 remove() { }
{ "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 hienl on 1/9/2017.
public interface IOnOffClick { public void onOffClick(View view, int pos, boolean isOn); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\n public void perish() {\n \n }", "private stendhal() {\n\t}", "public final void mo51373a() {\n }", "@Override\n public void func_104112_b() {\n \n }", "@Override\n\tpublic void grabar() {\n\t\t\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@Overri...
[ "0.60498875", "0.5959077", "0.5894622", "0.5805883", "0.57947576", "0.57746106", "0.5749896", "0.5749896", "0.5705757", "0.56794053", "0.56624293", "0.562176", "0.5620465", "0.56173813", "0.5609178", "0.56078446", "0.5607101", "0.5601544", "0.55770797", "0.55711854", "0.55589...
0.0
-1
utilizando su propieos metodos
public void generarCodigo(){ this.setCodigo("c"+this.getNombre().substring(0,3)); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void limpiarCampos() {\n\t\ttema = new Tema();\n\t\ttemaSeleccionado = new Tema();\n\t\tmultimedia = new Multimedia();\n\t}", "private void limpiarDatos() {\n\t\t\n\t}", "public void inicializarListaMascotas()\n {\n //creamos un arreglo de objetos y le cargamos datos\n mascotas = new Ar...
[ "0.6574978", "0.6512046", "0.6356245", "0.62892765", "0.62527716", "0.62165105", "0.61958754", "0.619079", "0.61145973", "0.60928375", "0.6077096", "0.60723877", "0.6067827", "0.59805083", "0.59630424", "0.59408724", "0.5938214", "0.5930232", "0.59088844", "0.58809566", "0.58...
0.0
-1
Store All the weather information of a city
@Test(priority = 2) public void WeatherReportForParticularCity() { test.homepage.searchForLocation(ReadWrite.getProperty("Noida_City_State")); test.currentWeatherReportPage.verifyCurrentDayAndTime(); weatherMap = test.currentWeatherReportPage.storeInformationOfWeather(); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "void handleWeatherDataForCity(String cityName);", "public void getWeather(String city, String units);", "@Override\n\tpublic String getHourlyWeatherData(String city, String country) throws IOException {\n\t\t\n\t\treturn connectFiveDayForecast(city, country);\n\t\t\n\t}", "@Override\n\tpublic String getWeath...
[ "0.72435886", "0.7173706", "0.6661717", "0.6646004", "0.6625698", "0.6596086", "0.642264", "0.64055574", "0.6383613", "0.63506174", "0.63252354", "0.6324899", "0.6308754", "0.63063264", "0.62746483", "0.6158591", "0.6153331", "0.61526", "0.6139434", "0.6124415", "0.6124415", ...
0.66185427
5
Get Current weather data by city name
@Test(priority = 3) public void verify_Weather_Data_Appears_OnSearching_By_City() { weatherResponse_city = WeatherAPI.getWeatherInfo(ReadWrite.getProperty("Noida_City"), ConfigFileReader.getProperty("appid"), 200); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void getWeather(String city, String units);", "void handleWeatherDataForCity(String cityName);", "@Override\n\tpublic String getWeatherDataCity(String city, String country) throws IOException {\n\n\t\treturn connectAPICity(city, country);\n\t\t\n\t}", "@Override\n public City getStatsByCity(String ...
[ "0.81723446", "0.7909896", "0.7812095", "0.74907434", "0.7426668", "0.7338908", "0.73169106", "0.7272145", "0.72393364", "0.7196007", "0.71800804", "0.7028804", "0.70177436", "0.7015512", "0.69867045", "0.69745624", "0.6972801", "0.69119024", "0.6852792", "0.68501043", "0.684...
0.6636371
29
Get Current weather data by city name And State Code
@Test(priority = 4) public void verify_Weather_Data_Appears_OnSearching_By_CityAndStateCode() { WeatherAPI.getWeatherInfo(ReadWrite.getProperty("London_City_State"), ConfigFileReader.getProperty("appid"), 200); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void getWeather(String city, String units);", "void handleWeatherDataForCity(String cityName);", "@Override\n\tpublic String getWeatherDataCity(String city, String country) throws IOException {\n\n\t\treturn connectAPICity(city, country);\n\t\t\n\t}", "@GET(\"https://api.openweathermap.org/data/2.5/we...
[ "0.7713018", "0.75237244", "0.72567314", "0.7096449", "0.7078687", "0.70262516", "0.6879343", "0.6860308", "0.6851109", "0.6815299", "0.6726035", "0.6693023", "0.668366", "0.6668463", "0.6662849", "0.66471183", "0.663934", "0.66229784", "0.6590872", "0.6558075", "0.6521022", ...
0.69674534
6
Get Current weather data by city name, State Code, country code
@Test(priority = 5) public void verify_Weather_Data_Appears_OnSearching_By_City_StateCodeAndCountryCode() { WeatherAPI.getWeatherInfo(ReadWrite.getProperty("Noida_City_State_Country"), ConfigFileReader.getProperty("appid"), 200); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void getWeather(String city, String units);", "@Override\n\tpublic String getWeatherDataCity(String city, String country) throws IOException {\n\n\t\treturn connectAPICity(city, country);\n\t\t\n\t}", "void handleWeatherDataForCity(String cityName);", "@GET(\"https://api.openweathermap.org/data/2.5/we...
[ "0.7750773", "0.755098", "0.7469178", "0.7225847", "0.7171399", "0.7113883", "0.704045", "0.6981611", "0.6960313", "0.6864307", "0.6825277", "0.6818141", "0.68099564", "0.67588216", "0.67422473", "0.66869485", "0.66414005", "0.66309565", "0.66273624", "0.6619802", "0.6618427"...
0.6267888
44
compare weather temperature from UI and API Return success if temp difference is less than 2
@Test(priority = 6) public void compare_Weather_Data() { Comparator.userCompareVariation(weatherMap.get("Temperature").toString(), weatherResponse_city.getJSONObject("main").get("temp").toString()); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public double getWeatherAPI() {\n\t\tRestAssured.baseURI= props.getProperty(\"BaseURI\");\n\t\tString response = \tgiven().log().all().header(\"Content-Type\",\"application/json\").\n\t\t\t\tqueryParam(\"q\", props.getProperty(\"city\")).\n\t\t\t\tqueryParam(\"appid\", props.getProperty(\"key\")).\n\t\t\t\tqueryPa...
[ "0.6486162", "0.62194675", "0.6147765", "0.6088238", "0.60777277", "0.5875585", "0.5821438", "0.5771365", "0.5739417", "0.5712987", "0.5703749", "0.56953585", "0.5693092", "0.5623461", "0.561041", "0.5584853", "0.5561301", "0.5559038", "0.55310404", "0.553048", "0.55013454", ...
0.6653388
0
Created by cdsm16 on 04/10/2016.
public interface ChannelREST { public static final String ENDPOINT = "http://92.222.72.89:8080/"; @GET("/club/{idClub}/channels/{idChannel}/messages") Call<List<Message>> getAllMessageFromChannel(@Path("idClub") Integer id, @Path("idChannel") Integer idChannel); @GET("/club/{idClub}/channels") Call...
{ "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 tires() {\n\t\t\r\n\t}", "public final void mo51373a() {\n }", "@Override\r\n\tpubl...
[ "0.6124494", "0.5924772", "0.5894605", "0.58572346", "0.58283144", "0.5823064", "0.57916456", "0.57916456", "0.57685775", "0.5696636", "0.56893337", "0.56893337", "0.56893337", "0.56893337", "0.56893337", "0.56893337", "0.56892145", "0.5687091", "0.5669871", "0.56654334", "0....
0.0
-1
/ RestTemplate rt=new RestTemplate(); ResponseEntity response = rt.getForEntity((" String.class); System.out.println(response);
@RequestMapping("/getUsers") public String getUsers() { return "Hai Hello How are you"; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public static void getMethodTest()\n\t{\n String content = restTemplate.getForObject(baseURL+\"/hello\", String.class);\n System.out.println(\"-------------\");\n \n ResponseEntity<String > s = restTemplate.getForEntity(baseURL+\"/hello\", String.class);\n System.out.println(s.g...
[ "0.8005843", "0.777351", "0.73739356", "0.70996344", "0.6841413", "0.68291587", "0.677741", "0.6678732", "0.66500646", "0.65845525", "0.65720344", "0.657165", "0.65324175", "0.65177375", "0.64861244", "0.64706403", "0.6464261", "0.642272", "0.6411101", "0.63878065", "0.638353...
0.0
-1
$FF: renamed from: (net.minecraft.server.MinecraftServer, j9, java.lang.String, int, dt, qi) void
public void method_2239(MinecraftServer param1, class_29 param2, String param3, int param4, class_1045 param5, class_1535 param6) { // $FF: Couldn't be decompiled }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public interface C5861g {\n /* renamed from: a */\n void mo18320a(C7251a aVar);\n\n @Deprecated\n /* renamed from: a */\n void mo18321a(C7251a aVar, String str);\n\n /* renamed from: a */\n void mo18322a(C7252b bVar);\n\n /* renamed from: a */\n void mo18323a(C7253c cVar);\n\n /* rena...
[ "0.6057025", "0.5948664", "0.5845749", "0.57851195", "0.5717523", "0.571006", "0.5665805", "0.5664072", "0.5644524", "0.5632785", "0.563242", "0.55987746", "0.55846983", "0.55834943", "0.55787", "0.55765796", "0.55753875", "0.5575304", "0.5563456", "0.5560263", "0.55584866", ...
0.65723306
0
$FF: renamed from: b () void
public void method_2139() { // $FF: Couldn't be decompiled }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void b() {\r\n }", "@Override\n public void b() {\n }", "public void b() {\n }", "public void b() {\n }", "@Override\n\tpublic void b() {\n\n\t}", "void b();", "@Override\n\tpublic void b1() {\n\t\t\n\t}", "@Override\n\tpublic void bbb() {\n\t\t\n\t}", "@Override\n public v...
[ "0.8112682", "0.80767715", "0.79938555", "0.79938555", "0.798342", "0.7847682", "0.7622169", "0.75516546", "0.74865687", "0.74736917", "0.74144864", "0.72326136", "0.7230346", "0.7225043", "0.7178822", "0.71743643", "0.7171457", "0.7159698", "0.71496016", "0.71275663", "0.712...
0.0
-1
$FF: renamed from: b (as, int, int, int) vC
public class_1653 method_2240(class_922 var1, int var2, int var3, int var4) { String[] var10000 = class_752.method_4253(); List var6 = this.method_2192().method_111(var1, var2, var3, var4); String[] var5 = var10000; class_1653 var10; label28: { List var9; label27...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "interface C30585a {\n /* renamed from: b */\n void mo27952b(C5379a c5379a, int i, C46650a c46650a, C7620bi c7620bi);\n }", "void mo2508a(bxb bxb);", "public interface C19351a {\n /* renamed from: b */\n void mo30633b(int i, String str, byte[] bArr);\n }", "public interface C...
[ "0.7191906", "0.6869366", "0.6690985", "0.668237", "0.664386", "0.66343516", "0.6594407", "0.65822035", "0.6572265", "0.6557151", "0.65321684", "0.6523202", "0.64994454", "0.6479987", "0.6474812", "0.6471467", "0.64623237", "0.6432783", "0.64172006", "0.641237", "0.64097464",...
0.0
-1
$FF: renamed from: c () void
public void method_2197() { // $FF: Couldn't be decompiled }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public static void c0() {\n\t}", "public void c() {\n }", "void mo80457c();", "void mo57278c();", "void mo5290b(C5102c c5102c);", "void mo5289a(C5102c c5102c);", "public static void c1() {\n\t}", "void mo17012c();", "void mo12638c();", "void mo67924c();", "void mo21072c();", "void mo7211...
[ "0.76791036", "0.76179284", "0.7522613", "0.7412385", "0.73603237", "0.73256433", "0.7264573", "0.71615005", "0.7146747", "0.7137986", "0.70685774", "0.70649755", "0.70573264", "0.7048773", "0.70322734", "0.7031232", "0.70249605", "0.7017386", "0.69845617", "0.69670725", "0.6...
0.0
-1
$FF: renamed from: e () void
protected void method_2241() { // $FF: Couldn't be decompiled }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\n\tpublic void e() {\n\n\t}", "public void e() {\n }", "void event(Event e) throws Exception;", "@Override\n public void e(int i0, int i1) {\n\n }", "@Override\n\tpublic void einkaufen() {\n\t}", "@Override\n public void e(String TAG, String msg) {\n }", "public...
[ "0.8312422", "0.8264417", "0.72700495", "0.7247195", "0.69755065", "0.69696814", "0.6887521", "0.6826573", "0.67847836", "0.678288", "0.6774456", "0.67203873", "0.6706484", "0.6700481", "0.66787916", "0.66538566", "0.6599632", "0.65687495", "0.65671915", "0.65503955", "0.6527...
0.0
-1
$FF: renamed from: i () void
private void method_2242() { this.field_1824.method_6863(0); this.field_1824.method_6861(false); this.field_1824.method_6859(0); this.field_1824.method_6857(false); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private final void i() {\n }", "public final void mo91727g(int i) {\n }", "void mo88773a(int i);", "void mo66998a(int i);", "void mo26876a(int i);", "void mo1747a(int i);", "void mo54406a(int i);", "public final void mo91724f(int i) {\n }", "void mo1753b(int i);", "public void mo5332a(...
[ "0.84918326", "0.77806765", "0.7631778", "0.75177246", "0.75145715", "0.7512507", "0.7500242", "0.74565804", "0.7454645", "0.7445058", "0.7442278", "0.7419122", "0.7418939", "0.7418635", "0.74072444", "0.73946065", "0.7371105", "0.7339137", "0.73350537", "0.7308839", "0.72943...
0.0
-1
$FF: renamed from: k () boolean
public boolean method_2243() { // $FF: Couldn't be decompiled }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public boolean k_()\r\n/* 450: */ {\r\n/* 451:464 */ return false;\r\n/* 452: */ }", "boolean defined(K k);", "public abstract void mo32005dK(boolean z);", "public void setK(boolean k) {\n\tthis.k = k;\n }", "public boolean hasK() {\n return resultCase_ == 3;\n }", "public boolean ha...
[ "0.76890653", "0.72395194", "0.7196108", "0.7122633", "0.6897799", "0.6837367", "0.6819478", "0.66667485", "0.6616237", "0.64112025", "0.6373077", "0.63582706", "0.6355418", "0.6299531", "0.6265771", "0.62436527", "0.6241704", "0.6211292", "0.6201307", "0.616776", "0.6165375"...
0.0
-1
$FF: renamed from: f () void
public void method_2046() { // $FF: Couldn't be decompiled }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void func_70305_f() {}", "public void f() {\n }", "public void f() {\n }", "@Override\n public int f() {\n return 0;\n }", "void f1() {\r\n\t}", "@Override\n\tpublic void f1() {\n\n\t}", "@Override\n\tpublic void f2() {\n\t\t\n\t}", "void testMethod() {\n f();\n }", ...
[ "0.8134333", "0.80543995", "0.8033524", "0.76442426", "0.7462097", "0.7073271", "0.7064105", "0.690873", "0.68817496", "0.6876525", "0.68603873", "0.6848948", "0.6845149", "0.67928916", "0.6765434", "0.67166066", "0.666712", "0.6617843", "0.6610579", "0.6603914", "0.65898085"...
0.0
-1
$FF: renamed from: g () void
protected void method_2145() { // $FF: Couldn't be decompiled }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void g() {\n }", "public int g()\r\n/* 173: */ {\r\n/* 174:198 */ return 0;\r\n/* 175: */ }", "public abstract long g();", "void mo56163g();", "public void g() {\n this.f25459e.Q();\n }", "public boolean g()\r\n/* 94: */ {\r\n/* 95:94 */ return this.g;\r\n/* 96: ...
[ "0.8236348", "0.7129124", "0.69351554", "0.688318", "0.6844494", "0.68359816", "0.6828114", "0.6807874", "0.6786692", "0.6743869", "0.6729092", "0.6704614", "0.6655458", "0.6607342", "0.6575535", "0.65644544", "0.6563656", "0.6560206", "0.6543619", "0.6537801", "0.65315974", ...
0.0
-1
$FF: renamed from: a (int, int, int, aji) boolean
public boolean method_2066(int var1, int var2, int var3, aji var4) { class_1050 var10000 = new class_1050; var10000.method_5952(var1, var2, var3, var4); class_1050 var5 = var10000; return this.field_1864.contains(var5); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "void mo6661a(boolean z);", "void mo64153a(boolean z);", "void mo99838a(boolean z);", "void mo21069a(boolean z);", "void mo54415a(int i, boolean z);", "void mo13374a(boolean z, int i, int i2);", "void mo98208a(boolean z);", "void mo1488a(boolean z);", "void mo12636a(boolean z);", "void mo54420a(bo...
[ "0.69105285", "0.6891783", "0.68860084", "0.6843701", "0.68334794", "0.6818299", "0.6763213", "0.676158", "0.6746595", "0.6720068", "0.6718439", "0.67009383", "0.66983294", "0.66639644", "0.66607267", "0.66521364", "0.6642597", "0.6601423", "0.65878534", "0.6584781", "0.64540...
0.0
-1
$FF: renamed from: a (int, int, int, aji, int) void
public void method_2110(int var1, int var2, int var3, aji var4, int var5) { this.method_2111(var1, var2, var3, var4, var5, 0); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public interface ayt {\n /* renamed from: a */\n int mo1635a(long j, List list);\n\n /* renamed from: a */\n long mo1636a(long j, alb alb);\n\n /* renamed from: a */\n void mo1637a();\n\n /* renamed from: a */\n void mo1638a(long j, long j2, List list, ayp ayp);\n\n /* renamed from: a */...
[ "0.7276333", "0.7103966", "0.69795847", "0.6921621", "0.6908564", "0.68919224", "0.68878084", "0.6887433", "0.6884476", "0.68742794", "0.6850516", "0.68490016", "0.6846675", "0.6835564", "0.6816136", "0.680056", "0.67879", "0.6778899", "0.67737514", "0.6764913", "0.6756868", ...
0.0
-1
$FF: renamed from: a (int, int, int, aji, int, int) void
public void method_2111(int param1, int param2, int param3, aji param4, int param5, int param6) { // $FF: Couldn't be decompiled }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public interface ayt {\n /* renamed from: a */\n int mo1635a(long j, List list);\n\n /* renamed from: a */\n long mo1636a(long j, alb alb);\n\n /* renamed from: a */\n void mo1637a();\n\n /* renamed from: a */\n void mo1638a(long j, long j2, List list, ayp ayp);\n\n /* renamed from: a */...
[ "0.7299391", "0.7136177", "0.6951789", "0.6916067", "0.69077414", "0.69005", "0.6896973", "0.6896041", "0.68820375", "0.68550533", "0.68526226", "0.6831948", "0.6823842", "0.68104184", "0.6802375", "0.6790018", "0.67871004", "0.67844826", "0.67744833", "0.6767527", "0.6758818...
0.0
-1
$FF: renamed from: b (int, int, int, aji, int, int) void
public void method_2112(int param1, int param2, int param3, aji param4, int param5, int param6) { // $FF: Couldn't be decompiled }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "void mo2508a(bxb bxb);", "interface C30585a {\n /* renamed from: b */\n void mo27952b(C5379a c5379a, int i, C46650a c46650a, C7620bi c7620bi);\n }", "private void b(int paramInt)\r\n/* 193: */ {\r\n/* 194:203 */ this.h.a(a(paramInt));\r\n/* 195: */ }", "public abstract int b(in...
[ "0.7456652", "0.7432349", "0.7361463", "0.73387", "0.7236326", "0.7205104", "0.71879154", "0.71435326", "0.71396005", "0.7136091", "0.71339566", "0.7059009", "0.7009761", "0.7003045", "0.700134", "0.69334495", "0.6921128", "0.69002146", "0.68844306", "0.6864181", "0.6855326",...
0.0
-1
$FF: renamed from: h () void
public void method_2113() { // $FF: Couldn't be decompiled }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void h() {\n }", "protected void h() {}", "public static void hehe(){\n \n }", "public abstract long h();", "void mo1501h();", "public void mo21783H() {\n }", "@Override\n\tvoid hi() {\n\t}", "public abstract void mh();", "public void mo9233aH() {\n }", "void mo57277b();",...
[ "0.84740615", "0.8444737", "0.6805465", "0.6713092", "0.6691926", "0.66518956", "0.6610404", "0.6606491", "0.6573243", "0.6514802", "0.65070736", "0.65070736", "0.6481098", "0.64575875", "0.6442367", "0.6403833", "0.6402855", "0.6402412", "0.6370755", "0.6340479", "0.63323313...
0.0
-1
$FF: renamed from: l () void
public void method_2244() { this.field_1858 = 0; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "void mo1943l();", "void mo54447l(int i);", "public void mo21787L() {\n }", "public void mo3370l() {\n }", "protected float l()\r\n/* 72: */ {\r\n/* 73: 84 */ return 0.0F;\r\n/* 74: */ }", "public abstract int mo9747l();", "@Override\n\tpublic void ligar() {\n\t\t\n\t}", "public...
[ "0.6892013", "0.6770438", "0.67282015", "0.6557665", "0.63766724", "0.6365918", "0.6294135", "0.62850064", "0.6259821", "0.62548256", "0.62536395", "0.6212706", "0.6191345", "0.61621934", "0.6140332", "0.61286145", "0.609547", "0.6089261", "0.6055513", "0.6052307", "0.6043603...
0.0
-1
$FF: renamed from: a (boolean) boolean
public boolean method_2153(boolean param1) { // $FF: Couldn't be decompiled }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public Boolean asBoolean();", "boolean booleanOf();", "void boolean1(boolean a);", "void mo21069a(boolean z);", "void mo64153a(boolean z);", "void mo98208a(boolean z);", "abstract public boolean getAsBoolean();", "void mo99838a(boolean z);", "void mo6661a(boolean z);", "void mo1488a(boolean z);",...
[ "0.7910512", "0.7590931", "0.7569646", "0.7515339", "0.7490424", "0.7454948", "0.7451848", "0.74418247", "0.7435433", "0.73873764", "0.73207366", "0.73207366", "0.73207366", "0.73207366", "0.72859126", "0.72447824", "0.71524477", "0.71149015", "0.70981497", "0.70908314", "0.7...
0.0
-1
$FF: renamed from: a (gI, boolean) java.util.List
public List method_2154(class_1069 param1, boolean param2) { // $FF: Couldn't be decompiled }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "void mo13375a(boolean z, int i, int i2, List<C15929a> list);", "void mo100444b(List<C40429b> list);", "void mo69875a(List<Aweme> list, boolean z);", "public boolean isList();", "public boolean isList();", "public boolean isListable();", "public abstract void mo56923b(List<C4122e> list);", "boolean ge...
[ "0.64870757", "0.64037424", "0.6382275", "0.6351526", "0.6351526", "0.6211182", "0.62095994", "0.6199849", "0.6199849", "0.617992", "0.6097201", "0.60941887", "0.5944554", "0.5907852", "0.5907323", "0.5890358", "0.5859307", "0.5844528", "0.5829173", "0.5806536", "0.5766544", ...
0.5747687
22
$FF: renamed from: a (sa, boolean) void
public void method_2116(class_689 param1, boolean param2) { // $FF: Couldn't be decompiled }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public interface C40108b {\n /* renamed from: a */\n void mo99838a(boolean z);\n }", "public interface C0940d {\n /* renamed from: a */\n void mo3305a(boolean z);\n }", "public abstract boolean a();", "void mo6661a(boolean z);", "void mo98208a(boolean z);", "void mo1488a...
[ "0.73093957", "0.7170463", "0.7088861", "0.7062704", "0.706256", "0.7039611", "0.7035307", "0.70276725", "0.69581157", "0.6934835", "0.68952364", "0.68877256", "0.68826896", "0.6800045", "0.67654747", "0.6728229", "0.6715317", "0.66885346", "0.66693896", "0.6667515", "0.66668...
0.0
-1
$FF: renamed from: j () gG
protected class_25 method_2044() { class_26 var1 = this.field_1823.method_127(this.field_1820); class_1665 var10001 = new class_1665; var10001.method_9187(this, var1, this.field_1820.method_6164()); this.field_1855 = var10001; return this.field_1855; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void j() {\n }", "protected float j()\r\n/* 67: */ {\r\n/* 68: 80 */ return 1.5F;\r\n/* 69: */ }", "public int func_70297_j_()\n/* */ {\n/* 71 */ return 64;\n/* */ }", "public abstract void mo2624j();", "void mo1941j();", "void mo24142a(long j);", "void mo302...
[ "0.7311624", "0.706263", "0.6640178", "0.6600015", "0.6516509", "0.6496756", "0.6477138", "0.6465923", "0.6462825", "0.63734293", "0.6337201", "0.6314744", "0.6305913", "0.62804645", "0.6271484", "0.62562865", "0.62322694", "0.6232011", "0.62164783", "0.62164783", "0.6200328"...
0.0
-1
$FF: renamed from: d (int, int, int, int, int, int) java.util.List
public List method_2245(int param1, int param2, int param3, int param4, int param5, int param6) { // $FF: Couldn't be decompiled }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public abstract void mo56923b(List<C4122e> list);", "void mo100444b(List<C40429b> list);", "public abstract void mo56920a(List<C4122e> list);", "int mo1635a(long j, List list);", "void mo1638a(long j, long j2, List list, ayp ayp);", "public void m(List<?> list) {\n\t}", "void mo54419a(List<String> list...
[ "0.72708315", "0.7264592", "0.7097515", "0.64868474", "0.64790106", "0.64294434", "0.6429071", "0.6408953", "0.63786733", "0.6341949", "0.63341194", "0.6268458", "0.6250253", "0.6238906", "0.6238142", "0.62021726", "0.6186605", "0.6182769", "0.6174729", "0.61604714", "0.61575...
0.603356
32
$FF: renamed from: a (yz, int, int, int) boolean
public boolean method_2190(class_792 var1, int var2, int var3, int var4) { String[] var5 = class_752.method_4253(); boolean var10000; label32: { try { var10000 = this.field_1850.method_2394(this, var2, var3, var4, var1); if(var5 == null) { retur...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "void mo54420a(boolean z, boolean z2);", "void mo64153a(boolean z);", "void mo6661a(boolean z);", "void mo99838a(boolean z);", "void mo21069a(boolean z);", "void mo3305a(boolean z);", "void mo1488a(boolean z);", "void mo98208a(boolean z);", "void mo54415a(int i, boolean z);", "void mo12636a(boolea...
[ "0.69998014", "0.6941975", "0.6877194", "0.68694633", "0.6867605", "0.6783692", "0.678147", "0.6761459", "0.67188764", "0.66876304", "0.6674321", "0.66666025", "0.6629667", "0.6616609", "0.65896684", "0.65714294", "0.6536081", "0.650516", "0.6498473", "0.64132905", "0.6399977...
0.0
-1
$FF: renamed from: a (dt) void
protected void method_2045(class_1045 param1) { // $FF: Couldn't be decompiled }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "void mo83698a(T t);", "void mo40877a(T t);", "void mo83696a(T t);", "void mo3312a(T t);", "void mo83695a(T t);", "void mo11495a(T t);", "public interface C32458d<T> {\n /* renamed from: a */\n void mo83695a(T t);\n }", "void mo16691c(T t);", "@Override\n\t\t\t\tpublic void a() {\n\...
[ "0.67385656", "0.66853535", "0.668506", "0.66633064", "0.66047734", "0.65961534", "0.65139574", "0.6497289", "0.64584565", "0.6431531", "0.6420484", "0.62574935", "0.6253882", "0.62273955", "0.62159604", "0.621208", "0.6203558", "0.62033325", "0.61961687", "0.61684585", "0.61...
0.0
-1
$FF: renamed from: c (dt) void
protected void method_2246(class_1045 param1) { // $FF: Couldn't be decompiled }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public final void mo91715d() {\n }", "void mo16691c(T t);", "void mo80457c();", "public void mo21878t() {\n }", "void mo21073d();", "void mo17012c();", "void mo17013d();", "public static void c0() {\n\t}", "void mo54435d();", "public void mo21795T() {\n }", "public void mo1403c() {\n ...
[ "0.6944802", "0.6905953", "0.6885433", "0.68446153", "0.6805455", "0.67825544", "0.67613906", "0.67359835", "0.67187977", "0.6718133", "0.6717409", "0.6704654", "0.6687367", "0.66823757", "0.66763234", "0.6675396", "0.663298", "0.66190654", "0.6612465", "0.65980047", "0.65842...
0.0
-1
$FF: renamed from: m () void
protected void method_2247() { // $FF: Couldn't be decompiled }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "void m(int i) {\r\n\t}", "void m1();", "void m1();", "void m22();", "void m2();", "public void m23075a() {\n }", "void m21();", "@Override\r\n\t\tvoid m() {\n\t\t\tSystem.out.println(\"m\");\r\n\t\t}", "public final void m2() {\n\r\n }", "private void m50366E() {\n }", "void m1864a() {...
[ "0.75735605", "0.7562664", "0.7562664", "0.7556981", "0.7552413", "0.74801886", "0.74766505", "0.73415554", "0.7307122", "0.729439", "0.7289888", "0.72802454", "0.7235511", "0.7230307", "0.72156644", "0.72047305", "0.7158198", "0.71529335", "0.71079004", "0.7106633", "0.71039...
0.0
-1
$FF: renamed from: n () vF
public class_1661 method_2248() { return this.field_1820.method_6175(); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void n() {\n this.f80658c.a(new f() {\n public void a(Object obj, boolean z) {\n p unused = m.this.f80658c = (p) obj;\n }\n }, \"__ag_of\");\n }", "public xm n()\r\n/* 274: */ {\r\n/* 275:287 */ if ((this.g == null) && (this.h != null) && (thi...
[ "0.6898091", "0.66345453", "0.65115505", "0.64429957", "0.6404971", "0.63640755", "0.6294649", "0.61268693", "0.5993445", "0.59810567", "0.5918389", "0.5895529", "0.5825866", "0.58134127", "0.5809902", "0.57945323", "0.5790373", "0.5776501", "0.57730293", "0.57511365", "0.572...
0.0
-1
$FF: renamed from: b (boolean, vu) void
public void method_2249(boolean param1, class_81 param2) { // $FF: Couldn't be decompiled }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "void mo1492b(boolean z);", "void mo197b(boolean z);", "public void b(boolean paramBoolean)\r\n/* 603: */ {\r\n/* 604:601 */ this.l = paramBoolean;\r\n/* 605: */ }", "public void a(boolean ☃) {\r\n/* 64 */ this.ab.b(a, Boolean.valueOf(☃));\r\n/* */ }", "public void b(boolean paramBo...
[ "0.759768", "0.75332665", "0.72900784", "0.7247988", "0.7221246", "0.7212252", "0.72099376", "0.7161427", "0.7135334", "0.7073073", "0.7061435", "0.70370233", "0.7027363", "0.7015771", "0.6997709", "0.6968819", "0.6931785", "0.6921538", "0.6854874", "0.68529", "0.6826937", ...
0.65637916
32
$FF: renamed from: q () void
public void method_2250() { // $FF: Couldn't be decompiled }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\n\tpublic void q() {\n\n\t}", "static void q4(){\t\n\t}", "static void q8(){\t\n\t}", "static void q7(){\n\t}", "public boolean q_()\r\n/* 178: */ {\r\n/* 179:203 */ return false;\r\n/* 180: */ }", "public interface t {\n void a(q qVar);\n}", "@Override\n\tpublic void myQuack...
[ "0.8454389", "0.76988995", "0.7474161", "0.725083", "0.69781685", "0.68021613", "0.67574567", "0.6614426", "0.65992254", "0.6553471", "0.6523517", "0.65014696", "0.6459112", "0.64162606", "0.6352966", "0.63169914", "0.63049763", "0.6301719", "0.62129676", "0.6192111", "0.6038...
0.0
-1
$FF: renamed from: a () void
protected void method_2251() { this.method_2181(); this.field_1823.method_128(this.field_1824, this.field_1850.method_2383().method_8922()); this.field_1826.method_7081(); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void a() {\r\n }", "public void a() {\n }", "public void a() {\n }", "@Override\n\t\t\t\tpublic void a() {\n\n\t\t\t\t}", "@Override\n\tpublic void a() {\n\t\t\n\t}", "@Override\r\n\tpublic void a() {\n\t\t\r\n\t}", "public static void a() {\n\n }", "void mo28194a();", "void b();",...
[ "0.79107445", "0.78255236", "0.78255236", "0.7727885", "0.7669216", "0.7550794", "0.754456", "0.7459449", "0.73919964", "0.7330034", "0.727009", "0.727009", "0.71647185", "0.716131", "0.7148495", "0.7143556", "0.7136695", "0.71353513", "0.7098976", "0.7092969", "0.70882696", ...
0.0
-1
$FF: renamed from: a (sa) void
protected void method_2090(class_689 var1) { super.method_2090(var1); this.field_1865.method_9478(var1.method_3845(), var1); String[] var10000 = class_752.method_4253(); class_689[] var3 = var1.method_3955(); String[] var2 = var10000; if(var3 != null) { int var4 = 0; ...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\n\t\t\t\tpublic void a() {\n\n\t\t\t\t}", "@Override\n\tpublic void a() {\n\t\t\n\t}", "public void a() {\r\n }", "@Override\r\n\tpublic void a() {\n\t\t\r\n\t}", "public void a() {\n }", "public void a() {\n }", "void mo28194a();", "@Override\n\tpublic void aaa() {\n\t\t\n\t}", ...
[ "0.74770063", "0.74485826", "0.74295807", "0.7321482", "0.73168856", "0.73168856", "0.71816194", "0.7129648", "0.7093921", "0.7062436", "0.7040526", "0.70351005", "0.6984904", "0.6957273", "0.6935574", "0.68952936", "0.6885123", "0.6871114", "0.6848909", "0.6844372", "0.68184...
0.0
-1
$FF: renamed from: b (sa) void
protected void method_2091(class_689 var1) { String[] var10000 = class_752.method_4253(); super.method_2091(var1); this.field_1865.method_9481(var1.method_3845()); class_689[] var3 = var1.method_3955(); String[] var2 = var10000; if(var3 != null) { int var4 = 0; ...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\n public void b() {\n }", "public void b() {\r\n }", "@Override\n\tpublic void b() {\n\n\t}", "@Override\n public void func_104112_b() {\n \n }", "public void b() {\n }", "public void b() {\n }", "@Override\n\tpublic void b1() {\n\t\t\n\t}", "public abstract void...
[ "0.75962996", "0.7506067", "0.7447421", "0.7439266", "0.73608446", "0.73608446", "0.7276486", "0.72757095", "0.72541773", "0.72318137", "0.72067106", "0.72016996", "0.71972185", "0.7189786", "0.7169862", "0.71424645", "0.7121308", "0.71120584", "0.71007156", "0.70908827", "0....
0.0
-1
$FF: renamed from: a (int) sa
public class_689 method_2160(int var1) { return (class_689)this.field_1865.method_9475(var1); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "void mo17016a(int i);", "void mo3767a(int i);", "void mo1747a(int i);", "void mo54406a(int i);", "void m15858a(int i);", "void mo38565a(int i);", "public abstract void mo9733a(int i);", "void mo17007a(int i);", "public abstract C14407a mo11604a(int i);", "void mo27576a(int i);", "public void mo...
[ "0.64843124", "0.63986874", "0.63956565", "0.6361779", "0.6350975", "0.63315487", "0.6267165", "0.6264137", "0.6238081", "0.6225868", "0.6223757", "0.61928165", "0.61718464", "0.6148282", "0.6119396", "0.60903347", "0.60767967", "0.6068261", "0.6067672", "0.60514516", "0.6049...
0.0
-1
$FF: renamed from: c (sa) boolean
public boolean method_2088(class_689 param1) { // $FF: Couldn't be decompiled }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "void mo98208a(boolean z);", "void mo21069a(boolean z);", "void mo6661a(boolean z);", "void mo64153a(boolean z);", "void mo1488a(boolean z);", "public Boolean asBoolean();", "void mo99838a(boolean z);", "void mo1492b(boolean z);", "public abstract boolean read_boolean();", "void mo197b(boolean...
[ "0.7458771", "0.7409154", "0.7407229", "0.7331707", "0.7255799", "0.72439194", "0.7238652", "0.7227415", "0.72041196", "0.71929336", "0.7184337", "0.7160042", "0.7110553", "0.7050686", "0.7011321", "0.7003536", "0.6999719", "0.6941359", "0.6927208", "0.69218665", "0.69028103"...
0.0
-1
$FF: renamed from: a (sa, byte) void
public void method_2191(class_689 var1, byte var2) { class_1657 var10000 = this.method_2256(); class_283 var10002 = new class_283; var10002.method_1635(var1, var2); var10000.method_9120(var1, var10002); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public abstract void mo4360a(byte b);", "public interface C1153a {\n /* renamed from: a */\n void mo4520a(byte[] bArr);\n }", "public abstract void mo9798a(byte b);", "public interface C43499b {\n /* renamed from: a */\n void mo8445a(int i, String str, int i2, byte[] bArr);\n}", "pub...
[ "0.7449423", "0.73466545", "0.7256159", "0.71145535", "0.71050006", "0.704584", "0.683941", "0.683133", "0.6783199", "0.67180616", "0.67059284", "0.66531783", "0.6625854", "0.6599624", "0.6568546", "0.6568431", "0.6564412", "0.65567786", "0.65511656", "0.649797", "0.6494129",...
0.0
-1
$FF: renamed from: a (sa, double, double, double, float, boolean, boolean) df
public class_1036 method_2126(class_689 param1, double param2, double param4, double param6, float param8, boolean param9, boolean param10) { // $FF: Couldn't be decompiled }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "double[][] asDouble();", "public void visitColumn(double val);", "public Object convertToCatalyst (Object a, org.apache.spark.sql.catalyst.types.DataType dataType) ;", "void mo130799a(double d);", "public <Q> Q[] asDataArray(Q[] a);", "public Object convertToScala (Object a, org.apache.spark.sql.cataly...
[ "0.5344452", "0.52673423", "0.5256152", "0.5168173", "0.5166196", "0.5145648", "0.51338506", "0.51196647", "0.51074445", "0.50538486", "0.49768347", "0.49735892", "0.49511394", "0.49470952", "0.49363813", "0.49234286", "0.49054694", "0.48951286", "0.48930085", "0.48717615", "...
0.0
-1
$FF: renamed from: c (int, int, int, aji, int, int) void
public void method_2193(int var1, int var2, int var3, aji var4, int var5, int var6) { String[] var10000 = class_752.method_4253(); class_1033 var10001 = new class_1033; var10001.method_5846(var1, var2, var3, var4, var5, var6); class_1033 var8 = var10001; String[] var7 = var10000; ...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "void mo5289a(C5102c c5102c);", "void mo27952b(C5379a c5379a, int i, C46650a c46650a, C7620bi c7620bi);", "public abstract void mo53562a(C18796a c18796a);", "void mo86a(C0163d c0163d);", "void mo5290b(C5102c c5102c);", "interface C30585a {\n /* renamed from: b */\n void mo27952b(C5379a c5379...
[ "0.71309566", "0.7125437", "0.70581025", "0.7041523", "0.70374113", "0.6961895", "0.6948118", "0.6921856", "0.6911101", "0.6904822", "0.6831658", "0.68291396", "0.6799824", "0.67524385", "0.67344266", "0.6716527", "0.67088044", "0.6704212", "0.6703395", "0.66993964", "0.66846...
0.0
-1
$FF: renamed from: r () void
private void method_2252() { String[] var1 = class_752.method_4253(); do { boolean var10000 = this.field_1861[this.field_1862].isEmpty(); int var2; label45: while(true) { if(var10000) { return; } var2 = th...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\n\tpublic void r() {\n\n\t}", "public void mo21793R() {\n }", "void mo57277b();", "void mo80455b();", "final /* synthetic */ void m65927a(Void voidR) {\n this.f56359a.m56689p();\n }", "void mo3194r();", "public void mo130018a(R r) {\n this.f109118j = r;\n th...
[ "0.77524906", "0.6965824", "0.6798352", "0.6751611", "0.6692003", "0.6675355", "0.6642572", "0.66363084", "0.6599307", "0.65971035", "0.6597011", "0.6593468", "0.659239", "0.6588144", "0.654346", "0.65340996", "0.6530299", "0.6494323", "0.64930916", "0.6485749", "0.64715356",...
0.0
-1