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
Utilizes Dijkstra Algorithm to find the shortest path.
public void findShortestPath(String startName, String endName) { checkValidEndpoint(startName); checkValidEndpoint(endName); Vertex<String> start = vertices.get(startName); Vertex<String> end = vertices.get(endName); double totalDist; // totalDist must be update below Map<Vertex<String>, Dou...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public int doDijkstras(String startVertex, String endVertex, ArrayList<String> shortestPath)\r\n\t{\r\n\t\tif(!this.dataMap.containsKey(startVertex) || !this.dataMap.containsKey(endVertex))\r\n\t\t{\r\n\t\t\tthrow new IllegalArgumentException(\"Vertex does not exist in the graph!\");\r\n\t\t}\r\n\t\t\r\n\t\t\r\n\t...
[ "0.8019197", "0.80119187", "0.79101944", "0.7783246", "0.7730954", "0.772448", "0.77230436", "0.771907", "0.76918644", "0.7691556", "0.7623868", "0.7616961", "0.7612364", "0.75617343", "0.75564706", "0.75179577", "0.75137246", "0.7487003", "0.74716914", "0.74356943", "0.74096...
0.7496203
17
Add an endpoint to the network if it is a new endpoint
private Vertex<String> addLocation(String name) { if (!vertices.containsKey(name)) { Vertex<String> v = graph.insert(name); vertices.put(name, v); return v; } return vertices.get(name); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void addEndpoint(Endpoint endpoint)\r\n {\r\n getEndpoints().add(endpoint);\r\n }", "void addPeerEndpoint(PeerEndpoint peer);", "public void addEndpoint(String endpoint) {\n\t\tif (sessionMap.putIfAbsent(endpoint, new ArrayList<Session>()) != null)\n\t\t\tLOG.warn(\"Endpoint {} already exis...
[ "0.77045107", "0.723312", "0.7222055", "0.6982897", "0.68280566", "0.6623319", "0.6548999", "0.640628", "0.6263595", "0.6201629", "0.614872", "0.61321586", "0.61088496", "0.6098942", "0.608791", "0.60792565", "0.60312426", "0.59280765", "0.58457875", "0.5795251", "0.5745181",...
0.0
-1
Load network from data file.
public void loadNetwork(File data) throws FileNotFoundException { int numRoads = 0; // Read in from file fileName Scanner input = new Scanner(new FileInputStream(data)); while (input.hasNext()) { // Parse the line in to <end1> <end2> <road-distance> <road-name> String[] tokens = inp...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\n\tpublic boolean loadNetwork(){\n\t\tFile networkFile=new File(Properties.BUB_HOME, Properties.NETWORK_FILE);\n\t\ttry{\n\t\t\tif(!networkFile.exists())\n\t\t\t\treturn false;\n\t\t\tObjectInputStream stream=new ObjectInputStream(new FileInputStream(networkFile));\n\t\t\tnetwork=(Network) stream.readObj...
[ "0.7047525", "0.70343024", "0.701206", "0.666795", "0.6649772", "0.6453687", "0.6448195", "0.6353653", "0.63215476", "0.63040066", "0.62611985", "0.62139887", "0.6207478", "0.617168", "0.60848314", "0.6083532", "0.6070019", "0.60486114", "0.6036795", "0.6031775", "0.5964504",...
0.7477671
0
Get the from and to endpoints, adding if necessary
private boolean addRoad( String fromName, String toName, double roadDistance, String roadName ) { Vertex<String> from = addLocation(fromName); Vertex<String> to = addLocation(toName); // Add the road to the network - We assume all roads are two-way and // ignore if we've already added the road ...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public static void loadEndpoints(){\n\t\tStart.loadEndpoints();\n\t\t//add\t\t\n\t\t//e.g.: get(\"/my-endpoint\", (request, response) ->\t\tmyEndpointGet(request, response));\n\t\t//e.g.: post(\"/my-endpoint\", (request, response) ->\t\tmyEndpointPost(request, response));\n\t}", "Map<String, String> getEndpointM...
[ "0.5886724", "0.5757998", "0.57251954", "0.5721986", "0.5606578", "0.55043966", "0.54827636", "0.54781723", "0.54235375", "0.5418624", "0.53202945", "0.53126323", "0.52908176", "0.52304876", "0.51884115", "0.5173557", "0.51457316", "0.51378185", "0.5133539", "0.5127776", "0.5...
0.0
-1
Fetches pages. Delivers greatly summarised impressions of those pages to the crawler.
public interface Fetcher { FetchedPage fetch(URI pageUri) throws FetchingException; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void incPagesCrawled() {\n pagesCrawled++;\n }", "Collection<PageLink> crawl(CrawlerArgs args);", "public void crawlPage() {\n\t\tlogger.info(\"Starting to crawl \" + page.getLink());\n\t\tconsoleLogger.info(\"Starting to crawl \" + page.getLink());\n\n\t\tDocument document = fetchContent(page...
[ "0.59827656", "0.55267704", "0.5469996", "0.5464554", "0.5449969", "0.54482967", "0.54414624", "0.5390499", "0.5372284", "0.5350453", "0.5311134", "0.5307786", "0.5268598", "0.5220493", "0.52129936", "0.5206582", "0.51699764", "0.51551276", "0.51388574", "0.5108591", "0.50896...
0.0
-1
Stabilisce se la modifica della tipologia ha avuto successo
public static boolean createFile() throws IOException { String bytes = ""; byte[] write = bytes.getBytes(); //Salva i bytes della stringa nel byte array if(!fileName.exists()){ Path filePath = Paths.get(fileName.toString()); //Converte il percorso in stringa Files.write(f...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private static void privilegio(int tipo) {\n String nome;\r\n Scanner sc = new Scanner(System.in);\r\n if (tipo == 1)\r\n System.out.println(\"Qual o utilizador a quem quer dar privilégios de editor?\");\r\n else\r\n System.out.println(\"Qual o utilizador a quem qu...
[ "0.63751656", "0.6286331", "0.62574834", "0.62163085", "0.6159455", "0.6122496", "0.6068756", "0.60353696", "0.6002391", "0.5900883", "0.58819497", "0.5876016", "0.5845768", "0.5845768", "0.5774138", "0.5735693", "0.57287896", "0.5722365", "0.56929266", "0.5688401", "0.567108...
0.0
-1
Cria o banco de dados com um script SQL
public RepositorioPalestraScript(Context ctx) { // Criar utilizando um script SQL dbHelper = new SQLiteHelper(ctx, RepositorioPalestraScript.NOME_BANCO, RepositorioPalestraScript.VERSAO_BANCO, RepositorioPalestraScript.SCRIPT_DATABASE_CREATE, RepositorioPalestraScript.SCRIPT_DATABASE_DELETE); // abre o banco...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void createDB() {\n\t\ttry {\n\t\t\tBufferedReader br= new BufferedReader(new FileReader(\"db_schema.txt\"));\n\t\t\tString line= null;\n\t\t\tStringBuilder sb= new StringBuilder();\n\t\t\twhile ((line=br.readLine())!=null){\n\t\t\t\tsb.append(line);\n\t\t\t\tif(sb.length()>0 && sb.charAt(sb.length()-1)==';...
[ "0.6744755", "0.6449692", "0.61798257", "0.6154338", "0.61523306", "0.6117116", "0.6096901", "0.5968841", "0.5939357", "0.5939243", "0.588141", "0.58660847", "0.582596", "0.5802035", "0.57980263", "0.5772556", "0.57671875", "0.5759276", "0.5752097", "0.57512325", "0.57345605"...
0.63886344
2
Use EyePotentialAnalyzer to find potential of making eyes.
private void verifyEyePotential(boolean forBlackGroup, int expectedSizeOfGroup, float expectedPotential) { IGoGroup group = getBiggestGroup(forBlackGroup); int size = group.getNumStones(); assertEquals("Unexpected size of test group.", expectedSizeOfGroup, size); EyePotentialAnalyzer ...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "int getEyes();", "public int getEyes() {\n return eyes_;\n }", "public int getEyes() {\n return eyes_;\n }", "public Builder setEyes(int value) {\n bitField0_ |= 0x00000080;\n eyes_ = value;\n onChanged();\n return this;\n }", "boolean hasEyes();", "pr...
[ "0.58747905", "0.5754674", "0.57161736", "0.55945635", "0.5386386", "0.5308433", "0.50024176", "0.4972838", "0.49638227", "0.49087587", "0.48277438", "0.48138207", "0.4786618", "0.47793785", "0.47775826", "0.47674623", "0.47546914", "0.4748292", "0.4713343", "0.47040167", "0....
0.49369654
9
Method to assert the pivotal tracker features.project with the Mach2 features.project tables.
@Then("^Validate project table against pivotal project$") public void allInformationOfPivotalTrackerProjectsShouldBeDisplayedInProjectTableWidgetOfMach() { JsonPath jsonPath = resources.getResponse().jsonPath(); // assertEquals(jsonPath.get("name"), tableProjectValues.get("name")); // assertEq...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Test\n\tpublic void testMainScenario() {\n\t\tProject project = this.db.project().create(\"Test project\", 200, \"13-05-2014\", null);\n\n//Test #1\t\t\n\t\tassertEquals(project.getActivities().size(), 0);\n\t\tassertEquals(project.getEstPercentageCompletion(), 0);\n\t\tassertEquals(project.getEstHoursRemaining()...
[ "0.6202144", "0.6084493", "0.58789074", "0.5607782", "0.55786896", "0.54454976", "0.5382753", "0.5352526", "0.5311986", "0.5288375", "0.52813095", "0.5269525", "0.5266502", "0.52591753", "0.5251256", "0.5219594", "0.5216023", "0.5202607", "0.51442105", "0.5126661", "0.5125641...
0.70120996
0
GENLAST:event_jLabel3MouseClicked /GET AND SET
public String getIdProcuratore() { return idProcuratore; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private void jLabelImagen3MouseClicked(java.awt.event.MouseEvent evt) {//GEN-FIRST:event_jLabelImagen3MouseClicked\n // TODO add your handling code here:\n }", "private void jLabel97MouseClicked(java.awt.event.MouseEvent evt) {\n }", "@Override\r\n\t\tpublic void mouseClicked(MouseEvent e) {\n\t\t...
[ "0.77796304", "0.74359655", "0.7293272", "0.7288168", "0.71667", "0.6978751", "0.6966391", "0.67302454", "0.6695268", "0.6665258", "0.666097", "0.666097", "0.665101", "0.66123784", "0.66095537", "0.6608997", "0.6608997", "0.6602392", "0.6597043", "0.65934736", "0.65934736", ...
0.0
-1
End of variables declaration//GENEND:variables
public void recibirDatos(Sector sector) { this.txtNombreSector.setText(sector.getNombresector()); this.txtDescripcion.setText(sector.getDescripcionsector()); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void lavar() {\n\t\t// TODO Auto-generated method stub\n\t\t\n\t}", "public void mo38117a() {\n }", "@Override\r\n\tpublic void initVariables() {\n\t\t\r\n\t}", "private void assignment() {\n\n\t\t\t}", "private void kk12() {\n\n\t}", "public void gored() {\n\t\t\n\t}", "public void mo217...
[ "0.63617", "0.6280625", "0.61909467", "0.6095729", "0.6092663", "0.607037", "0.60523474", "0.605212", "0.6002499", "0.59878224", "0.5970378", "0.59679425", "0.5967425", "0.5965642", "0.596177", "0.5942055", "0.5908757", "0.589693", "0.589137", "0.5882839", "0.58795726", "0....
0.0
-1
Called when a new message is found.
@Override public void onFound(final Message message) { mNearbyDevicesArrayAdapter.add( DeviceMessage.fromNearbyMessage(message).getMessageBody()); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "void onNewMessage(String message);", "@Override\r\n\tpublic void onMessage(BmobMsg message) {\n\t\trefreshNewMsg(message);\r\n\t}", "public void onMessageNotFound(Message message) throws MessagingException;", "@Override\n\tpublic void onMessageReceived(Message m) {\n\t\thandle.addMessage(m);\n\t\trefreshMess...
[ "0.6941812", "0.67870456", "0.66561115", "0.6579087", "0.6429046", "0.6423037", "0.64059794", "0.63626945", "0.6341271", "0.63334", "0.63196003", "0.62942135", "0.6284951", "0.6264151", "0.6257922", "0.6237564", "0.6188571", "0.616273", "0.6105373", "0.61039525", "0.6088488",...
0.5846779
45
Called when a message is no longer detectable nearby.
@Override public void onLost(final Message message) { mNearbyDevicesArrayAdapter.remove( DeviceMessage.fromNearbyMessage(message).getMessageBody()); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public final void reportUncertain() {\n mHandler.post(() -> {\n synchronized (mLock) {\n ITimeZoneProviderManager manager = mManager;\n if (manager != null) {\n try {\n TimeZoneProviderEvent thisEvent =\n ...
[ "0.59895486", "0.5940291", "0.58952135", "0.5872525", "0.5798502", "0.57942545", "0.5766342", "0.5736653", "0.564763", "0.56285816", "0.56270796", "0.55817384", "0.5552097", "0.5533339", "0.5518919", "0.5517228", "0.55103123", "0.55078876", "0.5496746", "0.5478715", "0.544021...
0.71424484
0
If GoogleApiClient is connected, perform sub actions in response to user action. If it isn't connected, do nothing, and perform sub actions when it connects (see onConnected()).
@Override public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) { if (mGoogleApiClient != null && mGoogleApiClient.isConnected()) { if (isChecked) { subscribe(); } else { unsubscribe(...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private void requestConnection() {\n getGoogleApiClient().connect();\n }", "@Override\n public void onStart() {\n mGoogleApiClient.connect();\n super.onStart();\n }", "@Override\n protected void onStart() {\n super.onStart();\n if (!mGoogleApiClient.isConnected())...
[ "0.6441393", "0.6212144", "0.613673", "0.60974604", "0.6090902", "0.5993727", "0.596454", "0.5955517", "0.5948642", "0.5940004", "0.59025335", "0.58854777", "0.58854777", "0.5874491", "0.5866932", "0.58311415", "0.578997", "0.57727706", "0.57603306", "0.5699863", "0.5594973",...
0.49633294
70
If GoogleApiClient is connected, perform pub actions in response to user action. If it isn't connected, do nothing, and perform pub actions when it connects (see onConnected()).
@Override public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) { if (mGoogleApiClient != null && mGoogleApiClient.isConnected()) { if (isChecked) { publish(); } else { unpublish(); ...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private void requestConnection() {\n getGoogleApiClient().connect();\n }", "@Override\n public void onStart() {\n mGoogleApiClient.connect();\n super.onStart();\n }", "@Override\n protected void onStart() {\n super.onStart();\n if (!mGoogleApiClient.isConnected())...
[ "0.63107663", "0.6188559", "0.61451006", "0.6077759", "0.5998079", "0.59758306", "0.59465134", "0.58842874", "0.56607395", "0.562781", "0.5621587", "0.55863047", "0.55820674", "0.5524278", "0.5502265", "0.5498566", "0.54894817", "0.54894817", "0.5478921", "0.54467976", "0.541...
0.57169443
8
Subscribes to messages from nearby devices and updates the UI if the subscription either fails or TTLs.
private void subscribe() { Log.i(TAG, "Subscribing"); mNearbyDevicesArrayAdapter.clear(); SubscribeOptions options = new SubscribeOptions.Builder() .setStrategy(PUB_SUB_STRATEGY) .setCallback(new SubscribeCallback() { @Override ...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private void subscribe() {\r\n\r\n OnUpdatePlayerSubscription subscription = OnUpdatePlayerSubscription.builder().build();\r\n subscriptionWatcher = awsAppSyncClient.subscribe(subscription);\r\n subscriptionWatcher.execute(subCallback);\r\n }", "private void subscribeToSca...
[ "0.62836295", "0.60636973", "0.58375823", "0.55917674", "0.5568042", "0.5554001", "0.5539115", "0.5537354", "0.54846317", "0.5455965", "0.5446861", "0.53689605", "0.5342304", "0.5279353", "0.5278724", "0.5267454", "0.525798", "0.5255661", "0.52491426", "0.52418685", "0.524071...
0.80698746
0
Publishes a message to nearby devices and updates the UI if the publication either fails or TTLs.
private void publish() { Log.i(TAG, "Publishing"); PublishOptions options = new PublishOptions.Builder() .setStrategy(PUB_SUB_STRATEGY) .setCallback(new PublishCallback() { @Override public void onExpired() { ...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public int publishToAll(Message message);", "void publish(Message message, PubSubService pubSubService);", "private void publishMessage() throws InterruptedException {\n\t\tDatagramPacket[] packets = moveReceivedPacketsToArray();\r\n\t\t// get packet info\r\n\t\tDatagramPacket packet = packets[0];\r\n\t\tbyte[...
[ "0.6278254", "0.61314034", "0.60894984", "0.60711676", "0.6024091", "0.60028625", "0.59755903", "0.58017987", "0.5796261", "0.57931626", "0.57119185", "0.56471896", "0.5633575", "0.5571738", "0.55498785", "0.55419034", "0.55383027", "0.5534266", "0.5511485", "0.54738444", "0....
0.7598428
0
Stops subscribing to messages from nearby devices.
private void unsubscribe() { Log.i(TAG, "Unsubscribing."); Nearby.Messages.unsubscribe(mGoogleApiClient, mMessageListener); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public static void stop() {\n enableIncomingMessages(false);\n }", "private synchronized void stop()\n\t{\n\t\ttry\n\t\t{\n\t\t\tunregisterReceiver( mConnectivityReceiver );\n\t\t}\n\t\tcatch ( IllegalArgumentException e )\n\t\t{\n\t\t\te.printStackTrace();\n\n\t\t} // try/catch\n\n\t}", "public void stopR...
[ "0.6235016", "0.62090975", "0.6131625", "0.61048794", "0.61046916", "0.6100771", "0.5969797", "0.58645964", "0.58634096", "0.5860216", "0.58346254", "0.58291876", "0.5809855", "0.58071554", "0.57942027", "0.578951", "0.577963", "0.57795465", "0.57745594", "0.5772088", "0.5771...
0.6676334
0
Stops publishing message to nearby devices.
private void unpublish() { Log.i(TAG, "Unpublishing."); Nearby.Messages.unpublish(mGoogleApiClient, mPubMessage); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void stop_moving() {\n\t\tlogger.info(\"Human stop requested!\");\n\t\tPublisher move_base = new Publisher(\"/ariac_human/stop\", \"std_msgs/Bool\", bridge);\t\t\n\t\tmove_base.publish(new Bool(true)); \n\t}", "public static void stop() {\n enableIncomingMessages(false);\n }", "public void stopBroad...
[ "0.6255282", "0.60271406", "0.5978288", "0.5836855", "0.5726734", "0.5703639", "0.5660914", "0.56540024", "0.5640751", "0.5621938", "0.5620637", "0.56040597", "0.5599974", "0.5543235", "0.54943913", "0.54929477", "0.548179", "0.5466968", "0.5462426", "0.5457393", "0.54210186"...
0.61305374
1
Implementation note: We limit the number of threads that can submit a request in parallel, otherwise all those requests would end up overwhelming the mainthread, that puts them in a queue, among other things.
public void enqueueTransfer( @Code int code, TransferConfiguration configuration) throws InterruptedException { TransferRequest request = TransferRequest.create(code, configuration); mRequestSemaphore.acquire(); try { Optional<TransferManagerService> service = checkNotNul...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\n\tpublic int getMaxThreads() {\n\t\treturn 10;\n\t}", "private static boolean parallelTest() {\r\n\t\t// create a thread for each URL\r\n\t\tint threadPoolSize = urlList.size();\r\n\t\tlogger.finest(\"thread pool size = \" + threadPoolSize);\r\n\r\n\t\t//\r\n\t\t// open a background TCP connection\r\n...
[ "0.67123693", "0.6344897", "0.6209619", "0.61724836", "0.6106184", "0.57939756", "0.57791257", "0.5775474", "0.57517594", "0.5746861", "0.57284385", "0.57239324", "0.57231605", "0.568508", "0.56396955", "0.56287676", "0.56271416", "0.559146", "0.55663323", "0.5565497", "0.555...
0.0
-1
Convert Nondeterministik Word automata to Determenistic Word Automata
public LinearAcceptingNestedWordAutomaton transform(NondeterministicNestedWordAutomaton nnwa) { LinearAcceptingNestedWordAutomaton dnwa = new LinearAcceptingNestedWordAutomaton(); ArrayList<HierarchyState> nnwaHierarchyStates = nnwa.getP(); ArrayList<HierarchyState> nnwaHierarchyAcceptingStates...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public WordGenerator()\n {\n adjective1a = new ArrayList<String>();\n adjective1b = new ArrayList<String>();\n adjective1c = new ArrayList<String>();\n adjective2a = new ArrayList<String>();\n adjective2b = new ArrayList<String>();\n adjective2c = new ArrayList<String>();\n fillAdjectives();\...
[ "0.5948252", "0.57058144", "0.55080575", "0.5492231", "0.54700667", "0.5429392", "0.54178536", "0.53928643", "0.52782667", "0.52420264", "0.523942", "0.52113324", "0.52076054", "0.5145201", "0.51443666", "0.51436085", "0.5137012", "0.5106726", "0.5087719", "0.508416", "0.5078...
0.5882058
1
Inflate the layout for this fragment
@Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { mFragmentTitleDeedLoanBinding = FragmentTitleDeedLoanBinding.inflate(inflater, container, false); return mFragmentTitleDeedLoanBinding.getRoot(); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\n public View onCreateView(LayoutInflater inflater, ViewGroup container,\n Bundle savedInstanceState) {\n return inflater.inflate(R.layout.fragment_main_allinfo, container, false);\n }", "@Override\r\n\tpublic View onCreateView(LayoutInflater inflater, ViewGroup...
[ "0.6739604", "0.67235583", "0.6721706", "0.6698254", "0.6691869", "0.6687986", "0.66869223", "0.6684548", "0.66766286", "0.6674615", "0.66654444", "0.66654384", "0.6664403", "0.66596216", "0.6653321", "0.6647136", "0.66423255", "0.66388357", "0.6637491", "0.6634193", "0.66251...
0.0
-1
public native void setCallBackToNative(JniListener listener);
public native int getProcess();
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public native void initNativeCallback();", "public interface BridgeListener {\n\n void getJsInvokeNativeResult(Map<String, String> resultMap);\n}", "public interface CallbackListener {\n\n public abstract void callBack(String returnCode, Object result);\n\n}", "public native void addEventListener(Strin...
[ "0.7550687", "0.66369116", "0.66273034", "0.65705365", "0.64919084", "0.6448322", "0.64284563", "0.63308847", "0.63176847", "0.6299815", "0.62953323", "0.6150969", "0.6141606", "0.6137836", "0.6117262", "0.6086527", "0.6045921", "0.59771687", "0.5965145", "0.5952673", "0.5936...
0.0
-1
Instantiates a new Job preference.
public JobPreference(Integer id) { super.id=id; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public JobBuilder() {\r\n job = new Job();\r\n }", "public AutomaticJob() {\r\n \r\n }", "public Job() {\n }", "public Job() {\n }", "protected JobConf createJobConf() \n {\n return new JobConf();\n }", "public ConversionJob createJob(ConfigProperties cprop){\n\t\tConversio...
[ "0.6354732", "0.61519164", "0.61014944", "0.61014944", "0.6044515", "0.5997477", "0.5991887", "0.5954596", "0.5916331", "0.5894325", "0.58203316", "0.5739756", "0.57333684", "0.5695284", "0.56444", "0.56220955", "0.5597758", "0.5556371", "0.5502471", "0.5473846", "0.53983617"...
0.7119217
0
Construct King of the specified color.
public King(Color color) { super(color, RANK); castling = false; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public static void castleKingSide(char color) {\n String colorString = Character.toString(color);\n\n String king = \"K\" + colorString;\n String rook = \"R\" + colorString;\n\n int rank = color == 'w' ? 0 : 7;\n\n move(king, 4, rank, 6, rank);\n move(rook, 7, rank, 5, ran...
[ "0.6662668", "0.64959276", "0.64765126", "0.633184", "0.6311318", "0.62923205", "0.6272875", "0.6263072", "0.6214836", "0.6123859", "0.6064413", "0.6058891", "0.58748716", "0.5850086", "0.5782065", "0.5752363", "0.5742965", "0.56990296", "0.5683402", "0.5679967", "0.5653073",...
0.77927864
0
Check whether castle (long or short) that was most recently inspected is currently allowed.
public boolean getCastling() { return this.castling; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\n public boolean isValid() {\n return (27 - Inventory.getAll().length <= Inventory.find(\"Soft clay\").length)\n || (Inventory.find(\"Soft clay\").length < 1 || Inventory\n .find(\"Astral rune\").length < 1)\n && !Banking.isBankScreenOpen()\n...
[ "0.5750266", "0.5532411", "0.53819335", "0.5371478", "0.53574437", "0.5340737", "0.53394926", "0.5321141", "0.5298979", "0.5221138", "0.5215806", "0.5211697", "0.52102447", "0.52078146", "0.51961374", "0.51924783", "0.51702493", "0.51690805", "0.5142603", "0.5139556", "0.5130...
0.0
-1
Reset indicator for whether can castle.
public void resetCastling() { this.castling = false; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void reset() {\n this.inhibited = false;\n this.forced = false;\n }", "public void resetCarry() {\n\t\tset((byte) (get() & ~(1 << 4)));\n\t}", "protected void reset(){\n inited = false;\n }", "public void setOff(){\n state = false;\n //System.out.println(\"El r...
[ "0.635816", "0.6336165", "0.6207486", "0.6188199", "0.6106514", "0.6098095", "0.6080186", "0.60160136", "0.6010424", "0.59466106", "0.5918341", "0.59000796", "0.58970636", "0.589121", "0.58871096", "0.5877631", "0.5848937", "0.58340824", "0.58165", "0.5808997", "0.5783988", ...
0.5408033
85
TODO need better error mapping
@Override public void onFailure(final Throwable t) { final PoyntError error = new PoyntError(PoyntError.CHECK_CARD_FAILURE); error.setThrowable(t); try { listener.onResponse(transaction, "", error); }...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private void correctError()\r\n\t{\r\n\t\t\r\n\t}", "java.lang.String getError();", "java.lang.String getError();", "java.lang.String getError();", "abstract void error(String error);", "@Override\n public void visitErrorNode(ErrorNode node) {\n\n }", "@Override\n\tpublic void setWrongError() {\n...
[ "0.6703367", "0.65186447", "0.65186447", "0.65186447", "0.64600277", "0.6432866", "0.6415474", "0.6371929", "0.63717926", "0.6329687", "0.6297717", "0.62760216", "0.62574446", "0.6256946", "0.6247701", "0.6215194", "0.6211002", "0.6206051", "0.6199306", "0.6197895", "0.616186...
0.0
-1
nothing to update for debit
@Override public void onResponse(final Transaction transaction, final String requestId, final PoyntError poyntError) throws RemoteException { if (Boolean.TRUE.equals(transaction.getFundingSource().isDebit())) { listener.onResponse(transaction, requestId, null); ...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\n\tpublic void deposit() {\n\t\t\n\t}", "private void makeDeposit() {\n\t\t\r\n\t}", "private void makeWithdraw() {\n\t\t\r\n\t}", "@Override\n\tpublic void debit() {\n\t\tSystem.out.println(\"hsbc debit\");\n\t}", "@Override\r\n\tpublic void deposit() {\n\t\tSystem.out.println(\"This Deposit val...
[ "0.6627483", "0.65452135", "0.65063894", "0.64031434", "0.6387207", "0.6230513", "0.611743", "0.6058446", "0.6049979", "0.5997231", "0.5970044", "0.59680223", "0.59532464", "0.59294844", "0.59263307", "0.5918921", "0.5911168", "0.58792055", "0.5849521", "0.5825027", "0.580897...
0.0
-1
Record EMV data from Card after completing a transaction
public void captureEMVData( final String transactionId, final EMVData emvData, final String requestId) throws RemoteException { Log.d(TAG, "captureEMVData: " + transactionId); // store the emvData in cache in case if we receive emvDataCache.put(transactionId,...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\r\n\tpublic void pushDataToEcc() {\n\t\t\r\n\t}", "@Override\n\tpublic void saveData()\n\t{\n ssaMain.d1.pin = ssaMain.tmp_pin1;\n ssaMain.d1.balance = ssaMain.tmp_balance1;\n System.out.println(\"Your account has been established successfully.\");\n\t}", "public Receipt recor...
[ "0.6325304", "0.5904578", "0.5878462", "0.582457", "0.5757186", "0.5753384", "0.5702138", "0.5701409", "0.55738217", "0.5559669", "0.5470938", "0.5430258", "0.53620243", "0.5361239", "0.53173447", "0.53030354", "0.52998775", "0.5288915", "0.5267351", "0.5264052", "0.52411073"...
0.5916513
1
check if the emvData has been processed or not
@Override public void run() { final EMVData emvData1 = emvDataCache.get(transactionId); if (emvData1 != null) { emvDataCache.remove(transactionId); // get transaction from poynt service first try { ...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public boolean isProcessed();", "public boolean isProcessed();", "public boolean isProcessed();", "public boolean isProcessed();", "public boolean isProcessed();", "public boolean isProcessed();", "private void verificaData() {\n\t\t\n\t}", "public boolean isValid()\r\n {\r\n \treturn t...
[ "0.6385455", "0.6385455", "0.6385455", "0.6385455", "0.6385455", "0.6385455", "0.63099265", "0.6127785", "0.6118674", "0.6023294", "0.5995493", "0.58496594", "0.5814059", "0.5797743", "0.5780954", "0.57776076", "0.5756365", "0.5755695", "0.57536274", "0.56938136", "0.56938136...
0.5608307
32
update in converge let's create an AdjustTransactionRequest so we don't need to create multiple variations of this method
@Override public void onResponse(final Transaction transaction, final String requestId, final PoyntError poyntError) throws RemoteException { AdjustTransactionRequest adjustTransactionRequest = new AdjustTransactionRequest(); ad...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void updateTransaction(Transaction trans);", "@Override\n\tpublic void updateTransaction(Transaction transaction) {\n\n\t}", "@Override\n\tpublic void updateTransaction(Transaction transaction) {\n\t\t\n\t}", "private void updateTransaction() {\n LogUtils.logEnterFunction(Tag);\n\n Strin...
[ "0.67457306", "0.63981205", "0.6397402", "0.60404927", "0.58702433", "0.5805205", "0.5774014", "0.57360286", "0.56614447", "0.5629885", "0.5614149", "0.557925", "0.5542796", "0.5497326", "0.54872507", "0.5467033", "0.54520464", "0.54341", "0.54321283", "0.5412232", "0.5411013...
0.5635656
9
update action to VOID so when we return the voided transaction object it has correct status
@Override public void onResponse(final Transaction transaction, final String requestId, final PoyntError poyntError) throws RemoteException { transaction.setAction(TransactionAction.VOID); final ElavonTransactionRequest request = convergeMapper.getTra...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "BrainTreeVoidResult voidTransaction(VoidRequest voidRequest);", "public void transact() {\n\t\truPay.transact();\n\n\t}", "void confirmTrans(ITransaction trans);", "TransactionResponseDTO cancelTransaction(TransactionRequestDTO transactionRequestDTO);", "@Override\n public int cancelTransaction() {\n ...
[ "0.6252615", "0.61650866", "0.6147156", "0.6107613", "0.6093064", "0.5944487", "0.593766", "0.5925889", "0.5857692", "0.58041024", "0.57951635", "0.5749804", "0.5674267", "0.56742495", "0.56533676", "0.5634601", "0.5593433", "0.55828583", "0.55670774", "0.55461025", "0.553192...
0.6064988
5
failed to obtain transaction
@Override public void onLoginRequired() throws RemoteException { final PoyntError error = new PoyntError(PoyntError.CODE_API_ERROR); listener.onResponse(transaction, requestId, error); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void beginTransaction() throws Exception;", "Transaction createTransaction();", "public void checkForTransaction() throws SystemException;", "Transaction getCurrentTransaction();", "@Override\n public void rollbackTx() {\n \n }", "Transaction beginTx();", "void beginTransaction();", "prot...
[ "0.69794255", "0.6841578", "0.68121207", "0.67970437", "0.679184", "0.67401165", "0.664341", "0.66322297", "0.660827", "0.6585819", "0.6579865", "0.6411756", "0.64102983", "0.6393289", "0.63686943", "0.6359416", "0.63486886", "0.62852556", "0.62715083", "0.626556", "0.6256488...
0.0
-1
failed to obtain transaction
@Override public void onLaunchActivity(final Intent intent, final String s) throws RemoteException { final PoyntError error = new PoyntError(PoyntError.CHECK_CARD_FAILURE); listener.onResponse(transaction, requestId, error); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void beginTransaction() throws Exception;", "Transaction createTransaction();", "public void checkForTransaction() throws SystemException;", "Transaction getCurrentTransaction();", "@Override\n public void rollbackTx() {\n \n }", "Transaction beginTx();", "void beginTransaction();", "prot...
[ "0.6979127", "0.6841061", "0.68118656", "0.6796053", "0.67918664", "0.6739946", "0.66428477", "0.6631274", "0.6607747", "0.65854585", "0.657963", "0.6411649", "0.6410055", "0.6393188", "0.63683355", "0.6358874", "0.6348122", "0.62844914", "0.6271201", "0.6265087", "0.62555534...
0.0
-1
TODO need better error mapping
@Override public void onFailure(final Throwable t) { final PoyntError error = new PoyntError(PoyntError.CHECK_CARD_FAILURE); error.setThrowable(t); try { listener.onResponse(transaction, "", error); } catch (final RemoteExce...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private void correctError()\r\n\t{\r\n\t\t\r\n\t}", "java.lang.String getError();", "java.lang.String getError();", "java.lang.String getError();", "abstract void error(String error);", "@Override\n public void visitErrorNode(ErrorNode node) {\n\n }", "@Override\n\tpublic void setWrongError() {\n...
[ "0.6703367", "0.65186447", "0.65186447", "0.65186447", "0.64600277", "0.6432866", "0.6415474", "0.6371929", "0.63717926", "0.6329687", "0.6297717", "0.62760216", "0.62574446", "0.6256946", "0.6247701", "0.6215194", "0.6211002", "0.6206051", "0.6199306", "0.6197895", "0.616186...
0.0
-1
TODO need better error mapping
@Override public void onFailure(final Throwable t) { final PoyntError error = new PoyntError(PoyntError.CHECK_CARD_FAILURE); error.setThrowable(t); try { listener.onResponse(balanceInquiry, error); } catch (final RemoteExcep...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private void correctError()\r\n\t{\r\n\t\t\r\n\t}", "java.lang.String getError();", "java.lang.String getError();", "java.lang.String getError();", "abstract void error(String error);", "@Override\n public void visitErrorNode(ErrorNode node) {\n\n }", "@Override\n\tpublic void setWrongError() {\n...
[ "0.6703367", "0.65186447", "0.65186447", "0.65186447", "0.64600277", "0.6432866", "0.6415474", "0.6371929", "0.63717926", "0.6329687", "0.6297717", "0.62760216", "0.62574446", "0.6256946", "0.6247701", "0.6215194", "0.6211002", "0.6206051", "0.6199306", "0.6197895", "0.616186...
0.0
-1
Processes requests for both HTTP GET and POST methods.
@Override protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { //response.setContentType("text/html;charset=UTF-8"); response.setContentType("application/json"); response.setCharacterEncoding("UTF-8"); Date...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\n protected void doPost(final HttpServletRequest req, final HttpServletResponse resp) throws ServletException, IOException {\n final String method = req.getParameter(METHOD);\n if (GET.equals(method)) {\n doGet(req, resp);\n } else {\n resp.setStatus(HttpServletResponse.SC_METHOD_NOT_...
[ "0.7004024", "0.66585696", "0.66031146", "0.6510023", "0.6447109", "0.64421695", "0.64405906", "0.64321136", "0.6428049", "0.6424289", "0.6424289", "0.6419742", "0.6419742", "0.6419742", "0.6418235", "0.64143145", "0.64143145", "0.6400266", "0.63939095", "0.63939095", "0.6392...
0.0
-1
Download complete. Depending on your app, you could enable the ML feature, or switch from the local model to the remote model, etc. Toast.makeText(MainActivity2.this, dis+"Succsessful", Toast.LENGTH_SHORT).show();
@Override public void onSuccess(Void v) { }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private void downloadFinished() {\n downloadFinished = true;\n editor.getProgressBar().setVisible(false);\n editor.getProgressBarLabel().setVisible(false);\n editor.setOkEnabled(true);\n editor.getProgressBar().setValue(editor.getProgressBar().getMaximum());\n }", "@Override...
[ "0.68711454", "0.68526196", "0.6555579", "0.65233034", "0.65218246", "0.6469138", "0.6420111", "0.62886405", "0.62629175", "0.6219293", "0.62081665", "0.62051445", "0.6171876", "0.6152064", "0.61392707", "0.61314875", "0.61233926", "0.61043936", "0.6103326", "0.6080351", "0.6...
0.0
-1
Toast.makeText(this, "inside load", Toast.LENGTH_SHORT).show();
public void loadModel(){ remoteModel = new FirebaseCustomRemoteModel.Builder(dis).build(); FirebaseModelManager.getInstance().getLatestModelFile(remoteModel) .addOnCompleteListener(new OnCompleteListener<File>() { @Override public void onComplete(@...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void loadToast(){\n Toast.makeText(getApplicationContext(), \"Could not find city\", Toast.LENGTH_SHORT).show();\n }", "@Override\n public void showLoading() {\n Log.i(Tag, \"showLoading\");\n }", "public void run() {\n Toast.makeText(context, toast, Toast.LENGTH_SH...
[ "0.7822122", "0.7138399", "0.70191234", "0.6828706", "0.68089056", "0.6760257", "0.6736069", "0.6733055", "0.67199856", "0.6707618", "0.67017645", "0.6643738", "0.66405153", "0.6627788", "0.6627322", "0.6627322", "0.6596639", "0.6582979", "0.65667146", "0.65507096", "0.654099...
0.0
-1
Toast.makeText(this, "getting image input..", Toast.LENGTH_SHORT).show();
public void gettingImageInput(){ Bitmap bm = getYourInputImage(); int z; if(res==2) { z=50; } else { z=224; } Bitmap bitmap = Bitmap.createScaledBitmap(bm, z, z, true); input = ByteBuffer.allocateDirect(z * z * 3 * 4).order(ByteOrder.nativeOrder()); for (int y = 0...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\n public void onFailure(@NonNull Exception e) {\n e.printStackTrace();\n Toast.makeText(context, \"Image process failed\", Toast.LENGTH_SHORT).show();\n }", ...
[ "0.7179849", "0.6547097", "0.65217197", "0.6456409", "0.6385701", "0.63625586", "0.6332812", "0.626245", "0.62458223", "0.6201865", "0.6194275", "0.6191993", "0.6177223", "0.6175157", "0.617195", "0.61646765", "0.6161543", "0.61412567", "0.61391824", "0.6129627", "0.61253643"...
0.56880933
91
if on run at set speed, off turn off the motor
@Override public void run(boolean on, Telemetry telemetry) { if (on) { dcMotor.setTargetPosition(onLocation); dcMotor.setPower(maxSpeed); } else { dcMotor.setTargetPosition(offLocation); dcMotor.setPower(maxSpeed); } telemetry.addData("...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "void driveStop() {\n flMotor.setPower(0);\n frMotor.setPower(0);\n blMotor.setPower(0);\n brMotor.setPower(0);\n }", "public void down() {\n\t\tmotor1.set( -Constants.CLAW_MOTOR_SPEED );\n\t\t}", "@Override\n public final void stopMotor() {\n stop();\n }", "public ...
[ "0.7554906", "0.73337215", "0.7240736", "0.72302943", "0.710668", "0.7088708", "0.7043313", "0.70321316", "0.6945368", "0.6935459", "0.6922704", "0.6917581", "0.6908051", "0.6890453", "0.6842115", "0.68285525", "0.6819049", "0.67931914", "0.6778786", "0.67774343", "0.6776608"...
0.64977545
39
/ Implementation of INewsDataService interface
@Override public int getNumberOfCategories() { Cursor query = this.writableDatabase.rawQuery("SELECT COUNT(*) FROM " + TABLE_CATEGORIES, null); query.moveToFirst(); int count = query.getInt(0); query.close(); return count; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public interface DataDictionaryService {\n}", "public interface IDataSource {\r\n\t\r\n\t/**\r\n\t * Method to check if there are any stored credential in the data store for the user.\r\n\t * @param userId\r\n\t * @return\r\n\t * @throws IOException\r\n\t */\r\n\tabstract public boolean checkAuth(String userId) ...
[ "0.6230748", "0.61377823", "0.5980652", "0.5923754", "0.5903091", "0.58659744", "0.58534306", "0.58380497", "0.58334666", "0.579394", "0.57921815", "0.5745892", "0.57419026", "0.5724302", "0.5709051", "0.5703914", "0.56759167", "0.56613207", "0.565962", "0.56571877", "0.56286...
0.0
-1
get all lastUpdate times
@Override public List<NewsFeed> getAllOutdatedFeeds(IConfigurationManager configurationManager) { Cursor catQuery = this.writableDatabase.query(TABLE_CATEGORIES, new String[] { CATEGORIES_ID, CATEGORIES_LASTUPDATE, CATEGORIES_INTERVAL }, null, null, null, null, null); Map<Long, Boole...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public long getTimeOfLastValuesChanged();", "public long getLastUpdateTs() {\n return lastUpdateTs;\n }", "long getTsUpdate();", "long getLastUpdatedTime();", "@SuppressWarnings(\"unused\")\n Date getLastUpdateTime();", "@Override\n\tpublic List getTime() {\n\t\treturn timeInitDao.getTime();\n...
[ "0.7098193", "0.7032531", "0.7028551", "0.6731628", "0.66985387", "0.6530208", "0.64955604", "0.6457298", "0.6457298", "0.6449613", "0.6383485", "0.638007", "0.63656276", "0.6353991", "0.63430053", "0.63333327", "0.63132143", "0.63018376", "0.6300467", "0.6296257", "0.6295604...
0.0
-1
/ Implementation of the IRssStorageService interface
@Override public void storeFeed(int feedId, String feedName) { synchronized (synchronizer) { ContentValues feedValues = new ContentValues(1); feedValues.put(FEEDS_NAME, feedName); this.writableDatabase.update(TABLE_FEEDS, feedValues, FEEDS_ID + "=" + feedId, null); ...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public interface StorageService {\n\t\n\t/**\n\t * Storage.\n\t *\n\t * @param storage the storage\n\t * @return the storage state\n\t */\n\tpublic StorageState storage(ArrayList<StorageVO> storage);\n\t\n}", "public interface StorageService {\n\n /**\n * Return the ReplicatSet configuration (list of serv...
[ "0.74224365", "0.7356732", "0.7318203", "0.72917455", "0.7267412", "0.7207811", "0.71176416", "0.71111923", "0.7042514", "0.69068307", "0.68654525", "0.68590057", "0.67888945", "0.67848855", "0.669503", "0.668053", "0.66785055", "0.6665016", "0.66646385", "0.6594588", "0.6579...
0.0
-1
/ Private helper methods Private method to check if a existing news changed by checking the dates
private boolean newsDateHasChanged(String guid, Date newDate) { String[] whereArgs = { guid }; Cursor query = this.writableDatabase.query(TABLE_NEWS, new String[] { NEWS_DATE }, NEWS_GUID + "=?", whereArgs, null, null, null); if (query.getCount() > 0) { query.moveToFi...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private boolean isSeedsInfoUpdated(String tDate){\n \treturn mSharedPref.getBoolean(tDate,false); \t\n }", "public static boolean isRevdate(java.sql.Date date1,int CUST_ID,int MOVIE_ID) {\n SimpleDateFormat formatter1 = new SimpleDateFormat(\"yyyy-MM-dd\");\n java.util.Date date11 = null;\n try...
[ "0.621475", "0.6096189", "0.6012235", "0.6008941", "0.6002464", "0.5988424", "0.5873475", "0.5872387", "0.58715063", "0.5866134", "0.577534", "0.56960446", "0.568611", "0.56718504", "0.56589705", "0.5646388", "0.56140137", "0.5587275", "0.5586432", "0.5580081", "0.5568274", ...
0.77184135
0
A helper method to keep track of the last news item's date of an category defined by the limit
private void storeLastCategoryItemDate() { Cursor categories = this.writableDatabase.query(TABLE_CATEGORIES, new String[] { CATEGORIES_ID }, null, null, null, null, null); int count = ApplicationConstants.NEWSCATEGORY_LIMIT; if (categories.getCount() > 0) { while (ca...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public List<Comment> getLastCommentsByCategory(String category);", "public static List<Category> getRecentlyUsedCategories(Context context, int maxCategories) {\r\n DbManager dbManager = new DbManager(context);\r\n SQLiteDatabase db = dbManager.getWritableDatabase();\r\n\r\n String query = S...
[ "0.5612641", "0.55895734", "0.5496818", "0.5441798", "0.5331427", "0.523904", "0.5206968", "0.51192373", "0.50951076", "0.5090349", "0.5068684", "0.50654685", "0.50646764", "0.5054403", "0.50484204", "0.5035141", "0.5016318", "0.49403936", "0.4886774", "0.4866876", "0.4864751...
0.7837206
0
Creates a new helper instance with a given application context
public NewsDBHelper(Context applicationContext, IConfigurationManager configurationManager) { super(applicationContext, configurationManager.getConfiguration().getNewsDatabaseName(), null, configurationManager.getConfiguration().getNewsDatabaseVersion()); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public static HelperCommon getInstance(final Context context) {\n if (sHelper == null) {\n // Always pass in the Application Context\n sHelper = new HelperCommon(context.getApplicationContext());\n }\n return sHelper;\n }", "Context createContext();", "Context crea...
[ "0.6557713", "0.65169466", "0.65169466", "0.6489608", "0.6203809", "0.6203809", "0.60992265", "0.5974324", "0.5972427", "0.58484054", "0.5831768", "0.581384", "0.57938844", "0.57885826", "0.57706237", "0.5768545", "0.5759409", "0.56711066", "0.56598115", "0.56565243", "0.5649...
0.0
-1
TODO: This is only valid for the first version! We have to implement "real" update mechanisms
@Override public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) { }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\n\t\tpublic void update() {\n\n\t\t}", "@Override\n\t\tpublic void update() {\n\n\t\t}", "@Override\n\t\tpublic void update() {\n\n\t\t}", "@Override\r\n\t\tpublic void update() {\n\t\t\t\r\n\t\t}", "@Override\r\n\t\tpublic void update() {\n\t\t\t\r\n\t\t}", "@Override\n\tpublic void update() {...
[ "0.7378769", "0.7378769", "0.7378769", "0.70894057", "0.70894057", "0.70684385", "0.70684385", "0.69725186", "0.69652486", "0.69652486", "0.69652486", "0.69652486", "0.69652486", "0.69365865", "0.6932922", "0.6932922", "0.6932922", "0.6932922", "0.6932922", "0.6932922", "0.69...
0.0
-1
Clears the database: Recreates all tables
public void clearDatabase(SQLiteDatabase db) { dropTables(db); createTables(db); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private static void clearDB()\n {\n if(getStatus().equals(\"no database\"))\n return;\n\n clearTable(\"myRooms\");\n clearTable(\"myReservations\");\n }", "public void clearDatabase(){\n\t\tem.createNativeQuery(\"DELETE FROM CAMINHO\").executeUpdate();\r\n\t\tem.createNativeQuery(\"DEL...
[ "0.79079014", "0.78851026", "0.78176945", "0.7785335", "0.776057", "0.77201885", "0.7701448", "0.7585905", "0.75295883", "0.7438932", "0.7412938", "0.7391783", "0.738241", "0.72920376", "0.7266497", "0.7257492", "0.7252354", "0.7212497", "0.7191711", "0.714248", "0.7135935", ...
0.7970668
0
Create and fill the needed tables for the news module
private void createTables(SQLiteDatabase db) { db.execSQL("CREATE TABLE IF NOT EXISTS " + TABLE_CATEGORIES + " (" + CATEGORIES_ID + " integer primary key autoincrement, " + CATEGORIES_NAME + " text not null, " + CATEGORIES_ICON + " blob, " + CATEGORIES_INTERVAL + " in...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private void createTables() {\n\n\t\tAutoDao.createTable(db, true);\n\t\tAutoKepDao.createTable(db, true);\n\t\tMunkaDao.createTable(db, true);\n\t\tMunkaEszkozDao.createTable(db, true);\n\t\tMunkaKepDao.createTable(db, true);\n\t\tMunkaTipusDao.createTable(db, true);\n\t\tPartnerDao.createTable(db, true);\n\t\tPa...
[ "0.69226956", "0.66481537", "0.6604273", "0.65891725", "0.65733594", "0.6543767", "0.65019315", "0.64025545", "0.6389233", "0.6345603", "0.63213813", "0.63009167", "0.62875086", "0.62627333", "0.6240326", "0.6214268", "0.61307806", "0.612952", "0.60782325", "0.6072396", "0.60...
0.61219645
18
Drop the news tables
private void dropTables(SQLiteDatabase db) { db.execSQL("DROP TABLE IF EXISTS " + TABLE_NEWS); db.execSQL("DROP TABLE IF EXISTS " + TABLE_FEEDS); db.execSQL("DROP TABLE IF EXISTS " + TABLE_CATEGORIES); db.execSQL("DROP TABLE IF EXISTS " + TABLE_IMAGES); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "void dropAllTables();", "public void DropTables() {\n\t\ttry {\n\t\t\tDesinstall_DBMS_MetaData();\n\t\t} catch (Exception e) {\n\t\t\te.printStackTrace();\n\t\t}\n\t}", "public void removeLifeloggingTables() throws SQLException {\n\n\t\tString sqlCommand1 = \"DROP TABLE IF EXISTS minute\";\n\t\tString sqlComma...
[ "0.7241311", "0.7163452", "0.7022426", "0.7005273", "0.69773823", "0.6968994", "0.695441", "0.67858356", "0.6681128", "0.66653734", "0.66326666", "0.66055495", "0.6600958", "0.6587505", "0.6573295", "0.6535567", "0.65221685", "0.6518529", "0.6502231", "0.6441295", "0.6417213"...
0.70405257
2
Validates string object and throws InvalidException
public interface Validate { public abstract void validate(String s) throws InvalidException; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "String validate(String toValidate);", "public static void isValid(String str) throws IllegalArgumentException {\n\t//remove leading and trailing whitespace\n\tstr = str.trim();\n\t\n\t//null & empty validation\n\tif(\"\".equals(str)) throw new IllegalArgumentException(\"Invalid String\");\n }", "public void...
[ "0.6809616", "0.67604613", "0.67517954", "0.67026776", "0.6574477", "0.6555891", "0.654088", "0.63852316", "0.6384624", "0.632732", "0.6212066", "0.61834997", "0.60434115", "0.6022862", "0.59991467", "0.5974142", "0.5974108", "0.5945519", "0.59445095", "0.5916874", "0.5904632...
0.6106773
12
TODO Autogenerated method stub
@Override protected void onCreate(Bundle savedInstanceState) { FullScreencall(); super.onCreate(savedInstanceState); setContentView(R.layout.game); Rel_main_game = (RelativeLayout) findViewById(R.id.main_game_rl); //Rel_main_game1 = (RelativeLayout) findViewById(R.id.main_game_rl); DisplayMetrics dm = new ...
{ "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 onClick(View v) { MainMusic.setVolume(0,0); }
{ "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.66708666", "0.65675074", "0.65229905", "0.6481001", "0.64770633", "0.64584893", "0.6413091", "0.63764185", "0.6275735", "0.62541914", "0.6236919", "0.6223816", "0.62017626", "0.61944294", "0.61944294", "0.61920846", "0.61867654", "0.6173323", "0.61328775", "0.61276996", "0...
0.0
-1
TODO Autogenerated method stub
@Override public void onClick(View v) { Intent sharingIntent = new Intent(android.content.Intent.ACTION_SEND); sharingIntent.setType("text/plain"); String shareBody = "I scored "+score+" points!How much can you score?Install the game Space Prowler from the Play Store now!"; sharingIntent.putExtra(android.cont...
{ "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
protected void i_get_coin() { get_coins++; score+=200; s(); txt.setText("Score: " + score+" HighScore: " + hscore); MediaPlayer mp = MediaPlayer.create(Game.this, R.raw.coin); mp.start(); if (get_coins==50){ i_win(); } }
{ "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
private void i_win() { if (MainMusic.isPlaying()) MainMusic.stop(); MainMusic = MediaPlayer.create(Game.this, R.raw.win); MainMusic.start(); game_panel.Pause_game=true; WinDialog.setVisibility(View.VISIBLE); }
{ "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
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { HttpSession s=request.getSession(); JSONArray ja = new JSONArray(); month = request.getParameter("month"); year = request.getParameter("year"); s.setAttribute("month", month); ...
{ "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.66708666", "0.65675074", "0.65229905", "0.6481001", "0.64770633", "0.64584893", "0.6413091", "0.63764185", "0.6275735", "0.62541914", "0.6236919", "0.6223816", "0.62017626", "0.61944294", "0.61944294", "0.61920846", "0.61867654", "0.6173323", "0.61328775", "0.61276996", "0...
0.0
-1
Creates new form SelectContests
public SelectContests() { initComponents(); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\n public void onClick(View v) {\n ContestBDD contestBDD = new ContestBDD(getContext());\n contest = new Contest(rb1.getText().toString(), Et1.getText().toString(),\n rb2.getText().toString(), Et2.getText().toString(),\n Et3.getText()....
[ "0.58612597", "0.5750265", "0.5605611", "0.55924195", "0.5539413", "0.5417406", "0.53783435", "0.5370134", "0.5350769", "0.5306745", "0.5300949", "0.5296483", "0.5252593", "0.5222968", "0.52208686", "0.5210201", "0.517465", "0.5128938", "0.5087176", "0.5084228", "0.50754774",...
0.7125779
0
This method is called from within the constructor to initialize the form. WARNING: Do NOT modify this code. The content of this method is always regenerated by the Form Editor.
@SuppressWarnings("unchecked") // <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents private void initComponents() { jCheckBox1 = new javax.swing.JCheckBox(); jCheckBox2 = new javax.swing.JCheckBox(); jButton1 = new javax.swing.JButton(); jChe...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public Form() {\n initComponents();\n }", "public MainForm() {\n initComponents();\n }", "public MainForm() {\n initComponents();\n }", "public MainForm() {\n initComponents();\n }", "public frmRectangulo() {\n initComponents();\n }", "public form() {\n ...
[ "0.73197734", "0.72914416", "0.72914416", "0.72914416", "0.72862023", "0.72487676", "0.7213741", "0.7207628", "0.7196503", "0.7190263", "0.71850693", "0.71594703", "0.7147939", "0.7093137", "0.70808756", "0.70566356", "0.6987119", "0.69778043", "0.6955563", "0.6953879", "0.69...
0.0
-1
2 GET, SET METHODS
public DanhSachThanhVien getObjDSThanhVien() { return objDSThanhVien; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Test\n\tpublic void get_test()\n\t{\n\t\tb.set(1,2,'x');\n\t\tassertEquals(b.get(1,2),'x');\n\t}", "protected abstract Set method_1559();", "public void get() {\n }", "@Override\n public void get() {}", "public T set(T obj);", "public String get();", "public Result get(Get get) throws IOException;...
[ "0.618534", "0.60726875", "0.6040834", "0.5969196", "0.5886623", "0.57477915", "0.5729078", "0.56727403", "0.5635843", "0.5629048", "0.5629048", "0.5629048", "0.5629048", "0.5614937", "0.560934", "0.55981576", "0.55842096", "0.55842096", "0.5567084", "0.5557492", "0.5557223",...
0.0
-1
4. INPUT, OUTPUT METHODS
public void xuat() { }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public abstract Object getInput ();", "public abstract void input();", "public abstract Object getOutput ();", "@Override\n\tpublic void input() {\n\t\t\n\t}", "protected abstract void getInput();", "INPUT createINPUT();", "Input getObjetivo();", "com.indosat.eai.catalist.standardInputOutput.DummyInp...
[ "0.7086824", "0.7047157", "0.68011594", "0.67538047", "0.67346436", "0.65546954", "0.64610326", "0.64171857", "0.63816017", "0.63206667", "0.63054895", "0.6262374", "0.62150353", "0.6182871", "0.6134307", "0.61259115", "0.60916126", "0.60637754", "0.6039566", "0.6037287", "0....
0.0
-1
Adds the given Order to the order book and associates it with the given order id. If there is already a order associated with the given order id it will return that order object, otherwise it will return null.
Order addOrder(String orderNumber, Order order) throws FlooringMasteryPersistenceException;
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "Order addOrder(String orderId, Order order) throws OrderBookOrderException;", "public void addOrder(Long id, Long orderId) {\n\t\tReceipt receipt = receiptRepository.findOne(id);\n\t\tOrder order = orderRepository.findOne(orderId);\n\n\t\treceipt.setOrder(order);\n\n\t\treceiptRepository.save(receipt);\n\t}", ...
[ "0.7734518", "0.6963345", "0.6778316", "0.6557272", "0.64449334", "0.63981694", "0.63914376", "0.6328201", "0.61888206", "0.61884046", "0.61762005", "0.6110731", "0.6094706", "0.60610765", "0.60337216", "0.59811455", "0.59167874", "0.5906175", "0.5879631", "0.58765584", "0.58...
0.5980419
16
Returns a String array containing the order ids of all orders in the order book.
List<Order> getAllOrders() throws FlooringMasteryPersistenceException;
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public String[] getOrderedIDs() {\n\t\treturn this.orderedIDs;\n\t}", "public String listOfOrders() {\r\n\t\t StringBuilder sb = new StringBuilder();\r\n for (Iterator<Order> it = orders.iterator(); it.hasNext();){\r\n\t\t\t Order o = (Order) it.next();\r\n \t sb.append(o.toString() + NL);\r\n }\r\n ...
[ "0.68572307", "0.60827345", "0.59421897", "0.5844657", "0.5739516", "0.5716497", "0.56666255", "0.5663743", "0.56146365", "0.55953914", "0.5577291", "0.5577291", "0.55684394", "0.5562168", "0.5560075", "0.55435073", "0.5542775", "0.5535034", "0.5502058", "0.5500387", "0.54965...
0.0
-1
Returns the order object associated with the given order id. Returns null if no such order exists
Order getOrder(String orderNumber) throws FlooringMasteryPersistenceException;
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\n\t@Transactional\n\tpublic Optional<Order> getOrderById(Long id) {\n\t\tOrder order = repository.get(id, Order.class);\n\t\treturn Optional.of(order);\n\t}", "@Override\r\n\tpublic Order getOrderById(String orderId) {\n\t\treturn null;\r\n\t}", "public Order get(int id) {\n\t\treturn orderDao.get(id...
[ "0.7834443", "0.77712446", "0.7730037", "0.768688", "0.7675231", "0.7641842", "0.7635677", "0.7624564", "0.7529623", "0.74741846", "0.7463725", "0.74283314", "0.7423444", "0.74045944", "0.73801357", "0.7319228", "0.7289245", "0.72547036", "0.7035078", "0.7014864", "0.70136803...
0.5872677
83
Removes from the order book the order associated with the given id. Returns the order object that is being removed or null if there is no order associated with the given id
Order removeOrder(String orderNumber) throws FlooringMasteryPersistenceException;
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "Order removeOrder(String orderId) throws OrderBookOrderException;", "public Order removeOrder(String orderID) {\r\n\t\tOrder o = this.findOrder(orderID);\r\n\t\tif(o.getOrderID().equals(orderID)) {\r\n\t\t\torders.remove(orderID);\r\n\t\t\treturn o;\r\n\t\t} return null;\r\n\t}", "public void removeOrder(int i...
[ "0.7566335", "0.70784765", "0.6529089", "0.6472448", "0.6282012", "0.6200583", "0.6200327", "0.6084236", "0.59916466", "0.5974689", "0.5973029", "0.59727114", "0.5964109", "0.5951923", "0.59234273", "0.5904205", "0.59028226", "0.58755404", "0.58734345", "0.5810091", "0.580311...
0.5571024
37
Edits from the order book the order associated with the given id. Returns the order object that is being removed or null if there is no order associated with the given id
Order replaceOrder(String orderNumber, Order order) throws FlooringMasteryPersistenceException;
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "Order editOrder(String orderId, Order editedOrder) throws \n OrderBookOrderException;", "Order removeOrder(String orderId) throws OrderBookOrderException;", "Order getOrder(int id) throws ServiceException;", "@Override\n\tpublic OrderDO findById(String id) {\n\t\treturn null;\n\t}", "@Override\n...
[ "0.71105146", "0.6904841", "0.656651", "0.6557867", "0.6454293", "0.642366", "0.6411617", "0.63925433", "0.63632166", "0.6349213", "0.63342327", "0.6327295", "0.62819123", "0.6219255", "0.62109774", "0.6208516", "0.61729777", "0.6147073", "0.6123556", "0.61155754", "0.6072651...
0.0
-1
Loads a list of all orders in the order book with the given date. Returns the order object that is being removed or null if there is no order associated with the given id
void loadOrders(String date) throws FlooringMasteryPersistenceException;
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void removeOrder(LocalDate orderDate, Integer orderId) throws OrderNotFoundException, PersistenceException;", "@Override\n public List<Order> getAllOrders(String date) throws FlooringMasteryPersistenceException {\n \n Map<Integer, Order> hm = ordersByDate.get(date); // get the hashmap by ...
[ "0.6566618", "0.5984146", "0.5974132", "0.5964011", "0.5963223", "0.5866457", "0.58558124", "0.58426005", "0.5726403", "0.57177675", "0.5708163", "0.56540203", "0.5633947", "0.5633429", "0.5552777", "0.5532333", "0.551813", "0.5497531", "0.5495283", "0.5443865", "0.53700626",...
0.66119885
0
Writes to file a list of all orders in the order book with the given date. Returns the order object that is being removed
void saveOrders(String date) throws FlooringMasteryPersistenceException;
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void removeOrder(LocalDate orderDate, Integer orderId) throws OrderNotFoundException, PersistenceException;", "private void loadOrder(LocalDate date) throws PersistenceException{\n orders.clear();\n ORDER_FILE = \"Order_\"+ date+\".txt\";\n Scanner scanner;\n File file = new Fi...
[ "0.6068426", "0.57988036", "0.5612723", "0.55530965", "0.5366136", "0.5336639", "0.5299705", "0.52811986", "0.5277638", "0.5238788", "0.5162277", "0.5120158", "0.5090853", "0.50903326", "0.5079838", "0.5067788", "0.5051724", "0.503663", "0.49627116", "0.49554834", "0.49407285...
0.5103283
12
Searches a directory for a file and sees if there is a file that exists for a give date. Returns a boolean value
boolean doesFileExist(String date) throws FlooringMasteryPersistenceException;
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "boolean fileExists(String path) throws IOException;", "boolean hasFileLoc();", "private static boolean fileExists(String filename) {\n return new File(filename).exists();\n }", "boolean hasFileLocation();", "private boolean fileExists(Path p) {\n\t\treturn Files.exists(p);\n\t}", "boolean exist...
[ "0.6852696", "0.65669376", "0.64914817", "0.64668983", "0.6445079", "0.6418123", "0.6413706", "0.6396815", "0.6396815", "0.6357337", "0.6353696", "0.63459235", "0.6327058", "0.62802684", "0.627481", "0.6266707", "0.6215053", "0.6214983", "0.6199671", "0.6192017", "0.61850053"...
0.75770164
0
Called when the activity is first created.
@Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); openAndQueryDatabase(); displayResultList(); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\n\tpublic void onActivityCreated(Bundle savedInstanceState) {\n\t\tsuper.onActivityCreated(savedInstanceState);\n\t\tinit();\n\t}", "@Override\r\n\tpublic void onActivityCreated(Bundle savedInstanceState) {\n\t\tsuper.onActivityCreated(savedInstanceState);\r\n\t}", "@Override\n\tpublic void onActivit...
[ "0.791686", "0.77270156", "0.7693263", "0.7693263", "0.7693263", "0.7693263", "0.7693263", "0.7693263", "0.7637394", "0.7637394", "0.7629958", "0.76189965", "0.76189965", "0.7543775", "0.7540053", "0.7540053", "0.7539505", "0.75269467", "0.75147736", "0.7509639", "0.7500879",...
0.0
-1
set view model into included layout
public void setProps(PeerProps props, RoomClient roomClient) { setPeerViewProps(props); props.setOnPropsLiveDataChange(ediasProps -> { if(roomClient.isConnecting()) { // set view model. setPeerViewProps(props); // set view model. ...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "protected abstract void setupMvpView();", "public void initView() {\n\t\t view.initView(model);\t \n\t }", "@Override\n\tpublic void InitView() {\n\t\t\n\t}", "@Override\n protected void initViewSetup() {\n }", "@Override\n protected void initViewModel() {\n }", "public abstract void initView...
[ "0.6500017", "0.63455075", "0.603014", "0.6025089", "0.6002348", "0.5979575", "0.5975117", "0.5971868", "0.5971868", "0.59648705", "0.59648705", "0.59544224", "0.5925181", "0.59178555", "0.5900498", "0.5896352", "0.58746964", "0.58671707", "0.58613276", "0.58597505", "0.58479...
0.0
-1
/ JADX INFO: super call moved to the top of the method (can break code semantics)
AbbayedeTamie(Machecoulais machecoulais, Context context) { super(0); this.f16556a = machecoulais; this.f16557b = context; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void method_6349() {\r\n super.method_6349();\r\n }", "public void method_1449() {\r\n super.method_1449();\r\n }", "public void method_1449() {\r\n super.method_1449();\r\n }", "public void method_1449() {\r\n super.method_1449();\r\n }", "protected void method_3848() {\...
[ "0.7415079", "0.7120131", "0.7120131", "0.7120131", "0.71147615", "0.70227826", "0.7006036", "0.6960097", "0.6936248", "0.68299675", "0.6789097", "0.67602575", "0.6727189", "0.6727189", "0.66801685", "0.66706675", "0.6636934", "0.66282094", "0.6619857", "0.660652", "0.6604241...
0.0
-1
/ renamed from: b
private void m20461b() { this.f16556a.f16545b = 1; this.f16556a.m20453f(); this.f16556a.m20444b(this.f16557b); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "void mo2508a(bxb bxb);", "@Override\n public void func_104112_b() {\n \n }", "@Override\n public void b() {\n }", "public interface C19351a {\n /* renamed from: b */\n void mo30633b(int i, String str, byte[] bArr);\n }", "@Override\n\tpublic void b2() {\n\t\t\n\t}", "v...
[ "0.64558864", "0.6283203", "0.6252635", "0.6250949", "0.6244743", "0.6216273", "0.6194491", "0.6193556", "0.61641675", "0.6140157", "0.60993093", "0.60974354", "0.6077849", "0.6001867", "0.5997364", "0.59737104", "0.59737104", "0.5905105", "0.5904295", "0.58908087", "0.588663...
0.0
-1
/ renamed from: a
public final /* synthetic */ Object mo34405a() { m20461b(); return C6437ep.f17017a; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public interface C4521a {\n /* renamed from: a */\n void mo12348a();\n }", "public interface C1423a {\n /* renamed from: a */\n void mo6888a(int i);\n }", "interface bxc {\n /* renamed from: a */\n void mo2508a(bxb bxb);\n}", "interface C33292a {\n /* renamed fr...
[ "0.62497115", "0.6242887", "0.61394435", "0.61176854", "0.6114027", "0.60893", "0.6046901", "0.6024682", "0.60201293", "0.5975212", "0.59482527", "0.59121317", "0.5883635", "0.587841", "0.58703005", "0.5868436", "0.5864884", "0.5857492", "0.58306104", "0.5827752", "0.58272064...
0.0
-1
/ JADX INFO: super call moved to the top of the method (can break code semantics)
AbbayedeTimadeuc(Machecoulais machecoulais, Context context) { super(0); this.f16558a = machecoulais; this.f16559b = context; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void method_6349() {\r\n super.method_6349();\r\n }", "public void method_1449() {\r\n super.method_1449();\r\n }", "public void method_1449() {\r\n super.method_1449();\r\n }", "public void method_1449() {\r\n super.method_1449();\r\n }", "protected void method_3848() {\...
[ "0.7414769", "0.7119613", "0.7119613", "0.7119613", "0.7115359", "0.70228904", "0.70061016", "0.696022", "0.6936881", "0.6830244", "0.6787099", "0.6760496", "0.6728036", "0.6728036", "0.6680376", "0.6670228", "0.66369796", "0.66291183", "0.6621313", "0.6606562", "0.6604357", ...
0.0
-1
/ access modifiers changed from: private / renamed from: b
public C6556j mo34405a() { C6565k unused = this.f16558a.f16552i; return C6565k.m21538a(this.f16559b); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\n public void func_104112_b() {\n \n }", "@Override\n public void b() {\n }", "public np a()\r\n/* 33: */ {\r\n/* 34:49 */ return this.b;\r\n/* 35: */ }", "@Override\n\tpublic void b() {\n\n\t}", "public void b() {\r\n }", "protected b(int mb) {\n/* 87 */ t...
[ "0.722487", "0.69545496", "0.6846561", "0.68076116", "0.6734344", "0.6691706", "0.6669942", "0.6667043", "0.6646458", "0.66168636", "0.6606723", "0.6606723", "0.6590842", "0.64897954", "0.6463509", "0.6463509", "0.6449275", "0.64444065", "0.6424387", "0.6419237", "0.6415622",...
0.0
-1
/ JADX INFO: super call moved to the top of the method (can break code semantics)
AbbayeduMontdesCats(Machecoulais machecoulais, Context context) { super(1); this.f16560a = machecoulais; this.f16561b = context; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void method_6349() {\r\n super.method_6349();\r\n }", "public void method_1449() {\r\n super.method_1449();\r\n }", "public void method_1449() {\r\n super.method_1449();\r\n }", "public void method_1449() {\r\n super.method_1449();\r\n }", "protected void method_3848() {\...
[ "0.74159163", "0.7120729", "0.7120729", "0.7120729", "0.7115672", "0.7023054", "0.7006769", "0.6960434", "0.6936652", "0.68304604", "0.67891514", "0.6761081", "0.6727488", "0.6727488", "0.66804963", "0.66715986", "0.66370845", "0.66297126", "0.6621532", "0.66066694", "0.66048...
0.0
-1
/ renamed from: a
public final /* bridge */ /* synthetic */ Object mo34409a(Object obj) { m20465a((C6556j) obj); return C6437ep.f17017a; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public interface C4521a {\n /* renamed from: a */\n void mo12348a();\n }", "public interface C1423a {\n /* renamed from: a */\n void mo6888a(int i);\n }", "interface bxc {\n /* renamed from: a */\n void mo2508a(bxb bxb);\n}", "interface C33292a {\n /* renamed fr...
[ "0.62497115", "0.6242887", "0.61394435", "0.61176854", "0.6114027", "0.60893", "0.6046901", "0.6024682", "0.60201293", "0.5975212", "0.59482527", "0.59121317", "0.5883635", "0.587841", "0.58703005", "0.5868436", "0.5864884", "0.5857492", "0.58306104", "0.5827752", "0.58272064...
0.0
-1
/ renamed from: a
private void m20465a(C6556j jVar) { Machecoulais.m20445b(jVar, this.f16561b); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public interface C4521a {\n /* renamed from: a */\n void mo12348a();\n }", "public interface C1423a {\n /* renamed from: a */\n void mo6888a(int i);\n }", "interface bxc {\n /* renamed from: a */\n void mo2508a(bxb bxb);\n}", "interface C33292a {\n /* renamed fr...
[ "0.62497115", "0.6242887", "0.61394435", "0.61176854", "0.6114027", "0.60893", "0.6046901", "0.6024682", "0.60201293", "0.5975212", "0.59482527", "0.59121317", "0.5883635", "0.587841", "0.58703005", "0.5868436", "0.5864884", "0.5857492", "0.58306104", "0.5827752", "0.58272064...
0.0
-1
/ JADX INFO: super call moved to the top of the method (can break code semantics)
CamembertdeNormandie(Machecoulais machecoulais, Context context, String str) { super(0); this.f16562a = machecoulais; this.f16563b = context; this.f16564c = str; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void method_6349() {\r\n super.method_6349();\r\n }", "public void method_1449() {\r\n super.method_1449();\r\n }", "public void method_1449() {\r\n super.method_1449();\r\n }", "public void method_1449() {\r\n super.method_1449();\r\n }", "protected void method_3848() {\...
[ "0.7415079", "0.7120131", "0.7120131", "0.7120131", "0.71147615", "0.70227826", "0.7006036", "0.6960097", "0.6936248", "0.68299675", "0.6789097", "0.67602575", "0.6727189", "0.6727189", "0.66801685", "0.66706675", "0.6636934", "0.66282094", "0.6619857", "0.660652", "0.6604241...
0.0
-1
/ renamed from: b
private void m20467b() { C6502h.CamembertauCalvados unused = this.f16562a.f16549f; C6502h a = C6502h.CamembertauCalvados.m21397a(this.f16563b); a.mo35508e(this.f16564c); Machecoulais.m20446b(this.f16562a.f16546c, a); this.f16562a.m20436a(this.f16563b, a); ...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "void mo2508a(bxb bxb);", "@Override\n public void func_104112_b() {\n \n }", "@Override\n public void b() {\n }", "public interface C19351a {\n /* renamed from: b */\n void mo30633b(int i, String str, byte[] bArr);\n }", "@Override\n\tpublic void b2() {\n\t\t\n\t}", "v...
[ "0.64558864", "0.6283203", "0.6252635", "0.6250949", "0.6244743", "0.6216273", "0.6194491", "0.6193556", "0.61641675", "0.6140157", "0.60993093", "0.60974354", "0.6077849", "0.6001867", "0.5997364", "0.59737104", "0.59737104", "0.5905105", "0.5904295", "0.58908087", "0.588663...
0.0
-1
/ renamed from: a
public final /* synthetic */ Object mo34405a() { m20467b(); return C6437ep.f17017a; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public interface C4521a {\n /* renamed from: a */\n void mo12348a();\n }", "public interface C1423a {\n /* renamed from: a */\n void mo6888a(int i);\n }", "interface bxc {\n /* renamed from: a */\n void mo2508a(bxb bxb);\n}", "interface C33292a {\n /* renamed fr...
[ "0.62497115", "0.6242887", "0.61394435", "0.61176854", "0.6114027", "0.60893", "0.6046901", "0.6024682", "0.60201293", "0.5975212", "0.59482527", "0.59121317", "0.5883635", "0.587841", "0.58703005", "0.5868436", "0.5864884", "0.5857492", "0.58306104", "0.5827752", "0.58272064...
0.0
-1
/ JADX INFO: super call moved to the top of the method (can break code semantics)
EcirdelAubrac(Machecoulais machecoulais) { super(1); this.f16565a = machecoulais; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void method_6349() {\r\n super.method_6349();\r\n }", "public void method_1449() {\r\n super.method_1449();\r\n }", "public void method_1449() {\r\n super.method_1449();\r\n }", "public void method_1449() {\r\n super.method_1449();\r\n }", "protected void method_3848() {\...
[ "0.7414769", "0.7119613", "0.7119613", "0.7119613", "0.7115359", "0.70228904", "0.70061016", "0.696022", "0.6936881", "0.6830244", "0.6787099", "0.6760496", "0.6728036", "0.6728036", "0.6680376", "0.6670228", "0.66369796", "0.66291183", "0.6621313", "0.6606562", "0.6604357", ...
0.0
-1
/ renamed from: a
public final /* bridge */ /* synthetic */ Object mo34409a(Object obj) { m20469a(); return C6437ep.f17017a; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public interface C4521a {\n /* renamed from: a */\n void mo12348a();\n }", "public interface C1423a {\n /* renamed from: a */\n void mo6888a(int i);\n }", "interface bxc {\n /* renamed from: a */\n void mo2508a(bxb bxb);\n}", "interface C33292a {\n /* renamed fr...
[ "0.62497115", "0.6242887", "0.61394435", "0.61176854", "0.6114027", "0.60893", "0.6046901", "0.6024682", "0.60201293", "0.5975212", "0.59482527", "0.59121317", "0.5883635", "0.587841", "0.58703005", "0.5868436", "0.5864884", "0.5857492", "0.58306104", "0.5827752", "0.58272064...
0.0
-1
/ renamed from: a
private void m20469a() { this.f16565a.f16545b = 3; this.f16565a.m20454g(); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public interface C4521a {\n /* renamed from: a */\n void mo12348a();\n }", "public interface C1423a {\n /* renamed from: a */\n void mo6888a(int i);\n }", "interface bxc {\n /* renamed from: a */\n void mo2508a(bxb bxb);\n}", "interface C33292a {\n /* renamed fr...
[ "0.6249595", "0.6242955", "0.61393225", "0.6117684", "0.61140615", "0.60893875", "0.6046927", "0.60248226", "0.60201806", "0.59753186", "0.5947817", "0.5912414", "0.5883872", "0.5878469", "0.587005", "0.58678955", "0.58651674", "0.5857262", "0.58311176", "0.58279663", "0.5827...
0.0
-1
/ renamed from: d
public static String m20449d() { return "3.3.9-moat"; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void d() {\n }", "@Override\n\tpublic void dtd() {\n\t\t\n\t}", "@Override\r\n\tpublic void dormir() {\n\t\t\r\n\t}", "public int d()\r\n/* 79: */ {\r\n/* 80:82 */ return this.d;\r\n/* 81: */ }", "public String d_()\r\n/* 445: */ {\r\n/* 446:459 */ return \"container.inventor...
[ "0.63810617", "0.616207", "0.6071929", "0.59959275", "0.5877492", "0.58719957", "0.5825175", "0.57585526", "0.5701679", "0.5661244", "0.5651699", "0.56362265", "0.562437", "0.5615328", "0.56114155", "0.56114155", "0.5605659", "0.56001145", "0.5589302", "0.5571578", "0.5559222...
0.0
-1
/ access modifiers changed from: private / renamed from: f
public final void m20453f() { for (PresageSdkInitCallback onSdkInitialized : this.f16547d) { onSdkInitialized.onSdkInitialized(); } this.f16547d.clear(); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void func_70305_f() {}", "@Override\n public int f() {\n return 0;\n }", "public void f() {\n }", "public void f() {\n }", "public amj p()\r\n/* 543: */ {\r\n/* 544:583 */ return this.f;\r\n/* 545: */ }", "@Override\n\tpublic void f2() {\n\t\t\n\t}", "public byte f...
[ "0.7354557", "0.70730805", "0.69541585", "0.68669313", "0.68070644", "0.6750507", "0.6723052", "0.66000074", "0.64781976", "0.6454087", "0.6372222", "0.63559234", "0.6297977", "0.6294487", "0.6224529", "0.60940355", "0.60936874", "0.6067748", "0.60617924", "0.6045264", "0.600...
0.0
-1
/ access modifiers changed from: private / renamed from: g
public final void m20454g() { for (PresageSdkInitCallback onSdkInitFailed : this.f16547d) { onSdkInitFailed.onSdkInitFailed(); } this.f16547d.clear(); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private stendhal() {\n\t}", "public void g() {\n }", "public void gored() {\n\t\t\n\t}", "private final zzgy zzgb() {\n }", "public boolean g()\r\n/* 94: */ {\r\n/* 95:94 */ return this.g;\r\n/* 96: */ }", "private Gng() {\n }", "private Rekenhulp()\n\t{\n\t}", "@Override\n pu...
[ "0.6939628", "0.69079435", "0.6668396", "0.6617213", "0.6605113", "0.6560298", "0.65401757", "0.6302829", "0.6283818", "0.6273044", "0.6209706", "0.62009627", "0.62005776", "0.6162078", "0.61204964", "0.60923165", "0.60627776", "0.60428405", "0.6033077", "0.60315675", "0.6022...
0.0
-1
/ access modifiers changed from: private / renamed from: b
public static void m20446b(String str, C6502h hVar) { if (str != null) { hVar.mo35510f(str); } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\n public void func_104112_b() {\n \n }", "@Override\n public void b() {\n }", "public np a()\r\n/* 33: */ {\r\n/* 34:49 */ return this.b;\r\n/* 35: */ }", "@Override\n\tpublic void b() {\n\n\t}", "public void b() {\r\n }", "protected b(int mb) {\n/* 87 */ t...
[ "0.72257817", "0.6954442", "0.6847331", "0.6807501", "0.67334896", "0.6691569", "0.66704434", "0.6667642", "0.6647073", "0.6617276", "0.6605567", "0.6605567", "0.65915775", "0.64904463", "0.64652467", "0.64652467", "0.64507675", "0.644512", "0.6424255", "0.64211464", "0.64158...
0.0
-1
/ renamed from: e
private boolean m20452e() { return this.f16545b == 0; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\n\tpublic void e() {\n\n\t}", "public void e() {\n }", "@Override\n\tpublic void processEvent(Event e) {\n\n\t}", "@Override\n public void e(String TAG, String msg) {\n }", "public String toString()\r\n {\r\n return e.toString();\r\n }", "@Override\n\t\t\t\...
[ "0.72328156", "0.66032064", "0.6412127", "0.6362734", "0.633999", "0.62543726", "0.6232265", "0.6159535", "0.61226326", "0.61226326", "0.60798717", "0.6049423", "0.60396963", "0.60011584", "0.5998842", "0.59709895", "0.59551716", "0.5937381", "0.58854383", "0.5870234", "0.586...
0.0
-1
/ renamed from: c
public final boolean mo34577c() { return this.f16545b == 3; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "void mo5289a(C5102c c5102c);", "public static void c0() {\n\t}", "void mo57278c();", "private static void cajas() {\n\t\t\n\t}", "void mo5290b(C5102c c5102c);", "void mo80457c();", "void mo12638c();", "void mo28717a(zzc zzc);", "void mo21072c();", "@Override\n\tpublic void ccc() {\n\t\t\n\t}", ...
[ "0.64592767", "0.644052", "0.6431582", "0.6418656", "0.64118475", "0.6397491", "0.6250796", "0.62470585", "0.6244832", "0.6232792", "0.618864", "0.61662376", "0.6152657", "0.61496663", "0.6138441", "0.6137171", "0.6131197", "0.6103783", "0.60983956", "0.6077118", "0.6061723",...
0.0
-1
/ renamed from: c
private final boolean m20448c(Context context) { return !mo34576b() && !C6216ag.m20778a(context); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "void mo5289a(C5102c c5102c);", "public static void c0() {\n\t}", "void mo57278c();", "private static void cajas() {\n\t\t\n\t}", "void mo5290b(C5102c c5102c);", "void mo80457c();", "void mo12638c();", "void mo28717a(zzc zzc);", "void mo21072c();", "@Override\n\tpublic void ccc() {\n\t\t\n\t}", ...
[ "0.64592767", "0.644052", "0.6431582", "0.6418656", "0.64118475", "0.6397491", "0.6250796", "0.62470585", "0.6244832", "0.6232792", "0.618864", "0.61662376", "0.6152657", "0.61496663", "0.6138441", "0.6137171", "0.6131197", "0.6103783", "0.60983956", "0.6077118", "0.6061723",...
0.0
-1
/ renamed from: b
public final boolean mo34576b() { return this.f16545b == 1; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "void mo2508a(bxb bxb);", "@Override\n public void func_104112_b() {\n \n }", "@Override\n public void b() {\n }", "public interface C19351a {\n /* renamed from: b */\n void mo30633b(int i, String str, byte[] bArr);\n }", "@Override\n\tpublic void b2() {\n\t\t\n\t}", "v...
[ "0.64558864", "0.6283203", "0.6252635", "0.6250949", "0.6244743", "0.6216273", "0.6194491", "0.6193556", "0.61641675", "0.6140157", "0.60993093", "0.60974354", "0.6077849", "0.6001867", "0.5997364", "0.59737104", "0.59737104", "0.5905105", "0.5904295", "0.58908087", "0.588663...
0.0
-1
/ access modifiers changed from: private / renamed from: b
public final void m20444b(Context context) { Goudaauxepices.CamembertauCalvados camembertauCalvados = Goudaauxepices.f16532a; Goudaauxepices.CamembertauCalvados.m20425a(new AbbayedeTimadeuc(this, context)).mo34564b(new AbbayeduMontdesCats(this, context)); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\n public void func_104112_b() {\n \n }", "@Override\n public void b() {\n }", "public np a()\r\n/* 33: */ {\r\n/* 34:49 */ return this.b;\r\n/* 35: */ }", "@Override\n\tpublic void b() {\n\n\t}", "public void b() {\r\n }", "protected b(int mb) {\n/* 87 */ t...
[ "0.7224839", "0.69518054", "0.68448514", "0.68045336", "0.6729634", "0.66892576", "0.6667949", "0.6666382", "0.66440094", "0.6614186", "0.66016066", "0.66016066", "0.6589728", "0.6487956", "0.6466085", "0.6466085", "0.645071", "0.6444203", "0.6424545", "0.64207315", "0.641609...
0.0
-1
/ access modifiers changed from: private / renamed from: b
public static void m20445b(C6556j jVar, Context context) { if (jVar != null && jVar.mo35579d()) { C6417dw.m21285a(context); } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\n public void func_104112_b() {\n \n }", "@Override\n public void b() {\n }", "public np a()\r\n/* 33: */ {\r\n/* 34:49 */ return this.b;\r\n/* 35: */ }", "@Override\n\tpublic void b() {\n\n\t}", "public void b() {\r\n }", "protected b(int mb) {\n/* 87 */ t...
[ "0.7224839", "0.69518054", "0.68448514", "0.68045336", "0.6729634", "0.66892576", "0.6667949", "0.6666382", "0.66440094", "0.6614186", "0.66016066", "0.66016066", "0.6589728", "0.6487956", "0.6466085", "0.6466085", "0.645071", "0.6444203", "0.6424545", "0.64207315", "0.641609...
0.0
-1
/ renamed from: a
public final void mo34572a(Context context, String str) { m20435a(context); Maroilles.m20471a(context); int i = this.f16545b; if (i == 0 || i == 3) { this.f16545b = 2; if (!(str == null || str.length() == 0)) { FourmedeMontbrison.CamembertauCalvado...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public interface C4521a {\n /* renamed from: a */\n void mo12348a();\n }", "public interface C1423a {\n /* renamed from: a */\n void mo6888a(int i);\n }", "interface bxc {\n /* renamed from: a */\n void mo2508a(bxb bxb);\n}", "interface C33292a {\n /* renamed fr...
[ "0.62497115", "0.6242887", "0.61394435", "0.61176854", "0.6114027", "0.60893", "0.6046901", "0.6024682", "0.60201293", "0.5975212", "0.59482527", "0.59121317", "0.5883635", "0.587841", "0.58703005", "0.5868436", "0.5864884", "0.5857492", "0.58306104", "0.5827752", "0.58272064...
0.0
-1
/ renamed from: a
private final void m20435a(Context context) { try { this.f16555l.mo34731a(context); } catch (Throwable unused) { } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public interface C4521a {\n /* renamed from: a */\n void mo12348a();\n }", "public interface C1423a {\n /* renamed from: a */\n void mo6888a(int i);\n }", "interface bxc {\n /* renamed from: a */\n void mo2508a(bxb bxb);\n}", "interface C33292a {\n /* renamed fr...
[ "0.6249595", "0.6242955", "0.61393225", "0.6117684", "0.61140615", "0.60893875", "0.6046927", "0.60248226", "0.60201806", "0.59753186", "0.5947817", "0.5912414", "0.5883872", "0.5878469", "0.587005", "0.58678955", "0.58651674", "0.5857262", "0.58311176", "0.58279663", "0.5827...
0.0
-1
/ renamed from: a
public final void mo34574a(String str) { this.f16546c = str; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public interface C4521a {\n /* renamed from: a */\n void mo12348a();\n }", "public interface C1423a {\n /* renamed from: a */\n void mo6888a(int i);\n }", "interface bxc {\n /* renamed from: a */\n void mo2508a(bxb bxb);\n}", "interface C33292a {\n /* renamed fr...
[ "0.62497115", "0.6242887", "0.61394435", "0.61176854", "0.6114027", "0.60893", "0.6046901", "0.6024682", "0.60201293", "0.5975212", "0.59482527", "0.59121317", "0.5883635", "0.587841", "0.58703005", "0.5868436", "0.5864884", "0.5857492", "0.58306104", "0.5827752", "0.58272064...
0.0
-1