query_id
stringlengths
32
32
query
stringlengths
7
129k
positive_passages
listlengths
1
1
negative_passages
listlengths
88
101
fa3ed49579dafe88fe475dbcbd94e3f6
$ANTLR end "rule__EmfsFile__ContentProviderAssignment_4_2_1" $ANTLR start "rule__StringContentProvider__StringContentsAssignment" ../no.hal.emfs.xtext.ui/srcgen/no/hal/emfs/xtext/ui/contentassist/antlr/internal/InternalXemfs.g:6145:1: rule__StringContentProvider__StringContentsAssignment : ( ruleAbstractStringContents ...
[ { "docid": "ae94892cdbc79631f4cd73708a025b9d", "score": "0.77253646", "text": "public final void rule__StringContentProvider__StringContentsAssignment() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../no.hal.emfs.xtext.ui/src-...
[ { "docid": "dc059c284cdbc8de18177efb9511f48e", "score": "0.7801131", "text": "public final void ruleStringContentProvider() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../no.hal.emfs.xtext.ui/src-gen/no/hal/emfs/xtext/ui/cont...
2f12f559c8ffb7fd3dd8a63f18132735
Add a new workflow tab to the tab folder...
[ { "docid": "b9319e5cd54e03cbf032d144d7d73631", "score": "0.6670746", "text": "public IHopFileTypeHandler addWorkflow(\n HopGui hopGui, WorkflowMeta workflowMeta, HopWorkflowFileType workflowFile)\n throws HopException {\n CTabItem tabItem = new CTabItem(tabFolder, SWT.CLOSE);\n tabItem.s...
[ { "docid": "d9fdea3d020115c7d6424cfa657d3209", "score": "0.68789655", "text": "Tab addTab(String name, Component component);", "title": "" }, { "docid": "aec610bc4725ec7c5ab425a761f32b36", "score": "0.6520977", "text": "@Override\n public void actionPerformed(ActionEvent e...
569faa285298e6be49622ccbc1c6de54
File fileInput = new File("data/10millionpasswordlisttop1000000.txt");
[ { "docid": "d729ef8222ddc4369a4e8e99687035af", "score": "0.0", "text": "public static void main(String[] args) throws IOException {\n File fileInput = new File(\"data/unicode.txt\");\n\n if (!fileInput.exists()) {\n System.err.println(\"File does not exist\");\n Syste...
[ { "docid": "55cc09ec0e36b5c019591cf1b00a3234", "score": "0.5776121", "text": "public static void main(String[] args) throws IOException {\n\t\t\r\n\t\tRandomAccessFile raf = new RandomAccessFile(\"D://passwords.txt\",\"r\");\r\n\t\traf.seek(16);\r\n\t\tSystem.out.println(raf.readLine());\r\n\r\n\t}", ...
d6bed566ad7013ff6b437b2c944b5a8d
This method initializes jButton2
[ { "docid": "6a50646300d57bc13a5bee4316965cae", "score": "0.70329297", "text": "private JButton getJButton2() {\n\t\tif (jButton2 == null) {\n\t\t\tjButton2 = new JButton();\n\t\t\tjButton2.setBounds(new Rectangle(115, 259, 74, 21));\n\t\t\tjButton2.setText(\"Alterar\");\n\t\t}\n\t\treturn jButton2;\n\t}...
[ { "docid": "71b06f695c925fcdabf2d0b73c256bc9", "score": "0.7248732", "text": "private void setbutton2(){\r\n\t\tbuttons2 = new JButton[bnames2.length];\r\n\t\tfor (int i = 0; i < bnames2.length; i++) \r\n\t\t{\r\n\t\t\tbuttons2[i] = new JButton(bnames2[i]);\r\n\t\t\tbuttons2[i].addActionListener(this);\...
4fa7e9870c7e65bd4a23a88a5b1ff20d
If user typed in cpr as xxxxxxxxxx it will be formattted to xxxxxxxxxx
[ { "docid": "bae85825f55364febd97940b12a0126d", "score": "0.7635155", "text": "public String formatCpr(String cpr) {\n if (cpr.length() == 10) {\n cpr = cpr.substring(0, 6) + \"-\" + cpr.substring(6);\n }\n return cpr;\n }", "title": "" } ]
[ { "docid": "b4fc58524d2d94c8a7948e55a474c898", "score": "0.63579196", "text": "private void formatarCpf() {\n try {\n MaskFormatter ms = new MaskFormatter(\"###.###.###-##\");\n ms.install(ForCpfResposanvel);\n ms.install(ForCpf);\n } catch (ParseException ...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "ade6da23f95a02d68d5887c12c7ac292", "score": "0.0", "text": "@Override\n\tpublic List<Map<String, Object>> getRecords() {\n\t\treturn null;\n\t}", "title": "" } ]
[ { "docid": "9208773f8d675a45ef2786d0cb668514", "score": "0.654538", "text": "@Override\n\tpublic void addiion() {\n\t\t\n\t}", "title": "" }, { "docid": "80d20df1cc75d8fa96c12c49a757fc43", "score": "0.65323734", "text": "@Override\n\tprotected void getExras() {\n\t\t\n\t}", "titl...
f0b042f1ade8d687c684078bbab46202
Returns if the word is in the trie.
[ { "docid": "e01565e631fed80d70527969e2d630c1", "score": "0.7998434", "text": "public boolean search(String word) {\n TrieNodeMap now = root;\n for (int i = 0; i < word.length(); i++) {\n \tchar c = word.charAt(i);\n \tif (!now.children.containsKey(c)) {\n \t\treturn fa...
[ { "docid": "2f9cd26c6f04ab824b4c22b01f83dda8", "score": "0.82855916", "text": "public boolean contains(String word) {\r\n\t\tTrieNode n = root;\r\n\t\tfor (char c : word.toCharArray()) {\r\n\t\t\tn = n.next[c];\r\n\t\t\tif (null == n) {\r\n\t\t\t\treturn false;\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\treturn n.wo...
b4d44f6f2ec722f2bd6a3c66f6e96930
Checks whether this collection of variables is of the same kind of variables.
[ { "docid": "1f68c55f9819c26c1ecb8cc99b81d54c", "score": "0.7279116", "text": "public <T extends Variable> boolean isSameKind(Class<T> c) {\n\t\tfor (Variable v : this) {\n\t\t\tif (v.getClass() != c) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t}\n\n\t\treturn true;\n\t}", "title": "" } ]
[ { "docid": "aaaa53b45f64285016f7097423dcf9c7", "score": "0.6944706", "text": "@Override\n public boolean equals(Object obj) {\n if (this == obj) {\n return true;\n }\n if (!(obj instanceof TypeVariable)) {\n return false;\n }\n TypeVariable<?> ...
29155271ba2e8faea7a1d940b5dbadad
Returns if the word is in the data structure. A word could contain the dot character '.' to represent any one letter.
[ { "docid": "e72ea0a78fab77174cd9f3e2b0f7d915", "score": "0.61757934", "text": "public boolean search(String word) {\r\n return search(root, word, 0);\r\n }", "title": "" } ]
[ { "docid": "1ff90298f236553abee4d89c99668020", "score": "0.73960507", "text": "public boolean isWordIn(String word){\n TrieNode node = searchTrie(word);\n\n if(node !=null && node.leaf){\n return true;\n }else{\n return false;\n }\n }", "title": "...
a8cf3014d838b7024298a3fdd6d7aef3
Generate a shopping list of products. Each product element has an amount needed.
[ { "docid": "21fd50fe8cdb4e6a4c4342b41f975e52", "score": "0.58531564", "text": "public ArrayList<Product> genShopList(ArrayList<String> recipes) {\r\n\t\treturn inventory.shoppingList(recipes);\r\n\t}", "title": "" } ]
[ { "docid": "d181ee3887568a6cf2746809c75c51d1", "score": "0.6633812", "text": "private void demoSellProducts()\n {\n int quantity = 0;\n \n for(int id = 101; id <= 110; id++)\n {\n quantity = randomGenerator.nextInt(4);\n manager.sellProduct(id, quanti...
44366b2c8074ec0881a48f4c305f626a
Display Selected date in textbox
[ { "docid": "87bb8cb2407ca2af485bd56ce064f276", "score": "0.0", "text": "@Override\n public void onDateSet(DatePicker view, int year,\n int monthOfYear, int dayOfMonth) {\n String dayOfMonthStr = nu...
[ { "docid": "22af890eec8b351524450e05e5638073", "score": "0.7470203", "text": "@Override\n\t\t\t\t\t\t\tpublic void onDateSelect(String sDate) {\n\n\t\t\t\t\t\t\t\tdob1.setText(sDate);\n\t\t\t\t\t\t\t}", "title": "" }, { "docid": "22af890eec8b351524450e05e5638073", "score": "0.7470203", ...
027087765f3c7cf20420080d300f928f
get becon by id
[ { "docid": "888db06babd0ebf3ad577a36edb5a6a1", "score": "0.6195138", "text": "@RequestMapping(value = \"/{id}/beacon\", method = RequestMethod.GET)\n public Beacon getBeacon(@PathVariable String id) {\n Beacon beacon = requestDAO.find(new Date(Long.parseLong(id))).getBeaconRequest();\n ...
[ { "docid": "0400c79db23cf24b9d8b0e0945fd23ee", "score": "0.722146", "text": "Bbb selectByPrimaryKey(Long id);", "title": "" }, { "docid": "80ecf27c51213e7d5872022ec451bb2c", "score": "0.7168466", "text": "public Banco obtener(Long id) {\n\t\treturn em.find(Banco.class, id);\n\t}", ...
6a6147b10450d77db7e8cea0faf266e8
User register(User userToAdd); String login(String username, String password);
[ { "docid": "c620538bd3fa019ac7b991691d5445b1", "score": "0.7157923", "text": "User registerByPhone(User userToAdd);", "title": "" } ]
[ { "docid": "a2f78d0f815fda81cde4dc3bd53a779d", "score": "0.83032256", "text": "User register(String username, String password) throws UsernameAlreadyTakenException;", "title": "" }, { "docid": "64a3faebc5049d04d58db11456293038", "score": "0.813011", "text": "public User login(String ...
737497d846459da1fbf6b1bdf979404b
Computes the line graph of a given symmetric graph. The line graph of g is a graph, whose nodes are identified with pairs of the form &lt;x,&nbsp;y> where x and y are nodes of g and &lt;x,&nbsp;y> is an arc of g. Moreover, there is an arc from &lt;x,&nbsp;y> to &lt;y,&nbsp;z>. Two additional files are created, with nam...
[ { "docid": "2b82a7a28d3c17d67e97ecebfe831912", "score": "0.5903984", "text": "public static ImmutableSequentialGraph line( final ImmutableGraph g, final String mapBasename, final File tempDir, final int batchSize, final ProgressLogger pl ) throws IOException {\n\t\tfinal int n = g.numNodes();\n\t\tfinal...
[ { "docid": "9020df523cb21f7aae90b4aabbb414af", "score": "0.5729424", "text": "public static void exportRouteGraph() {\n try {\n var nodeRouteNr = new ArrayList<Integer>();\n var links = new ArrayList<Pair<Integer, Integer>>();\n\n int[] idx = {0};\n Fil...
ab84d4e3ec927acab8222cadf9d774de
Set view color according to rate.
[ { "docid": "9fe3c12d902dcedec3cfc5e72d955fdd", "score": "0.58661246", "text": "public static void setRatingTextViewColor(final Context context, final View view, final double ratings) {\n final GradientDrawable drawable = (GradientDrawable) view.getBackground();\n if (drawable != null) {\n\...
[ { "docid": "34a13623ee669309c54c5492ac5acfcf", "score": "0.64377856", "text": "public void setColor(){\n switch(num){\n case 1: c = Color.BLACK;\n break;\n case 2: c = new Color(238, 238, 34);\n break;\n case 3: c = Color.RED;\n break;\n case 4: c = Color.MAGENTA;\n...
9abd23255efa52450de7470d687c1be6
Get request that is used by students
[ { "docid": "94eb08d788b204e018f8c70143a859d2", "score": "0.0", "text": "protected void doPost(HttpServletRequest request,\n\t\t\tHttpServletResponse response) throws ServletException, IOException {\n\t\tresponse.setContentType(\"text/html\");\n\t\tresponse.setStatus(HttpServletResponse.SC_OK);\n\t\tsale...
[ { "docid": "5fefe5051a24891ae2cb55b1dccd12a7", "score": "0.60609317", "text": "public Request getRequest();", "title": "" }, { "docid": "5fefe5051a24891ae2cb55b1dccd12a7", "score": "0.60609317", "text": "public Request getRequest();", "title": "" }, { "docid": "5fefe5051a...
8f07fdbf7cdedd97e6f5834b2d4b5484
Initialise the list of, currently "Online"/"Connected" users using the Multicast Chat's ClientSide Service from an Iterator, containing all the usernames of the "Online"/"Connected" users. Can be used, obtaining any Java's data structure.
[ { "docid": "5f4f83a68bb5841fd4ed14facf858b36", "score": "0.7517946", "text": "protected void usersInterfaceUsersIteratorList(Iterator<String> usersIterator) {\n\t\tthis.usersInChat.clear();\n\t\t\n\t\t// There's currently \"Online\"/\"Connected\" users using\n\t\t// the Multicast Chat's Client-Side Serv...
[ { "docid": "44acde888b0659bed9cf5e45013376dc", "score": "0.72362757", "text": "private void initOnlineUsersList() {\n editor.getRestManager().getOnlineUsers(localUser, this);\n }", "title": "" }, { "docid": "4b5c1c61f271cf6395ed9aa9c2c1a769", "score": "0.6977701", "text": "...
fdfdb7941ed74b53423403a7d909b503
altijd doen in begin van draw
[ { "docid": "7aee76405606420e363437e4e95023f9", "score": "0.0", "text": "public void drawScene() {\n camera.update();\n batch.setProjectionMatrix(camera.combined);\n\n batch.begin();\n batch.disableBlending();\n backgroundSprite.draw(batch);\n batch.enableBlendin...
[ { "docid": "5914de1c403d2b7411fcd30a56ee7a5d", "score": "0.74457496", "text": "public void draw()\r\n\t \t{\r\n\t\t draw(true, true);\r\n\t \t}", "title": "" }, { "docid": "23eb20b9e259058f67ff229b8ab4f2bc", "score": "0.728226", "text": "@Override\n public void draw() {\n ...
4331b7f58497e784af783df668ce50fd
/ renamed from: c
[ { "docid": "0e86a168b3e8a39adee5e7fadd8a073b", "score": "0.0", "text": "public void mo1882c() {\n this.f8366a.m11532m();\n }", "title": "" } ]
[ { "docid": "4f442d5d2b86d84f4dfb0f28ffded42a", "score": "0.6450865", "text": "public void c() {\n }", "title": "" }, { "docid": "78370b5cacc1d92f124abf1223b73496", "score": "0.64347154", "text": "void mo81738c();", "title": "" }, { "docid": "74dfeb2a18c749dc9b1881b...
67c9490e1d4f4c5750c0e6260f8a974a
/ / / / / /
[ { "docid": "32322591155056e19e68160d1b787784", "score": "0.0", "text": "public Map update() {\n/* 217 */ if (!this.isValid) {\n/* 218 */ return null;\n/* */ }\n/* */ \n/* 221 */ synchronized (XSettings.this) {\n/* 222 */ long l = XSettings.this.serial;\n/*...
[ { "docid": "0b640577f93787ccafd051cf7e5af6cf", "score": "0.5582266", "text": "public static void main (String[]args)\n\n {\n System.out.println (\" /\\\\\");\n System.out.println (\" //\\\\\\\\\");\n System.out.println (\" /\\\\/\\\\/\\\\\");\n System.out.println (\"...
d0ad7d08600ac7b69615c7fe957406f8
/ Method to click on Approve link Two under Approval History Drop Down
[ { "docid": "9c8b4c6f927bb633c9e436b8545b4239", "score": "0.80833805", "text": "public void clickOnSecondApproveLink()\n\t{\n\t\tWebElement element = ldriver.findElement(By.xpath(\"//div/ul/li[1]/a[contains(@title,'Approve')]\"));\n\t\tJavascriptExecutor executor = (JavascriptExecutor)ldriver;\n\t\texecu...
[ { "docid": "60330817086e136fb1c09a33be921275", "score": "0.74422127", "text": "public void clickOnApproveLink()\n\t{\n\t\tlinkApprove.click();\n\t\tldriver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);\n\t}", "title": "" }, { "docid": "01c1b72eb889c2e128bb8f9396810c8a", "scor...
b49e629c611a966ec87350adb9f2aaec
Calculates estimated time enroute to a given position
[ { "docid": "15228aa28c909a654e5124dae0b7b812", "score": "0.0", "text": "public int ete() {\r\n\t\t// return great circle distance?\r\n\t\tif (!m_isDirty)\r\n\t\t\treturn m_cumCost.get(m_cumCost.size() - 2).intValue();\r\n\t\telse\r\n\t\t\treturn 0;\r\n\t}", "title": "" } ]
[ { "docid": "486d4c02a65e09b535f439702c391a9f", "score": "0.6577354", "text": "private Duration calculateTravelTime(double position, double destination) {\n double distance = destination - position;\n double time = distance / speed;\n int timeSec = (int) time;\n long timeNano ...
be1253cec941c0c0daeb2f7d97054451
".observe()" method returns a Hot Observable which starts executing the "construct" method immediately
[ { "docid": "dc0c2113803586631d1a0dbd845acb25", "score": "0.5495922", "text": "@Test\n public void testUsingObserveMethod() throws InterruptedException {\n HelloWorldObservableCommand helloWorldCommand = new HelloWorldObservableCommand(\"World\");\n CountDownLatch l = new CountDownLatch(...
[ { "docid": "51e0828f6013172d7394cb7f206a1e8b", "score": "0.6585471", "text": "public MyObservable() {\n obs = new Vector<>();\n }", "title": "" }, { "docid": "9be2910c49e69c447dd950d8be3dd249", "score": "0.65104777", "text": "public static void init() {\n\t\tobserveImpl = n...
ac0b75b79da1f66f25fe9665b2168957
getters and setters for constants
[ { "docid": "0bb37ac62fe4b69f538dfbe055a0c9e9", "score": "0.0", "text": "public int getBedroomCount() {\n return bedroomCount;\n }", "title": "" } ]
[ { "docid": "92a9bbfd571ae024d3bd7824f01ed72e", "score": "0.7073104", "text": "public void initConstants() {\n\n }", "title": "" }, { "docid": "79e88a8a6c250666fbfdf9e9f2648e2f", "score": "0.698806", "text": "private Constant () {\n \n }", "title": "" }, { "do...
1cd50bbd7a25cc74cafe2aacc44552ff
TODO: implement 4 finger swipe right or left to change octave
[ { "docid": "93536daf216ebffc2e8a2aef22a45b0c", "score": "0.6208815", "text": "private void changeOctave(int change) {\n\t\toctave += change;\n\t}", "title": "" } ]
[ { "docid": "6f4ad7616d73d351b0424bd250176e18", "score": "0.63495165", "text": "public void setOctave(int octave) {\n assert(octave > 0);\n transpose=(octave-1) * 12;\n }", "title": "" }, { "docid": "8baed53bdcd069de9376fe2e3c37fb34", "score": "0.6250129", "text": "pu...
32a9d3224616c975b4763845d46a2e08
Gets common i 18 n service.
[ { "docid": "d03d171bc806da2ba1e9bbc94a8fb303", "score": "0.6268481", "text": "protected CommonI18NService getCommonI18NService()\n\t{\n\t\treturn commonI18NService;\n\t}", "title": "" } ]
[ { "docid": "d47407a175b513539396f855451bcf15", "score": "0.6050728", "text": "java.lang.String getService();", "title": "" }, { "docid": "b86eafc8580a255943bc6835825a9a77", "score": "0.6005075", "text": "public static ArrayList<ServiceInstance> getServiceList() {\n\t\tArrayList<Servi...
863ee3c5512c94a1c22954cc7f3ba4e8
Remove an event by an eventId
[ { "docid": "256381e0394cb6f40cf428a7a5218245", "score": "0.87325937", "text": "public abstract void removeEventById(String eventId);", "title": "" } ]
[ { "docid": "2f65d6ff4f6bf9e7184939d4848a05cb", "score": "0.7347974", "text": "public void removeEvent(int eventID){\n listOfEvents.remove(getEvent(eventID));\n }", "title": "" }, { "docid": "4fbf468f20e138770fd925834366748f", "score": "0.7307297", "text": "void deleteWeekly...
89b6f7f868b3b80aafd19c7343e52fa1
Transform a whole number to ordinal number.
[ { "docid": "c4513223b9f4e8abdfc5a71485b9b434", "score": "0.65384007", "text": "private String getOrdinalNumber(int number) {\n String suffix;\n switch (number % 100) {\n case 11:\n case 12:\n case 13:\n suffix = \"th\";\n break...
[ { "docid": "fe65002717b8f6b81798671790d8e438", "score": "0.6632695", "text": "public int toInt() {\n return simple.ordinal() * 10 + number - 1;\n }", "title": "" }, { "docid": "ab156ecc3c031bd76075cda07a6e57f5", "score": "0.62888455", "text": "public abstract int ordinal();...
1ae6f77efa7e2d56a2bb385ccd686d2f
String res = result.trim();
[ { "docid": "c11346a2b3a5e9761eb4e621d74290a0", "score": "0.0", "text": "@Override\n protected void onPostExecute(String result) {\n if (result.equals(\"Login successfull\")){\n Intent intent = new Intent(context,Home.class);\n context.startActivity(intent)...
[ { "docid": "4ccc0e0cc07617136ebc2b2b2bff8adb", "score": "0.690902", "text": "C trim();", "title": "" }, { "docid": "0858fc62fe3d20e4d5988e64f3061e78", "score": "0.6494599", "text": "public String trim(String s);", "title": "" }, { "docid": "7d2b9808ca170e5e1153c7e048b441c...
f1c04fdca368ee095cc9e1e3c4814195
This method is used to return the SolutionsAdapter object from the schema by unmarshalling the xml file
[ { "docid": "e0514e53e76cd7ac30b22a63ed3730fa", "score": "0.7262393", "text": "public SolutionsAdapter getSolutionsAdapterType() {\n\t\tSolutionsAdapter adapterRoot = null;\n\t\ttry {\n\t\t\tfinal JAXBContext jtx = JAXBContext.newInstance(\n\t\t\t\t\tSASConstants.SOLUTIONS_ADAPTER_CONTEXT, this.getClass(...
[ { "docid": "3fa59a6f94c72b64795f13556792a4e8", "score": "0.57323474", "text": "@Override\n public String getFromXmlFormat() {\n\n String filePath = System.getenv(\"FILE_PATH\");\n //String filePath = \"C:\\\\Users\\\\zubah\\\\IdeaProjects\\\\ProgItmo\\\\Lab5\\\\Test.xml\";\n\n if...
42c59299604a8892ad72a6d6bd8b89ce
Solution 1: my two step solution
[ { "docid": "913d44edae919249784dd27bf789dd3c", "score": "0.0", "text": "public static int findMinimum(int[] A) { // assume no dups\r\n\t\tint left = 0, right = A.length - 1;\r\n\t\twhile (left < right) {\r\n\t\t\tint mid = (left + right) >>> 1;\r\n\t\t\tif (A[mid] > A[right]) { // minimum must be in ran...
[ { "docid": "ea22235c868d0fbeb16f000c4dd5bd5d", "score": "0.58880585", "text": "private void algo(){\n\t\t\n\n\t\tboolean finish = false;\n\t\tArgumentationFramework graph = super.getGraph();\n\n\t\twhile(!finish){\t\n\n\t\t\tfinish = true;\n\t\t\t\n\t\t\tHashMap<String, Double> s = new HashMap<String, D...
a67a28cd891d93c169186fd7007c8216
SHA1 takes a string, hash it into 160 bit then these are bits are rendered as a positive Hex Number.
[ { "docid": "28bd7122394877ce369dc032d1a52775", "score": "0.64445", "text": "public static String hash(String message) throws NoSuchAlgorithmException {\n MessageDigest md = MessageDigest.getInstance(\"SHA-1\");\n\n // SHA 1 returns an array of 160 bit (20 bytes) \"From Wikipedia\".\n ...
[ { "docid": "08a43a920345ae11073301d5b2e32913", "score": "0.7363563", "text": "public String sha1() {\n int text = this.hashCode();\n String input = \"\" + id + text;\n MessageDigest mDigest = null;\n try {\n mDigest = MessageDigest.getInstance(\"SHA1\");\n }...
88897089db130f59d1435779dc077d68
Drop 02 items of this living's type
[ { "docid": "b2152ccc56585838caff236c467d645c", "score": "0.5896775", "text": "protected void dropFewItems(boolean par1, int par2)\n {\n int var3 = this.rand.nextInt(3) + this.rand.nextInt(1 + par2);\n int var4;\n \tthis.dropItem(LotsOMobsItems.DinoBone, 1);\n \tthis.dropIt...
[ { "docid": "333df4ef384b512b9666978c2565b375", "score": "0.640977", "text": "public void dropItem()\n {\n // put your code here\n if(i <= 0)\n {\n System.out.println(\"No more items to drop\");\n }\n else\n {\n --i;\n System.o...
7fe7e35fdbca5a3865ef09febc605117
Get the smallest rectangle that bounding the node and label
[ { "docid": "77d6b6fb071ff2e3ef5cb46d73f05064", "score": "0.60220546", "text": "public Rectangle2D getBounds();", "title": "" } ]
[ { "docid": "6de0a616914fd9e2d84642acb6525cc7", "score": "0.7628147", "text": "public Rectangle getLabelBounds(Node node, NodeX nodeX);", "title": "" }, { "docid": "c7795adda3ef0f4bebc6dec99a34bc40", "score": "0.7087943", "text": "public Rectangle getLabelBounds(Edge edge, EdgeX edgeX...
1911c11ab47ff007a74264fed2d05b1a
LoginPageObj LogPgobj = new LoginPageObj (); // Import page objects from page object class CommonMethods CmnMtdobj = new CommonMethods();
[ { "docid": "3666f96720ab08a716a45f053ecace43", "score": "0.0", "text": "public void createDriver() throws MalformedURLException,InterruptedException {\r\n\t\t\r\n\t\tdriver = new FirefoxDriver();\r\n\t\tdriver.manage().window().maximize();\r\n\t\tdriver.manage().timeouts().implicitlyWait(15, TimeUnit.SE...
[ { "docid": "992ab7359240e96d58f126203f7cae3d", "score": "0.73957294", "text": "public LoginPageObjects() {\n\t\t// TODO Auto-generated constructor stub\n \t PageFactory.initElements(driver, this);\n }", "title": "" }, { "docid": "b3e0147af80b9ef2f72bd055cea19c0b", "score": "0.7134...
2f1804011ce4923f91df5f7906b0faca
1. correct the birthdays for your family below
[ { "docid": "bfbd072ef127d748f2976cce6cce549e", "score": "0.54983795", "text": "public static void main(String[] args) {\n\t\t\tString momsBirthday = \"August 27th\";\n\t\t\tString dadsBirthday = \"June 9th\";\n\t\t\tString myBirthday = \"January 6th\";\n\t\t\tString otherBirthday = \"February 12\";\n\t\...
[ { "docid": "91c3a624b7c6ce2597258bef8edfc820", "score": "0.69025177", "text": "public void birthday (String birthdate) {\n \n DateTimeFormatter myFormat = DateTimeFormatter.ofPattern(\"dd/MM/yyyy\");\n LocalDate today = LocalDate.now(); \n String creationDate = today.format(myFor...
9b452f32b15147903f19b40e10b796ad
Resolve collapsing borders for the given cell. Used in case of the collapsing border model.
[ { "docid": "22af1b379ba95e5198439fb6a9c413c1", "score": "0.5382246", "text": "void resolveBorder(final GridUnit other, final int side) {\n switch (side) {\n case CommonBorderPaddingBackground.BEFORE:\n this.borderBefore.resolve(other.borderAfter, true, false, false);\n ...
[ { "docid": "5bd781ce2fe9a7f6e54d30281479824d", "score": "0.60552925", "text": "public void resolveBorderConflict( CellArea cellArea )\n \t{\n \t\tIContent cellContent = cellArea.getContent( );\n \t\tint columnID = cellArea.getColumnID( );\n \t\tint rowID = cellArea.getRowID( );\n \t\tint colSpan = cellA...
786ec320bab08798a84b2149a3bbf6ca
.DistributorShippingAddress distributorShippingAddress = 1;
[ { "docid": "bafb288a1db533e49ed18164f8ab8f5b", "score": "0.67012393", "text": "public Builder setDistributorShippingAddress(com.yhglobal.gongxiao.foundation.area.microservice.ShippingAddressStructure.DistributorShippingAddress value) {\n if (distributorShippingAddressBuilder_ == null) {\n ...
[ { "docid": "8921ee7ae2571c170542d5417dce338a", "score": "0.7235979", "text": "com.yhglobal.gongxiao.foundation.area.microservice.ShippingAddressStructure.DistributorShippingAddress getDistributorShippingAddress();", "title": "" }, { "docid": "8921ee7ae2571c170542d5417dce338a", "score": "...
e26813673935a28e251ecbae3fd86662
Initialises the description of the task.
[ { "docid": "a79449d1694a9e46b1f2eef0078b6dc1", "score": "0.0", "text": "public Deadline(String description, String inputDate) throws CakeException {\r\n super(description);\r\n taskType = TaskType.DEADLINE;\r\n\r\n String formatDate = getFormattedDateX(inputDate);\r\n boolean...
[ { "docid": "5b221c4c101212151ee76fa31c38e90b", "score": "0.7421426", "text": "public Task(String des) {\n description = des;\n isDone = false;\n }", "title": "" }, { "docid": "8cda10779e617c3f6a8a70cd986ad19b", "score": "0.7310972", "text": "public TodoTask(String de...
41162ee1b83a630e60ffd987b876a722
Deletes a particular value from a collection of values for a particular key. You can assume that both the key and the value exist in the map.
[ { "docid": "c9870fba534316602c7002a078739bb8", "score": "0.6771228", "text": "public void deleteValue(String aKey, String aValue)\n {\n /** Create copy of serverMap to modify in case we later decided to perform\n * a destructive operation\n */\n Map<String, Set<String>> updat...
[ { "docid": "c9f8224ea787b0f72fd4f93248dbb2ea", "score": "0.69186103", "text": "boolean remove(Pair<?, ?> keyPair, Object value);", "title": "" }, { "docid": "85e69016e844ecde70019f58010df956", "score": "0.69185996", "text": "public abstract boolean remove(K key, V value);", "titl...
5745d56c99fc717aeb12ae35e76f69da
Symbol for a type : class, enum, interface or annotation.
[ { "docid": "5de0f0b304699d691e1f006ee3a06d26", "score": "0.7794391", "text": "interface TypeSymbol extends Symbol {\n\n /**\n * Returns the superclass of this type symbol.\n * @return null for java.lang.Object, the superclass for every other type.\n */\n @CheckForNull\n Type superCl...
[ { "docid": "9895f0995ce94d69a9e727fb0e3d6207", "score": "0.74979883", "text": "public interface Symbol {\n\n /**\n * Name of this symbol.\n * @return simple name of the symbol.\n */\n String name();\n\n /**\n * The owner of this symbol.\n * @return the symbol that owns this symbol.\n */\n...
8aebd4f112bc48bd16aa9f12d5b9152e
Checks that the supplied CommandLine is valid with respect to this option.
[ { "docid": "69f3eb917c3ad4716aa845f559aba510", "score": "0.67462474", "text": "public void validate( final WriteableCommandLine commandLine ) throws OptionException \n {\n // number of options found\n int present = 0;\n\n // reference to first unexpected option\n Option un...
[ { "docid": "1ae795b305c50a47d596af1da435066b", "score": "0.6778335", "text": "private void checkOptionsIntegrity() throws CliParseException {\n\t\tfor (CliOption cliOption : options) {\n\t\t\tif (!cliOption.isActive()) {\n\t\t\t\tcontinue;\n\t\t\t}\n\t\t\tNumberOfArguments noa = cliOption.getNumberOfArg...
d2e7f675e30e721aed18b6c07f74fd0b
This method was generated by MyBatis Generator. This method returns the value of the database column send_green_thr_comapny_info.organization
[ { "docid": "4251092321d5102b3d76de42dbaa4637", "score": "0.75323313", "text": "public String getOrganization() {\r\n return organization;\r\n }", "title": "" } ]
[ { "docid": "d393bac44ee1316ffbeab99a21f4b4b1", "score": "0.76175004", "text": "public String getOrganization() {\n return _organization;\n }", "title": "" }, { "docid": "d24039d45296cdb52e1e421f22c1b71e", "score": "0.74867094", "text": "public String getOrganization() {\n ...
885f420eea28a638ef1e9676ecb694a8
Get VAData for Root node
[ { "docid": "ef09d744be9057ba2465ff77c4445442", "score": "0.6010606", "text": "public static VAData getRootVAData(VAVariables.ontologyType ontologyType, int set) {\n\t\tNode sNode = null, tNode = null;\n\t\tdouble Similarity = 0.0;\n\t\tif (ontologyType == VAVariables.ontologyType.Source) {\n\t\t\tsNode ...
[ { "docid": "a6144abd64c1792273b4041d99786444", "score": "0.6019461", "text": "public T root() {\n if (this.root == null) {\n return null;\n }\n return this.root.data;\n }", "title": "" }, { "docid": "7fb38b577b5a7f12c78683d6d3635336", "score": "0.598495...
4ec2ed8ed593532c2db265290434bb46
Parse an incoming object.
[ { "docid": "44fc791c15491d4f89d3e0ee7057c815", "score": "0.0", "text": "private Map<String, Object> parseJsonObject(String object) {\n try {\n @SuppressWarnings(\"unchecked\")\n Map<String, Object> map = MAPPER.readValue(object, Map.class);\n return map;\n } catch (Throwable e) {\n ...
[ { "docid": "1a64a6620d8ce0b4512a63cb1cfdfc1b", "score": "0.7018494", "text": "@Override\n abstract public Object parseObject(\n String source, \n ParsePosition status);", "title": "" }, { "docid": "5f8549487b89e1840abaee280eefef17", "score": "0.6751805", "text": "protec...
b67d5f320693eb43aaf2b867f524c673
~ ~ Constructors ~
[ { "docid": "49652bff7803010f1a94e52de123eb33", "score": "0.0", "text": "public ClassAImpl(int i) {\n super();\n this.i = i;\n }", "title": "" } ]
[ { "docid": "2fda59f727914730e1ccc0c0b05e57bd", "score": "0.8504269", "text": "Constructor() {\r\n\t\t \r\n\t }", "title": "" }, { "docid": "613eaf0e2608925a418a73b23312e1bc", "score": "0.80405015", "text": "public Constructor(){\n\t\t\n\t}", "title": "" }, { "docid": "eae...
45606614c54841a03f9d4d4e16c1a8f1
/ Access modifiers changed, original: protected / JADX WARNING: Removed duplicated region for block: B:71:0x0204 / JADX WARNING: Removed duplicated region for block: B:65:0x0175 / JADX WARNING: Removed duplicated region for block: B:56:0x0157 / JADX WARNING: Removed duplicated region for block: B:65:0x0175 / JADX WARNI...
[ { "docid": "e2fd6e31a09bac29ff463ef2bb741545", "score": "0.0", "text": "@android.annotation.SuppressLint({\"NewApi\"})\n public void onMeasure(int r30, int r31) {\n /*\n r29 = this;\n r8 = r29;\n r0 = android.view.View.MeasureSpec.getSize(r30);\n ...
[ { "docid": "c6e39a9d882a0bffbf84165ee31f8234", "score": "0.5685346", "text": "@Test(timeout = 4000)\n public void test026() throws Throwable {\n ErrorPage errorPage0 = new ErrorPage();\n Component component0 = errorPage0.wBlock(\"PyOd\");\n List<CharSequence> list0 = component0._getRen...
68cec5b482d11f74e28ad945cc0bde66
Check versions against rule configuration.
[ { "docid": "851d4e87a71e1bea588d5448e95a35a8", "score": "0.54704005", "text": "void checkVersion(MavenVersion nativeVersion, List<RuleFailure> failures) {\n MavenVersion ruleVersion = toMavenVersion(version);\n boolean success;\n switch (matcher.toLowerCase()) {\n case \"...
[ { "docid": "e5bf1b8bc9a46a788495efbb40dc1c8b", "score": "0.6626696", "text": "boolean checkVersions() { return true;\n }", "title": "" }, { "docid": "2bdbaa8001ca39c00d67edcc796ef266", "score": "0.64350045", "text": "private void checkVersions(final NodeList versionCollection, boo...
5b05344f901adf067fbd12261a4f6712
optional bool explicit = 9;
[ { "docid": "f4b967303d9f903c90ec7978cef42961", "score": "0.0", "text": "public boolean hasExplicit() {\n return ((bitField0_ & 0x00000100) == 0x00000100);\n }", "title": "" } ]
[ { "docid": "4c2f1cbd7b235182c04c71cd9b609e63", "score": "0.6969486", "text": "boolean getExplicit();", "title": "" }, { "docid": "d4802c70e3398c2851cad00a69658cd4", "score": "0.6726187", "text": "Optional<Boolean> optional();", "title": "" }, { "docid": "657c3109e2e341cfc...
c6397eb2d19285bd51218201a4489264
Test the property 'phoneNumber'
[ { "docid": "3feee0f0cfee77b53ea314d8f43b1f1a", "score": "0.67840123", "text": "@Test\n public void phoneNumberTest() {\n // TODO: test phoneNumber\n }", "title": "" } ]
[ { "docid": "f7be5ec528fabff78a6c4a164b27c344", "score": "0.72394454", "text": "@Test\n void validateAvailablePhonenumberTest() {\n boolean phoneExists = userAddressDaoTest.validatePhonenumber(\"9999999999\");\n assertTrue(phoneExists);\n }", "title": "" }, { "docid": "317...
8f43f641278e5a06257c8eee79e8af2e
Invokes a group command on the server.
[ { "docid": "c8914d048be48bce09a2baa5e37f6a87", "score": "0.6001349", "text": "public ListenableFuture<MongoIterator<Element>> groupByAsync(\n GroupBy.Builder command) throws MongoDbException;", "title": "" } ]
[ { "docid": "e71bbef0b73cb0494ac05f63404be289", "score": "0.61522484", "text": "public final void rule__Command__Group_1__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCompilation.g:1592:1: ( rule__Command__Group_1__0_...
7528b22e01b27edc31cd59493fe4de7e
Allow adding a new soft cardinality constraint in the solver.
[ { "docid": "620f1cb0bf55612df75e90d72a179063", "score": "0.53775847", "text": "public IConstr addSoftAtMost(int weight,IVecInt literals,int degree) throws ContradictionException {\n\t\treturn addSoftAtMost(BigInteger.valueOf(weight),literals,degree);\n\t}", "title": "" } ]
[ { "docid": "024a867d715e2ce8c08ef20678649362", "score": "0.61753297", "text": "void addHasConstraint(String newHasConstraint);", "title": "" }, { "docid": "ad4225b191b732530a36372f44d35da1", "score": "0.61187387", "text": "@Override\n\tboolean hasConstraint()\n\t{\n\t\treturn true;\n...
daf3d1b1f9f993c829842e8b7884cfc7
GENFIRST:event_btBuscarActionPerformed TODO add your handling code here:
[ { "docid": "9c0a39e05266a33ebd87dc25750bd474", "score": "0.7443855", "text": "private void btBuscarActionPerformed(java.awt.event.ActionEvent evt) {\n if(txtBusca.getText().equals(\" . . - \")){\n JOptionPane.showMessageDialog(this, \"Preecha o campo de busca\", \"Atenção\", JOp...
[ { "docid": "d6b989a70b1339dd945ab55c85e2a48b", "score": "0.7807746", "text": "private void jbFecharCaixaActionPerformed(java.awt.event.ActionEvent evt) {\n }", "title": "" }, { "docid": "025bb60b13014b8fe1ea657c9bc74898", "score": "0.77550036", "text": "private void boton_guardar_...
033d91efa03747288c0ab36ef9a7713a
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. //GENBEGIN:initComponents
[ { "docid": "049245601037d3efdbee58cd736eadd1", "score": "0.0", "text": "private void initComponents() {\r\n\r\n jPanel1 = new javax.swing.JPanel();\r\n jScrollPane1 = new javax.swing.JScrollPane();\r\n jList1 = new javax.swing.JList();\r\n jLabel1 = new javax.swing.JLabel();\...
[ { "docid": "5a3ef8ce8c5f955012b5237ca22e404b", "score": "0.78867096", "text": "@SuppressWarnings(\"unchecked\")\n // <editor-fold defaultstate=\"collapsed\" desc=\" Generated Code \">//GEN-BEGIN:initComponents\n private void initComponents() {\n\n }", "title": "" }, { "docid": "99a2...
531eb0257b7c03bf8376deb197232435
/ Enter your code here. Read input from STDIN. Print output to STDOUT. Your class should be named Solution.
[ { "docid": "1fb871829970661fa15985f6d7343750", "score": "0.0", "text": "public static void main(String[] args) throws FileNotFoundException {\n Scanner in = new Scanner(new File(\"/home/oscar/IdeaProjects/googleinterview/src/codejam/militarytime/input.txt\"));\n String timeStr = in.next();...
[ { "docid": "21b737dba83703ab890e4e18139f634c", "score": "0.75166786", "text": "public static void main(String args[]) throws Exception {\n new Solution();\n }", "title": "" }, { "docid": "5566d8d8db8089087a904a901cee8ca8", "score": "0.7186143", "text": "public static void m...
aaa4143fa7e5b7096875351ed71c843f
launch the Activity to handle the request
[ { "docid": "9ead8be0be62382f69af35875f431752", "score": "0.0", "text": "private void launchSelectClearableCalendars() {\n Intent intent = new Intent(Intent.ACTION_VIEW);\n intent.setClass(mContext, SelectClearableCalendarsActivity.class);\n intent.setFlags(Intent.FLAG_ACTIVITY_REORD...
[ { "docid": "6be44529f5ef223c01ad8446eef23c1f", "score": "0.6822173", "text": "@Override\n public void run() {\n startActivity(intent);\n }", "title": "" }, { "docid": "e3bbe5243dac3db1771eb136c94822ea", "score": "0.6742049", "text": "@Override\n\t...
504a8658be2c7ecb6ba8874dba54a08d
Returns the names of the involved fields when post processing.
[ { "docid": "1d2881489cae20fbee56cf9a550cded7", "score": "0.722475", "text": "public Set<String> postProcessingFields() {\n Set<String> fields = new LinkedHashSet<>();\n query.forEach(condition -> fields.addAll(condition.postProcessingFields()));\n sort.forEach(condition -> fields.ad...
[ { "docid": "a526d8e4533cdd7dccf2069baaa74f1d", "score": "0.63727814", "text": "public String[] getFieldNames() { return this.FieldNames; }", "title": "" }, { "docid": "76d5f6c047ee354478dc65119679963b", "score": "0.61719203", "text": "public String[] fieldNames() {\n String...
0deb3e5314f34fd3f5d630a5b8448265
tests if the pad function adds zeroes correctly
[ { "docid": "fb800dcb15a747a66417c6c6bf9de41a", "score": "0.7282458", "text": "@Test\n\tpublic void testPad(){\n\t\tassertEquals(\"padding should pad until the correct length\", \"0002\", Colour.pad(\"2\", 4));\n\t\t\tassertEquals(\"the padding function should not pad strings \" +\n\t\t\t\t\t\"larger tha...
[ { "docid": "7c186a89b921915764e2d2babf5470ce", "score": "0.6833115", "text": "private void pad() {\n int newOffset = ((offset + 3) / 4) * 4;\n while (offset < newOffset) {\n buffer[offset++] = 0;\n }\n }", "title": "" }, { "docid": "e24167057ae59f844145600cb7bab915", "scor...
4f86849bed771c0b36c87ed9681832b3
Get the list of fixture selectors for a given family of fixtures
[ { "docid": "431f568c78243148f3fb0f4b478c114f", "score": "0.63038456", "text": "abstract protected Object[] getFixtureKeysForFamily(E fixtureFamily);", "title": "" } ]
[ { "docid": "bd2a2115b4a6d3260cf38d467759f0f0", "score": "0.59783053", "text": "@Override\n public List<Class<? extends FixtureScript>> getFixtures() {\n return Lists.newArrayList();\n }", "title": "" }, { "docid": "c88065cfa7e4f4a85cefbc39bea4bc65", "score": "0.5211584", ...
03f55cc6d9c28dd26645e80d8f26c0ce
This method was generated by MyBatis Generator. This method corresponds to the database table onlykey
[ { "docid": "98b05850be574048dec321d7569775cb", "score": "0.0", "text": "int updateByExample(@Param(\"record\") OnlykeyBean record, @Param(\"example\") OnlykeyBeanExample example);", "title": "" } ]
[ { "docid": "4add3b457cde05d13d1077aa4bcd625e", "score": "0.6370926", "text": "public String keySql() {\n\t\tswitch (this) {\n\t\tcase PRIMARY_KEY:\n\t\t\treturn \"PRIMARY KEY\";\n\t\tcase UNIQUE_KEY:\n\t\t\treturn \"UNIQUE\";\n\t\tdefault:\n\t\t\treturn \"\";\n\t\t}\n\t}", "title": "" }, { "...
f0e603635690c3096519a17f76833051
bulk insert of list of Post object
[ { "docid": "984893787422e55dba959451cc7858f4", "score": "0.7872498", "text": "public void safeBulkInsert(List<Post> posts) {\n\t\t\n\t\ttry {\n\t\t\tfinal PreparedStatement stmt = m_dbOperations.getConnection().prepareStatement(m_insertQuery);\n\t\t\tfor(Post post: posts) {\n\t\t\t\tstmt.setObject(1, po...
[ { "docid": "bc5485ee3a7dd55b7c744517b2b0a25d", "score": "0.67485744", "text": "List<T> insert(List<T> entities);", "title": "" }, { "docid": "ae379fa3fa06ad738f58e362827e3b9b", "score": "0.66158074", "text": "private void insertRecordsIntoIndex(final Collection<Document> posts) throw...
94f7dbf7cd72ab0a80b4a86f2ba7285a
getter for student sub3 marks.
[ { "docid": "cf4c44694782aa7d8d9cb9e6646b0bc9", "score": "0.7863734", "text": "public int getsub3marks() {\n return sub3marks;\n }", "title": "" } ]
[ { "docid": "2481c92a55555b9965a23bec94003c51", "score": "0.6845094", "text": "public int getsub1marks() {\n return sub1marks;\n }", "title": "" }, { "docid": "442755f4847abd420ac2be1135f36817", "score": "0.6757869", "text": "public int getsub2marks() {\n return sub2m...
6a11574f0fb1e87d32948465421a54df
Delete all VAOs and VBOs
[ { "docid": "2b75e48aa08b27201cd67da7718b2b75", "score": "0.75355375", "text": "public static void cleanup() {\n\t\tfor (int vao : vaos) {\n\t\t\tGL30.glDeleteVertexArrays(vao);\n\t\t}\n\t\tfor (int vbo : vbos) {\n\t\t\tGL15.glDeleteBuffers(vbo);\n\t\t}\n\t\tfor (int texture : textures) {\n\t\t\tGL11.glD...
[ { "docid": "c17f1771fb50cf734ded10ba4ef00878", "score": "0.7661338", "text": "public void cleanUp()\n {\n for (int vaoID : vaos)\n {\n GL30.glDeleteVertexArrays(vaoID);\n }\n for (int vboID : vbos)\n {\n GL15.glDeleteBuffers(vboID);\n }\...
d4a1647bdd6adb4a89b5a8c7c2cd148a
1 3 5 4 2
[ { "docid": "0364416d6ff65d15edf285bbae0660f7", "score": "0.0", "text": "public void nextPermut(int[] arr) {\n\t\tif(arr == null || arr.length <=1) return;\n\t\tint first, second;\n\t\tint len = arr.length; \n\t\tfor(int i = len -2 ; i>=0 ; i--) {\n\t\t\tboolean found = false;\n\t\t\tif(arr[i] < arr[i+1]...
[ { "docid": "1f9f336e8ba159edae66b831e50a1fbf", "score": "0.5599483", "text": "int part( int i );", "title": "" }, { "docid": "34bf94ebcdeac06c9e32e2d9724eea81", "score": "0.5499575", "text": "Integer order();", "title": "" }, { "docid": "71e1e8ca18f2f25c93f130a072f729f5",...
188c7c33a896e214185b54cccf810ebe
Constructor for a Node
[ { "docid": "efb5a24f83ffeba765b1cb173ce24e7a", "score": "0.6907917", "text": "public Node(int x, int y) {\n\t\t\tpos = new Vector2f(x,y);\n\t\t}", "title": "" } ]
[ { "docid": "20b8164c50a0699b1a402f85998b681a", "score": "0.89082146", "text": "public Node(){}", "title": "" }, { "docid": "4af027f27410f59457890a1d09346e68", "score": "0.87335366", "text": "public Node() {}", "title": "" }, { "docid": "7a36bacc2de6d3d8e96700b8b4744bfa", ...
741f0134ae7d43f2f4bd393cf78855ea
Click on Age Button.
[ { "docid": "6c24ba0ab1c17b7fce9480e4e8bdd7cf", "score": "0.71164393", "text": "public RegisterPage clickOnConfirmAgeButton()\n {\n confirmAgeButton.click();\n return this;\n }", "title": "" } ]
[ { "docid": "bdae349160d2466a7e2567a43c03bff4", "score": "0.6420403", "text": "@Override\n\t\t\t\t\t\tpublic void onClick(View arg0) {\n\t\t\t\t\t\t\tmCurriculumVitaeInterface.onBirthday();\n\t\t\t\t\t\t}", "title": "" }, { "docid": "fc478ffdd1e93e1ba1425b30b49f2629", "score": "0.6344782"...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "0c5a2896cbe659d810089e3078679041", "score": "0.0", "text": "public int addPaperUserRelationships(PaperUserRelationships PaperUserRelationships) {\n\t\tgetConn();\n\t\tString sql = \"insert into paperuserrelationship values (NULL, ?, ?, ?, ?)\";\n\t\tint paperID = PaperUserRelationships.getPa...
[ { "docid": "fd7df110e087032be8c98522c4493f41", "score": "0.6681592", "text": "@Override\n public void otvori() {\n }", "title": "" }, { "docid": "fd7df110e087032be8c98522c4493f41", "score": "0.6681592", "text": "@Override\n public void otvori() {\n ...
49740ed18020def4dedc7fe10a2149db
Find all methods with the annotation in the specified bean.
[ { "docid": "89d3a64b42dd481f183c21dda5fb6fca", "score": "0.7425031", "text": "public static List<Method> findMethodsWithAnnotation(ApplicationContext context, String beanName, Class<? extends Annotation> annotation) {\n\t\tClass<?> clazz = context.getType(beanName);\n\t\tif (clazz == null || Modifier.is...
[ { "docid": "77ebb05db7197d687a87c309568ae4b7", "score": "0.652153", "text": "public static Map<String, List<Method>> findAllMethodsWithAnnotation(ApplicationContext context, Class<? extends Annotation> annotation) {\n\t\tMap<String, List<Method>> map = new HashMap<>();\n\t\tString[] names = context.getB...
8ed7fabf4c5059e0f81b11002eebe932
Retrieve a single Corporation search.
[ { "docid": "b4aa9df5672a8ef14438e8370e8cac68", "score": "0.5814698", "text": "public CorporationSearches getSearch(long userSearchId) throws SearchException {\r\n\t\ttry {\r\n\t\t\tCorporationSearches search = CorporationSearchesPeer.retrieveByPK(userSearchId);\r\n\t\t\treturn search;\r\n\t\t} catch (To...
[ { "docid": "9ed354fe97d33ac15e1dafbc486cf1e8", "score": "0.58342665", "text": "@GET(\"_search\")\n\tpublic Call<Object> search();", "title": "" }, { "docid": "61ff130c5ffdfc8d3a9452e530dda9ae", "score": "0.56070906", "text": "public Company findCompanyByName(String name) throws Excep...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "1213dd6c289be0494a3e46b69f0ebe40", "score": "0.0", "text": "@Override\n\t\t\t\t\t\t\t\tpublic void onClick(DialogInterface dialog, int which) {\n\t\t\t\t\t\t\t\t\tctotal=ctotal-(p*Integer.parseInt(e1.getText().toString()));\n\t\t\t\t\t\t\t\t\t//Toast.makeText(search_product_view.this,ctotal....
[ { "docid": "ffe5fe3cec40acf4b0b07ea257dfa06a", "score": "0.6831473", "text": "private void apparence()\r\n\t\t{\r\n\r\n\t\t}", "title": "" }, { "docid": "838a915c9ea69d56cc37df198cff9cb2", "score": "0.67589027", "text": "@Override\n\t\t\t\tpublic void pintar() {\n\t\t\t\t\t\n\t\t\t\t...
f8dfa8038af95aa6095c229a68d063c9
title name(osd,logo) string truck_title = 2;
[ { "docid": "eb7972f15b9be05ce3dc7363beba5753", "score": "0.0", "text": "public java.lang.String getTruckTitle() {\n java.lang.Object ref = truckTitle_;\n if (ref instanceof java.lang.String) {\n return (java.lang.String) ref;\n } else {\n com.google.protobuf.ByteString bs = ...
[ { "docid": "8dcb95cd380624233ac94c073dc227df", "score": "0.695893", "text": "java.lang.String getTruckTitle();", "title": "" }, { "docid": "8cc996fd2ad7b6d930324900fe3ca131", "score": "0.66009736", "text": "SoGallery setTitle(String title);", "title": "" }, { "docid": "42...
7a62f72ba0c2bd43a7e3c418709f96cb
ALERT this method might crash depending on the state of the server of PandaScore. We had troubles with the page "32" crashing, when initiation with the date 20200101", we chose to initiate the data collection in may, because it's between two split of league of legends pro season
[ { "docid": "d551f9799ea35ce00b6822f84f98ba2c", "score": "0.0", "text": "public List<Team> updateTeam(DataLog dataLog, String url) throws JsonProcessingException {\n HttpEntity req = new HttpEntity(this.headers);\n boolean stop = false;\n int pageCount = 1;\n List<Incident> in...
[ { "docid": "98d78a1fb873f0d0c81c3d9b946a7071", "score": "0.5424417", "text": "private void processTournamentScore() {\r\n if (playerId == null || tournamentId == null) return;\r\n\r\n // Attempt to go to a webpage\r\n try {\r\n String s;\r\n\r\n int checksum = ...
b61d5fd53f4889ec617a7aac6372d44d
/ access modifiers changed from: private
[ { "docid": "a909029d3812f70683b341658f194902", "score": "0.0", "text": "public final void addDecisionPoints(List<DecisionPoint> list, Context context) {\n ArrayList arrayList = new ArrayList();\n if (list != null) {\n for (DecisionPoint decisionPoint : list) {\n i...
[ { "docid": "33d41636b65afa8267c9085dae3d1a2d", "score": "0.6752478", "text": "private void apparence() {\r\n\r\n\t}", "title": "" }, { "docid": "4e49f5db36ca664153e54380025b85d4", "score": "0.66340905", "text": "protected boolean method_21825() {\n }", "title": "" }, { "...
067afb480d1d9f75a09fdb1c7bbe2f58
optional int32 x = 3;
[ { "docid": "8adc6e0b7ec2281a1a4e4a055736e227", "score": "0.0", "text": "public Builder setX(int value) {\n bitField0_ |= 0x00000004;\n x_ = value;\n onChanged();\n return this;\n }", "title": "" } ]
[ { "docid": "81a36ebef6111b8217f0dc47c155cc71", "score": "0.6030073", "text": "int getInteger3();", "title": "" }, { "docid": "036000be1f8e85ba6478b027e8d5d88e", "score": "0.5969092", "text": "Integer integerValue();", "title": "" }, { "docid": "28e70aacce99eda7227e24ba2a7...
020e8ec445d63051b1c28b882a81cf15
Sets the default event handler.
[ { "docid": "a355127f5fb99c3cbba97209ad05fc1c", "score": "0.6980664", "text": "public void setDefaultEventHandler(AReturnReceiver iDefaultReceiver) {\r\n\t\t\r\n\t\tdefaultReceiver = iDefaultReceiver;\r\n\t}", "title": "" } ]
[ { "docid": "bee878182957a850234e3e281ebf2858", "score": "0.77111953", "text": "public void setDefaultHandler(Handler defaultHandler)\n { this.defaultHandler=defaultHandler;\n }", "title": "" }, { "docid": "6eca43ccbc825df079091f65a69bbae1", "score": "0.73508364", "text": "void setD...
60d9eefe47fc2eebe5c0bb15b794aaa0
required int32 accuracy = 2;
[ { "docid": "e82c056bfa383dd7afbbcc075c434cf1", "score": "0.0", "text": "public Builder clearAccuracy() {\n bitField0_ = (bitField0_ & ~0x00000002);\n accuracy_ = 0;\n onChanged();\n return this;\n }", "title": "" } ]
[ { "docid": "92c90b4fbea50350859024071680c83e", "score": "0.7756334", "text": "int getAccuracy();", "title": "" }, { "docid": "92c90b4fbea50350859024071680c83e", "score": "0.7756334", "text": "int getAccuracy();", "title": "" }, { "docid": "78812551c8f469ff9f0069852190abe9...
3d38f9baeb201be5c2aecc7b9faed1fd
Returns a new object of class 'Base2 Measurement Relationship'.
[ { "docid": "d28e73805a07439ad2011a1696640ab4", "score": "0.863693", "text": "Base2MeasurementRelationship createBase2MeasurementRelationship();", "title": "" } ]
[ { "docid": "50239faa156e9eda839ca482fd2aa239", "score": "0.8331443", "text": "Base1MeasurementRelationship createBase1MeasurementRelationship();", "title": "" }, { "docid": "27da4a8f9224344acc2b59ed6e4ed8a7", "score": "0.80773544", "text": "Base2MeasureRelationship createBase2Measure...
c4e5c683e92babe6fa15aa07ce187f94
Parses a String using the named Charset Encoding.
[ { "docid": "2b110c143b7f7bf374798c5459105e3f", "score": "0.50337297", "text": "public static String parseString(ByteBuffer bb, int strLen, String encoding) {\n int length = Math.min(bb.remaining(), strLen);\n if (length <= 0) {\n return \"\";\n }\n\n byte[] buf = n...
[ { "docid": "ebe1129f2b3d2ef91add30fce920dda1", "score": "0.65460473", "text": "public static Charset parseCharset(Environment env, String string) {\n\t\t\n\t\tif(string == null || string.isBlank()) {\n\t\t\treturn null;\n\t\t}\n\t\t\n\t\tCharset charset = Charset.forName(string.toUpperCase());\n\t\t\n\t...
8a6531203c9f1a16373aaf80e82a1d61
Logs in a user and sets them as the current user
[ { "docid": "4cb8934a89a243df5ff9a99f5ea103f9", "score": "0.6313935", "text": "private boolean login(int id) {\n User user = db.appDao().getUserById(id);\n if (user == null) {\n return false;\n }\n currentUser = user;\n sharedPref.edit()\n .put...
[ { "docid": "d5f9da577f7e635b18f380d038c716b6", "score": "0.757631", "text": "public void login() {\r\n\t\tcurrentUser = null; // logout the previous user\r\n\t\tString username = getUsernameOrPassword(\"Username: \");\r\n\t\tString password = getUsernameOrPassword(\"Password: \");\r\n\t\tUser u = getAll...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "451740c183976ecb8692c087f790bb74", "score": "0.0", "text": "public static void sendMail(UserInformation userInformation, JavaMailSenderImpl mailSenderImplementation, String jwtToken) {\n\t\ttry {\n\t\t\tSimpleMailMessage simpleMsg = new SimpleMailMessage();\n\t\t\tsimpleMsg.setTo(userInforma...
[ { "docid": "3d9823aba51891281b4bbd4b1818b970", "score": "0.6671074", "text": "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "title": "" }, { "docid": "0b5b11f4251ace8b3d0f5ead186f7beb", "score": "0.6567672", "text": "@Override\n\tpublic void comer() {\n\t\t\n\t}", "ti...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "1d224b1c495e9be2eaa72d5a58c39717", "score": "0.0", "text": "@Override\n public void tap() {\n \n }", "title": "" } ]
[ { "docid": "1acc57d42c31dee937ac33ea6f2a5b0b", "score": "0.6836411", "text": "@Override\r\n\tpublic void comer() {\n\t\t\r\n\t}", "title": "" }, { "docid": "33d41636b65afa8267c9085dae3d1a2d", "score": "0.6679176", "text": "private void apparence() {\r\n\r\n\t}", "title": "" }, ...
8f455c64c24acaa9e27889169b0390ce
Downloads an user's image and sets it as current image of the profile if nothing was set. If downloaded file exists, deletes the downloaded temporal file.
[ { "docid": "3998c51f267556cecdd0ba5c9f93d0aa", "score": "0.0", "text": "@Override\n protected void doPost(HttpServletRequest req, HttpServletResponse resp)\n throws ServletException, IOException {\n helper.init(req, resp);\n\n try {\n\n String deleteRequest = req.g...
[ { "docid": "5a2c78100c38412367fcc5453200d1dc", "score": "0.65752304", "text": "private void setPhoto() {\n try {\r\n final File localFile = File.createTempFile(\"images\", \"jpg\");\r\n mStorageRef.child(\"profile_photos/\" + otherUser + \".jpg\")\r\n .get...
9cdd14c7ccc114e7fe922b2b16a3162b
This method is used to prepare statistics report with regard to the overlay graph.
[ { "docid": "d5256ceaf2bf38b68a6795a690accf50", "score": "0.5594612", "text": "public void showOverlayStatistics()\n\t{\n\t\tStringBuilder buffer = new StringBuilder();\n\t\tbuffer.append(\"Number of Nodes on Overlay Network - \").append(overlay.getVertexCount()).append(\"\\n\");\n\t\tbuffer.append(\"Nod...
[ { "docid": "3cb8a1b4c03646faaae395c2dd3e7906", "score": "0.61710715", "text": "public void setupStats() {\r\n nbGoodLeftTurns = LeftTurnEvent.getNbOfGoodInstances();\r\n nbMediumLeftTurns = LeftTurnEvent.getNbOfMediumInstances();\r\n nbBadLeftTurns = LeftTurnEvent.getNbOfBadInstance...
0074ed2f3c0f5b1ef82487ee50268d5b
This method was generated by MyBatis Generator. This method sets the value of the database column review_video_manager_cuts.del_flg
[ { "docid": "fa844ffe9f59b87a78973f7110bb5d86", "score": "0.4295904", "text": "public void setDelFlg(String delFlg) {\r\n this.delFlg = delFlg == null ? null : delFlg.trim();\r\n }", "title": "" } ]
[ { "docid": "1fdbc4d8a652e4743081051b82e03863", "score": "0.51490116", "text": "@Override\n public void ReviewDelete(int cmnt_seq) throws SQLException {\n sqlsession.getMapper(CommunityDao.class).reviewDeleteOne(cmnt_seq);\n }", "title": "" }, { "docid": "3a829ac434093543af42566927d1...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "e13e1bc6f66f3aaea9faf8478f5aa7e9", "score": "0.0", "text": "public static void main(String[] args) {\n\n\t\tString s1=\"triangle\";\n\t\tString s2=\"integral\";\n\t\tSystem.out.println(checkAnagram(s1,s2));\n\t}", "title": "" } ]
[ { "docid": "f4bccec648e6eb25ae6f4d7165ffc5a1", "score": "0.7037216", "text": "@Override\n\t\t\tpublic void Goruntule() {\n\t\t\t\t\n\t\t\t}", "title": "" }, { "docid": "27bc40cf2c5e26e0bf8b70807e0bcaed", "score": "0.68683225", "text": "@Override\r\n\tpublic void caminar() {\n\t\t\r\n...
3fa9081655986276d0e10656413a865b
Test case number: 208 /Coverage entropy=2.40490507609277
[ { "docid": "3eb1a262f592893f3d54e605553a6a3f", "score": "0.0", "text": "@Test(timeout = 4000)\n public void test208() throws Throwable {\n ErrorPage errorPage0 = new ErrorPage();\n Component component0 = errorPage0.a();\n Checkbox checkbox0 = new Checkbox(component0, \"&S{hsz3>GACL:`Q\...
[ { "docid": "09ddf7d6deb78bd2f34137112ee50c64", "score": "0.6767153", "text": "@Test\n public void testEntropy() {\n System.out.println(\"entropy\");\n ChiSquareDistribution instance = new ChiSquareDistribution(20);\n instance.rand();\n assertEquals(3.229201359, instance.en...
1b0db9a86fbc30535f4932272842fb48
/ renamed from: a
[ { "docid": "1185309994771f4fdd1c58278169ca54", "score": "0.0", "text": "public void mo4717a(Context context) {\n this.f1794a = context;\n this.f1795b = EnumC0613d.init;\n this.f1799f = new ArrayList();\n this.f1800g = new HashMap();\n this.f1801h = new HashMap();\n ...
[ { "docid": "acca3c01e51d08a4d60d67937f3fd23f", "score": "0.6243165", "text": "public interface C2525a {\n /* renamed from: a */\n void m12672a();\n }", "title": "" }, { "docid": "0b5ec8f53273b48128542de9a10a26fa", "score": "0.61942255", "text": "public interface C353...
d53ef7ec4172dd88032f11f2dcbec565
En este metodo se realizan las acciones de las consultas
[ { "docid": "5dd614d5a680c32fe77afdee61be5a4e", "score": "0.0", "text": "@Override\n public void actionPerformed(ActionEvent e) {\n Connection con = null;\n //aqui se compara si se presiono el boton guardar\n if (e.getSource() == vistaEquipo.btnGuardar) { \n //primero c...
[ { "docid": "a4d520f209a4346ca75d11fe83721e57", "score": "0.7070963", "text": "private static void consultar() {\n\r\n\t}", "title": "" }, { "docid": "5b66fdcf0cb1c90b8b4d98eeb87cdd8a", "score": "0.6893587", "text": "public void consultar() {\n\t\t\r\n\t\tEmpregado usuario = new Empre...
a42dc2a5e6c1f6b032102b43535ff691
Returns the height of the frame
[ { "docid": "e967fdb86cc9c2dc86bdae792a4489c7", "score": "0.0", "text": "public int getHeight() {\n return 0;\n }", "title": "" } ]
[ { "docid": "2df3ca9f1938dbc335896de26c8e0efa", "score": "0.896708", "text": "int getFrameHeight();", "title": "" }, { "docid": "aecb4ab74abbbc635b2fdb4d8c7c7bfb", "score": "0.89144385", "text": "public int getHeight() {\n\t\treturn frameHeight;\n\t}", "title": "" }, { "do...
4df154b4557edc2765a448746d4c1e7c
Creates a new instance of DefaultInferenceWorker.
[ { "docid": "4d64e9a5b93a31179e8fef86294fa170", "score": "0.4629472", "text": "public DefaultInferenceWorkerSynch(FormulaSentence query, ElMt mt,\n InferenceParameters queryProperties, Map nlGenerationProperties,\n CycSymbol answerProcessingFunction, boolean optimizeVariables,\n CycAccess ...
[ { "docid": "5a2dde572c66b0bb478f00f6dc2052e2", "score": "0.61396646", "text": "private void init() {\n addInferenceListener(new InferenceWorkerListener () {\n @Override\n public void notifyInferenceAnswersAvailable(InferenceWorker inferenceWorker, List newAnswers) {\n }\n\n @Overr...
5a1cae056aefdf81bda74ceef3b42b59
/ TODO: Update entry.... (add/delete reservation) add works but we need delete....
[ { "docid": "5a332868c634ada43ec8ba8652462ba9", "score": "0.0", "text": "public ReservableRoom fetchEntryByIndex(long rowId) {\n// Log.d(TAG, \"fetching entry: \" + rowId);\n\n // Get readable database\n SQLiteDatabase database = getReadableDatabase();\n\n // Query for rowId\n...
[ { "docid": "32d5d70c1fbc07340f98da911b21f8cc", "score": "0.6405033", "text": "public void editReservation(int index, String name, int partySize, String phoneNumber, String list){\n\n }", "title": "" }, { "docid": "b22f4b0f57b331de89fdc90472689543", "score": "0.63248575", "text": "...
66fb101f7d46ebd7c2eefa8f90271f31
Selects randomly an object
[ { "docid": "9dd355deee8dbc3bd1a5e2a26be2402d", "score": "0.6305156", "text": "public static Object randomSelect(Object first, Object second, Object... objects) {\r\n\t\tif (first == null || second == null)\r\n\t\t\tthrow new NullPointerException(\"\\\"first\\\" and \\\"second\\\" parameters can't be nul...
[ { "docid": "e69e776bf4335adfa01734dcdd8d7f98", "score": "0.6968728", "text": "protected Object selectRandom(Object[] array)\n {\n int randomIndex = GENERATOR.nextInt(array.length);\n int randomNumber = GENERATOR.nextInt(array.length / 2);\n int randomOperation = GENERATOR.nextInt...
b6384329ee42cee8aad4e76d9854e828
we don't need to defensive copy
[ { "docid": "67ae25c976df7c1c742dd6e995bdf5d2", "score": "0.0", "text": "@Override\n\t\t\tpublic Iterable<Integer> getParamIndexForNegativeCheck() {\n\t\t\t\treturn annotatedParams;\n\t\t\t}", "title": "" } ]
[ { "docid": "7df27ec74c395763e56cbed2341599f8", "score": "0.6619349", "text": "private ObjectCloner() {\n\t\t}", "title": "" }, { "docid": "615844694d2bd08c83d4062de74cbbae", "score": "0.6400066", "text": "private static void testCopy() {\n\n\n }", "title": "" }, { "docid...
23e117ad0648d5779a262737165e57b6
Method to get manage page url.
[ { "docid": "bc4f6a2ee5bc1319834611fde01703a2", "score": "0.6632794", "text": "private String getVideoManageUrl() {\n String url = mManageVideoUrl;\n if (mPostParams != null && !mPostParams.isEmpty()) {\n url = mAppConst.buildQueryString(url, mPostParams);\n }\n url...
[ { "docid": "f03222768674c92ab4c52cfda27104bc", "score": "0.66167843", "text": "public abstract String getPageUrl();", "title": "" }, { "docid": "fe87cbb118790b4be5ffc0c5d19a3664", "score": "0.65911025", "text": "public abstract String getFullPageUrl();", "title": "" }, { ...
53673f74de16b701dbeed7f89a5d3ea8
Return radome serial number.
[ { "docid": "04b8b2e99d0834ed03abac7aaf8f4143", "score": "0.8377073", "text": "public String getRadomeSerialNumber() {\n return radomeSerialNumber;\n }", "title": "" } ]
[ { "docid": "2e5ba6ac51a2105cff21b4c8d2cedd14", "score": "0.73249036", "text": "public void setRadomeSerialNumber(String value) {\n this.radomeSerialNumber = value;\n }", "title": "" }, { "docid": "8cbb2055de4842365527e12bda3b582f", "score": "0.7272477", "text": "java.lang.Stri...
55a28e6294d6653663698ad72d9020ce
Method called on game render.
[ { "docid": "9d6c9195f10de2d7419a3904e9c9c000", "score": "0.0", "text": "protected void render() throws Exception {\n gameStates[activeGameState].render();\n }", "title": "" } ]
[ { "docid": "3485f3be740c4f1e980021e591e3fc36", "score": "0.7343017", "text": "public void onRender() {\n GLES20.glClearColor(0.2f, 0.2f, 0.2f, 1.0f);\n scene.render();\n gameUi.draw();\n }", "title": "" }, { "docid": "b4beeafa03d6ce7c37ada22a72867edf", "score": "0...
4df174fefa70f7f9e7a0e5c8ef0b1958
pops up a error message box
[ { "docid": "8cf3a2cceb72be8d0e81e3f962b0e4e6", "score": "0.0", "text": "public void sendWarn(String msg) {\n\t\tsendWarn(msg, null);\n\t}", "title": "" } ]
[ { "docid": "f7e6ed766fac439d38feb7b37bdd7bb1", "score": "0.80457646", "text": "private void errormiss() {\n \tJOptionPane.showMessageDialog(null, \"信息输入不完整!\", \"输入有误\", JOptionPane.ERROR_MESSAGE);\n\t}", "title": "" }, { "docid": "86bdbfde3c9c359a7d5352b0c98cdeae", "score": "0.794230...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "216fe9a89560d8410b4541e62fc14eec", "score": "0.0", "text": "@Override\n\t\tpublic int compareTo(Cell o) {\n\t\t\tif (this.h == o.h) {\n\t\t\t\treturn 0;\n\t\t\t}\n\t\t\treturn this.h < o.h ? -1 : 1;\n\t\t}", "title": "" } ]
[ { "docid": "81005989525ec80103fbaf46f9c37779", "score": "0.6694239", "text": "@Override\n\tpublic void agit() {\n\n\t}", "title": "" }, { "docid": "0b5b11f4251ace8b3d0f5ead186f7beb", "score": "0.65686274", "text": "@Override\n\tpublic void comer() {\n\t\t\n\t}", "title": "" }, ...
3ce073cd50fb7b71c957ab964f8dfd94
Helper method used to create new NameBuilderUnchanged object and return it.
[ { "docid": "cfdac6e3911010c99c16e2d074ddda1d", "score": "0.0", "text": "private NameBuilder getConstantGroup() {\n\t\tStringBuilder sb = new StringBuilder();\n\t\t\n\t\twhile(index < expressionSplitted.length && expressionSplitted[index] != '$') {\n\t\t\tsb.append(expressionSplitted[index++]);\n\t\t}\n\...
[ { "docid": "4b8a297fb6539d573b33f68adab0fb8d", "score": "0.6495244", "text": "public static LdapNameBuilder newInstance() {\n\t\treturn new LdapNameBuilder(LdapUtils.emptyLdapName());\n\t}", "title": "" }, { "docid": "a9dfa8bbe50fa2bf6c2348c6b980af2b", "score": "0.6333817", "text": "...
9d2e19ea875ca45b3f226597536b98dd
Sets the attributeDescription value for this AttributesByItem.
[ { "docid": "fd4b47abb2df873cf7738cf9c267bc96", "score": "0.7789153", "text": "public void setAttributeDescription(java.lang.String attributeDescription) {\r\n this.attributeDescription = attributeDescription;\r\n }", "title": "" } ]
[ { "docid": "7212a814232020b727c3bae9a1995f9f", "score": "0.75832987", "text": "public void setAttributeDescription(java.lang.String attributeDescription)\n {\n synchronized (monitor())\n {\n check_orphaned();\n org.apache.xmlbeans.SimpleValue target = null;\n ...