query stringlengths 8 1.54M | document stringlengths 9 312k | negatives listlengths 19 20 | metadata dict |
|---|---|---|---|
Ruft den Wert der iEigenschaft ab. | public int getI() {
return i;
} | [
"public void erzaehlWas() {\n // Das Gleiche was jedes Tier sagt.\n super.erzaehlWas();\n\n // Zusaetzliche Aussage des Baeren\n System.out.println(\"Ich halte Winterschlaf eingebaut.\");\n }",
"@Override\r\n\tpublic void eintragLoeschen() {\n\t\t\r\n\t}",
"private void liesEigenschaftenEin()\r\n\t... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
repeated .FileInfo fileInfo = 3; | public int getFileInfoCount() {
return fileInfo_.size();
} | [
"pipe.common.Common.FileOrBuilder getFileOrBuilder();",
"public void incrementNumFiles() {\r\n\t\tthis.numFiles++;\r\n\t}",
"public FileInfoBase[] getFileInfo() {\r\n return fileInfo;\r\n }",
"public java.util.List<? extends Protobuf.FileInfoOrBuilder>\n getFileInfoOrBuilderList() {\n ... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Should this icon's image switch to the appropriate "focused" source when the user puts focus on the form item or icon? | public Boolean getShowFocused() {
return getAttributeAsBoolean("showFocused");
} | [
"private void evaluateIcon(){\n if (mouseInPopupArea&&isEnabled()) {\n evaluateIcon(downArrow2);\n }\n else {\n evaluateIcon(downArrow);\n }\n }",
"@FXML\n private void firstImageEvent(MouseEvent event) {\n Image image;\n try {\n ... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
XXX move to pyMultiarrray? | public PyObject _call(PyObject args[]) {
int n = Py.py2int(args[0]);
PyMultiarray a = PyMultiarray.zeros(new int [] {n*n}, 'i');
for (int i = 0; i < n; i++)
a.set(i*(n+1), Py.One);
return PyMultiarray.reshape(a, new int [] {n, n});
} | [
"public abstract Array getArray();",
"Object copyToNDJavaArray();",
"protected void copyFrom1DJavaArray(IndexIterator iter, Object javaArray) {\n //To change body of implemented methods use File | Settings | File Templates.\n }",
"public void java_lang_reflect_Array_multiNewArray(SootMethod method, Refere... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
This checks to see if the car hit the goal or an obstacle | public boolean checkHit() {
if (Math.abs(curr.state[0] - WIDTH) < 5 || Math.abs(curr.state[1] - HEIGHT) < 5) {
fitness -= 50;
return true;
}
if (curr.state[0] < 5 || curr.state[1] < 5) {
fitness -= 100;
return true;
}
for (int i =... | [
"public boolean isObstacleAllowed()\r\n\t{\n\t\treturn false;\r\n\t}",
"private boolean detectCollisionWithOtherCar(Car trackedCar, Car car2)\n\t{\n\t\t// Firstly let's see if the UGV is stationary, because if so, we are going to attribute\n\t\t// any accident to one of the other cars (so we can ignore it)\n\t\ti... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
/ WARNING Removed try catching itself possible behaviour change. | public boolean enterIfInterruptibly(Guard guard) throws InterruptedException {
if (guard.monitor != this) {
throw new IllegalMonitorStateException();
}
ReentrantLock lock = this.lock;
lock.lockInterruptibly();
boolean satisfied = false;
try {
boole... | [
"default boolean isTryCatchBlock(){return false;}",
"private static void exceptionCausingCode() {\n }",
"public void test() {\n //2:\n try {\n SomeObject so = new SomeObject();\n so.get(1);\n } catch (SomeException se) {\n System.out.println(\"Fix it!\");\n ... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Creates new form SFormDocument | public SFormDocument(SGuiClient client, String title) {
setFormSettings(client, SGuiConsts.BEAN_FORM_EDIT, SModConsts.DU_DOC, SLibConsts.UNDEFINED, title);
initComponents();
initComponentsCustom();
} | [
"public void createDocument() {\n\n\t\ttry {\n\t\t\t\n\t\t\tDocumentBuilder builder = factory.newDocumentBuilder();\n\t\t\t\n\t\t\t// Kreiranje novog dokumenta \n\t\t\tdocument = builder.newDocument(); \n\t\t\t\n\t\t} catch (Exception e) {\n\t\t\te.printStackTrace();\n\t\t}\n\t}",
"DocumentEntry createGoogleForm(... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Create method shakeDice with return type ArrayList and an empty parameter list; the method should do the following: | public ArrayList<Die> shakeDice()
{
//0. Call method populateDice()
int counter = 0;
populateDice();
// System.out.println("\nBoggle Board");
// System.out.println();
//1. Loop through the 16 dice, for each Die:
for(Die die : sixteen)
{
//a. Call m... | [
"public static ArrayList<Integer> rollDice(int sides, int numRolls){\n ArrayList<Integer> rolls = new ArrayList<Integer>();\n for(int i = 0; i < numRolls; i++){\n rolls.add((int)(Math.random() * sides + 1));\n }\n return rolls;\n }",
"private int[] autoDiceRoller() {\n\t\... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Konstruktor koji kreira tabelu polozenih ispita koristeci metode iz JTable klase, direktno je povezana sa apstraktnom model klasom preko modela. | public PolozeniJTable() {
this.setRowSelectionAllowed(true);
this.setColumnSelectionAllowed(true);
this.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
this.setModel(new AbstractTableModelPolozeni());
} | [
"public void llenadoDeTablas() {\n\n DefaultTableModel modelo = new DefaultTableModel();\n modelo.addColumn(\"Codigo\");\n modelo.addColumn(\"Tipo Transaccion\");\n modelo.addColumn(\"Efecto Transaccio\");\n\n\n \n TipoTransaccionDAO TipoTDAO = new TipoTransacci... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
This method computes the color options for a specified vertex. The method mutates the 'colorOptions' parameter of the specified vertex which allows the calling method to access the color options via the corresponging getter. The method returns 'true' if color options have been found and 'false' otherwise. It should be ... | private int findColorOptionsForSingleVertex(Vertex vertex) {
if (debug) System.out.println("findColorOptionsForSingleVertex()");
// Eliminate the color option for the default color
vertex.colorOptions = colors;
if (Auxilaries.containsInt(colors, 0)) {
vertex.colorOptions... | [
"private int indexOfVertexToBeColoredNext(){\r\n\r\n\t\t// holds largest number of colored neighbors\r\n\t\tint largestNumberColoredNeighbors = 0;\r\n\t\t// holds index of vertex whose number of distinct colored neighbors is the largest\r\n\t\tint indexLargestNumberColoredNeighbors = 0;\r\n\r\n\t\tfor(int i = 0; i ... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Staticheskij metod iniciliziruetsja srazu i dostupen v ljubom meste | private static int getAgeOtdelno(L8Cars car) {
return LocalDateTime.now().getYear() - car.getAge();
} | [
"static void statischMaken() {\n\n\t}",
"private void escribirEnPantalla() {\n }",
"protected abstract void zeichne ();",
"interface metStatic { // expliciet\n\tstatic void statischMaken() {\n\t}\n}",
"public Levyt(){\n\t\t\t//oletus muodostaja\n\t\t}",
"@Override\r\n\tpublic void wydaj() {\n\t\t\r\n\t... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Constructor to create a new instance of Z3950Query | public Z3950Query(Z3950Connection conn, Hashtable searchProp) {
// We want to give the backend some hints
this.hints = new Hashtable();
String element_set_name = String.valueOf(searchProp.get("ElementSetName"));
// this.hints.put("default_element_set_name", "f");
// this.hints.put("sma... | [
"public BasicQueries() {\n }",
"public Query() { }",
"public QueryImpl() {\n }",
"private Query<T> createQuery() {\n if (query == null) {\n query = (Query<T>) queryEngine.buildQuery(queryFactory, parsingResult, namedParameters, startOffset, maxResults, local);\n if (timeout > 0) {... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Test case number: 241 /Coverage entropy=1.818483163012365 | @Test(timeout = 4000)
public void test241() throws Throwable {
Form form0 = new Form("");
TextInput textInput0 = new TextInput(form0, "", "&V{sg0vj6g@82$IH5:");
// Undeclared exception!
try {
textInput0.head();
fail("Expecting exception: ClassCastException");
} ... | [
"@Test(timeout = 4000)\n public void test147() throws Throwable {\n TextDirectoryLoader textDirectoryLoader0 = new TextDirectoryLoader();\n Instances instances0 = textDirectoryLoader0.getStructure();\n Evaluation evaluation0 = new Evaluation(instances0, (CostMatrix) null);\n String string0 = ... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
The number of songs in this album /============= CONSTRUCTOR ============= Constructs a new Music object with the specified numeric Item ID, title, genre, number of copies, artist, and number of tracks. | public Music(int ID, String title, String genre, int copies, String artist, int tracks) {
super(ID, title, genre, copies, "Music");
this.artist = artist;
this.tracks = tracks;
} | [
"public MusicStore(ArrayList<Song> songs) {\n //ADD YOUR CODE BELOW HERE\n \t\n \tint numBuckets = 7;\n \t\n \ttitleTable = new MyHashTable<String,ArrayList<Song>>(numBuckets);\n \tyearTable = new MyHashTable<Integer,ArrayList<Song>>(numBuckets);\n \tartistTable = new MyHashTable<String,Arr... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
TODO Autogenerated method stub | @Override
public List<?> queryExists(Map<String, Object> entityMap) throws DataAccessException {
return null;
} | [
"@Override\n }",
"@Override\n\t\t\t\tpublic void pintate() {\n\t\t\t\t\t\n\t\t\t\t}",
"@Override\n public void extornar() {\n \n }",
"@Override\r\n\tpublic void hablar() {\n\t\t\r\n\t}",
"@Override\n\t\tpublic void kayit1() {\n\t\t\t\n\t\t}",
"@Override\r\n\tpublic void wydaj() {\n... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
This will set each vertex transformable. | public void setAllTransformable(boolean transformable) {
int flag = (transformable == true ? TransformLinePool.SEARCH_TRANSFORMABLE_ON : TransformLinePool.SEARCH_TRANSFORMABLE_OFF);
for (Iterator<TransformVertex> itr = tLinePool.vertexValues().iterator(); itr.hasNext(); )
itr.next(... | [
"public void setIdentityTransform();",
"private void setup() {\n this.addTransformation(new DebugTransformation(this.getUserInteracting()));\n this.addTransformation(new BlockTransformation(this.getUserInteracting()));\n this.addTransformation(new BlockNameTransformation(this.getUserInteracti... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Get description of the repository. | public DfsRepositoryDescription getRepositoryDescription() {
return repoDesc;
} | [
"public void retrieveDescription() {\n try {\n repositoryDescription = selectedEJB().describeRepository(repositoryName);\n } catch (Exception e) {\n FacesContext.getCurrentInstance().addMessage(null, new FacesMessage(e.getMessage()));\n }\n }",
"@ApiModelProperty(valu... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
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();
// if (id == R.id.action_settings) {
// return true;
switch (id) {
case R.id.optionmenuitem1:
Toast.makeText(ListViewActivity_3.this, "第一选项", 2000).show();
... | [
"@Override\n\tpublic boolean onOptionsItemSelected(MenuItem item) {\n\t\tswitch(item.getItemId()){\n\t\tcase android.R.id.home:\n\t\t\t// app icon in action bar clicked; go home\n Intent intent = new Intent(this, MainMenuCard.class);\n intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);\n ... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Crea un nuevo ejercicio contable en la base de datos | public void setEjercicio(Ejercicio ejercicio, Connection conn) throws Exception{
PreparedStatement pstmt = null;
try{
if(conn == null || conn.isClosed())
conn = new Conexion().getConexionMateo(new Boolean(false));
String COMANDO = "INSERT INTO mateo.CONT_EJERCICIO " +
"(ID_EJERCICIO, NOMBRE, ... | [
"public Ejercicio create(Ejercicio ejercicio);",
"public EntrenamientoEjercicio create(EntrenamientoEjercicio entrenamientoEjercicio);",
"Ordenacion createOrdenacion();",
"public RegistroEmpresaMB() {\r\n\t\tempresaLogica = new EmpresaLogica();\r\n\t\tcorreoEnviado = new Correo();\r\n\t}",
"public Consorcio... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Metodo que permite obtener el valor del atributo id | public Long getId() {
return id;
} | [
"public String getIdAttr();",
"public int getValue(){\n return ID;\n }",
"public Integer getId()\n {\n return getInteger(\"id\");\n }",
"String getAbilId();",
"public String id() {\n return this.getString(\"id\");\n }",
"public String getId() {\r\n return (String)getA... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Creates a new instance. All icons must have the same dimensions. The array indices are used to represente the following states: [0] Enabled [1] Enabled Pressed [2] Enabled Selected [3] Enabled Pressed Selected [4] Disabled [5] Disabled Selected [6] Enabled Inactive [7] Enabled Inactive Selected [8] Disabled Inactive [9... | public ButtonStateIcon(Image[] images) {
super(images);
} | [
"private static SparseArray<ChipIcon> createIconMap() {\n var map = new SparseArray<ChipIcon>();\n map.put(EntityInfoProto.ActionInfo.ActionType.CALL_VALUE,\n new ChipIcon(R.drawable.action_call, true));\n map.put(EntityInfoProto.ActionInfo.ActionType.DIRECTIONS_VALUE,\n ... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Compares opcode and arg0 | public final boolean accepts(int opcode, int arg0, int arg1, int arg2) {
return this.opcode == opcode && this.arg0 == arg0;
} | [
"public static Object ijcmpf(Object... arg) {\r\nUNSUPPORTED(\"qqmv1dxqcqyeh7lttfs5l1ov\"); // static int ijcmpf(Dt_t * d, gridpt * p1, gridpt * p2, Dtdisc_t * disc)\r\nUNSUPPORTED(\"erg9i1970wdri39osu8hx2a6e\"); // {\r\nUNSUPPORTED(\"1wmjkf3r3rua2n9n6v1glz64z\"); // int diff;\r\nUNSUPPORTED(\"6z29omss9ay00bqf6... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
TODO Autogenerated method stub | public void onClick(ClickEvent event) {
greetingService.greetServer("GreetingService", new AsyncCallback<String>() {
public void onFailure(Throwable caught) {
// TODO Auto-generated method stub
Window.alert("Failure greeting");
}
public void onSuccess(String result) {
// TODO Auto-... | [
"@Override\n }",
"@Override\n\t\t\t\tpublic void pintate() {\n\t\t\t\t\t\n\t\t\t\t}",
"@Override\n public void extornar() {\n \n }",
"@Override\r\n\tpublic void hablar() {\n\t\t\r\n\t}",
"@Override\n\t\tpublic void kayit1() {\n\t\t\t\n\t\t}",
"@Override\r\n\tpublic void wydaj() {\n... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
This method was generated by Apache iBATIS ibator. This method corresponds to the database table sys_dictionary | public void insert(SysDictionary record) {
getSqlMapClientTemplate().insert("sys_dictionary.ibatorgenerated_insert", record);
} | [
"public SysDictionaryDAO() {\r\n super();\r\n }",
"public String getDictionaryIdentifier();",
"@Override\n\tpublic void modifyDict(SysBasDict basDict) {\n\t\tbasDictDao.updateByPrimaryKeySelective(basDict);\n\t}",
"void interpreterExportKeyInfo(Map<String, Object> mapFK, ResultSet resultSet) throws ... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
This method writes all study group to xmlfile in the memory. | @Override
public void saveDTOs(Set<StudyGroupDTO> dto) throws DAOException {
String path = file.getPath();
File[] oldfiles = file.listFiles();
List<File> studyGroupFiles = Arrays.asList(oldfiles);
for (File studyGroupFile : studyGroupFiles) {
studyGroupFile.delete();
... | [
"public void save() throws Exception {\n XStream xstream = new XStream(new DomDriver());\n ObjectOutputStream out = xstream.createObjectOutputStream(new FileWriter(\"scouts.xml\"));\n out.writeObject(scouts);\n out.close();\n }",
"public void save() throws Exception\n {\n ... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
$ANTLR end "rule__JvmWildcardTypeReference__Group_2_1__0__Impl" $ANTLR start "rule__JvmWildcardTypeReference__Group_2_1__1" ../de.grammarcraft.flow.ui/srcgen/de/grammarcraft/flow/ui/contentassist/antlr/internal/InternalFlow.g:17549:1: rule__JvmWildcardTypeReference__Group_2_1__1 : rule__JvmWildcardTypeReference__Group_... | public final void rule__JvmWildcardTypeReference__Group_2_1__1() throws RecognitionException {
int stackSize = keepStackSize();
try {
// ../de.grammarcraft.flow.ui/src-gen/de/grammarcraft/flow/ui/contentassist/antlr/internal/InternalFlow.g:17553:1: ( rule__JvmWildcardTypeRefe... | [
"public final void rule__JvmWildcardTypeReference__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalScripting.g:14126:1: ( rule__JvmWildcardTypeReference__Group__2__Impl )\n // InternalScripting.g:14127:2: rule__Jv... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Use this function to generate temporary variable names for the destination of the instructions. | public static String getMatchName(int n) {
return String.format("%%M.%d", n);
} | [
"private static String getVariableName() {\n return temporaryVariableName + rightExpressionId;\n }",
"public String createTempVariable(String typeString, String name) throws Exception {\r\n String tmpName = \"_\" + name;\r\n Integer n = tempVars.get(tmpName);\r\n if (n != null) {\r\... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
/ Gets the ID's of all Items stored in the Container Don't add a JavaDoc comment here, we use the default documentation from implemented interface. | @Override
public Collection<?> getItemIds() {
return container.getItemIds();
} | [
"@Override\n\tpublic String getID() {\n\t\treturn items.id;\n\t}",
"@java.lang.Override\n public java.util.List<java.lang.Long>\n getItemIdList() {\n return itemId_;\n }",
"java.util.List<java.lang.Long> getItemIdList();",
"public List<?> getItemIdList() {\n if (itemIdList == null) {\... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Do any ai calculations if the entity has it | public void update(float delta) {
if (mAI != null)
mAI.update(delta);
// Update Body
updateBody();
// Update image
updateSprite();
} | [
"public void runAI(LivingEntity livingEntity);",
"public void update() {\n if (AIHealth <= 0) {\n graphicsSession.endScreen(1);\n } else if (playerHealth <= 0) {\n graphicsSession.endScreen(0);\n }\n\n // Give money!\n if (System.currentTimeMillis() - lastT... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
This method was generated by MyBatis Generator. This method returns the value of the database column OP.T_CM_MAC.CHECK_YN | public String getCheckYn() {
return checkYn;
} | [
"public String getCHECK_OVERDAFT_CHARGE_YN() {\r\n return CHECK_OVERDAFT_CHARGE_YN;\r\n }",
"public org.jooq.test._.converters.Boolean_YN_LC getYNLc() {\n\t\treturn getValue(org.jooq.test.ase.generatedclasses.tables.TBooleans.Y_N_LC);\n\t}",
"public String getIS_KYC_YN() {\r\n return IS_KYC_YN;... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Use the factory to get BTCE exchange API using default settings | public static void main(String[] args) throws Exception {
Exchange bitfinex = ExchangeFactory.INSTANCE.createExchange(BitfinexExchange.class.getName());
// Interested in the public market data feed (no authentication)
MarketDataService marketDataService = bitfinex.getMarketDataService();
generic(marke... | [
"public static BankxxxApiClientFactory newInstance() {\n return new BankxxxApiClientFactory(null, null);\n }",
"private BankxxxApiClientFactory(String apiKey, String secret) {\n this.apiKey = apiKey;\n this.secret = secret;\n }",
"public static BtcommFactory init() {\n\t\ttry {\n\t\t\... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
menu para el triangulo | public void menu_triangulo(){
int des1=-1;//solicita los seis puntos del triangulo por variable independiente
System.out.println("ingrese el valor de x1: ");
x1= entrada.nextDouble();
System.out.println("ingrese el valor de y1: ");
y1= entrada.nextDouble(... | [
"public static void VypisMenu () {\n\t\t\n\t\tSystem.out.println(\"Menu:\");\n\t\tSystem.out.println(\"1. Scitani\");\n\t\tSystem.out.println(\"2. Odecitani\");\n\t\tSystem.out.println(\"3. Nasobeni\");\n\t\tSystem.out.println(\"4. Deleni\");\n\t\t\t\t\n\t}",
"private static void irMenuEstoque() {\n\t\t\n\t}",
... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
optional string to = 5; | public boolean hasTo() {
return ((bitField0_ & 0x00000010) == 0x00000010);
} | [
"public int getTo( ) {\n return to;\n }",
"void mo23410a(int i, String str);",
"public void setTue4to5(String tue4to5);",
"public void setTue12to1(String tue12to1);",
"public void setToValue(String toValue) {\n this.toValue = toValue;\n }",
"public void setTo(String to) {\n // \... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Normal priority is = 5 | public static void main(String[] args) {
PriorityThreading obj1 = new PriorityThreading();
obj1.setPriority(MAX_PRIORITY); // Max_Priority value = 10 of int datatype
obj1.setName("Thread one");
obj1.start();
PriorityThreading obj2 = new PriorityThreading();
obj2.setPriority(MIN_PRIORITY); // Min_Priority va... | [
"default public float getPriority() {\r\n\t\treturn 5.0f;\r\n\t}",
"Double priority();",
"@Override\r\n\tpublic int priority() {\n\t\treturn 3;\r\n\t}",
"@Override\n public int priority(){\n return 2;\n }",
"public long priority() { return priority; }",
"@Override\r\n\tpublic long... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Degrees of freedom for a multivariate Gaussian distribution is p (p + 1) / 2, where p is the number of variables. This is the number of unique entries in the covariance matrix over X. | private int h(List<ContinuousVariable> X) {
int p = X.size();
return p * (p + 1) / 2;
} | [
"public double getCDF(double y) {\n if (sigma==0) {\n return (y==mu) ? 1 : 0;\n }\n return getStandardCDF((y-mu)/sigma);\n }",
"public double getGaussianNumber(double mean, double variance) {\r\n\t\treturn (generator.nextGaussian() * Math.sqrt(variance) + mean);\r\n\t}",
"public double gaussian(d... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Get the codec context. | AVCodecContext getContext() {
return avContext;
} | [
"public static Context getContext() {return context;}",
"public synchronized Context getContext(){\n\t\treturn context;\n\t}",
"Context getContext() {return context;}",
"public Codec getCodec() {\n return codec;\n }",
"public Context getContext()\n\t{\n\t\treturn context;\n\t}",
"public CONTEXT ... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
must be called for controls to work | @SuppressLint("ClickableViewAccessibility")
public void setup(MouseCommander com)
{
commander = com;
// left click
final Button left = getView().findViewById(R.id.leftClick);
left.setOnTouchListener(new View.OnTouchListener()
{
@Override
public boo... | [
"private void initControls() {\n \n }",
"private void getControls() {\n\n\t}",
"@Override\n\t\t\tprotected void updateUI() {\n\t\t\t\tsuper.updateUI();\n\t\t\t}",
"@Override\n\tprotected void UpdateUI() {\n\t}",
"@Override\n\tpublic void Control() {\n\n\t}",
"@Override\n\tprotected void onGuiEve... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Draw the movie extra data | public static void drawMovieData(List<AbsType> result, MovieDataEnum type,
int id) {
CheckFlickGUI.drawMovieData(result, type, id);
} | [
"private void receiveAndShowMovieData(){\n //Receiving\n Intent i = getIntent();\n int position = i.getExtras().getInt(getString(R.string.moviePosition));\n Movie selectedMovie = MainActivity.getMovies().get(position);\n String title = selectedMovie.getTitle();\n String pos... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Mutator method for the current Sprite Type. | public void setSpriteType(SpriteType spriteTypeToSet)
{
this.spriteType = spriteTypeToSet;
} | [
"public void make_Sprite(){\n\t\tsprite = true;\n\t}",
"abstract void setUpSprite();",
"public void setSprite(){\n\t\timageView.setImage(spriteCutter.getSprite(spriteSheet, spriteCount, entity.getDirections(), entity.getSpeed()));\n\t}",
"public void addSprite( Sprite s, ItemType type )\n {\n if ( !... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Create new views (invoked by the layout manager) | @Override
public PersonAdapter.ViewHolder onCreateViewHolder(ViewGroup parent,
int viewType) {
// create a new view
LayoutInflater inflater = LayoutInflater.from(
parent.getContext());
View v =
inflater.in... | [
"private\n void\n createViews()\n {\n itsViews = new View[ViewKeys.values().length];\n\n getViews()[BUDGETS.ordinal()] = new BudgetsView();\n getViews()[HOME.ordinal()] = new HomeView();\n getViews()[REGISTER.ordinal()] = new RegisterView();\n getViews()[TOTALS.ordinal()] = new TotalsView();\n }"... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Create a Callable to be used for Futures; help found at: | @Override
public void run() {
while (docsAnalyzedCount < docLimit) { // Constantly seek websites for processing
fillFuturesArray();
emptyFuturesArray();
}
} | [
"public interface Callable {\n\t\n\tpublic abstract void execute(InterpreterContext context, Value[] arguments);\n}",
"public interface Callable {\n Object call(Object[] args);\n}",
"public final RunnableFuture newTaskFor(Callable callable) {\n throw new UnsupportedOperationException(\"Callable not su... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Replace this node with a given sequence of nodes | public void replace(NodeInfo[] replacement, boolean inherit) {
ParentNodeImpl element = parent;
delete();
for (int i=0; i<replacement.length; i++) {
NodeInfo n = replacement[i];
if (n.getNodeKind() != Type.ATTRIBUTE) {
throw new IllegalArgumentException("R... | [
"void replacingNode(NodeImpl node) {}",
"public void replace(Node node) {\n \tint pos = hijos.size() - 1; \n\t\thijos.set(pos, node); \t\n }",
"@Override\n void replaceNode(Node oldNode, Node newNode) {\n\n }",
"public void setNext(Node<E> newNext);",
"protected Sequence<T> replaceValue(Seque... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
TODO Autogenerated method stub | @Override
public void actionPerformed(ActionEvent e) {
Study01 a = new Study01();
a.setVisible(true);
} | [
"@Override\n }",
"@Override\n\t\t\t\tpublic void pintate() {\n\t\t\t\t\t\n\t\t\t\t}",
"@Override\n public void extornar() {\n \n }",
"@Override\r\n\tpublic void hablar() {\n\t\t\r\n\t}",
"@Override\n\t\tpublic void kayit1() {\n\t\t\t\n\t\t}",
"@Override\r\n\tpublic void wydaj() {\n... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Pushes the specified amount of characters back into the input stream. They will be read again by then next call of the scanning method | public void yypushback(int number) {
if ( number > yylength() )
zzScanError(ZZ_PUSHBACK_2BIG);
zzMarkedPos -= number;
} | [
"public void consume() {\r\n\t\tthis.p++;\r\n\t\tif (this.p >= this.input.length()) {\r\n\t\t\tthis.c = EOF;\r\n\t\t} else {\r\n\t\t\tthis.c = this.input.charAt(this.p);\r\n\t\t}\r\n\t}",
"public void consume() {\n \tif (input != null){\n \t\tif ( !(p < input.length()) ) inputLine(); \n \t} else c= EOF;\... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
repeated int32 SubProductCategory = 10; | java.util.List<java.lang.Integer> getSubProductCategoryList(); | [
"public void setGoodsCategoryThree(Long goodsCategoryThree);",
"Long countByCategoryIdNotAndTopCategoryEquals(Long subCategory, Byte topCategory);",
"public void setProduct(int product);",
"String getAlm_CategoryIntValue();",
"public void incProductCount()\n {\n ProductCount++;\n }",
"private void Se... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Writes the sheet to the named table. Automatically skips the first row of the sheet. Uses the name of the sheet as the name of the table. The table must exist in the database with that name. | public static void writeSheetToTable(Sheet sheet, DatabaseIfc db) throws IOException {
writeSheetToTable(sheet, true, null, db);
} | [
"private void createTable(XSSFSheet sheet)\n {\n XSSFTable my_table = sheet.createTable(); \n /* get CTTable object*/\n CTTable cttable = my_table.getCTTable();\n /* Define Styles */ \n CTTableStyleInfo table_style = cttable.addNewTableStyleInfo();\n table_style.se... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Returns the linked list of integers that represent the line numbers | public java.util.LinkedList<java.lang.Integer> getList()
{
return pageNumbers;
} | [
"public int getLinesNumber() {\n return this.lz;\n }",
"public LineNumberGen addLineNumber(InstructionHandle ih, int src_line) {\n/* 520 */ LineNumberGen l = new LineNumberGen(ih, src_line);\n/* 521 */ this.line_number_vec.add(l);\n/* 522 */ return l;\n/* */ }",
"public int getLi... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Create a handler Note it is common for this to be constructed by a TCP client. | public TraceRmiHandler(TraceRmiPlugin plugin, Socket socket) throws IOException {
this.plugin = plugin;
this.socket = socket;
this.in = socket.getInputStream();
this.out = socket.getOutputStream();
this.autoServiceWiring = AutoService.wireServicesConsumed(plugin, this);
this.negotiate();
} | [
"@Override\n public abstract HttpHandler create();",
"public MessageHandler create(MessageContext ctx);",
"public static interface HandlerFactory {\n\t\t/**\n\t\t * Called when a new connection completes version handshake to get a new\n\t\t * connection-specific listener. If null is returned, the connection ... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
/ renamed from: a | private long m21177a(long j, String str, Set<String> set) {
C6819b bVar = new C6819b();
C13297a.m38909a(new File(str), bVar);
ArrayList<C6818a> arrayList = new ArrayList<>(bVar.mo16656a());
Collections.sort(arrayList, new Comparator<C6818a>() {
public final /* synthetic */ in... | [
"public interface C3511a {\n /* renamed from: a */\n void mo29057a(int i);\n }",
"interface C4511c {\n /* renamed from: a */\n void mo29775a();\n }",
"public interface ans {\n /* renamed from: a */\n void mo1174a();\n}",
"public interface C24712af {\n /* renamed from... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
/ Bits of a index | public int lgR() {
} | [
"Boolean getBit(int index);",
"public int getBin(int index);",
"public interface BitIndex extends Indexed {\n\n /**\n * The \"logical\" length--the highest set bit + 1.\n *\n * @return the logical length of the index\n */\n int length();\n\n /**\n * @param pos the position to check ... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
TODO Autogenerated method stub | @Override
public boolean isUsernameIndex(String[] p_82358_1_, int p_82358_2_) {
return false;
} | [
"@Override\n }",
"@Override\n\t\t\t\tpublic void pintate() {\n\t\t\t\t\t\n\t\t\t\t}",
"@Override\n public void extornar() {\n \n }",
"@Override\r\n\tpublic void hablar() {\n\t\t\r\n\t}",
"@Override\n\t\tpublic void kayit1() {\n\t\t\t\n\t\t}",
"@Override\r\n\tpublic void wydaj() {\n... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Boolean value indicating if the shopper&39;s browser is able to execute Java. | @javax.annotation.Nonnull
@ApiModelProperty(required = true, value = "Boolean value indicating if the shopper's browser is able to execute Java.")
public Boolean getJavaEnabled() {
return javaEnabled;
} | [
"public boolean isInterpreterNeeded() {\n\t\treturn (this.interpreter != null)?Boolean.TRUE:Boolean.FALSE;\n\t}",
"boolean \nisJava();",
"boolean hasPhp();",
"protected boolean notFound()\n {\n String message = \"It looks like your system does not have a Java Development Kit (JDK) available.\\n\"\n ... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
$ANTLR end "rule__TermExpr__Group_6__3__Impl" $ANTLR start "rule__TermExpr__Group_6__4" InternalAgreeParser.g:20299:1: rule__TermExpr__Group_6__4 : rule__TermExpr__Group_6__4__Impl ; | public final void rule__TermExpr__Group_6__4() throws RecognitionException {
int stackSize = keepStackSize();
try {
// InternalAgreeParser.g:20303:1: ( rule__TermExpr__Group_6__4__Impl )
// InternalAgreeParser.g:20304:2: rule__TermExpr__Group_6__4__Impl
... | [
"public final void rule__Document__Group__4__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.eclipse.xtext.xdoc.ui/src-gen/org/eclipse/xtext/xdoc/ui/contentassist/antlr/internal/InternalXdoc.g:2294:1: ( ( ( rule__Document__Grou... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
if user entering more than two digits assume now entering minutes | @Override
public void modifyText( ModifyEvent event )
{
if ( m_segment == TimeSpan.UNIT_HOURS && m_value >= 100.0 )
{
m_segment = TimeSpan.UNIT_MINUTES;
m_prefix = Integer.toString( ( (int) m_value ) / 10 ) + ":";
m_suffix = "";
getPrimeEditor().setTex... | [
"private int enterMinute() {\n int minute = 0;\n do {\n try {\n showInline(\"Minute (00 - 59): \");\n minute = sc.nextInt();\n } catch (InputMismatchException e) {\n show(\"Entrez une minute entre 00 et 59.\");\n sc.nextInt();\n }\n } while (minute < 0 || minute >... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
This method was generated by MyBatis Generator. This method returns the value of the database column TASK.TID_KEYS.ES_KEY | public String getEsKey() {
return esKey;
} | [
"public E getKey() {\n return key;\n \n \n }",
"public KT getKey() {\r\n\t\treturn key;\r\n\t}",
"public static String translateTableRow_key() {\n\t\treturn moduleProvider.get().translateTableRow_key;\n\t}",
"@Override\n\tprotected String[] getKeyColumnNames() {\n\t\tString[] keyCol={\... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Car arrival and waiting | void westCross() {
try {
Thread.sleep((int)(Math.random()*waitscale));
} catch (InterruptedException e) { }
System.out.println(Thread.currentThread().getName()+"(West) --- wait");
//Lock Critical Section(Bridge)
lock.lock();
try {
while (!west... | [
"@Override\n public void handle(Car car) {\n Railroad rail = (Railroad) Main.intersection;\n\n System.out.println(\"Car \" + car.getId() + \" from side number \" +\n car.getStartDirection() + \" has stopped by the railroad\");\n\n ... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Return the session attribute associated to the key parameter | public Object getSessionAttribute(String key) {
FlexSession fs = FlexContext.getFlexSession();
return fs.getAttribute(key);
} | [
"public Object getSessionAttribute(String key, HttpServletRequest request) {\n\treturn request.getSession().getAttribute(key);\n }",
"public String getAttribute(String key) {\n\t}",
"public static <V> Function<Session, V> attr(String key) {\n return session -> session.getAttribute(key);\n }",
"pu... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Update the byteArray with the platform announcement message attributes. Numbers are stored in bigendian order (network order). CRC must be generated for packets that are sent. | public void update(){
int dataLength = 0;
long crc32 = 0;
int b = 0;
int i = 0;
dataLength = (4 * 4 ) + 20;
byteArray = new byte[dataLength + 4];
/* data length */
for ( i = 4; i > 0; i--){
byteArray[b++] = byteAt( dataLength, i-1 );
}
/* message type */
for ( i = ... | [
"public void mo22683a(byte[] bArr) {\n this.f20945c.update(bArr);\n }",
"public UpdatesMsg(byte[] data) {\n super(data);\n amTypeSet(AM_TYPE);\n }",
"protected void m9061a(byte[] bArr) {\n this.f7563a.onResponse(bArr);\n }",
"public void update(byte[] data)... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Metodo para atender las peticiones de tipo POST del protocolo HTTP. | public void doGet(HttpServletRequest peticion, HttpServletResponse respuesta)
throws ServletException, IOException {
// LLAMADA DE METODO POR EL SERVIDO UNA VEZ FINALIZADO EL FILTRO
System.out.println("");
} | [
"@Override\r\n\tprotected String getProtocol() {\n\t\treturn \"POST\";\r\n\t}",
"@Override\n public HttpMethod method() {\n return HttpMethod.POST;\n }",
"@Override\r\n\tpublic String getMethod() {\n\t\treturn \"POST\";\r\n\t}",
"void onPrePOST(String data, OgemaHttpRequest req);",
"default <T>... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
The Interface IController. This Interface is just used to authorize the class who implement him to use the methods Start or getOrderPerfomer. | public interface IController {
IOrderPerformer getOrderPeformer();
/**
* Start the game
* @throws InterruptedException
*/
void start() throws InterruptedException;
} | [
"public interface IController {\r\n\r\n\tvoid readCourseFile();\r\n\tvoid readRequestFile();\r\n\tvoid addRequest(Request req);\r\n\tvoid processRequests();\r\n\tCourse getCourse(String courseDept, int courseNumber);\r\n\tvoid printClassList();\r\n}",
"public interface IController {\n\t/**\n\t * Starts the contro... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Set the value of the allowReselect property. | public void setAllowReselect(Boolean allowReselect) {
this.allowReselect = allowReselect;
this.handleConfig("allowReselect", allowReselect);
} | [
"public void setReconnectionAllowed(boolean allowed) {\n mReconnectionAllowed = allowed;\n }",
"public void setReprocess(java.lang.Boolean value);",
"void setResourceSelectionEnabled(boolean enable);",
"@Override\r\n\tpublic void setSelect(boolean b) {\n\t\tthis.isSelect=b;\r\n\t}",
"@Override\n\tpublic... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
/ The question asks for three nonoverlapping intervals with maximum sum of all 3 intervals. If the middle interval is [i, i+k1], where k = tot" for right interval due to backward searching, and "> tot" for left interval. | public int[] maxSumOfThreeSubarrays_prefix_sum_DP(int[] nums, int k) {
int n = nums.length, maxsum = 0;
int[] sum = new int[n + 1];
int[] posLeft = new int[n], posRight = new int[n];
int[] ans = new int[3];
for (int i = 0; i < n; i++)
sum[i + 1] = sum[i] + nums[i];
// DP for starting index of the left... | [
"public int[] maxSumOfThreeSubarrays(int[] nums, int k) {\n // Map k-sum from each starting index position\n int sum = -1;\n int[] ksum = new int[nums.length-k+1];\n for(int i = 0; i <= nums.length-k; i++) {\n if(sum == -1) {\n sum = 0;\n for(int j = 0; j < k; j++)\n sum += n... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Auto generated setter method | public void setGetBalanceTypesResponse(GetBalanceTypesResponse param){
this.localGetBalanceTypesResponse=param;
} | [
"abstract protected void set(Object value);",
"@Override\n protected void doSetValue(Object value) {\n super.doSetValue(value);\n }",
"@Override\n \t\t@SuppressWarnings(\"unchecked\")\n \t\tpublic Object setValue(Object value) {\n \t\t\twrite();\n \t\t\treturn me.setValue( value );\n \t\t}",
... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
a list to hold all the sets we have used | public RANSAC(Model m)
{
this.m = m;
bestModels = new ArrayList<Model>();
usedSets = new ArrayList<ArrayList<DataPoint>>();
} | [
"private void makeSet() {\n for (Vertex node : graph.getVertices()) {\n Set<Vertex> set = new HashSet<>();\n set.add(node);\n nodeSets.add(set);\n }\n }",
"public static ArrayList getTargetSets() {\r\n\t\treturn targetSets;\r\n\t}",
"private void populateSets(){\n\n }",
"public Set un... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Placement policy configuration. .yandex.cloud.compute.v1.PlacementPolicy placement_policy = 16; | @java.lang.Override
public yandex.cloud.api.compute.v1.InstanceOuterClass.PlacementPolicyOrBuilder getPlacementPolicyOrBuilder() {
return getPlacementPolicy();
} | [
"yandex.cloud.api.k8s.v1.NodeOuterClass.PlacementPolicyOrBuilder getPlacementPolicyOrBuilder();",
"yandex.cloud.api.k8s.v1.NodeOuterClass.PlacementPolicy getPlacementPolicy();",
"public String getPlacement() {\r\n\t\treturn placement;\r\n\t}",
"public CustomPlacementConfig getCustomPlacementConfig() {\n re... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Adapt the QDataSet to BinnedData2D. | public static BinnedData2D adaptBinnedData2D( QDataSet ds ) {
return new BinnedData2DImpl( ds );
} | [
"private void getBinData(\n ArrayList<Double> bins,\n ArrayList<Double> values,\n DefaultCategoryDataset dataset,\n String categoryLabel,\n boolean integerBins\n ) {\n getBinData(\n bins,\n values,\n datase... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
creates a UNIQUE constraint builder | public static Builder builder(NamedRelationDefinition relation, String name) {
return new UniqueConstraintBuilder(relation, name);
} | [
"public DbConstraint unique(String name) {\n DbConstraint constraint = getSpec().createColumnConstraint(\n this, name, Constraint.Type.UNIQUE);\n return addConstraint(constraint);\n }",
"public String createUniqueConstraint(DbEntity source, Collection columns) {\n if (columns == null || colum... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
an empty list and a single node list case | public boolean isPalindrome(ListNode head) {
if (head == null || head.next == null)
return true;
ListNode slow = head;
ListNode fast = slow.next;
while (fast != null && fast.next != null) {
slow = slow.next;
fast = fast.next.next;
}
... | [
"@Test\n\t\tpublic void test_AddNode_toEmptyList() {\n\t\t\t// if this test fails try:\n\t\t\t// -- clicking on the test to see how your output wasn't correct\n\t\t\t// -- adding print statements to the broken method\n\t\t\t// -- putting a break-point in the broken method & using the debugger\n\t\t\t// -- running d... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Test case number: 59 /Coverage entropy=0.0 | @Test(timeout = 4000)
public void test059() throws Throwable {
String string0 = EWrapperMsgGenerator.realtimeBar(1256, (-1L), 1256, 0.0, 3400.95656229, 3400.95656229, 1256, 1256, 1256);
assertEquals("id=1256 time = -1 open=1256.0 high=0.0 low=3400.95656229 close=3400.95656229 volume=1256 count=1256 WAP=... | [
"@Test(timeout = 4000)\n public void test147() throws Throwable {\n TextDirectoryLoader textDirectoryLoader0 = new TextDirectoryLoader();\n Instances instances0 = textDirectoryLoader0.getStructure();\n Evaluation evaluation0 = new Evaluation(instances0, (CostMatrix) null);\n String string0 = ... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
here i call new screen; | public void onClick(View arg0) {
Intent i = new Intent(MainActivity.this, halaman2.class);
startActivity(i);
} | [
"public abstract void load_screen();",
"Screen init();",
"abstract void loadScreen();",
"int addScreen(Screen screen);",
"@Override\n public void create() {\n setScreen(new GameScreen());\n }",
"private void moveToNextScreen() {\n }",
"public screen() {\n initComponents();\n }"... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Detects collisions between LTin and LTi cells important if LTin/LTi cells are also expressing RET ligands | public boolean ltiltinCollision(Continuous2D tract)
{
Bag cellsInRange = tract.getObjectsExactlyWithinDistance(this.agentLocation,this.cell_diameter);
if( cellsInRange != null )
{
// Now determine if there is contact with any other LTin/LTi cells
// go through all potential clashes, avoiding itself
f... | [
"private void checkForCollisions() {\n for (Cell c : myMapFeature.getMyCells()) {\n if (team&&c.getMyEnemies().size() > 0) {\n for (ActiveEnemy activeEnemy: c.getMyEnemies()) {\n handleEnemyCollision(activeEnemy);\n }\n }\n if(... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Register a namespace prefix | private java.lang.String registerPrefix(javax.xml.stream.XMLStreamWriter xmlWriter, java.lang.String namespace) throws javax.xml.stream.XMLStreamException {
java.lang.String prefix = xmlWriter.getPrefix(namespace);
if (prefix == null) {
prefix = generatePrefix(namespace);
... | [
"public void addNamespace(String pPrefix) {\n // check if already registered.\n if (!namespaces.containsKey(pPrefix)) {\n LOGGER.debug(\"Add namespace for prefix '{}'\", pPrefix);\n namespaces.put(pPrefix, NAMESPACE_PREFIX + pPrefix);\n }\n }",
"private java.lang.String registerPrefix(javax.xm... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
BufferedReader reader = new BufferedReader(new FileReader(args[0])); BufferedWriter writer = new BufferedWriter(new OutputStreamWriter()); | public static void main(String[] args) throws IOException
{
FileInputStream is = new FileInputStream(args[0]);
int data;
int count = 0;
int totalCount = 0;
while((data = is.read()) != -1){
if(data == 32){count++;}
totalCount++;
}
System... | [
"public static void main(String[] args) {\n\t\tString path = \"E:\\\\io\\\\b.txt\";\n//\t\tuseBufferedRead(path);\n// String destination = \"E:\\\\io\\\\big2.sql\";\n String destination = \"E:\\\\io\\\\b2.txt\";\n\t\tuseBufferedWrite(path,destination);\n\t}",
"public static void main(String[] args) ... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
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() {
Panel = new javax.swing.JPanel();
okButtom = new javax.swing.JButton();
passwordField = new javax.swing.JPasswordField();
user... | [
"public StForm() {\n initComponents();\n }",
"public CineForm() {\n initComponents();\n }",
"public javaform() {\n initComponents();\n }",
"public EditDemographicForm() {\n initComponents();\n }",
"public FightForm() {\n initComponents();\n }",
"public For... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Method for when the Load button is pressed. | private void doLoad() {
if (target == null || manager == null) {
JOptionPane
.showMessageDialog(
this,
"Error: either the current filter list or the manager is null.",
"Error", JOptionPane.ERROR_MESSAGE);
return;
}
int index = filterList.getMinSelectionIndex();
if (index < 0 || i... | [
"public static void clickOnLoadButton() {\n\t\tAndroidLocators.clickElementusingXPath(\"//*[@text='Load']\");\n\t}",
"public void load()\n\t{\n\t\t\n\t}",
"public void beginLoad() {\n }",
"public void actionPerformed(ActionEvent e) {\n loader.load(frame);\n loadButton().setEnabled(false);\n ... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
repeated .hraftkv.RaftGroup groups = 3; | public hraftkv.Metadata.RaftGroup getGroups(int index) {
if (groupsBuilder_ == null) {
return groups_.get(index);
} else {
return groupsBuilder_.getMessage(index);
}
} | [
"TfGcmessages.ETFMatchGroup getLobbyMatchGroup();",
"TfGcmessages.ETFMatchGroup getEventMatchGroup();",
"public List<String> peerGroups();",
"public void onGroupsObtained(ArrayList<ClassGroup> groups);",
"public WechatGroupExample() {\n oredCriteria = new ArrayList<Criteria>();\n }",
"Group getR... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Gets the Format of the owner of this FormatControl. Delegates to the wrapped FormatControl. | public Format getFormat()
{
return formatControl.getFormat();
} | [
"public Format.Builder getFormat() {\r\n\t\t\tif (_format == null)\r\n\t\t\t\t_format = new Format.Builder();\r\n\t\t\treturn _format;\r\n\t\t}",
"public FormatStyle getFormatStyle();",
"public Object getformat() {\n return format;\n }",
"public Format getFormat() {\n\t return format;\n\t}",
"public ... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
set user names on recyclerview | public void setUserNames(){
recyclerAdapter=new RecyclerAdapter(this,userList) ;
//Toast.makeText(this,String.valueOf(userList.get(0).getName()),Toast.LENGTH_LONG).show();
recyclerView.setAdapter(recyclerAdapter);
} | [
"public void setUsersName(ArrayList<String> tuserName) {\n\n usersName = tuserName;\n notifyDataSetChanged();\n }",
"protected void getUsersNames(RecyclerView.Adapter adapter, ArrayList<User> arrayList) {\n // - Get all users names\n UserHelper.getUsersCollection().addSnapshotListen... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
optional int32 itemID = 2; | public boolean hasItemID() {
return ((bitField0_ & 0x00000002) == 0x00000002);
} | [
"public int getIdItem(){\r\n return localIdItem;\r\n }",
"public void setItemID(int itemID) {\n itemID = idCount;\n }",
"public void setIdItem(int param){\r\n localIdItemTracker = true;\r\n ... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
EntityManagerFactory emf = Persistence.createEntityManagerFactory("ChoirBackendPU"); EntityManager em = emf.createEntityManager(); TODO: use the type variable in MaterialDetail to determine wether it's a sheet or an audio file, so we can persist the Material Object. | @Override
public MaterialDetail saveMaterial(MemberAuthentication user, MaterialDetail material) throws NoSuchMaterialException, AuthenticationException {
Audio audio;
Sheet sheet;
// em.getTransaction().begin();
Collection<Voice> voices = new ArrayList<Voice>();
if (mate... | [
"public static void setStandard(String standard,int id)\r\n{\r\n\tEntityManagerFactory factory=null;\r\n\tEntityManager manager=null;\r\n\tEntityTransaction transaction=null;\r\n\ttry {\r\n\t\tfactory=Persistence.createEntityManagerFactory(\"emp1\");\r\n\t\tmanager=factory.createEntityManager();\r\n\t\tStudent stud... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Gets the attribute value for FIRST_NAME using the alias name FirstName | public String getFirstName() {
return (String) getAttributeInternal(FIRSTNAME);
} | [
"public String getFirstName()\r\n {\r\n return getSemanticObject().getProperty(swb_usrFirstName);\r\n }",
"final String getFirstName()\n {\n checkValid(firstNameOrNull, \"first name\");\n return firstNameOrNull == null ? \"\" : firstNameOrNull;\n }",
"@java.lang.Override\n ... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Method that remore a tenant from the system. | @Override
public void removeTenant(String name) throws TenantNotFoundException {
Tenant temporaryTenant = new Tenant(name);
int flag = 0;
int removedTenantIndex = 0;
for (int i = 0; i < this.tenantList.size(); i++) {
if (tenantList.get(i).equals(temporaryTenant)) {
... | [
"void deleteTenant(ResourceResolver resourceResolver, String tenantsParentPath, String name) throws ManagementException;",
"@Before\n public void before() {\n tenantId = null;\n tenantService.deleteTenants();\n tenantProfileService.deleteTenantProfiles(TenantId.SYS_TENANT_ID);\n }",
"... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Asserts the parsing of a CoObRA transaction record. | @Test public final void testTransactionRecord() {
String text = "t;6XoO6#;newUMLProject;1266256822756;-;4;";
FujabaTransactionRecord record =
new FujabaTransactionRecord(text, MergeSide.RIGHT);
assertEquals("\nCoObRA record", text, record.getRecord());
assertEquals("\nModel side", MergeSide.RIG... | [
"@Test\n public void invalidTransaction() throws Exception{\n InputStream is = inputStream(\"D,1250,electricity\\nS,1920, salary\\nD,670,rental\");\n csvTransactionProcessor.importTransactions(is);\n List<Violation> violations = csvTransactionProcessor.validate(); \n assertThat... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
METHOD TO NAVIGATE TO A URL | public static void navigate(WebDriver driver, String url) { // To navigate to a certain URL on the set driver
try {
driver.navigate().to(url);
} catch (Exception e) {
System.out.println("Error in Navigation" + e.getMessage());
}
} | [
"public void goToUrlPage(){\n driver.get(configurationReader.getProperty(\"url\"));\n }",
"void gotoWebsite();",
"@Override\n\tpublic void navigateURL(String URL) throws Exception {\n\t\t\n\t}",
"protected void goTo(String url) {\n DriverManager.getDriver().getWebDriver().get(url);\n }",
... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Test of createNewTemplateList method, of class TemplateController. | @Test
public void testCreateNewTemplateList() {
int idTemplate = instance.findTemplateByName("testName").getIdTemplate();
int idTypeWorkShift = 1;
boolean result = instance.createNewTemplateList(idTemplate, idTypeWorkShift);
assertEquals(true, result);
} | [
"@Test\n public void execute_nonEmptyTemplateList_success() {\n }",
"@Test\n public void createCampaignTemplateTest() {\n TemplateResource campaignTemplateResource = null;\n // TemplateResource response = api.createCampaignTemplate(campaignTemplateResource);\n\n // TODO: test validat... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
This function seeks for the value of className in all the super classes of the given object. We use this [weird] functionality because we prefer to not use directly the classes to avoid big dependencies. | private static boolean instanceofByName(Object event, String className) {
Class c = event.getClass();
while (c != null) {
if (c.getSimpleName().equals(className)) {
return true;
}
c = c.getSuperclass();
}
return false;
} | [
"private void lookforAllSuperClassNames() {\r\n\t\tList<String> allSuperClassNames = new ArrayList<String>();\r\n\t\tif (this.superName == \"\") {// no special super class\r\n\t\t\tthis.allSupersKnown = true;\r\n\t\t\treturn;\r\n\t\t}\r\n\t\tClassContext cc = getSuperClass();\r\n\t\tif (cc != null && !cc.name.isEmp... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Use this code if you want to load from resources | public View getView(int position, View convertView, ViewGroup parent) {
final ViewHolder holder;
if(convertView ==null)
{
holder = new ViewHolder();
convertView = new ImageView(VODSE_NewMovie_Coverflow.this);
holder.CoverflowImage = (ImageView)convertView;
holder.CoverflowImage.setScaleType(... | [
"public void loadResources() {\n try {\n loadFonts();\n loadGraphics();\n loadSounds();\n } catch (IOException e) {\n LOGGER.log(Level.SEVERE, \"IOException loading resources: \" + e);\n }\n }",
"InputStream loadResource(String resourcePath);",
... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Menu that allows the calculation of the distance between 2 Points or coordinates. | private static void CalculateDistance()
{
System.out.println("*** Calculate Distance ***");
Point pA = null;
Point pB = null;
int count = 1;
do
{
String[] messages;
if(shapeList.size() > 0)
{
messages = new String[4];
messages[3] = "to select a POINT from a SHAPE.";
}
else mes... | [
"public double calculatorDistance() {\n distance = (pointerA.pointX - pointerB.pointX) * (pointerA.pointX - pointerB.pointX) + \n (pointerA.pointY - pointerB.pointY) * (pointerA.pointY - pointerB.pointY);\n distance = Math.sqrt(distance);\n return distance;\n }",
"public... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Method to set filled. | public void setFilled(boolean filled){
this.filled = filled;
} | [
"public void fill() {\r\n isFilled = true;\r\n }",
"public void setToFill() {\r\n isToFill = true;\r\n\t}",
"public void setFill(boolean fill){\n this.fill=fill;\n }",
"public boolean getFill(){\n\t\treturn filled;\n\t}",
"public void fill(){ }",
"public boolean fille... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
constructor calls super for the Person class | public Student(String firstName, String lastName, String UIN, Rank rank) {
super(firstName, lastName);
this.UIN = UIN;
this.myRank = rank;
} | [
"public Person() {\n // TODO: Revisar por qué hay un super()\n super();\n }",
"protected Person() {\r\n\t\t\r\n\t}",
"public Person(){\r\n\t\t// Default constructor\r\n\t}",
"Person () {\n\t\tSystem.out.println(\"This is the parent class Constructor called\");\n\t}",
"public Person(final St... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Shows view profile dialog | private void showViewProfileDialog() {
final Dialog dialog = new Dialog(this);
dialog.setContentView(R.layout.dialog_view_profile);
dialog.setTitle(R.string.friend_chat_dialog_view_profile_title);
String friendName = mFriend.getString(ParseConstants.KEY_FIRST_NAME);
String frien... | [
"public void showUserProfile() {\n\n AbsUserProfileForm profileForm = getUserProfileForm();\n profileForm.setUser(Login.getLogin().getUser());\n\n // sets the confirm listener in the form\n profileForm.setConfirmListener(new ConfirmDialog.ConfirmListener() {\n @Override\n ... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
move to next player | public static void nextPlayer(CardStructure playCard, ArrayList<CardStructure> player1,
ArrayList<CardStructure> player2, ArrayList<CardStructure> player3, ArrayList<CardStructure> player4) {
// for the int playerTurn, decide which players turn it is
// after each case, set playerTurn to equal the next case w... | [
"public void nextPlayer() {\n currentPlayer = currentPlayer.other();\n }",
"private void moveToNextPlayer() {\n if (server.checkIfWin()) {\n gui.initWinnerScene(server.getWinner());\n }\n server.updateCurrentPlayer();\n updateGamePanel();\n }",
"public void ch... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
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() {
jRadioButton1 = new javax.swing.JRadioButton();
jPanel1 = new javax.swing.JPanel();
transactButton = new javax.swing.JButton();
... | [
"public StForm() {\n initComponents();\n }",
"public CineForm() {\n initComponents();\n }",
"public javaform() {\n initComponents();\n }",
"public EditDemographicForm() {\n initComponents();\n }",
"public FightForm() {\n initComponents();\n }",
"public For... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
optional bool alreadyCompletedMiniTutorialTask = 11; Consider moving the logic using this into another event. Purpose is efficiency. When user completes a mini tutorial for the first time and the mini tutorial guarantees a monster drop, then the user will only get that monster once. Subsequent completions of said mini ... | public Builder setAlreadyCompletedMiniTutorialTask(boolean value) {
bitField0_ |= 0x00000400;
alreadyCompletedMiniTutorialTask_ = value;
onChanged();
return this;
} | [
"public boolean hasTutorialDone(OfflinePlayer p) { return cfg.getBoolean(p.getUniqueId().toString() + \".tutorial\"); }",
"@Override\n public void onSequenceFinish() {\n\n // Set run_tutorial flag to false to indicate we no longer need to run this.\n Log.i(TAG,... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Returns objects' string representation. | @Override
public String toString() {
return new StringJoiner(", ", Document.class.getSimpleName() + "[", "]")
.add("registrationId='" + registrationId + "'")
.add("registrationDate=" + registrationDate)
.add("documentId='" + documentId + "'")
.... | [
"public String toString() {\n return getObject().toString();\n }",
"public String toString() {\r\n\t\treturn StringUtil.formatObjectToString(this);\r\n\t}",
"public String toString() {\n return this.obj.toString();\n }",
"protected abstract String objectToString(Object object);",
"public... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Locate all methods (that the implementation should somehow know about) that match the criteria and remove them from the implementation's list so that they are not considered for subsequent scans. | void removeMethod(MethodScope methodScope, String methodName, Class<?> returnType, Class<?>[] parameterTypes); | [
"public void removeAllCallMethod()\n {\n _callMethodList.removeAllElements();\n }",
"private List<IMethod> getMethodsFromTypes(\n\t\tIType[] types,\n\t\tString prefix,\n\t\tboolean exactName,\n\t\tContext concreteContext\n\t) {\n\t\t\n\t\tList<IMethod> result = new LinkedList<IMethod>();\n\t\t\n\t\tf... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Create PK on target table. | public boolean isCreatePK() {
return createPK;
} | [
"private void createPKTestTable(String tableName) {\n createTestTable(\n testKeyspaceName(),\n tableName,\n Arrays.asList(\"id1 text\", \"id2 text\", \"description text\"),\n Arrays.asList(\"id1\"),\n Arrays.asList(\"id2\"));\n }",
"public String addPrimaryKey(TableDescripti... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
C++: CvNormalBayesClassifier::CvNormalBayesClassifier(Mat trainData, Mat responses, Mat varIdx = cv::Mat(), Mat sampleIdx = cv::Mat()) | private static native long CvNormalBayesClassifier_1(long trainData_nativeObj, long responses_nativeObj, long varIdx_nativeObj, long sampleIdx_nativeObj); | [
"public NaiveBayes(String[][] data, String[] label, ArrayList<String> vocab) throws Exception{\n \t this.vocab= vocab;\n \t double[][] probArray = new double[data.length][];\n \t IntStream.range(0,data.length).forEach(i -> probArray[i] = mapDocToVocab(data[i]));\n \t calcPriorProb(la... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
TODO Autogenerated method stub | @Override
public boolean updateAdmin(int id, Admin admin) {
boolean status=false;
try {
sf.getCurrentSession().update(admin);
status=true;
} catch (Exception e) {
throw e;
}
return status;
} | [
"@Override\n }",
"@Override\n\t\t\t\tpublic void pintate() {\n\t\t\t\t\t\n\t\t\t\t}",
"@Override\n public void extornar() {\n \n }",
"@Override\r\n\tpublic void hablar() {\n\t\t\r\n\t}",
"@Override\n\t\tpublic void kayit1() {\n\t\t\t\n\t\t}",
"@Override\r\n\tpublic void wydaj() {\n... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
TODO Autogenerated method stub | public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
if(container == null)return null;
return (LinearLayout)inflater.inflate(R.layout.eventattending, container, false);
} | [
"@Override\n }",
"@Override\n\t\t\t\tpublic void pintate() {\n\t\t\t\t\t\n\t\t\t\t}",
"@Override\n public void extornar() {\n \n }",
"@Override\r\n\tpublic void hablar() {\n\t\t\r\n\t}",
"@Override\n\t\tpublic void kayit1() {\n\t\t\t\n\t\t}",
"@Override\r\n\tpublic void wydaj() {\n... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |