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 |
|---|---|---|---|---|---|---|
Part of GameLoop, Sets the graphics for JFrame. Initialises the world graphics | @Override
public void render(Graphics g) {
world.render(g);
} | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"public void draw() {\n GraphicsContext gc = getGraphicsContext2D();\n /*gc.clearRect(0, 0, getWidth(), getHeight());\n\n if (squareMap != null) {\n squareMap.draw(gc);\n }\n if (hexMap != null) {\n hexMap.draw(gc);\n }*/\n\n // Draw animations\... | [
"0.6952116",
"0.6842827",
"0.6744428",
"0.6744117",
"0.6552118",
"0.65330184",
"0.6526046",
"0.6516425",
"0.6488705",
"0.6485865",
"0.64782906",
"0.6469254",
"0.6460748",
"0.6452242",
"0.63727677",
"0.6366093",
"0.6350708",
"0.6338014",
"0.63301843",
"0.63034594",
"0.6301348"... | 0.6262509 | 24 |
Loading the OpenCV core library | public static void main(String args[]) {
System.loadLibrary( Core.NATIVE_LIBRARY_NAME );
//Instantiating the Imagecodecs class
Imgcodecs imageCodecs = new Imgcodecs();
//Reading the Image from the file
String file ="E:/photo/abc.jpg";
Mat matrix = imageCodecs.imread(file);
System.out.println("Image Loaded......");
String file2 = "H:/Wifi/aa.jpg";
//Writing the image
imageCodecs.imwrite(file2,matrix);
System.out.println("Image Saved ............");
} | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"public static void load() throws RuntimeException, IOException{\n\t\ttry{\n\t\t\tSystem.loadLibrary(\"opencv_java248\");\n\t\t} catch (UnsatisfiedLinkError e) {\n\t\t\tString opencvLib = \"/\"+getOpenCVLib();\n\t\t\tload(opencvLib);\n\t\t}\n\t}",
"private void openCVImage(){\n Imgcodecs codec = new Imgcod... | [
"0.7334543",
"0.6371661",
"0.6300017",
"0.62914526",
"0.6278324",
"0.6206989",
"0.6192336",
"0.58240324",
"0.57718855",
"0.56005496",
"0.55859524",
"0.5512591",
"0.5504293",
"0.5460256",
"0.5457614",
"0.5438936",
"0.5419023",
"0.5409863",
"0.54003996",
"0.5394394",
"0.5369731... | 0.47917038 | 48 |
Create tree to be tested. 110 80 150 120 40 | @Test
public void levelOrder() throws Exception {
Node node = new Node(150);
node.setLeft(new Node(120));
node.setRight(new Node(40));
Node root = new Node(110);
root.setLeft(new Node(80));
root.setRight(node);
Queue<Integer> expected = new LinkedList<Integer>();
expected.add(110);
expected.add(80);
expected.add(150);
expected.add(120);
expected.add(40);
BinarySearchTree.levelOrder(root);
assertEquals(expected, BinarySearchTree.printQ);
} | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"private void CreateTree()\r\n\t{\r\n\r\n\t\t//sample nodes which are not identical\r\n\t\ta = new Node(1);\r\n\t\ta.left = new Node(3);\r\n\t\ta.left.left = new Node(5);\r\n\t\ta.right = new Node(2);\r\n\r\n\r\n\t\tb = new Node(2);\r\n\t\tb.left = new Node(1);\r\n\t\tb.right = new Node(3);\r\n\t\tb.right.right = n... | [
"0.7771409",
"0.7605241",
"0.74503744",
"0.74007577",
"0.7322854",
"0.7188762",
"0.7153805",
"0.70738226",
"0.7069361",
"0.70414305",
"0.7036702",
"0.70258737",
"0.70243233",
"0.6991609",
"0.689038",
"0.6869485",
"0.6846284",
"0.68070906",
"0.6801994",
"0.6800848",
"0.679606"... | 0.0 | -1 |
Create tree to be tested. 110 80 150 120 40 | @Test
public void getHeight() {
Node node = new Node(150);
node.setLeft(new Node(120));
node.setRight(new Node(40));
Node root = new Node(110);
root.setLeft(new Node(80));
root.setRight(node);
assertEquals(2, BinarySearchTree.getHeight(root));
} | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"private void CreateTree()\r\n\t{\r\n\r\n\t\t//sample nodes which are not identical\r\n\t\ta = new Node(1);\r\n\t\ta.left = new Node(3);\r\n\t\ta.left.left = new Node(5);\r\n\t\ta.right = new Node(2);\r\n\r\n\r\n\t\tb = new Node(2);\r\n\t\tb.left = new Node(1);\r\n\t\tb.right = new Node(3);\r\n\t\tb.right.right = n... | [
"0.77733004",
"0.76056886",
"0.74521655",
"0.7400761",
"0.7323379",
"0.71908617",
"0.71544564",
"0.7074489",
"0.70705295",
"0.70421934",
"0.70377934",
"0.7027107",
"0.70253366",
"0.6992776",
"0.6891297",
"0.68692356",
"0.6847845",
"0.68079334",
"0.68027127",
"0.68010336",
"0.... | 0.0 | -1 |
TODO Autogenerated method stub | @Override
public void draw(int radus,int x, int y) {
System.out.printf("draw red circle in %d ,%d by radus is %d %n",x,y,radus);
} | {
"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 |
Do not use with large ranges. | public static List<Integer> getRandomNumbers(int range, int amount) {
List<Integer> randomNums = new ArrayList<>();
for (int i = 0; i <= range; i++) {
randomNums.add(i);
}
Collections.shuffle(randomNums);
return randomNums.subList(0, amount);
} | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"@Override\n public boolean isRange() {\n return false;\n }",
"private Range() {}",
"Range createRange();",
"int getRange();",
"@Test(timeout = 4000)\n public void test26() throws Throwable {\n Range range0 = Range.of((-1264L), 255L);\n Range.CoordinateSystem range_CoordinateSystem0 = Rang... | [
"0.7016484",
"0.6729751",
"0.6688251",
"0.6607025",
"0.6583643",
"0.65751004",
"0.65451074",
"0.65416527",
"0.6539057",
"0.65104014",
"0.64306283",
"0.642971",
"0.6424971",
"0.64201987",
"0.64201754",
"0.6414611",
"0.6402066",
"0.64020216",
"0.6401277",
"0.63985676",
"0.63983... | 0.0 | -1 |
Do not use with large ranges. | public static List<Double> getRandomDoubles(int range, int amount) {
List<Double> randomNums = new ArrayList<>();
Random randomGenerator = new Random();
for (int i = 0; i <= range; i++) {
randomNums.add((double) i + (double) randomGenerator.nextInt(9) / 10);
}
Collections.shuffle(randomNums);
return randomNums.subList(0, amount);
} | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"@Override\n public boolean isRange() {\n return false;\n }",
"private Range() {}",
"Range createRange();",
"int getRange();",
"@Test(timeout = 4000)\n public void test26() throws Throwable {\n Range range0 = Range.of((-1264L), 255L);\n Range.CoordinateSystem range_CoordinateSystem0 = Rang... | [
"0.7017937",
"0.6730724",
"0.6688584",
"0.66072834",
"0.65834224",
"0.6575961",
"0.6544087",
"0.65421164",
"0.6539361",
"0.6510146",
"0.6430752",
"0.64293367",
"0.6424808",
"0.6419687",
"0.6419467",
"0.64144874",
"0.6402078",
"0.6401862",
"0.6400816",
"0.6398542",
"0.6398157"... | 0.0 | -1 |
Inflate the menu; this adds items to the action bar if it is present. | @Override
public boolean onCreateOptionsMenu(Menu menu) {
getMenuInflater().inflate(R.menu.menu_examples, menu);
return true;
} | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"@Override\n public boolean onCreateOptionsMenu(Menu menu) {\n \tMenuInflater inflater = getMenuInflater();\n \tinflater.inflate(R.menu.main_activity_actions, menu);\n \treturn super.onCreateOptionsMenu(menu);\n }",
"@Override\n public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) {... | [
"0.724751",
"0.72030395",
"0.71962166",
"0.71781456",
"0.71080285",
"0.70414597",
"0.7039569",
"0.70127094",
"0.7010955",
"0.69814765",
"0.69462436",
"0.6940127",
"0.69346195",
"0.6918375",
"0.6918375",
"0.6892324",
"0.688513",
"0.687655",
"0.68764484",
"0.68626994",
"0.68626... | 0.0 | -1 |
Handle action bar item clicks here. The action bar will automatically handle clicks on the Home/Up button, so long as you specify a parent activity in AndroidManifest.xml. | @Override
public boolean onOptionsItemSelected(MenuItem item) {
int id = item.getItemId();
//noinspection SimplifiableIfStatement
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
} | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"@Override\n public boolean onOptionsItemSelected(MenuItem item) { Handle action bar item clicks here. The action bar will\n // automatically handle clicks on the Home/Up button, so long\n // as you specify a parent activity in AndroidManifest.xml.\n\n //\n // HANDLE BACK BUTTON\n ... | [
"0.79052806",
"0.7806316",
"0.7767438",
"0.772778",
"0.76324606",
"0.7622031",
"0.758556",
"0.7531728",
"0.7489057",
"0.74576724",
"0.74576724",
"0.743964",
"0.7422121",
"0.74037784",
"0.73926556",
"0.7387903",
"0.73803806",
"0.73715395",
"0.7362778",
"0.7357048",
"0.7346653"... | 0.0 | -1 |
This method assumes the current working directory is inside intellijbased product checkout root | public static Path getCommunityRootFromWorkingDirectory() {
Path workingDirectory = Paths.get(System.getProperty("user.dir"));
Path current = workingDirectory;
while (current.getParent() != null) {
for (String pathCandidate : Arrays.asList(".", "community", "ultimate/community")) {
Path probeFile = current.resolve(pathCandidate).resolve("intellij.idea.community.main.iml");
if (Files.exists(probeFile)) {
return probeFile.getParent();
}
}
current = current.getParent();
}
throw new IllegalStateException("IDEA Community root was not found from current working directory " + workingDirectory);
} | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"public static File getWorkspaceDir(BundleContext context)\n {\n return new File(getTargetDir(context), \"../../\");\n }",
"public Path getRepositoryBaseDir();",
"static File getDistributionInstallationFolder() {\n return ProcessRunnerImpl.getDistRootPath();\n }",
"@Override\r\n publ... | [
"0.5920068",
"0.5906336",
"0.58620733",
"0.56597304",
"0.5642201",
"0.5633176",
"0.55907154",
"0.55784136",
"0.55743176",
"0.55587435",
"0.5538285",
"0.5529485",
"0.5517781",
"0.5517584",
"0.55052435",
"0.5497333",
"0.5483742",
"0.54473466",
"0.5443762",
"0.5440375",
"0.54354... | 0.54320973 | 22 |
/Adds 'newItem' to the priority queue. | public void push(E newItem); | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"public void push(T newItem);",
"public void add(T newEntry, int priority)\r\n\t{\n\t\tensureCapacity();\r\n\t\tint location=addLocation(priority);\r\n\t\t\r\n\t\tmakeRoom(location);\r\n\t\t\r\n\t\t//add the new entry and made sure you\r\n\t\t//call the addLocation so it knows which \"slot\"\r\n\t\t//to be placed... | [
"0.7003377",
"0.6917116",
"0.6909863",
"0.6671598",
"0.66205627",
"0.6537226",
"0.6513538",
"0.6431056",
"0.6415543",
"0.6401663",
"0.6373421",
"0.63667214",
"0.63659394",
"0.63565093",
"0.63414025",
"0.6314471",
"0.6304317",
"0.62902856",
"0.6262845",
"0.6259806",
"0.6259507... | 0.6815291 | 3 |
/Removes the highest priority item in the queue and returns it. | public E pop(); | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"public int pop() {\n int size = queue.size();\n for (int i = 0; i < size - 1; i++) {\n Integer poll = queue.poll();\n queue.offer(poll);\n }\n return queue.poll();\n }",
"public E remove(){\r\n if(isEmpty())\r\n return null;\r\n \r\n ... | [
"0.7966793",
"0.7859866",
"0.7616969",
"0.75854975",
"0.7550345",
"0.75321054",
"0.75274336",
"0.74982554",
"0.7483719",
"0.747755",
"0.7457714",
"0.7457714",
"0.74529785",
"0.7440406",
"0.74202144",
"0.74173576",
"0.74173576",
"0.7369177",
"0.7340538",
"0.72454506",
"0.72394... | 0.0 | -1 |
/Swaps two the values at 'childIndex' and 'parentIndex'. | public void swap(int childIndex,int parentIndex); | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"private void swap(int parentIndex, int childIndex)\r\n\t{\r\n\t\tE parent = theData.get(parentIndex);\r\n\t\tE child = theData.get(childIndex);\r\n\t\t\r\n\t\ttheData.set(parentIndex, child);\r\n\t\ttheData.set(childIndex, parent);\r\n\t}",
"private void swap(int parentIndex, int childIndex) {\n HeapData ... | [
"0.83590394",
"0.79219073",
"0.72981",
"0.619959",
"0.617365",
"0.6137113",
"0.60405564",
"0.5976031",
"0.59590626",
"0.593778",
"0.5925945",
"0.5916373",
"0.59035987",
"0.58624345",
"0.58346456",
"0.58286583",
"0.5825581",
"0.5825581",
"0.57906795",
"0.57762897",
"0.57571197... | 0.84611446 | 0 |
alle Touch events abfangen | @Override
public boolean onLongClick(int x, int y, int pointer, int button) {
return true;
} | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"void touchEvent(MotionEvent event);",
"@Override\r\n\tpublic boolean dispatchTouchEvent( MotionEvent e ) {\n\t\tint action = e.getAction();\r\n\t\tfloat x = e.getRawX();\r\n\t\tfloat y = e.getRawY();\r\n\t\tLog.d(TAG, \"onTouch dev:\" + e.getDeviceId() + \" act:\" + action + \" ind:\" + e.getActionIndex() + \" @... | [
"0.7743734",
"0.7491532",
"0.7456677",
"0.7450859",
"0.7402553",
"0.73603654",
"0.73603654",
"0.7326996",
"0.7301911",
"0.7285827",
"0.72680813",
"0.7229927",
"0.72092086",
"0.7185631",
"0.7142099",
"0.7137233",
"0.7105498",
"0.70884526",
"0.70592934",
"0.70592934",
"0.705801... | 0.0 | -1 |
this should make Hibernate fetch children | public boolean isLeaf() {
return children.size() == 0;
} | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"@Override\n\tpublic ArrayList<Parent> queryAll() {\n\t\treturn parentDao.queryAll();\n\t}",
"@Query(\"select classe from Classe classe join fetch classe.ecole\")\n public Iterable<Classe> findAll();",
"public ResultMap<BaseNode> listChildren();",
"@Test\n public void test() {\n manager.clear();\... | [
"0.6325294",
"0.6216901",
"0.61114925",
"0.6073909",
"0.5975308",
"0.593377",
"0.5928653",
"0.59068686",
"0.58780336",
"0.585291",
"0.5845904",
"0.58250946",
"0.5779029",
"0.5757918",
"0.5752299",
"0.57014227",
"0.5647684",
"0.5646185",
"0.56260854",
"0.5558911",
"0.54955184"... | 0.0 | -1 |
Test of sortAlgorithm method, of class CCGeneticDrift. | @Test
public void testSortAlgorithm() {
System.out.println("sortAlgorithm");
String input = "8 0 3 1 6 5 -2 4 7";
CCGeneticDrift instance = new CCGeneticDrift();
int expResult = 5;
int result = instance.sortAlgorithm(input);
assertEquals(result, expResult);
} | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"public void sort() {\n }",
"@Override\n public void sort(IAlg algorithm, boolean decrescent){}",
"public String doSort();",
"private static void performSort(TestApp testApp) {\n testApp.testPartition();\n\n /*\n Date end = new Date();\n System.out.println(\"Sort ended @ \" + e... | [
"0.73718417",
"0.7289052",
"0.72691995",
"0.6949891",
"0.6943999",
"0.68614995",
"0.68614995",
"0.6749069",
"0.6720929",
"0.66938084",
"0.6606128",
"0.6604852",
"0.6601929",
"0.6570727",
"0.6568993",
"0.65687895",
"0.65216017",
"0.6519549",
"0.6518572",
"0.6500935",
"0.649558... | 0.7891881 | 0 |
Test of calculateScore method, of class CCGeneticDrift. | @Test
public void testCalculateScore() {
System.out.println("calculateScore");
String input1 = "8 0 3 1 6 5 -2 4 7 1 3 -2 6";
String input2 = "8 0 3 1 6 5 -2 4 7 3 2 -2 6";
CCGeneticDrift instance = new CCGeneticDrift();
int expResult1 = 2;
int expResult2 = 4;
int result1 = instance.calculateScore(input1);
assertEquals(result1, expResult1);
int result2 = instance.calculateScore(input2);
assertEquals(result2, expResult2);
} | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"protected abstract void calcScores();",
"@Test\r\n public void calculateScore() {\r\n board3.swapTiles(0,0,1,1);\r\n board3.getSlidingScoreBoard().setTime(2);\r\n board3.getSlidingScoreBoard().calculateScore();\r\n assertEquals(496, board3.getSlidingScoreBoard().getScore());\r\n ... | [
"0.72565335",
"0.7155503",
"0.69592685",
"0.69095176",
"0.68568933",
"0.68568933",
"0.6846184",
"0.6815533",
"0.67926353",
"0.6743832",
"0.67160505",
"0.67134964",
"0.67134964",
"0.66654533",
"0.66362876",
"0.6620327",
"0.6616039",
"0.66159755",
"0.65672475",
"0.6558236",
"0.... | 0.7847069 | 0 |
Test of buildInverse method, of class CCGeneticDrift. | @Test
public void testBuildInverse() {
System.out.println("buildInverse");
int xIndex = 2;
int yIndex = 5;
String input1 = "6 3 1 6 5 -2 4";
String input2 = "6 3 1 6 5 -2 4";
CCGeneticDrift instance = new CCGeneticDrift();
List<Integer> permutation = instance.inputStringToIntegerList(input1);
String expResult = "[6, 3, 1, 2, -5, -6, 4]";
List result = instance.buildInverse(permutation, xIndex, yIndex);
assertEquals(result.toString(), expResult);
} | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"@Override\n\tpublic void visit(InverseExpression arg0) {\n\n\t}",
"@Test\n public void testInverseStressPrime() {\n final GaloisPrimeField field = new GaloisPrimeField(15_485_863);\n final GaloisElement element = field.element(1_000_000);\n final GaloisElement inverse = galoisInverse.inve... | [
"0.5922512",
"0.5657353",
"0.5484703",
"0.54347694",
"0.5432508",
"0.5368151",
"0.53316736",
"0.5299332",
"0.5291613",
"0.52557343",
"0.5247382",
"0.51947576",
"0.51811415",
"0.5169269",
"0.51637745",
"0.5148934",
"0.5139973",
"0.5120321",
"0.5112955",
"0.50799453",
"0.507703... | 0.7571485 | 0 |
Test of findOrientedPairs method, of class CCGeneticDrift. | @Test
public void testFindOrientedPairs() {
System.out.println("findOrientedPairs");
CCGeneticDrift instance = new CCGeneticDrift();
String input = "6 3 1 6 5 -2 4";
List<Integer> numbers = instance.inputStringToIntegerList(input);
String expResult = "[1 -2, 3 -2]";
List result = instance.findOrientedPairs(numbers);
assertEquals(result.toString(), expResult);
assertEquals(result.size(), 2);
} | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"@DataProvider(name = \"allPairs\")\n public Object[][] allPairs() {\n final List<Object[]> tests = new ArrayList<>();\n\n for (final Allele ref : Arrays.asList(refA, refC, refG, refT)){\n for (final Allele alt : Arrays.asList(altA, altC, altG, altT)){\n if (!ref.getBaseSt... | [
"0.6088645",
"0.584722",
"0.5742198",
"0.57213306",
"0.5619881",
"0.55806524",
"0.55805314",
"0.55321413",
"0.5493273",
"0.54702085",
"0.543685",
"0.5400566",
"0.53402096",
"0.5329597",
"0.5323643",
"0.5311241",
"0.53067756",
"0.5272191",
"0.52674335",
"0.5266421",
"0.5266231... | 0.76494354 | 0 |
Creates new form ShowProblemStatus | public ShowProblemStatus(Contest contest, RunContest upper) {
super("Problem Status");
initComponents();
this.contest = contest;
this.upperClass = upper;
DefaultTableModel model = (DefaultTableModel) jTableStatus.getModel();
model.setRowCount(contest.numberOfProblems);
for(int i = 0; i<contest.numberOfProblems;i++) {
model.setValueAt(i+1, i, 0);
model.setValueAt(contest.problems[i].problemName, i, 1);
model.setValueAt(contest.accepted[i]?"Yes":"No", i, 2);
}
addWindowListener(new WindowAdapter() {
@Override
public void windowClosing(WindowEvent e) {
upperClass.setVisible(true);
setVisible(false);
}
});
//adjust screen
Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
double width = screenSize.getWidth();
double height = screenSize.getHeight();
setLocation((int) Math.max((width - getWidth()) / 2, 0), (int) Math.max((height - getHeight()) / 2, 0));
setDefaultCloseOperation(DISPOSE_ON_CLOSE);
} | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"public Problem status(String status) {\n this.status = status;\n return this;\n }",
"@SuppressWarnings(\"unchecked\")\n // <editor-fold defaultstate=\"collapsed\" desc=\"Generated Code\">//GEN-BEGIN:initComponents\n private void initComponents() {\n\n jScrollPane1 = new javax.swing.JScrollPan... | [
"0.6032368",
"0.5905716",
"0.5732805",
"0.5514198",
"0.54742396",
"0.5431904",
"0.54262906",
"0.541653",
"0.5414018",
"0.5412361",
"0.53910565",
"0.5367109",
"0.5366466",
"0.5348431",
"0.53457975",
"0.5334015",
"0.5331403",
"0.5327336",
"0.53196",
"0.5309366",
"0.52704006",
... | 0.58807546 | 2 |
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() {
jScrollPane1 = new javax.swing.JScrollPane();
jTableStatus = new javax.swing.JTable();
jLabel1 = new javax.swing.JLabel();
jButtonBack = new javax.swing.JButton();
jMenuBar1 = new javax.swing.JMenuBar();
jMenu1 = new javax.swing.JMenu();
jMenuItem1 = new javax.swing.JMenuItem();
setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
jTableStatus.setModel(new javax.swing.table.DefaultTableModel(
new Object [][] {
},
new String [] {
"No", "Problem Name", "Status"
}
) {
Class[] types = new Class [] {
java.lang.Integer.class, java.lang.Object.class, java.lang.Object.class
};
boolean[] canEdit = new boolean [] {
false, false, false
};
public Class getColumnClass(int columnIndex) {
return types [columnIndex];
}
public boolean isCellEditable(int rowIndex, int columnIndex) {
return canEdit [columnIndex];
}
});
jScrollPane1.setViewportView(jTableStatus);
if (jTableStatus.getColumnModel().getColumnCount() > 0) {
jTableStatus.getColumnModel().getColumn(0).setPreferredWidth(20);
}
jLabel1.setFont(new java.awt.Font("Tahoma", 0, 18)); // NOI18N
jLabel1.setHorizontalAlignment(javax.swing.SwingConstants.CENTER);
jLabel1.setText("Problemwise Status");
jButtonBack.setText("Back");
jButtonBack.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButtonBackActionPerformed(evt);
}
});
jMenu1.setText("File");
jMenuItem1.setText("Back");
jMenu1.add(jMenuItem1);
jMenuBar1.add(jMenu1);
setJMenuBar(jMenuBar1);
javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
getContentPane().setLayout(layout);
layout.setHorizontalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(jScrollPane1, javax.swing.GroupLayout.DEFAULT_SIZE, 400, Short.MAX_VALUE)
.addComponent(jLabel1, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.addGroup(layout.createSequentialGroup()
.addGap(152, 152, 152)
.addComponent(jButtonBack, javax.swing.GroupLayout.PREFERRED_SIZE, 74, javax.swing.GroupLayout.PREFERRED_SIZE)
.addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
);
layout.setVerticalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
.addComponent(jLabel1, javax.swing.GroupLayout.PREFERRED_SIZE, 46, javax.swing.GroupLayout.PREFERRED_SIZE)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addComponent(jScrollPane1, javax.swing.GroupLayout.PREFERRED_SIZE, 303, javax.swing.GroupLayout.PREFERRED_SIZE)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 11, Short.MAX_VALUE)
.addComponent(jButtonBack)
.addContainerGap())
);
pack();
} | {
"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.73192346",
"0.7290526",
"0.7290526",
"0.7290526",
"0.7285891",
"0.72480357",
"0.7213616",
"0.7207808",
"0.71955067",
"0.71891475",
"0.71844363",
"0.7159038",
"0.71474695",
"0.7092269",
"0.7079923",
"0.70560205",
"0.69864315",
"0.697697",
"0.69552195",
"0.6953691",
"0.69458... | 0.0 | -1 |
TODO Autogenerated method stub | @Override
public List<Chapter> list() {
return rDao.list();
} | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}",
"@Override\n\tpublic void comer() {\n\t\t\n\t}",
"@Override\n public void perish() {\n \n }",
"@Override\r\n\t\t\tpublic void annadir() {\n\r\n\t\t\t}",
"@Override\n\tpublic void anular() {\n\n\t}",
"@Override\n\tprotected void getExr... | [
"0.6671074",
"0.6567672",
"0.6523024",
"0.6481211",
"0.6477082",
"0.64591026",
"0.64127725",
"0.63762105",
"0.6276059",
"0.6254286",
"0.623686",
"0.6223679",
"0.6201336",
"0.61950207",
"0.61950207",
"0.61922914",
"0.6186996",
"0.6173591",
"0.61327106",
"0.61285484",
"0.608016... | 0.0 | -1 |
TODO Autogenerated method stub | @Override
public void delete(int chapter_id) {
rDao.delete(chapter_id);
} | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}",
"@Override\n\tpublic void comer() {\n\t\t\n\t}",
"@Override\n public void perish() {\n \n }",
"@Override\r\n\t\t\tpublic void annadir() {\n\r\n\t\t\t}",
"@Override\n\tpublic void anular() {\n\n\t}",
"@Override\n\tprotected void getExr... | [
"0.6671074",
"0.6567672",
"0.6523024",
"0.6481211",
"0.6477082",
"0.64591026",
"0.64127725",
"0.63762105",
"0.6276059",
"0.6254286",
"0.623686",
"0.6223679",
"0.6201336",
"0.61950207",
"0.61950207",
"0.61922914",
"0.6186996",
"0.6173591",
"0.61327106",
"0.61285484",
"0.608016... | 0.0 | -1 |
TODO Autogenerated method stub | @Override
public List<Chapter> findByCourse(Integer idCourse) {
return rDao.findByCourse(idCourse);
} | {
"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 |
This method was generated by MyBatis Generator. This method corresponds to the database table sys_user | int deleteByPrimaryKey(Long userId); | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"@Override\n\tpublic String getTableName() {\n\t\treturn \"user\";\n\t}",
"@Override\n public String asTableDbName() {\n return \"user\";\n }",
"@Override\n public List<User> getAllUser() {\n// SQLParameter sqlParameter = DSL.select()\n// .from(TableOperand.table(User.class... | [
"0.69871473",
"0.6934003",
"0.6211525",
"0.61609614",
"0.6155473",
"0.61533785",
"0.61130816",
"0.61053914",
"0.60895026",
"0.6076737",
"0.6058264",
"0.5977743",
"0.5977003",
"0.5974463",
"0.59586287",
"0.59563065",
"0.59479284",
"0.5933162",
"0.5910364",
"0.5886401",
"0.5879... | 0.0 | -1 |
This method was generated by MyBatis Generator. This method corresponds to the database table sys_user | int insert(User record); | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"@Override\n\tpublic String getTableName() {\n\t\treturn \"user\";\n\t}",
"@Override\n public String asTableDbName() {\n return \"user\";\n }",
"@Override\n public List<User> getAllUser() {\n// SQLParameter sqlParameter = DSL.select()\n// .from(TableOperand.table(User.class... | [
"0.69884187",
"0.6936518",
"0.62107325",
"0.615841",
"0.6155542",
"0.61531043",
"0.6114023",
"0.61040515",
"0.60887164",
"0.6075577",
"0.6058008",
"0.5978608",
"0.59759194",
"0.5975106",
"0.5957793",
"0.5954758",
"0.59465224",
"0.5932476",
"0.59087276",
"0.588608",
"0.5878082... | 0.0 | -1 |
This method was generated by MyBatis Generator. This method corresponds to the database table sys_user | User selectByPrimaryKey(Long userId); | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"@Override\n\tpublic String getTableName() {\n\t\treturn \"user\";\n\t}",
"@Override\n public String asTableDbName() {\n return \"user\";\n }",
"@Override\n public List<User> getAllUser() {\n// SQLParameter sqlParameter = DSL.select()\n// .from(TableOperand.table(User.class... | [
"0.69880366",
"0.693634",
"0.6211591",
"0.6160039",
"0.61564547",
"0.61539376",
"0.6113535",
"0.61060584",
"0.6088606",
"0.6076235",
"0.6058077",
"0.59782463",
"0.59769076",
"0.5975962",
"0.5958",
"0.5954857",
"0.59478366",
"0.5932218",
"0.5909989",
"0.5886512",
"0.5878741",
... | 0.0 | -1 |
This method was generated by MyBatis Generator. This method corresponds to the database table sys_user | List<User> selectAll(); | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"@Override\n\tpublic String getTableName() {\n\t\treturn \"user\";\n\t}",
"@Override\n public String asTableDbName() {\n return \"user\";\n }",
"@Override\n public List<User> getAllUser() {\n// SQLParameter sqlParameter = DSL.select()\n// .from(TableOperand.table(User.class... | [
"0.6987407",
"0.6933668",
"0.6211205",
"0.61584914",
"0.6156055",
"0.6153554",
"0.6115551",
"0.61059636",
"0.608941",
"0.60784405",
"0.6058223",
"0.5980296",
"0.59777737",
"0.5976896",
"0.596031",
"0.5954124",
"0.5948655",
"0.5931446",
"0.59117",
"0.5885737",
"0.5879245",
"... | 0.0 | -1 |
This method was generated by MyBatis Generator. This method corresponds to the database table sys_user | int updateByPrimaryKey(User record); | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"@Override\n\tpublic String getTableName() {\n\t\treturn \"user\";\n\t}",
"@Override\n public String asTableDbName() {\n return \"user\";\n }",
"@Override\n public List<User> getAllUser() {\n// SQLParameter sqlParameter = DSL.select()\n// .from(TableOperand.table(User.class... | [
"0.69871473",
"0.6934003",
"0.6211525",
"0.61609614",
"0.6155473",
"0.61533785",
"0.61130816",
"0.61053914",
"0.60895026",
"0.6076737",
"0.6058264",
"0.5977743",
"0.5977003",
"0.5974463",
"0.59586287",
"0.59563065",
"0.59479284",
"0.5933162",
"0.5910364",
"0.5886401",
"0.5879... | 0.0 | -1 |
Runs the "Get/Send email action" | public void getSendEmail() {
driver.get(getBASE_URL() + getSendMailURL);
} | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"SendEmail() {\t\n\t}",
"private void sendEmail() {\n\n // Set up an intent object to send email and fill it out\n Intent emailIntent = new Intent(Intent.ACTION_SEND);\n emailIntent.setData(Uri.parse(\"mailto:\"));\n emailIntent.setType(\"text/plain\");\n\n // An array of string... | [
"0.7119498",
"0.6735379",
"0.67020726",
"0.66065335",
"0.6590667",
"0.65826535",
"0.65168303",
"0.6394366",
"0.63764524",
"0.6364845",
"0.6339439",
"0.6299177",
"0.6275725",
"0.6257456",
"0.6247459",
"0.622638",
"0.6208832",
"0.6198913",
"0.61888653",
"0.61710435",
"0.612316"... | 0.7194726 | 0 |
Navigates to a list of sent emails for a record | public void navigateToSentItemsForRecord(String recordSysId) {
driver.get(getBASE_URL() + "sys_email_list.do?sysparm_query=mailbox=sent^instance=" + recordSysId);
} | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"public void mailList() {\n for (int index = 0; index < emails.size(); index++) {\n Mensagem mensagem = emails.get(index);\n System.out.println(\"Email \" + index + \": \");\n System.out.println(\"De: \" + mensagem.remetente);\n System.out.println(\"Para: \" + mens... | [
"0.64698327",
"0.64262116",
"0.5892032",
"0.57282734",
"0.5723397",
"0.5686669",
"0.5648034",
"0.56174445",
"0.5607265",
"0.55309975",
"0.5523322",
"0.54175454",
"0.5412939",
"0.5398835",
"0.5386807",
"0.5377317",
"0.5301495",
"0.5261557",
"0.52584827",
"0.5240033",
"0.521889... | 0.7034693 | 0 |
Gets the event information from the form | public List<WebElement> getEventInformation() {
return driver.findElements(By.className("list_embedded")).get(0).findElements(By.className("linked"));
} | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"Event getEvent();",
"public Event getEvent(){\n\t\t\treturn event;\n\t\t}",
"public Object getEvent() {\r\n return event;\r\n }",
"public String getEvent() {\n return this.event;\n }",
"public Event getEvent() {\n\t\treturn event;\n\t}",
"@Override\r\n\tpublic String toString() {\r\n\... | [
"0.6699688",
"0.6681516",
"0.65674204",
"0.65381646",
"0.64954275",
"0.6439119",
"0.6306543",
"0.6255752",
"0.623099",
"0.6198069",
"0.61709976",
"0.59744596",
"0.5951913",
"0.5920956",
"0.5907316",
"0.5899499",
"0.58932006",
"0.5822878",
"0.57698685",
"0.5702299",
"0.5697638... | 0.5006524 | 93 |
Validates that an event happened and the appropriate notification was associated with it | public void validateEventInformation(String event, String notification) {
List<WebElement> eventInfo = getEventInformation();
validateEvent(event, eventInfo.get(0));
validateNotificationName(notification, eventInfo.get(1));
} | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"private void validateEvent(final Event event) {\n if (null == event) {\n throw new NullPointerException(\"event cannot be null\");\n }\n if (null == event.getAuthor()) {\n throw new NullPointerException(\"author cannot be null\");\n }\n if (null == event.get... | [
"0.65343744",
"0.6116786",
"0.594079",
"0.5891141",
"0.5847929",
"0.583881",
"0.57591",
"0.56863475",
"0.56524485",
"0.5615622",
"0.5553171",
"0.55461854",
"0.5511747",
"0.5453901",
"0.5417285",
"0.5360401",
"0.53453994",
"0.53435093",
"0.5322654",
"0.5318938",
"0.52862686",
... | 0.6457565 | 1 |
Ensures that an event name is equal to what is on the form | public void validateEvent(String expected, WebElement link) {
assertTrue("The link contains the valid event name", expected.equals(link.getText()));
} | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"private void checkFormEventRegistration(String expected)\n {\n PlatformEventManagerImpl eventMan = (PlatformEventManagerImpl) builderData\n .getEventManager().getPlatformEventManager();\n assertEquals(\"Wrong event listener registration\", expected, eventMan\n .getReg... | [
"0.6564199",
"0.6354875",
"0.6264415",
"0.61746496",
"0.61329097",
"0.6003666",
"0.5916255",
"0.5911764",
"0.5866162",
"0.58159864",
"0.5784151",
"0.5735641",
"0.57084316",
"0.5692904",
"0.56296253",
"0.55685806",
"0.55276626",
"0.5519469",
"0.5458534",
"0.54216295",
"0.54147... | 0.54370344 | 19 |
Ensures that a notification name is equal to what is on the form | public void validateNotificationName(String expected, WebElement link) {
assertTrue("The link contains the valid notification name", expected.equals(link.getText()));
} | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"private void configPElemGeneralInfoSection_name(final Text nameTextBox)\n {\n\t\tif (notifications != null) {\n\t\t\tif (notifications.getNotification() != null) {\n\t\t\t\tif (notifications.getNotification().size() != 0) {\n\t\t\t\t\tif (notifications.getNotification().get(0) != null) {\n\t\t\t\t\t\tif (notificat... | [
"0.5969376",
"0.57871866",
"0.57031614",
"0.5684427",
"0.5628695",
"0.553543",
"0.5513046",
"0.5512845",
"0.5424396",
"0.5393051",
"0.53873",
"0.53872913",
"0.5373206",
"0.535706",
"0.5352236",
"0.5344335",
"0.53258",
"0.53240854",
"0.5302773",
"0.5282751",
"0.52695835",
"0... | 0.6393748 | 0 |
Checks the subject to ensure it contains text we expect | public void validateSubjectIsCorrect(String expected) {
assertTrue("The subject " + subject.getText() + " contains " + expected, subject.getText().contains(expected));
} | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"@Test\r\n\tpublic void testContainsSubject() {\r\n\t\tassertTrue(teachu1.containsSubject(sub1));\r\n\t\tassertFalse(teachu1.containsSubject(sub2));\r\n\t}",
"private void doInputValidation(String from, String subject, String content) {\n if (from == null) {\n throw new IllegalArgumentException(... | [
"0.6465524",
"0.61896217",
"0.60394174",
"0.603426",
"0.60197365",
"0.59526634",
"0.59490466",
"0.5918601",
"0.58428437",
"0.5800547",
"0.5799188",
"0.5786564",
"0.57735056",
"0.5757459",
"0.5757459",
"0.5754765",
"0.5740091",
"0.57087934",
"0.5704127",
"0.5699892",
"0.566967... | 0.7657738 | 0 |
Checks the recipients list for expected recipient email addresses | public void validateRecipients(List<String> expected) {
List<String> received = Arrays.asList(recipients.getText().split(","));
assertTrue("Received list " + received.toString() + " contains the expected " + expected.toString(), received.containsAll(expected));
} | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"public boolean hasRecipients() {\n return !recipients.isEmpty();\n }",
"public void setRecipients(String[] recipients) {\n\t\tthis.recipients = recipients;\n\t}",
"public void testMultipleEmailAddresses() {\n rootBlog.setProperty(SimpleBlog.EMAIL_KEY, \"me@mydomain.com,you@yourdomain.com\");\n ... | [
"0.65488076",
"0.6498925",
"0.6343929",
"0.6303204",
"0.62371206",
"0.614002",
"0.6132916",
"0.61157554",
"0.600518",
"0.59514946",
"0.5869805",
"0.58496505",
"0.58374953",
"0.5754703",
"0.5726697",
"0.5718039",
"0.57150906",
"0.569486",
"0.5639481",
"0.5601984",
"0.5589765",... | 0.7955851 | 0 |
Returns the value of the 'Sporadic' containment reference. | SporadicProcess getSporadic(); | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"Object getContainedValue();",
"public String getSprache() {\n\t\treturn this.sprache;\n\t}",
"public Object peek()\r\n {\n assert !this.isEmpty();\r\n return this.top.getItem();\r\n }",
"public int getCurrentSpinePos() {\n return currentSpinePos;\n }",
"public Clip getClipAsteroid()... | [
"0.48575324",
"0.48545715",
"0.47845224",
"0.4755383",
"0.46560222",
"0.4645546",
"0.46406183",
"0.46289116",
"0.4622808",
"0.4598107",
"0.4597693",
"0.4556015",
"0.45369458",
"0.4513515",
"0.45110786",
"0.4496867",
"0.44918522",
"0.44873297",
"0.4483618",
"0.44771641",
"0.44... | 0.48057836 | 2 |
Returns the value of the 'Periodic' containment reference. | PeriodicProcess getPeriodic(); | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"public java.lang.String getPeriodicidad() {\n return periodicidad;\n }",
"public boolean isPeriodic() {\n return period != 0;\n }",
"public float getPeriodicRateChange() {\n return periodicRateChange;\n }",
"public T casePeriodic(Periodic object) {\n\t\tr... | [
"0.6825692",
"0.64487374",
"0.6133354",
"0.61259687",
"0.5600305",
"0.5590952",
"0.55723256",
"0.5550986",
"0.55472213",
"0.55472213",
"0.55472213",
"0.55472213",
"0.5514394",
"0.54936606",
"0.5492272",
"0.54608554",
"0.5454827",
"0.5450547",
"0.543547",
"0.54200375",
"0.5419... | 0.62925285 | 2 |
We need to check if this account already exists | @Override
public Account save(Account account) throws ItemAlreadyExistException{
Optional<Account> accountExist1=accountRepository.findByNumber(account.getNumber());
Optional<Account> accountExist2=accountRepository.findByLabel(account.getLabel());
if(accountExist1.isPresent())
throw new ItemAlreadyExistException("Un compte avec ce numero existe déjà dans le système");
if(accountExist2.isPresent())
throw new ItemAlreadyExistException("Un compte avec ce nom existe déjà dans le système");
account=initializeAccountForCreation(account);
return accountRepository.save(account);
} | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"@Override\r\n\tpublic boolean isAccountExist(Account account) {\n\t\treturn false;\r\n\t}",
"public boolean accountExists(Account account)\n\t {\n\t\t if(this.getAccount(account.getUsername())!= null)\n\t\t\t return true;\n\t\t else\n\t\t\t return false;\n\t }",
"public static boolean accountExists(Conte... | [
"0.812519",
"0.74675906",
"0.7210841",
"0.71800125",
"0.71800125",
"0.71800125",
"0.7159642",
"0.7098135",
"0.69468486",
"0.6935343",
"0.6886145",
"0.6851517",
"0.6723293",
"0.6701798",
"0.66845393",
"0.66734314",
"0.66612303",
"0.66580635",
"0.6647366",
"0.6647366",
"0.66473... | 0.0 | -1 |
TODO Autogenerated method stub | @Override
public List<Account> findAll() {
return accountRepository.findAll();
} | {
"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 Page<Account> findAllByExample(Account account, Pageable pageable) {
ExampleMatcher matcher=ExampleMatcher.matching()
.withMatcher("id", match -> match.exact())
.withMatcher("label", match -> match.contains().ignoreCase())
.withMatcher("number", match -> match.contains().ignoreCase())
.withMatcher("accountType", match -> match.contains().ignoreCase())
.withMatcher("accountLimitType", match -> match.contains().ignoreCase())
.withMatcher("amountLimitType", match -> match.contains().ignoreCase())
.withIgnoreNullValues();
Example<Account> example = Example.of(account, matcher);
return accountRepository.findAll(example, pageable);
} | {
"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 Optional<Account> findAccountById(Long id) {
return accountRepository.findById(id);
} | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}",
"@Override\n\tpublic void comer() {\n\t\t\n\t}",
"@Override\n public void perish() {\n \n }",
"@Override\r\n\t\t\tpublic void annadir() {\n\r\n\t\t\t}",
"@Override\n\tpublic void anular() {\n\n\t}",
"@Override\n\tprotected void getExr... | [
"0.6671074",
"0.6567672",
"0.6523024",
"0.6481211",
"0.6477082",
"0.64591026",
"0.64127725",
"0.63762105",
"0.6276059",
"0.6254286",
"0.623686",
"0.6223679",
"0.6201336",
"0.61950207",
"0.61950207",
"0.61922914",
"0.6186996",
"0.6173591",
"0.61327106",
"0.61285484",
"0.608016... | 0.0 | -1 |
TODO Autogenerated method stub | @Override
public Account update(Account account) {
account=initializeAccountForModification(account);
return accountRepository.save(account);
} | {
"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 |
Helper method to initialize internal datastructures. | private void initialize()
{
aggregatedFields = new Fields(fieldToAggregator.keySet());
} | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"private void initialize() {\n first = null;\n last = null;\n size = 0;\n dictionary = new Hashtable();\n }",
"private void initStructures() throws RIFCSException {\n initTexts();\n initDates();\n }",
"private void initData() {\n\t}",
"private void initData() {\n }",
"privat... | [
"0.7306098",
"0.72705495",
"0.7136888",
"0.71152073",
"0.7070883",
"0.70292825",
"0.70280766",
"0.7009611",
"0.6983401",
"0.6983401",
"0.6983401",
"0.6983401",
"0.69492596",
"0.6938387",
"0.6918249",
"0.68979496",
"0.68720037",
"0.685131",
"0.68465203",
"0.68294066",
"0.68294... | 0.6881563 | 16 |
Convenience method to get the set of all aggregators applied on a field. | public Set<String> getAggregators(String field)
{
return fieldToAggregator.get(field);
} | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"Aggregators retrieveAggregators() throws RepoxException;",
"protected List<Aggregation> getAggregations(QueryContext queryContext) {\n\t\t\n\t\tif (_log.isDebugEnabled()) {\n\t\t\t_log.debug(\"Getting aggregations.\");\n\t\t}\n\n\t\tif (_aggregationBuilders == null) {\n\t\t\treturn null;\n\t\t}\n\n\t\tList<Aggre... | [
"0.7017527",
"0.64888453",
"0.6280678",
"0.6152225",
"0.6056722",
"0.5908783",
"0.58932465",
"0.5881685",
"0.5842855",
"0.5700293",
"0.5693288",
"0.55679244",
"0.55187404",
"0.53999156",
"0.52983654",
"0.5258499",
"0.52524513",
"0.5203426",
"0.5201848",
"0.51860064",
"0.51078... | 0.85659474 | 0 |
Returns the set of all aggregated fields. | public Fields getAggregatedFields()
{
return aggregatedFields;
} | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"@Override\r\n public Set<VisualizationAggregateColumn> getAggregates()\r\n {\n return Collections.emptySet();\r\n }",
"public static Collection<AlertsSummaryGroupByFields> values() {\n return values(AlertsSummaryGroupByFields.class);\n }",
"public Set<String> getAggregators(String fie... | [
"0.6808148",
"0.65473264",
"0.6534983",
"0.63641673",
"0.61826783",
"0.6174836",
"0.61613995",
"0.6152469",
"0.6048154",
"0.60036325",
"0.59985125",
"0.5989208",
"0.5917631",
"0.58274364",
"0.5749187",
"0.5732274",
"0.5685644",
"0.568377",
"0.562356",
"0.55833924",
"0.5561487... | 0.7868417 | 0 |
The set of all non aggregated fields. | public Fields getNonAggregatedFields()
{
return nonAggregatedFields;
} | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"synchronized public Set<String> getFields() {\n return Collections.unmodifiableSet(new HashSet<>(fields));\n }",
"@Override\r\n\tpublic Field[] getExcludedFields() {\n\t\treturn null;\r\n\t}",
"public Set<Field> getFields() {\r\n \t\t// We will only consider private fields in the declared class\r\n \... | [
"0.7153446",
"0.66933846",
"0.63629484",
"0.62526935",
"0.62361753",
"0.6228835",
"0.6121329",
"0.59665847",
"0.59567326",
"0.5949461",
"0.5947698",
"0.59343684",
"0.59212637",
"0.5905427",
"0.5902869",
"0.589951",
"0.58875805",
"0.5873764",
"0.58524156",
"0.5812539",
"0.5795... | 0.727908 | 0 |
Returns a map from aggregator names to a set of all the fields that that aggregator is applied to. | public Map<String, Set<String>> getAggregatorToFields()
{
if (aggregatorToField != null) {
return aggregatorToField;
}
Map<String, Set<String>> aggregatorToFields = Maps.newHashMap();
for (Map.Entry<String, Set<String>> entry : fieldToAggregator.entrySet()) {
String field = entry.getKey();
Set<String> aggregators = entry.getValue();
for (String aggregatorName : aggregators) {
Set<String> fieldSet = aggregatorToFields.get(aggregatorName);
if (fieldSet == null) {
fieldSet = Sets.newHashSet();
aggregatorToFields.put(aggregatorName, fieldSet);
}
fieldSet.add(field);
}
}
aggregatorToField = Maps.newHashMap();
for (Map.Entry<String, Set<String>> entry : aggregatorToFields.entrySet()) {
aggregatorToField.put(entry.getKey(), Collections.unmodifiableSet(entry.getValue()));
}
aggregatorToField = Collections.unmodifiableMap(aggregatorToField);
return aggregatorToField;
} | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"public Map<String, Map<String, String>> getAggregatorToFieldToName()\n {\n if (aggregatorToFieldToName != null) {\n return aggregatorToFieldToName;\n }\n\n Map<String, Set<String>> aggregatorToFields = getAggregatorToFields();\n Map<String, Map<String, String>> tAggregatorToFieldToName = Maps.new... | [
"0.7145408",
"0.67848825",
"0.6264485",
"0.5847387",
"0.554911",
"0.5534809",
"0.5522365",
"0.551799",
"0.5516914",
"0.5393473",
"0.5330914",
"0.53215",
"0.52929467",
"0.5278808",
"0.5237451",
"0.5225306",
"0.5214249",
"0.5197418",
"0.51972",
"0.51950043",
"0.51893234",
"0.... | 0.81816095 | 0 |
Returns a map from aggregator to field name to the field name with the aggregator name appended to it. | public Map<String, Map<String, String>> getAggregatorToFieldToName()
{
if (aggregatorToFieldToName != null) {
return aggregatorToFieldToName;
}
Map<String, Set<String>> aggregatorToFields = getAggregatorToFields();
Map<String, Map<String, String>> tAggregatorToFieldToName = Maps.newHashMap();
for (Map.Entry<String, Set<String>> entry : aggregatorToFields.entrySet()) {
String aggregatorName = entry.getKey();
Set<String> fields = entry.getValue();
Map<String, String> fieldToName = Maps.newHashMap();
tAggregatorToFieldToName.put(aggregatorName, fieldToName);
for (String field : fields) {
fieldToName.put(field, field +
DimensionalConfigurationSchema.ADDITIONAL_VALUE_SEPERATOR +
aggregatorName);
}
}
aggregatorToFieldToName = Maps.newHashMap();
for (Map.Entry<String, Map<String, String>> entry : tAggregatorToFieldToName.entrySet()) {
aggregatorToFieldToName.put(entry.getKey(), Collections.unmodifiableMap(entry.getValue()));
}
aggregatorToFieldToName = Collections.unmodifiableMap(aggregatorToFieldToName);
return aggregatorToFieldToName;
} | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"public Map<String, Set<String>> getAggregatorToFields()\n {\n if (aggregatorToField != null) {\n return aggregatorToField;\n }\n\n Map<String, Set<String>> aggregatorToFields = Maps.newHashMap();\n\n for (Map.Entry<String, Set<String>> entry : fieldToAggregator.entrySet()) {\n String field =... | [
"0.75456333",
"0.5976521",
"0.56642014",
"0.56476253",
"0.5594138",
"0.55876213",
"0.5561901",
"0.55366015",
"0.55197054",
"0.53835475",
"0.53107184",
"0.5292067",
"0.5262792",
"0.5251155",
"0.5245835",
"0.52381766",
"0.52134746",
"0.5177058",
"0.51662016",
"0.5148854",
"0.51... | 0.79973394 | 0 |
If case that something went wrong in the contract net interaction protocol that negotiate the intro request. | public void action()
{
if(timeout > 0 && timeout < 2)
{
timeout = 0;
agent.removeBehaviour(introNegotiation);
introNegotiation = null;
counter = 0;
}
//If this is the very first time getting to this state or if the timeout reset the counter to 0
if(counter < 1)
{
//Clean the list of receivers in case there is something
if(!receivers.isEmpty())
receivers.removeAllElements();
//Calculate the duration of the intro
calculateDurationIntro();
//Find a receiver
findAllReceivers();
constructACLMessage();
introNegotiation = new IntroNegotiation(agent,msg);
introNegotiation.setDataStore(getDataStore());
agent.addBehaviour(introNegotiation);
}
//Handle where I'm heading to from here.
switch (steps)
{
case 0:
transition = 29;
break;
case 1:
agent.removeBehaviour(introNegotiation);
introNegotiation = null;
transition = 17;
}
} | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"public void inquiryError() {\n\t\t\n\t}",
"private void contractNetRespond() {\n\t\t\n\t\tMessageTemplate template = MessageTemplate.and(\n\t\t\t\tMessageTemplate.MatchProtocol(FIPANames.InteractionProtocol.FIPA_CONTRACT_NET),\n\t\t\t\tMessageTemplate.MatchPerformative(ACLMessage.CFP));\n\n\t\taddBehaviour(new P... | [
"0.5709427",
"0.5706881",
"0.5652226",
"0.5608013",
"0.5579525",
"0.5482488",
"0.54472226",
"0.5441304",
"0.5429387",
"0.5358447",
"0.52974355",
"0.52521443",
"0.5185642",
"0.51665395",
"0.51642615",
"0.51419115",
"0.51330185",
"0.51302576",
"0.51197565",
"0.5099208",
"0.5077... | 0.5764182 | 0 |
Exit with the transition value to the corresponding state. | private void findAllReceivers()
{
//IF actually there is something where we can search
if(getDataStore().containsKey(MUSICIAN_LIST))
{
//We take the list from the data store
musicians = (Vector) getDataStore().get(MUSICIAN_LIST);
//exclude myself from the list
for (int i = 0; i<musicians.size(); i++)
{
if(!musicians.get(i).equals(myAgent.getAID()))
{
receivers.add(musicians.get(i));
}
}
}
nResponders = receivers.size();
} | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"private void exitTo(int current, int to) {\n\t\twhile (current!=to) {\n\t\t\tswitch (current) {\n\t\t\t\tcase STATE_Ready:\n\t\t\t\t\tthis.history[STATE_TOP] = STATE_Ready;\n\t\t\t\t\tcurrent = STATE_TOP;\n\t\t\t\t\tbreak;\n\t\t\t\tdefault:\n\t\t\t\t\t/* should not occur */\n\t\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t}",... | [
"0.6268861",
"0.6240641",
"0.6122412",
"0.6105235",
"0.5945895",
"0.59303147",
"0.59242624",
"0.590433",
"0.5881382",
"0.5817905",
"0.58084327",
"0.5803577",
"0.57982546",
"0.57927144",
"0.5789412",
"0.57813495",
"0.5761856",
"0.57021636",
"0.56793666",
"0.5659981",
"0.564310... | 0.0 | -1 |
We fill the object of the ontology | private void constructACLMessage()
{
PlayIntroAction playIntroObject = new PlayIntroAction();
playIntroObject.setLenght(numberOfMeasures);
playIntroObject.setNow(true);
playIntroObject.setDuration(-1);
msg = new ACLMessage(ACLMessage.CFP);
msg.setLanguage(codec.getName());
msg.setOntology(ontology.getName());
for(int i = 0; i < receivers.size(); i++)
{
try
{
//fill the content using the Ontology concept
myAgent.getContentManager().fillContent(msg,new Action((AID)receivers.elementAt(i),playIntroObject));
}catch (Exception ex) { ex.printStackTrace(); }
//Set the receiver of the message
msg.addReceiver((AID)receivers.elementAt(i));
}
//Set the protocol that we gonna use
msg.setProtocol(FIPANames.InteractionProtocol.FIPA_CONTRACT_NET);
//We indicate the deadline of the reply
msg.setReplyByDate(new Date(System.currentTimeMillis() + 30000));
} | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"private void init() {\n\t\tthis.model = ModelFactory.createOntologyModel(OntModelSpec.OWL_MEM);\n\t\tthis.model.setNsPrefixes(INamespace.NAMSESPACE_MAP);\n\n\t\t// create classes and properties\n\t\tcreateClasses();\n\t\tcreateDatatypeProperties();\n\t\tcreateObjectProperties();\n\t\t// createFraktionResources();\... | [
"0.697152",
"0.64373535",
"0.6433877",
"0.630347",
"0.6151624",
"0.6136253",
"0.6073945",
"0.5902955",
"0.5865691",
"0.583969",
"0.58180964",
"0.5712326",
"0.57028586",
"0.5626643",
"0.561742",
"0.5568744",
"0.55477047",
"0.5526345",
"0.5480788",
"0.5472408",
"0.5443647",
"... | 0.0 | -1 |
Save the exact time that we got this confirmation. This will be used in the next state where we will negotiate the acompaniement | protected void handleInform(ACLMessage inform) {
introTimestamp = System.currentTimeMillis();
System.out.println("duration: "+introDuration);
getDataStore().put(INTRO_TIMESTAMP,introTimestamp);
System.out.println("Intro timestamp: "+introTimestamp);
System.out.println("Agent "+inform.getSender().getName()+" The intro has started to play");
//Let know to the next state that is gonna be the first solo in the song
getDataStore().put(FIRST_SOLO,true);
steps = 1;
//myAgent.doWait(introDuration);
//Go to the next state;
} | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"public int getConfirmTime() {\n\t\treturn _tempNoTiceShipMessage.getConfirmTime();\n\t}",
"public LocalDateTime getConfirmTime() {\n return confirmTime;\n }",
"public void setConfirmTime(LocalDateTime confirmTime) {\n this.confirmTime = confirmTime;\n }",
"public void setConfirmTime(int c... | [
"0.74218905",
"0.6972652",
"0.6834229",
"0.65254635",
"0.6231231",
"0.6078645",
"0.5930293",
"0.58777165",
"0.58516914",
"0.5849365",
"0.58310366",
"0.58278453",
"0.5800154",
"0.5792918",
"0.5779057",
"0.57393706",
"0.56940395",
"0.56738794",
"0.5670294",
"0.5660757",
"0.5652... | 0.0 | -1 |
TODO Autogenerated method stub | @Override
public void addServer(InetSocketAddress arg0) throws IOException {
} | {
"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 addServer(String arg0) throws IOException {
} | {
"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 addServer(String arg0, int arg1) throws IOException {
} | {
"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 addServer(InetSocketAddress arg0, int arg1) throws IOException {
} | {
"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 addServer(String arg0, int arg1, int arg2) throws IOException {
} | {
"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 addStateListener(MemcachedClientStateListener arg0) {
} | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}",
"@Override\n\tpublic void comer() {\n\t\t\n\t}",
"@Override\n public void perish() {\n \n }",
"@Override\r\n\t\t\tpublic void annadir() {\n\r\n\t\t\t}",
"@Override\n\tpublic void anular() {\n\n\t}",
"@Override\n\tprotected void getExr... | [
"0.6671074",
"0.6567672",
"0.6523024",
"0.6481211",
"0.6477082",
"0.64591026",
"0.64127725",
"0.63762105",
"0.6276059",
"0.6254286",
"0.623686",
"0.6223679",
"0.6201336",
"0.61950207",
"0.61950207",
"0.61922914",
"0.6186996",
"0.6173591",
"0.61327106",
"0.61285484",
"0.608016... | 0.0 | -1 |
TODO Autogenerated method stub | @Override
public void addWithNoReply(String arg0, int arg1, Object arg2)
throws InterruptedException, MemcachedException {
} | {
"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 <T> void addWithNoReply(String arg0, int arg1, T arg2,
Transcoder<T> arg3) throws InterruptedException, MemcachedException {
} | {
"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 boolean append(String arg0, Object arg1) throws TimeoutException,
InterruptedException, MemcachedException {
return false;
} | {
"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 boolean append(String arg0, Object arg1, long arg2)
throws TimeoutException, InterruptedException, MemcachedException {
return false;
} | {
"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 appendWithNoReply(String arg0, Object arg1)
throws InterruptedException, MemcachedException {
} | {
"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 <T> boolean cas(String arg0, CASOperation<T> arg1)
throws TimeoutException, InterruptedException, MemcachedException {
return false;
} | {
"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 <T> boolean cas(String arg0, GetsResponse<T> arg1,
CASOperation<T> arg2) throws TimeoutException,
InterruptedException, MemcachedException {
return false;
} | {
"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 <T> boolean cas(String arg0, int arg1, CASOperation<T> arg2)
throws TimeoutException, InterruptedException, MemcachedException {
return false;
} | {
"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 boolean cas(String arg0, int arg1, Object arg2, long arg3)
throws TimeoutException, InterruptedException, MemcachedException {
return false;
} | {
"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 <T> boolean cas(String arg0, int arg1, CASOperation<T> arg2,
Transcoder<T> arg3) throws TimeoutException, InterruptedException,
MemcachedException {
return false;
} | {
"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 <T> boolean cas(String arg0, int arg1, GetsResponse<T> arg2,
CASOperation<T> arg3) throws TimeoutException,
InterruptedException, MemcachedException {
return false;
} | {
"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 boolean cas(String arg0, int arg1, Object arg2, long arg3, long arg4)
throws TimeoutException, InterruptedException, MemcachedException {
return false;
} | {
"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 <T> boolean cas(String arg0, int arg1, T arg2, Transcoder<T> arg3,
long arg4) throws TimeoutException, InterruptedException,
MemcachedException {
return false;
} | {
"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 <T> boolean cas(String arg0, int arg1, GetsResponse<T> arg2,
CASOperation<T> arg3, Transcoder<T> arg4) throws TimeoutException,
InterruptedException, MemcachedException {
return false;
} | {
"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 <T> boolean cas(String arg0, int arg1, T arg2, Transcoder<T> arg3,
long arg4, long arg5) throws TimeoutException,
InterruptedException, MemcachedException {
return false;
} | {
"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 <T> void casWithNoReply(String arg0, CASOperation<T> arg1)
throws TimeoutException, InterruptedException, MemcachedException {
} | {
"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 <T> void casWithNoReply(String arg0, GetsResponse<T> arg1,
CASOperation<T> arg2) throws TimeoutException,
InterruptedException, MemcachedException {
} | {
"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 <T> void casWithNoReply(String arg0, int arg1, CASOperation<T> arg2)
throws TimeoutException, InterruptedException, MemcachedException {
} | {
"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 <T> void casWithNoReply(String arg0, int arg1, GetsResponse<T> arg2,
CASOperation<T> arg3) throws TimeoutException,
InterruptedException, MemcachedException {
} | {
"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 long decr(String arg0, long arg1) throws TimeoutException,
InterruptedException, MemcachedException {
return 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.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 long decr(String arg0, long arg1, long arg2)
throws TimeoutException, InterruptedException, MemcachedException {
return 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.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 long decr(String arg0, long arg1, long arg2, long arg3)
throws TimeoutException, InterruptedException, MemcachedException {
return 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.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 long decr(String arg0, long arg1, long arg2, long arg3, int arg4)
throws TimeoutException, InterruptedException, MemcachedException {
return 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.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 decrWithNoReply(String arg0, long arg1)
throws InterruptedException, MemcachedException {
} | {
"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 boolean delete(String arg0) throws TimeoutException,
InterruptedException, MemcachedException {
return false;
} | {
"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 boolean delete(String arg0, int arg1) throws TimeoutException,
InterruptedException, MemcachedException {
return false;
} | {
"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 boolean delete(String arg0, long arg1) throws TimeoutException,
InterruptedException, MemcachedException {
return false;
} | {
"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 deleteWithNoReply(String arg0) throws InterruptedException,
MemcachedException {
} | {
"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 deleteWithNoReply(String arg0, int arg1)
throws InterruptedException, MemcachedException {
} | {
"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 flushAll(long arg0) throws TimeoutException,
InterruptedException, MemcachedException {
} | {
"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 flushAll(InetSocketAddress arg0) throws MemcachedException,
InterruptedException, TimeoutException {
} | {
"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 flushAll(String arg0) throws TimeoutException,
InterruptedException, MemcachedException {
} | {
"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 flushAll(InetSocketAddress arg0, long arg1)
throws MemcachedException, InterruptedException, TimeoutException {
} | {
"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 flushAll(int arg0, long arg1) throws TimeoutException,
InterruptedException, MemcachedException {
} | {
"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 flushAll(InetSocketAddress arg0, long arg1, int arg2)
throws MemcachedException, InterruptedException, TimeoutException {
} | {
"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 flushAllWithNoReply() throws InterruptedException,
MemcachedException {
} | {
"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 flushAllWithNoReply(InetSocketAddress arg0)
throws MemcachedException, InterruptedException {
} | {
"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 flushAllWithNoReply(int arg0) throws InterruptedException,
MemcachedException {
} | {
"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 flushAllWithNoReply(InetSocketAddress arg0, int arg1)
throws MemcachedException, InterruptedException {
} | {
"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 <T> T get(String arg0) throws TimeoutException,
InterruptedException, MemcachedException {
return doGet(arg0);
} | {
"objective": {
"self": [],
"paired": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} | [
"@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}",
"@Override\n\tpublic void comer() {\n\t\t\n\t}",
"@Override\n public void perish() {\n \n }",
"@Override\r\n\t\t\tpublic void annadir() {\n\r\n\t\t\t}",
"@Override\n\tpublic void anular() {\n\n\t}",
"@Override\n\tprotected void getExr... | [
"0.6671074",
"0.6567672",
"0.6523024",
"0.6481211",
"0.6477082",
"0.64591026",
"0.64127725",
"0.63762105",
"0.6276059",
"0.6254286",
"0.623686",
"0.6223679",
"0.6201336",
"0.61950207",
"0.61950207",
"0.61922914",
"0.6186996",
"0.6173591",
"0.61327106",
"0.61285484",
"0.608016... | 0.0 | -1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.