query stringlengths 8 1.54M | document stringlengths 9 312k | negatives listlengths 19 20 | metadata dict |
|---|---|---|---|
Immutable. Feed attributes to field mappings. These mappings are a onetomany relationship meaning that 1 feed attribute can be used to populate multiple placeholder fields, but 1 placeholder field can only draw data from 1 feed attribute. Ad Customizer is an exception, 1 placeholder field can be mapped to multiple feed... | com.google.ads.googleads.v13.resources.AttributeFieldMapping getAttributeFieldMappings(int index); | [
"java.util.List<? extends com.google.ads.googleads.v13.resources.AttributeFieldMappingOrBuilder> \n getAttributeFieldMappingsOrBuilderList();",
"java.util.List<com.google.ads.googleads.v13.resources.AttributeFieldMapping> \n getAttributeFieldMappingsList();",
"com.google.ads.googleads.v13.resources.At... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Function to print out the list of all objects that will be updated | public void printObjectsToUpdate(ArrayList obs)
{
try
{
// Set up object and member-change writer
BufferedWriter toUpdateWriter = new BufferedWriter(new FileWriter(new File("updatedObjects.txt")));
System.out.println(obs.size());
// Loop through the groups and print them
for(int i = 0; i < obs.siz... | [
"public void printObjectList(){\n\t\tfor (int i = 0; i < gameObjectsList.size(); i++){\n\t\t\tSystem.out.println(i + \", \" + gameObjectsList.get(i).getCategory() + \" : Type:\" + gameObjectsList.get(i).getObjecttype() + \" X:\" + gameObjectsList.get(i).getX() + \" Y:\" + gameObjectsList.get(i).getY());\n\t\t}\n\t}... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Test of processAll method, of class PaperIndexer. | @Test
public void testProcessAll() throws TikaException, SAXException, IOException, Exception {
PaperIndexer indexer = new PaperIndexer(BaseDirInfo.getPath("test.properties"));
indexer.processAll();
Properties prop = indexer.getProperties();
String paraIndexPath = prop.getProperty("... | [
"public synchronized void processAll()\r\n {\r\n if (!myItems.isEmpty())\r\n {\r\n myProcessor.accept(New.list(myItems));\r\n myItems.clear();\r\n }\r\n }",
"protected void runBeforeIteration() {}",
"protected abstract void runIteration();",
"@Override\n\tpubli... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Creates a new instance of GUITest. | public GUITest() {
} | [
"public void createNewUI() {\n this.ui = new UdacityUserInterface();\n }",
"public static GUI createGUI ()\n\t{\n\t\tif (_instance == null)\n\t\t{\n\t\t\t_instance = new GUI ();\n\t\t}\n\t\t\n\t\treturn _instance;\n\t}",
"public Gui() {}",
"public GUI()\n {\n createGUI(); \n }",
"public Test... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
This method deletes a row in the database with given PickUp ID | public void delete (int pickupId) throws SQLException{
statement = connector.getConnection().prepareStatement("DELETE FROM pickups WHERE pickup_id=?");
statement.setInt(1, pickupId);
statement.execute();
statement = null;
} | [
"public void deletePickup (int reservationId) throws SQLException {\n statement = connector.getConnection().prepareStatement(\"DELETE FROM pickups WHERE resrervation_id=?\");\n statement.setInt(1, reservationId);\n statement.execute();\n statement = null;\n }",
"private void deleteC... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Calculate current pressure from the ADC in hPA. calc_pressure (using FPU math) | float calculatePressureFpu(int pressureAdc) {
float var1 = (temperatureFineFloat / 2.0f) - 64000.0f;
float var2 = var1 * var1 * (calibration.pressure[5] / (131072.0f));
var2 = var2 + (var1 * calibration.pressure[4] * 2.0f);
var2 = (var2 / 4.0f) + (calibration.pressure[3] * 65536.0f);
var1 = (((calibration.pre... | [
"long calculatePressureInt(final int pressureAdc) {\n\t\t// Convert the raw pressure using calibration data.\n\t\tint var1 = (temperatureFineInt >> 1) - 64000;\n\t\tint var2 = ((((var1 >> 2) * (var1 >> 2)) >> 11) * calibration.pressure[5]) >> 2;\n\t\tvar2 = var2 + ((var1 * calibration.pressure[4]) << 1);\n\t\tvar2 ... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Configures the eligibilityFilterChain property. | public void setEligibilityFilterChain(
EligibilityFilterChain eligibilityFilterChain) {
this.eligibilityFilterChain = eligibilityFilterChain;
} | [
"public void setFilterConfig(FilterConfig filterConfig) {\n \n this.filterConfig = filterConfig;\n }",
"public void setFilterConfig(FilterConfig filterConfig)\n {\n this.filterConfig = filterConfig;\n }",
"public void setFilterConfig(FilterConfig filterConfig) {\n\tthis.filterConfig = f... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
IjoomerEditText input mask for Postal codes. | public InputFilter getPostalMask() {
return new InputFilter() {
@Override
public CharSequence filter(CharSequence source, int start, int end, Spanned dest, int dstart, int dend) {
if (source.length() > 0) {
if (!Character.isLetterOrDigit(source.charAt(0)))
return "";
else {
... | [
"public InputFilter getPhoneMask() {\r\n\t\treturn new InputFilter() {\r\n\r\n\t\t\t@Override\r\n\t\t\tpublic CharSequence filter(CharSequence source, int start, int end, Spanned dest, int dstart, int dend) {\r\n\t\t\t\tSystem.out.println(\"source = \" + source + \", start = \" + start + \", end = \" + end + \", de... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Constructor for class BroadcastMessageQueueEntry | public BroadcastMessageQueueEntry(DeviceID sender, LinkLayerMessage message, BroadcastCallbackHandler handler) {
this.sender=sender;
this.message=message;
this.handler=handler;
} | [
"public DMSQueueEntryComparator()\n {\n\n }",
"public BlockingQueue() {\n }",
"public MsgQueueElement(String _sn, String _msg) {\r\nsn = _sn;\r\nmsg = _msg;\r\ntime = System.currentTimeMillis();\r\n}",
"public RunnableQueue(){\n this(null);\n }",
"public ListQueue() {\n \n }",
"... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
This method was generated by MyBatis Generator. This method returns the value of the database column ORDER_CART.OC_T_REG_DT | public Date getOcTRegDt() {
return ocTRegDt;
} | [
"public Date getOcCRegDt() {\n return ocCRegDt;\n }",
"public Date getOcRegDt() {\n return ocRegDt;\n }",
"public Date getPayOrderDT() {\n return payOrderDT;\n }",
"public Date getOcRRegDt() {\n return ocRRegDt;\n }",
"public String getDepRecDt() {\r\n\t\treturn depRe... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Getter for f_AnchorListItem71 called 1 times. Type: DEFAULT. Build precedence: 8. | private org.gwtbootstrap3.client.ui.AnchorListItem get_f_AnchorListItem71() {
return build_f_AnchorListItem71();
} | [
"private org.gwtbootstrap3.client.ui.AnchorListItem get_f_AnchorListItem61() {\n return build_f_AnchorListItem61();\n }",
"private org.gwtbootstrap3.client.ui.AnchorListItem get_f_AnchorListItem63() {\n return build_f_AnchorListItem63();\n }",
"private org.gwtbootstrap3.client.ui.AnchorListItem ... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Test startGlyphStream() test that startGlyphStream() invokes reset() and startString() in PSTTFGenerator. | @Test
public void testStartGlyphStream() throws IOException {
this.glyphOut.startGlyphStream();
verify(this.mockGen).startString();
} | [
"@Test\n public void testStreamGlyph() throws IOException {\n final int byteArraySize = 10;\n final byte[] byteArray = new byte[byteArraySize];\n final int runs = 100;\n for (int i = 0; i < runs; i++) {\n this.glyphOut.streamGlyph(byteArray, 0, byteArraySize);\n }\n ... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Marks the given task | void markTask(ReadOnlyTask target); | [
"public void markTask(ReadOnlyTask key){\n tasks.mark(key);\n\t}",
"void setTask(Task task);",
"boolean setTask(UUID uuid, IAnimeTask task);",
"public void SetTask(Task task)\r\n\t{\r\n\t\tthis.task = task;\r\n\t}",
"public void setTask(jacob.scheduler.system.callTaskSynchronizer.castor.Task task)\n ... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
checks if the board has reached a Terminal state, meaning there are no empty squares left | public boolean isTerminal(){
for(int row=0; row<8; row++)
{
for(int col=0; col<8; col++)
{
if(gameboard[row][col] == EMPTY)
{
return false;
}
}
}
return true;
} | [
"public boolean boardIsFull(){\n\t\treturn this.remainingSpace <= 0;\n\t}",
"boolean isBoardFull() {\n\t\tfor (int row = 0; row < SIZE; row++) {\n\t\t\tfor (int col = 0; col < SIZE; col++) {\n\t\t\t\tboolean isSquareEmpty = getLetter(row, col) == SPACE;\n\t\t\t\tif (isSquareEmpty) {\n\t\t\t\t\treturn false;\n\t\t... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Disposes of the shader program gl resources | public void dispose() {
if (state == State.IN_USE) {
endShader();
}
if (state == State.INITIALIZED) {
gl.glDeleteProgram(glslContext);
glslContext = -1;
}
state = State.INVALID;
loadedUniforms.clear();
} | [
"public void dispose () {\r\n\t\tGL20.glUseProgram(0);\r\n\t\tGL20.glDeleteShader(vertexShaderHandle);\r\n\t\tGL20.glDeleteShader(fragmentShaderHandle);\r\n\t\tGL20.glDeleteProgram(program);\r\n//\t\tif (shaders.get(Gdx.app) != null) shaders.get(Gdx.app).remove(this);\r\n\t}",
"public void cleanUp(){\n\t\tgl.glDe... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Use AddFriend.newBuilder() to construct. | private AddFriend(Builder builder) {
super(builder);
} | [
"private AddFriend(com.google.protobuf.GeneratedMessageLite.Builder builder) {\n super(builder);\n\n }",
"void addFriend(LinphoneFriend lf) throws LinphoneCoreException;",
"com.hwl.imcore.improto.ImAddFriendMessageRequestOrBuilder getAddFriendMessageRequestOrBuilder();",
"public void addFriend(String ... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
$ANTLR end "entryRuleGuard" $ANTLR start "ruleGuard" ../br.ufpe.cin.Tupi/srcgen/br/ufpe/cin/parser/antlr/internal/InternalTupi.g:1095:1: ruleGuard returns [EObject current=null] : ( ( (lv_name_0_0= RULE_ID ) ) otherlv_1= '=' ( (lv_expr_2_0= ruleXExpression ) ) ) ; | public final EObject ruleGuard() throws RecognitionException {
EObject current = null;
Token lv_name_0_0=null;
Token otherlv_1=null;
EObject lv_expr_2_0 = null;
enterRule();
try {
// ../br.ufpe.cin.Tupi/src-gen/br/ufpe/cin/parser/antlr/intern... | [
"public final EObject entryRuleGuard() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleGuard = null;\n\n\n try {\n // ../br.ufpe.cin.Tupi/src-gen/br/ufpe/cin/parser/antlr/internal/InternalTupi.g:1087:2: (iv_ruleGuard= ruleGuard EOF )\n // ../br.u... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
generate static GL short buffer, note: must be performed in correct GL thread | public static int genElementShortBuffer(ShortBuffer buffer) {
return genBuffer(buffer, GLES20.GL_ELEMENT_ARRAY_BUFFER, Buffers.BYTESPERSHORT, GLES20.GL_STATIC_DRAW);
} | [
"default SmallShortBuffer asShortBuffer() {\n\t\treturn new SmallShortBuffer(duplicate());\n\t}",
"public ShortBuffer asShortBuffer()\n{\n buffer.position(offset);\n return buffer.asShortBuffer();\n}",
"public void generateHardwareBuffers(GL10 gl) {\r\n if (mVertBufferIndex == 0) {\r\n i... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Every six shooter has a list of targets associated with it as well as an owner | protected SixShooter(Player owner) {
super(owner);
_targets = new ArrayList<>();
} | [
"public List<Tile> findTargets() {\n List<Tile> targets = new ArrayList<>(); // our return value\n int fearDistance = 2; // Ideally we're 2 spots away from their head, increases when we can't do that.\n int foodDistance = 3; // We look at a distance 3 for food.\n\n // If fearDistance ... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Get protein number of peptides | public int getNumberPeptides() {
return numberPeptides;
} | [
"public int getnPeptides() {\n return nPeptides;\n }",
"public int getProtein_length() {\n return protein_length;\n }",
"public int getPeptidesNumber() {\n return peptidesNumber;\n }",
"public int getProteinCount() { return proteinCount; }",
"public int getProte... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Returns true if field device_uuid is set (has been assigned a value) and false otherwise | public boolean isSetDevice_uuid() {
return this.device_uuid != null;
} | [
"public boolean isSetUuid() {\n return this.uuid != null;\n }",
"public boolean isSetUuid() {\n return this.uuid != null;\n }",
"public boolean isSetUuid() {\n return this.uuid != null;\n }",
"public boolean isSetDevice_id() {\n return this.device_id != null;\n }",
"pub... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Method to return the code for the relationship between this AS and the one specified by the ASN. | private int getRel(int asn) {
for (AS tAS : this.providers) {
if (tAS.getASN() == asn) {
return -1;
}
}
for (AS tAS : this.peers) {
if (tAS.getASN() == asn) {
return 0;
}
}
for (AS tAS : this.custome... | [
"public int getRelationship(int otherASN) {\n\n for (AS tAS : this.providers) {\n if (tAS.getASN() == otherASN) {\n return AS.CUSTOMER_CODE;\n }\n }\n for (AS tAS : this.peers) {\n if (tAS.getASN() == otherASN) {\n return AS.PEER_CO... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
/ This method will delete restaurant data by id | @GetMapping("/delete/{id}")
public String deletegetRestaurant(@PathVariable String id) {
restaurantServiceImpl.delete(id);
return "data deleted";
} | [
"@RequestMapping(method=RequestMethod.DELETE, value=\"/restaurants/{id}\")\n\tpublic ResponseEntity<Void> removeRestaurant(@PathVariable Long id) {\n\t\trestaurantService.removeRestaurant(id);\n\t\treturn ResponseEntity.ok().build();\n\t}",
"@Override\n public void delete(int id, int userId, int restaurantId) ... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Creates a Statement instance from the statement node. A statement consists of an Effect, id (optional), principal, action, resource, and conditions. principal is the AWS account that is making a request to access or modify one of your AWS resources. action is the way in which your AWS resource is being accessed or modi... | private Statement statementOf(JsonNode jStatement) {
JsonNode effectNode = jStatement.get(JsonDocumentFields.STATEMENT_EFFECT);
final Effect effect = isNotNull(effectNode)
? Effect.valueOf(effectNode.asText())
: Effect.Deny ;
... | [
"private com.hp.hpl.jena.rdf.model.Statement makeStatement(String s, String p, String o) {\n return model.createStatement(\n model.createResource(s),\n model.createProperty(p),\n model.createResource(o));\n }",
"public abstract Statement create();",
"Statem... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Tests List of employee communities of a community: wrong size. | @Test(expected = java.lang.IllegalArgumentException.class)
public void listContractsCommunityNegativeTest() {
this.authenticate("manager1");
Collection<Contract> contracts;
Integer size;
contracts = contractService
.findAllContractByCommunity(15);
size = contracts.size();
Assert.isTrue(size == 24);
... | [
"@Test\n public void canGetListOfOrganisations() {\n Long orgid1 = 709814L;\n Long orgid2 = 9206250L;\n List<Long> orgids = new ArrayList<>();\n orgids.add(orgid1);\n orgids.add(orgid2);\n\n String uri = baseURI + \"/organisations/\" + idsAsString(orgids);\n\n Org... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
private String estadoDespachado = MessagesAplicacionSISPE.getString("ec.com.smx.sic.sispe.estado.despachado"); private String estadoProducido = MessagesAplicacionSISPE.getString("ec.com.smx.sic.sispe.estado.producido"); Procesa la petici\u00F3n HTTP (request) especificada y genera su correspondiente respuesta HTTP (res... | public ActionForward execute(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response)
throws Exception {
//objetos para los mensajes
ActionMessages success = new ActionMessages();
ActionMessages infos = new ActionMessages();
ActionMessages errors = new ActionMe... | [
"public int paginaDaAcquisire(String titolo_opera){\n\treturn new acquisizioneController().paginaDaAcquisireAction(titolo_opera); \n}",
"public String imprimirRespuestas();",
"public WebService_Detalle_alquiler_factura() {\n }",
"protected void processRequest(HttpServletRequest request, HttpServletResponse... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
scrolls to end on flush | public void flush() { // called by superclass constructor?
if (this.textArea != null) { // if not closed.
EventQueue.invokeLater(new Runnable() {
public void run() {
try {
Rectangle lastLineStartRectangle =
textArea.modelToView(textArea.getLineStartOffset
(textArea.getLineCount()... | [
"public void scrollToEnd() {\n GridClientRpc clientRPC = getRpcProxy(GridClientRpc.class);\n clientRPC.scrollToEnd();\n }",
"public void scrollToEnd () {\n\t\tint len = getDocLength();\n\t\tsetCaretPosition(len);\n\t\tmoveCaretPosition(len);\n\t}",
"public void seekToEnd() {\n position =... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Reads the encoded info about this image. Sets channel String and returns message length. | private int readInfo() {
int row = 0;
int col = 0;
int size = 0;
int pixel, r, g, b;
pixel = encodedImage.getRGB(col, row);
r = (pixel >> 16) & 0xFF;
g = (pixel >> 8) & 0xFF;
b = pixel & 0xFF;
channels = "";
if((r & 0b1) == 1) channels += "R";
if((g & 0b1) == 1) channels += "G";
if((b & 0b1) ==... | [
"public String decode() throws Exception{\n\t\tint width = encodedImage.getWidth();\n\t\tint height = encodedImage.getHeight();\n\t\tint msgLen = readInfo();\n\t\tint bitsAvailable = width * height * channels.length() ;\n\t\tif( (msgLen * SettingsUtil.charBits > bitsAvailable) | msgLen == 0) throw new Exception(Set... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
get a generation task. if there is no task, call generationTaskFinished to tell manager that this thread is finished, wait for a task. | private boolean getImageGenerationTaskFromManager() {
ImageGenerationTask task;
if ((task = getImageGenerateTask()) == null) {
return false;
}
this.offsetX = task.offsetX;
this.lengthX = task.lengthX;
this.startY = 0;
th... | [
"private ImageGenerationTask getImageGenerateTask() {\n try {\n taskLock.lock();\n\n if (currImagePieceIdx >= imagePieces.length) {\n return null;\n }\n // use local variable to speedup.\n Image image = imagePieces[currImagePieceIdx];\n ... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
GET /polos : get all the polos. | @GetMapping("/polos")
@Timed
public ResponseEntity<List<PoloDTO>> getAllPolos(Pageable pageable) {
log.debug("REST request to get a page of Polos");
Page<PoloDTO> page = poloService.findAll(pageable);
HttpHeaders headers = PaginationUtil.generatePaginationHttpHeaders(page, "/api/polos");... | [
"public void listarTodosOsLivros(){\n\t\tget(\"/livro/todosOsLivros\", (req, res) -> {\n\t\t\n\t\t\tList<Livro> livrosEncontrados = model.getLivros();\t\n\t\t\treturn new Gson().toJson(livrosEncontrados);\n\t\t});\n\t}",
"@RequestMapping(value = \"/lotes/lotesDisponiveis\",\n method = RequestMethod.GET,\n ... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Replace values in [find delta, find + delta] with the replace value | public static void replace(double[] values, double find, double replace, double delta){
for(int v = 0 ; v < values.length ; v++){
if(values[v] >= find - delta && values[v] <= find + delta){
values[v] = replace;
}
}
} | [
"public void replacePixelsValue(int[] values, int replace) {\n for (int k = 0; k < sizeXYZ; k++) {\n int pix = getPixelInt(k);\n for (int i = 0; i < values.length; i++) {\n if (pix == values[i]) {\n setPixel(k, replace);\n break;\n ... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Will run the provided runnable and return a list of places where allocations occurred. If the returned list is empty no allocations where detected. | public default List<Throwable> runAndCollectAllocations(Runnable runnable)
{
checkInstrumentation();
AllocationSampler sampler = new AllocationSampler();
getClassesOfInterest().forEach(clazz -> sampler.addClassToWatch(clazz.getName()));
getClassesToIgnore().forEach(clazz -> sampler.addClassT... | [
"public Map<Thread, Runnable> getCurrentRunningTasks() {\n Map<Thread, Runnable> map = new HashMap<>();\n for (Entry<Thread, Holder<Runnable>> entry : _runnables.entrySet()) {\n map.put(entry.getKey(), entry.getValue().value);\n }\n return map;\n }",
"private TestRunnable... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Returns true if the graphic implementatin widget was initialized, and then it was disposed. It is able to use especially to detect whether a sub window is closed or if the primary window was closed, to finish any other (waiting) thread. It may be used on any disposed widget. | boolean isGraphicDisposed(); | [
"public boolean IsDisposed()\n\t{\n\t\treturn this.isDisposed;\n\t}",
"public boolean isGUIInitd() {\n return guiInit;\n }",
"private boolean InitDone()\n {\n return ( histogram_ok && dq_ok && instrument_ok );\n }",
"public boolean isDisposed() {\n return disposed;\n }",
"priva... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Returns the icon for the score chart | public Drawable getScoreChartIcon() {
return context.getResources().getDrawable(R.drawable.chart);
} | [
"public Drawable getViewScoresIcon() {\n\t\treturn context.getResources().getDrawable(R.drawable.view_scores);\n\t}",
"java.lang.String getIcon();",
"public Drawable getNewScoreIcon() {\n\t\treturn context.getResources().getDrawable(R.drawable.new_score);\n\t}",
"public Icon getIcon();",
"public ImageIcon g... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Get the sort classes using the given file as the class path. | private Set<Class<? extends AbstractSortRoutine>> findSortClasses(
final File path) {
return subclassIdentifier.find(path, AbstractSortRoutine.class);
} | [
"private List<Class<?>> getClassesForFiles(List<File> files) {\n\t\tList<Class<?>> result = new LinkedList<Class<?>>();\n\t\t\n\t\tfor (File file : files) {\n\t\t\tString className = getClassNameFromFile(file);\n\t\t\t\n\t\t\ttry {\n\t\t\t\tClass<?> clazz = Class.forName(className);\n\t\t\t\tresult.add(clazz);\n\t\... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Checks to see if row indicies are sorted into ascending order. O(N) | public static boolean checkIndicesSorted( FMatrixSparseCSC A ) {
for (int j = 0; j < A.numCols; j++) {
int idx0 = A.col_idx[j];
int idx1 = A.col_idx[j+1];
if( idx0 != idx1 && A.nz_rows[idx0] >= A.numRows )
return false;
for (int i = idx0+1; i < i... | [
"public boolean rowOrd(){\r\n\tfor(int j=0;j<this.rowNum();j++){\r\n\t\tif(!(isOrdered(this.row(j)))){\r\n\t\t\treturn false;\r\n\t\t}\r\n\t}\r\n\treturn true;\r\n}",
"public boolean colOrd(){\r\n\tfor(LinkedList<Integer> l: this.tab){\r\n\t\tif(!isOrdered(l)){\r\n\t\t\treturn false;\r\n\t\t}\r\n\t}\r\n\treturn t... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Private helper method that computes the total value at the given frequency for losses (includes the budget items total) //TODO 3/22/2017 may want to include interest | private double getLossTotal(Frequency totalRowFreq)
{
BadBudgetData bbd = ((BadBudgetApplication) this.getApplication()).getBadBudgetUserData();
List<MoneyLoss> losses = bbd.getLosses();
double total = BudgetSetActivity.getBudgetItemTotal(this, totalRowFreq);
for (MoneyLoss currLoss ... | [
"public int calculateTotalCalories(){\n int currSum = 0;\n for(FoodItem item : items) {\n if (item != null) {\n currSum += item.getCalories();\n }\n }\n return currSum;\n }",
"private double calculateTotal(){\r\n double total = 0;\r\n\r\n for(Restaurant restaurant: rest... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Gets the skipBACreation value for this DoExpressCheckoutPaymentRequestDetailsType. | public java.lang.Boolean getSkipBACreation() {
return skipBACreation;
} | [
"public String getIsSkipTrade() {\n return this.IsSkipTrade;\n }",
"public java.lang.String getSkipCreditCheck() {\n return skipCreditCheck;\n }",
"public boolean getSkipChecksum() {\n\t\t\t\treturn skipChecksum_;\n\t\t\t}",
"public boolean getSkipChecksum() {\n\t\t\treturn skipChecksum_;\... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Helper to read and parse the optional ".tag" field. If one is found, positions the parser at the next field (or the closing brace); otherwise leaves the parser position unchanged. Returns null if there isn't a ".tag" field; otherwise an array of strings (the tags). Initially the parser must be positioned right after th... | public static String[] readTags(JsonParser parser)
throws IOException, JsonReadException
{
if (parser.getCurrentToken() != JsonToken.FIELD_NAME) {
return null;
}
if (!".tag".equals(parser.getCurrentName())) {
return null;
}
parser.nextToken();
... | [
"io.swisschain.sirius.vaultApi.generated.common.Common.NullableTagTypeOrBuilder getTagTypeOrBuilder();",
"private String getTag(String s){\n if (s.length() == 0 || s.charAt(0) != '[')\n return null;\n else{\n String tag = \"\";\n for (int i = 0; i < s.length(); i++){... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Metodo que devolve o tipo da venda | public String getTipo(); | [
"public void setTipo(String tipo) {\r\n this.tipo = tipo;\r\n }",
"public void setTipo(Valor tipo) {\n this.tipo = tipo;\n }",
"public void setTipo(String tipo);",
"@Override\n public VheicleType getType() {\n return sedanType;\n }",
"public String tipoMundo() {\r\n\t\treturn \"simp... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Turn off the printer. Does nothing if the printer is already off. Will not block on errors. | public void powerOff() {
if (isOn || isPowering) {
// Power down
isOn = false;
isPowering = true;
safelyDeactivateAssembly(paperTray);
safelyDeactivateAssembly(tonerCartridge);
safelyDeactivateAssembly(fuser);
safelyDeactivateAssembly(printAssembly);
safelyDeactivateAssembly(outputTray);
s... | [
"public void off() {\n // Sets the LED pin state to (low)\n ledPin.low();\n }",
"public void switchOff() {\n\n\t\treleaseResources();\n\t\t\n\t\texit();\n\t}",
"@Override\n\tpublic void disablePrinter(){\n\t\tsuper.disablePrinter();\n\t\t//disables the printer for the next rotor\n\t\tnextRotor.... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
bool left = 3; | boolean getLeft(); | [
"public void setLeftTrue(){\n left=true;\n }",
"public abstract boolean isLeft();",
"public void setLeftFalse(){\n left=false;\n }",
"public boolean canBeLeft();",
"public boolean isLeft() {\n\t\treturn state == State.LEFT;\n\t}",
"boolean goalState() {\n\t\treturn (numbersLeft == 0);\... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Creates and returns a copy of this Feature. | public Object clone() {
Feature clone = new Feature(this.node, this.functionCode, this.featureCode, this.sensorCode, this.channelBitmask,
this.ch1Value, this.ch2Value, this.ch3Value, this.ch4Value, this.featureLabel);
return clone;
} | [
"public Feature copy () {\n final Feature return_value = new GFFStreamFeature (this);\n\n return return_value;\n }",
"public final JsonFeatureSet<T> copy() {\n JsonFeatureSet<T> result = new JsonFeatureSet<>();\n result.copyProperties(this);\n return result;\n }",
"@Override\r\n\tpublic abstrac... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
A method to check if a string cannot be parsed into an integer. | private boolean cannotParseToInt(String input){
try{
Integer.parseInt(input);
return false;
}
catch(NumberFormatException e){
return true;
}
} | [
"private static boolean validateInteger(String intString) {\n try {\n Integer.parseInt(intString);\n } catch (NumberFormatException e) {\n // Not a valid integer\n return false;\n }\n return true;\n }",
"public static boolean isAcceptableInt(String s) {\r\n\t\tif(s == null) {\r\n\t\t\t... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Sends the current player to the back of the line and the next player in line becomes current player | public void nextTurn(){
players.add(currentPlayer);//Added to the back
currentPlayer = players.pop();//Pull out the first player in line to go next
} | [
"public void switchToPreviousPlayer() {\r\n if (currentPlayerIndex == 0) {\r\n currentPlayerIndex = players.size() - 1;\r\n } else {\r\n currentPlayerIndex = currentPlayerIndex - 1;\r\n }\r\n }",
"public void moveForward()\n {\n Room room = player.getRoom()... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Unjoins the calling thread from the session to which it is currently joined, and closes that session. | public static void unjoinAndClose(){
Session s = (Session)_sessionRef.get();
if(s != null){
s.close();
}
} | [
"public static void unjoin(){\n _sessionRef.set(null);\n }",
"public void closeCurrentSession()\n \t{\n \t\tSession session = threadSession.get();\n \t\t\n \t\tif(session != null)\n \t\t{\n \t\t\tsession.close();\n \t\t\tsession = null;\n \t\t}\n \t\t\n \t\tthreadSession.set(null);\n \t}",
"public void clos... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
put queryParametersMap to result. | @Override
protected void putDumpInfoTo(Map<String, Object> result) {
if(this.queryParametersMap.size() > 0) {
result.put(DumpConstants.QUERY_PARAMETERS, queryParametersMap);
}
} | [
"public Map getQueryParameterMap() {\n return queryParams;\n }",
"@Override\n public void dumpRequest(Map<String, Object> result) {\n exchange.getQueryParameters().forEach((k, v) -> {\n if (config.getRequestFilteredQueryParameters().contains(k)) {\n //mask query param... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Sets the value of the land attribute. | public void setLand(int value); | [
"public void setLandArea(double landArea);",
"public void setLandDir(Integer landDir) {\n this.landDir = landDir;\n }",
"public void setLandNumber(String landNumber) {\n this.landNumber = landNumber;\n }",
"public int land (Land land)\r\n\t{\r\n\t\tluchthaven.setLand(land);\r\n\t\treturn l... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Returns the value as primitive char. | public char asChar() {
return value;
} | [
"public char charValue() {\n return value;\n }",
"public char getValue() {\n return value;\n }",
"public Character asCharacter() {\n return Character.valueOf(value);\n }",
"public char getCharValue() {\n return charValue;\n }",
"public char toChar() {\n return (ch... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Gets the organizationCode attribute. | public String getOrganizationCode() {
return organizationCode;
} | [
"public String getOrganizationCode() {\n return (String) getAttributeInternal(ORGANIZATIONCODE);\n }",
"public String getOrganizationCode() {\r\n return organizationCode;\r\n }",
"public java.lang.String getOrganizationCode()\n {\n synchronized (monitor())\n {\n c... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Constructor for objects of class BigIntNumber | public BigIntNumber (BigInteger b) {
value = b;
} | [
"public BigIntNumber (String s) {\n value = new BigInteger(s);\n }",
"PBBignum(BigInteger value)\n {\n\tsuper(value.toString());\n\tbigIntValue = value;\n }",
"public ASNClassNumber() {\n }",
"public Numeral(BigInteger i) {\n\t\t\tsuper(i);\n\t\t\tnumber = value.intValue();\n\t\t}",
"pri... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Prints the "unknown file" message. | public void unknownFile(final PrintWriter errout, final String file)
{
printMessage(errout, Level.ERROR, "unknown_file", "Tidy", file);
} | [
"private void showInformationAboutWrongFile(Shell shell) {\n\t\tMessageDialog\n \t.openInformation(\n \t\t shell, \n \t\t \"Info\",\n \t\t \"Please select a *.\" + TestCasePersister.FILE_EXTENSION + \" file\");\n\t}",
"public void displayFileInputError(IOException ioex);",
"@Override\n publi... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Converts a string as used by brics automata into an int array as used by libalf. | public static int[] str2arr(String s) {
int[] out = new int[s.length()];
for (int i = 0; i < s.length(); i++) {
out[i] = s.charAt(i);
}
return out;
} | [
"private static int[] stringToArray(String str) {\n\t\tint[] arr = new int[str.length()];\n\t\t\n\t\tfor (int i = 0; i < str.length(); i++) {\n\t\t\tarr[i] = Character.getNumericValue(str.charAt(i));\n\t\t}\n\t\t\n\t\treturn arr;\n\t}",
"private static int[] toIntArray(String input) {\n int[] output = new int[... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Checks if the nonce in the response matches. | private boolean checkNonce(BasicOCSPResp basicResponse) throws OCSPException
{
Extension nonceExt = basicResponse.getExtension(OCSPObjectIdentifiers.id_pkix_ocsp_nonce);
if (nonceExt != null)
{
DEROctetString responseNonceString = (DEROctetString) nonceExt.getExtnValue();
... | [
"private boolean validateNonce(byte[] responseNonce) {\r\n\t\tif (this.validateNonce == null)\r\n\t\t\treturn false;\r\n\t\t\r\n\t\tboolean result = Arrays.equals(responseNonce,this.validateNonce);\r\n\t\tthis.validateNonce = null;\r\n\t\treturn result;\r\n\t}",
"private boolean validate2609Request(String nonce)\... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
$ANTLR end "rule__MultExp__Group_1__2__Impl" $ANTLR start "rule__ParenthesisedExp__Group__0" ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/srcgen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:8547:1: rule__ParenthesisedExp__Group__0 : rule__ParenthesisedExp__Group__0__Impl rule__Parenthesised... | public final void rule__ParenthesisedExp__Group__0() throws RecognitionException {
int stackSize = keepStackSize();
try {
// ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:8551:1: ( rule__Parenthe... | [
"public final void rule__ParenthesisedExp__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:8611:1: ( ru... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Get the minor version number for the current trace | public short getVersionMinor() {
if (currentJniTrace != null)
return currentJniTrace.getLttMinorVersion();
else
return -1;
} | [
"int getMinorVersion();",
"BigInteger getMinorVersion();",
"public int getMinorVersionNumber() {\n\treturn minorVersionNumber ;\n }",
"public int getMinorVersion() {\n return minorVersion;\n }",
"public synchronized int getMinorVersionFrom()\n {\n return minorVersionFrom;\n }",
"publ... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
.RequestMsg requestMsg = 1; | edu.usfca.cs.sift.Messages.RequestMsg getRequestMsg(); | [
"netty.framework.messages.TestMessage.TestRequest getRequest();",
"@Override\r\n public void handleRequestMessage(RequestMessage msg) {\n }",
"com.exacttarget.wsdl.partnerapi.QueryRequestMsgDocument.QueryRequestMsg addNewQueryRequestMsg();",
"public RequestMessage() {\n super();\n }",
"public v... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
get the list of Lobbies | public LobbyList getLobbyList()
{
return receiver.getList();
} | [
"public Iterator getLobbies() {\n rrwl_lobbylist.readLock().lock();\n try {\n return lobbyList.iterator();\n } finally {\n rrwl_lobbylist.readLock().unlock();\n }\n }",
"public ArrayList<RealTimeSessionConfiguration> requestAvailableLobbies()\n throw... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Returns the number of coprocessor service requests made to region | public long getCpRequestCount(); | [
"int getOperationCount();",
"default long getRequestCount() {\n return getReadRequestCount() + getWriteRequestCount() + getCpRequestCount();\n }",
"public int getNumberOfIncludedServices(){\n \n return listOfIncludedServices.size();\n }",
"long getReadRequestCount();",
"public int getCo... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
This method was generated by MyBatis Generator. This method returns the value of the database column tab_rpf.ticketTypes_id | public Integer getTickettypesId() {
return tickettypesId;
} | [
"ResultColumn getTypeIdColumn(TableReference tableReference);",
"public java.lang.Object getTicketTypeID() {\n return ticketTypeID;\n }",
"public void setTickettypesId(Integer tickettypesId) {\r\n this.tickettypesId = tickettypesId;\r\n }",
"public Long getTypesId() {\n\t\treturn this.type... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Setup a game where the targets has a shield | public void DisplayWithShield() {
players = new ArrayList<Player>();
player1 = new Player("Nick");
player2 = new Player("Ausitn");
players.add(player1);
players.add(player2);
game = new GameState();
game.initializeServer(players);
RulesEngine.setColour(game, String.valueOf(Type.BLUE));
game.setTurn... | [
"public void targetWithShield() {\n\t\tplayers = new ArrayList<Player>();\n\t\tplayer1 = new Player(\"Nick\");\n\t\tplayer2 = new Player(\"Ausitn\");\n\t\tplayers.add(player1);\n\t\tplayers.add(player2);\n\t\tgame = new GameState();\n\t\tgame.initializeServer(players);\n\t\tRulesEngine.setColour(game, String.valueO... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
wait for the user to press Enter ; Notice : we must clear the buffer before and after; | private static void WaitForEnter(Scanner scn ){
scn.nextLine();
System.out.println("\n\nPress Enter key to continue . . .");
scn.nextLine();
} | [
"private void waitForUser() {\n log(\" >>>>>>>>>> Press Enter to Continue <<<<<<<<<<\");\n BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));\n try {\n reader.readLine();\n } catch (Exception e) {\n log(\"Error while waiting for user input... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Updates one ClaimValCodeLog in the database. Uses an old object to compare to, and only alters changed fields. This prevents collisions and concurrency problems in heavily used tables. | public static void update(ClaimValCodeLog claimValCodeLog, ClaimValCodeLog oldClaimValCodeLog) throws Exception {
String command = "";
if (claimValCodeLog.ClaimNum != oldClaimValCodeLog.ClaimNum)
{
if (!StringSupport.equals(command, ""))
{
command += ",";
... | [
"public static void update(ClaimValCodeLog claimValCodeLog) throws Exception {\n String command = \"UPDATE claimvalcodelog SET \" + \"ClaimNum = \" + POut.Long(claimValCodeLog.ClaimNum) + \", \" + \"ClaimField = '\" + POut.String(claimValCodeLog.ClaimField) + \"', \" + \"ValCode = ... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Use LogicalStatement.newBuilder() to construct. | private LogicalStatement() {
initFields();
} | [
"LogicalExpression createLogicalExpression();",
"LogicalOperation createLogicalOperation();",
"LogicalOrExpression createLogicalOrExpression();",
"ExpressionStatement createExpressionStatement();",
"CompoundStatement createCompoundStatement();",
"Statement createStatement();",
"LogicalAndExpression crea... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
/ After we exit, or terminate the program, the Garbage Collector deletes all the elements in the ArrayList 'works'. This function creates objects based on how many notes and deadlines exist in the file "Work.txt" these objects are added to the ArrayList once again. | public static void addWorkToArrayList() {
String text;
String substringText;
try {
BufferedReader br = new BufferedReader(new FileReader("src\\Work.txt"));
while ((text= br.readLine())!=null) {
substringText = text.substring(3);
... | [
"App () throws Exception {\n timelines = new LinkedList<>();\n deleteElements = new LinkedList<>();\n file.createNewFile();\n }",
"public void deleteAllCoursework() {\n File coursesFile = new File(path);\n // Delete Coursework.txt\n coursesFile.delete();\n // Cl... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Checks and sets tables as isReserved if the reservation is at current time | public void setReservedTablesAtCurrentTime() {
List<Reservation> allReservations = rCtrl.getAllReservations();
Calendar currentInstant = GregorianCalendar.getInstance();
Date currentDateTime = currentInstant.getTime();
currentInstant.setTime(currentDateTime);
for (int i = 0; i < allReservations.size(); i++) {... | [
"public boolean isTableNotReservedAndOccupied(Table t) {\n\t\t//Table t = findTableById(tableId);\n\t\tif (t != null) {\n\t\t\tif (!rCtrl.isTableCurrentlyReserved(t.getTableId()) && !t.getIsOccupied()) {\n\t\t\t\treturn true;\n\t\t\t} else if (rCtrl.isTableCurrentlyReserved(t.getTableId())) {\n\n\t\t\t\tSystem.out.... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Sets the pictures of this model. They are an enumeration of pairs containing title and url of each picture. | @WorkerThread @UiThread
public void setPictures(Iterable<Picture> pictures) {
List<String> titles = new ArrayList<>();
List<String> urls = new ArrayList<>();
List<String> urlsLowRes = new ArrayList<>();
for (Picture picture: pictures) {
titles.add(picture.title);
... | [
"public void setPhotos(ArrayList<PlacePhoto> photos) {\n this.photos = photos;\n }",
"public void setPhotos(ArrayList<Photo> photos) {\n\t\tthis.photos = photos;\n\t}",
"public void setImageList(ImageModel[] imageList) {\n this.imageList = imageList;\n }",
"public void setImages(MimsPlus[]... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Use StartKeygenRequest.newBuilder() to construct. | private StartKeygenRequest(com.google.protobuf.GeneratedMessageV3.Builder<?> builder) {
super(builder);
} | [
"private StartKeygenResponse(com.google.protobuf.GeneratedMessageV3.Builder<?> builder) {\n super(builder);\n }",
"org.bolg_developers.bolg.StartGameRequestOrBuilder getStartGameReqOrBuilder();",
"private RequestStartGame(com.google.protobuf.GeneratedMessage.Builder<?> builder) {\n super(builder);\... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
creates a Sound object which takes a String for the filename | public Sound(String filename)
{
strFilename = filename;
loadedFile = false;
} | [
"public Sound createSound(String file);",
"public Sound loadSound(String file);",
"Sound createSound();",
"public ISound\tLoadSound(String filename) throws Exception;",
"public abstract SoundContainer loadSound( String filename ) throws IOException;",
"public Sound getSound(String filename) {\n\t retur... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
This is the constructor of the Place class. It initializes the name variable to the parameter name and initializes the address variable to the parameter address. | public Place(String name, String address) {
this.name = name;
this.address= address;
} | [
"public Places()\n {\n this.name = \"\";\n placenum = 0;\n }",
"public PlaceInformation (String name, String address, String tag,\n double latitude, double longitude) {\n this.name = name;\n this.address = address;\n this.tag = tag;\n this.latitud... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Constructor : based on input newsFeed string and extractedData(range indices and type) get final wrapped string. | public Module3(String newsFeedStr, List<InputDataUnit> extractedData){
this.wrappedNewFeed = wrap(newsFeedStr, extractedData);
} | [
"public static Article scrape (String string_url) {\n try {\n\n Article article = new Article();\n\n URL url = new URL(string_url);\n\n final HTMLDocument htmlDoc = HTMLFetcher.fetch(url);\n\n final BoilerpipeExtractor extractor = CommonExtractors.ARTICLE_EXTRACTOR... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
This method was generated by MyBatis Generator. This method returns the value of the database column TRSPAYPLANDET_TENTATIVE_TEMP.ADVANCE_INSURANCE_AMT | public BigDecimal getADVANCE_INSURANCE_AMT() {
return ADVANCE_INSURANCE_AMT;
} | [
"public void setADVANCE_INSURANCE_AMT(BigDecimal ADVANCE_INSURANCE_AMT) {\r\n this.ADVANCE_INSURANCE_AMT = ADVANCE_INSURANCE_AMT;\r\n }",
"public BigDecimal getADVANCE_INSURANCE_SETTLED_AMT() {\r\n return ADVANCE_INSURANCE_SETTLED_AMT;\r\n }",
"public void setADVANCE_INSURANCE_SETTLED_AMT(Bi... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Returns a new object of class 'State Machine Type'. | StateMachineType createStateMachineType(); | [
"StateType createStateType();",
"MachineType getType();",
"StateMachine createStateMachine();",
"Type createType();",
"public StateMachine(){\n\t\tdefinition = new StateMachineDefinition<S, T>();\n\t\tdefinition.startDefinition();\n\t}",
"StructureType createStructureType();",
"public StateType getState... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Build the summary for the classes in this package. | public void buildClassSummary(XMLNode node, Content summaryContentTree) {
String classTableSummary =
configuration.getText("doclet.Member_Table_Summary",
configuration.getText("doclet.Class_Summary"),
configuration.getText("doclet.classes"));
String[] clas... | [
"public void buildClassDescription() {\n\t\twriter.writeClassDescription();\n\t}",
"public ClassAnalyzerSummary analyzeClassesAndMapThemToTheInternalClassStructure() {\n // read all classes from directories or jars\n resolvedClasses\n .addAll(new ClassResolver(plantUMLConfig.getDestin... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Get timeentries of a timesheet | public List<TimeEntry> getTimeEntries(Integer timesheetId) {
// SQL string
String sql = "SELECT * FROM TIME_ENTRY WHERE TS_ID = ?";
RowMapper<TimeEntry> rm = new RowMapper<TimeEntry>() {
@Override
public TimeEntry mapRow(ResultSet rs, int rowNum) throws SQLException {
TimeEntry timeEntry = new TimeEn... | [
"Timesheet getTimesheet();",
"public List<TimesheetRow> getAllTimesheetRows(Timesheet timesheet){\n\t\tcurrentTimesheet = timesheet;\n\t\ttimesheetRowList = service.getAllTimesheetRows(currentTimesheet.getTimesheetId());\n\t\ttimesheetRowList.add(new TimesheetRow(currentTimesheet.getTimesheetId()));\n\t\treturn s... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Purpose : The clickAndHold()method is another method of the Actions class that leftclicks on an element and holds it without releasing the left button of the mouse. This method will be useful when executing operations such as draganddrop. | public void clickAndHold(WebElement object) {
builder.moveByOffset(200, 20).clickAndHold().moveByOffset(120, 0).perform();
} | [
"@Override\n\tpublic void clickAndHold() throws ParkarCoreMobileException {\n\t\tParkarLogger.traceEnter();\n\t\tActions builder = null;\n\t\tString infoMsg = \"clickAndHold: \" + \" [ \" + locatorKey + \" : \" + locator + \" ]\";\n\t\ttry {\n\t\t\tbuilder = new Actions(driver);\n\t\t\tbuilder.clickAndHold(element)... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Changes all references to one instructions into references to another. If oldIns is a BT_BasicBlockMarker, then newIns must be a BT_BasicBlockMarker. References to block markers can only be changed to references to other block markers. | public void changeOtherReferencesFromTo(BT_Ins oldIns, BT_Ins newIns, boolean switching,
int excludeHowMany, int excludeIndex) {
code.changeOtherReferencesFromTo(oldIns, newIns, switching, excludeHowMany, excludeIndex);
attributes.changeReferencesFromTo(oldIns, newIns, switching);
} | [
"public boolean replaceInstructionWith(BT_Ins oldIns, BT_Ins newIns1, BT_Ins newIns2) {\r\n\t\treturn code.replaceInstructionWith(oldIns, newIns1, newIns2);\r\n\t}",
"public void changeReferencesFromTo(BT_Ins oldIns, BT_Ins newIns, boolean switching) {\r\n\t\tcode.changeReferencesFromTo(oldIns, newIns, switching)... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Convert form tree to ArrayList | public ArrayList<String> treeToArrayList(Tree tree) {
ArrayList<Label> test = tree.yield();
ArrayList<String> arrayList = new ArrayList<String>();
for (Object element : test) {
Label label = (Label) element;
arrayList.add(label.value());
}
return arrayList;
} | [
"@Override\r\n\tpublic ArrayList<String> toArrayList() {\r\n\t\tArrayList<String> printTree = new ArrayList<String>();\r\n\t\tLNRoutputTraversal(root, printTree);\r\n\t\treturn printTree;\r\n\t}",
"public ArrayList<T> toArrayList() {\r\n \t\tif(root == null) {\r\n \t\t\treturn new ArrayList<T>();\r\n \t\t}\r\n \t... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Return the obfuscated password as a byte array. | public byte[] getBytes() {
final byte[] bytes = new byte[password.length() / 2];
for (int i = 0; i < password.length() / 2; i++) {
bytes[i] = (byte) Integer.parseInt(password.substring(i * 2, i * 2 + 2), 16);
}
return bytes;
} | [
"protected char[] getDecryptedPassword() {\n return PasswordHandler.decryptPassword(password);\n }",
"com.google.protobuf.ByteString getPassword();",
"public byte[] getPasswordData() {\n return passwordData;\n }",
"public static byte[] PKCS12PasswordToBytes(char[] password) {\n\n // +... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
$ANTLR end "rule__Type__NameAssignment_1" $ANTLR start "rule__SpecialEntity__NameAssignment_1" InternalMyDsl.g:13126:1: rule__SpecialEntity__NameAssignment_1 : ( ruleEntityName ) ; | public final void rule__SpecialEntity__NameAssignment_1() throws RecognitionException {
int stackSize = keepStackSize();
try {
// InternalMyDsl.g:13130:1: ( ( ruleEntityName ) )
// InternalMyDsl.g:13131:2: ( ruleEntityName )
{
// InternalMyDsl... | [
"public final void ruleEntityName() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMyDsl.g:191:2: ( ( ( rule__EntityName__NameAssignment ) ) )\n // InternalMyDsl.g:192:2: ( ( rule__EntityName__NameAssignment ) )\n ... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
This method was generated by MyBatis Generator. This method sets the value of the database column CTSTRS_HISTORY.TRS_TYPE | public void setTRS_TYPE(String TRS_TYPE) {
this.TRS_TYPE = TRS_TYPE == null ? null : TRS_TYPE.trim();
} | [
"public String getTRS_TYPE() {\r\n return TRS_TYPE;\r\n }",
"public void setSETT_TRS_TYPE(String SETT_TRS_TYPE) {\r\n this.SETT_TRS_TYPE = SETT_TRS_TYPE == null ? null : SETT_TRS_TYPE.trim();\r\n }",
"public void setResult(int type, String typeName, Class javaType) {\r\n ObjectRelatio... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Creates new form MainScreen | public MainScreen() {
initComponents();
} | [
"public newScreen() {\n initComponents();\n }",
"public MainScreen() {\n \tmodel = new MainScreenModel();\n }",
"public void launchMainScreen() {\n\t\tmainWindow = new MainGameScreen(this);\n\t}",
"public void createNew() {\n\t\tchooseTemplateScreen = new ChooseTemplate(con,primaryStage);\n\t\... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Set the configurationType property: The type of the spark config. | public SynapseSparkJobDefinitionActivity withConfigurationType(ConfigurationType configurationType) {
if (this.innerTypeProperties() == null) {
this.innerTypeProperties = new SynapseSparkJobActivityTypeProperties();
}
this.innerTypeProperties().withConfigurationType(configurationType... | [
"public SynapseNotebookActivity setConfigurationType(ConfigurationType configurationType) {\n this.configurationType = configurationType;\n return this;\n }",
"@ApiModelProperty(example = \"null\", value = \"If merge field's are being used, specifies the type of the merge field. The only support... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Constructeur de la class Seance_Salle | public Seance_Salle(int id_seance,int id_salle)
{
this.id_salle=id_salle;
this.id_seance=id_seance;
} | [
"public Salle(){}",
"public Salle() {\n }",
"public Segnalazione() {\n }",
"public Seuil() {\n }",
"public QuartoSemestre() {\n }",
"public Scontrino() {\r\n\t\t// inizializza le variabili d'istanza\r\n\t\tsetTotale(0);\r\n\t}",
"public StructuraSemestru2() {\n startSemester= Constant... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Set smack message. This can be used to access original message properties | public void setSmackMessage(Message message)
{
this.smackMessage = message;
} | [
"void setMessage(Object message);",
"public void setMessage(Message msg){\n message = msg;\n setChanged();\n notifyObservers();\n }",
"public void setMessage(String newMessage) {\n this.message = newMessage;\n }",
"public void setMessage(Message message) {\n this.message = mes... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Get a JsonHttpResponseHandler for the populateTimeline API call. | public JsonHttpResponseHandler getPopulateTimelineHandler(final long maxId, final List<Tweet> tweets, final TweetAdapter adapter, final Context context, final ProgressBarListener progressBarListener) {
// Start showing the progress bar.
progressBarListener.showProgressBar();
JsonHttpResponseHan... | [
"protected void populateTimeline() {\n client.getUserTimeline(getArguments().getString(\"screen_name\"), new JsonHttpResponseHandler() {\n final Context context = getActivity();\n\n @Override\n public void onSuccess(int statusCode, Header[] headers, JS... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Resolves an artifact given its coordinates. | Artifact resolveArtifact(ArtifactRequest request, RemoteRepository... repositories)
throws ArtifactResolutionException; | [
"Collection<Artifact> resolve(Artifact artifact) throws DependencyResolutionException;",
"Artifact resolveArtifact(ArtifactRequest request, RepositorySystemSession session, RemoteRepository... repositories)\n throws ArtifactResolutionException;",
"@SuppressWarnings({\"deprecation\"})\n private ArtifactRes... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Returns the current retry count . | public int getCurrentRetryCount(); | [
"Integer totalRetryAttempts();",
"protected abstract int retryCount();",
"public Integer retryCount() {\n return this.retryCount;\n }",
"public int getRetryCount()\n {\n return retryCount;\n }",
"Integer getNumberOfRetries();",
"public int retry() {\r\n\t\treturn ++retryCount;\r\n\t... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Load public key from keystore. | PublicKey loadPublicKeyFromKeystore(String sKeystoreName, String sAlias)
throws ASelectException
{
String sMethod = "loadPublicKeyFromKeystore";
_systemLogger.log(Level.INFO, MODULE, sMethod, "Loading public key " + sAlias + " from " + sKeystoreName);
try {
sAlias = sAlias.toLowerCase();
KeyStore ksJKS = ... | [
"public static PublicKey loadPublic(){\n \n PublicKey publicKey = null;\n \n try {\n FileInputStream fileIn = new FileInputStream(\"files/public.key\");\n ObjectInputStream in = new ObjectInputStream(fileIn);\n publicKey = (PublicKey) in.readObject();\n in... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
$ANTLR end "rule__DomainSpec__DConceptsAssignment_2_0" $ANTLR start "rule__DomainSpec__CtypesAssignment_3" InternalSymboleoide.g:9559:1: rule__DomainSpec__CtypesAssignment_3 : ( ruleCType ) ; | public final void rule__DomainSpec__CtypesAssignment_3() throws RecognitionException {
int stackSize = keepStackSize();
try {
// InternalSymboleoide.g:9563:1: ( ( ruleCType ) )
// InternalSymboleoide.g:9564:2: ( ruleCType )
{
// InternalSymbol... | [
"public final void rule__CV_spec__CdatatypesAssignment_3() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../org.xtext.example.rmodp.ui/src-gen/org/xtext/example/rmodp/ui/contentassist/antlr/internal/InternalRmOdp.g:29966:1: ( ( r... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Get Array of the byte[] loaded from system files using the paths registered into the Form. This images are new images acquired. | private static ArrayList<String> getNewImagesFromForm(Bundle formData) {
if(formData.containsKey(FormUtilities.INSERTED_IMAGE_PATHS)) {
return formData.getStringArrayList(FormUtilities.INSERTED_IMAGE_PATHS);
/*
ArrayList<String> imagePaths = formData.getStringArrayList(FormU... | [
"private File[] getFileArray()\n {\n List files = new ArrayList();\n \n Collection iFiles = mFiles.values();\n Iterator it = iFiles.iterator();\n while (it.hasNext())\n {\n files.add(((IFile) it.next()).getLocation().toFile());\n }\n \n return ... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Gets the minimum colour | public String getColourMin()
{
return colourMin;
} | [
"public int getMinColour()\n {\n return this._minColour;\n }",
"public int getColorTempMin() {\n return getGroupDataModel().viewColorTempMin;\n }",
"int minPixelValue();",
"public void setColourMin(String colourMin)\n {\n this.colourMin = colourMin;\n }",
"public void maxminColou... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Builds script list in scriptListPanel | public void buildScriptList(Q_Menu menu) {
// Localized titles
titRun = titles.getString("TitRun");
scriptNam = titles.getString("ScriptNam");
scriptDes = titles.getString("ScriptDes");
searchScript = titles.getString("SearchScript");
// Localized button labels
e... | [
"public void regenerateScriptList() {\n\n\t\tstrScripts = new String[scriptTabs.size()];\n\n\t\tint i = 0;\n\n\t\tfor (ScriptTab scriptTab : scriptTabs) {\n\t\t\tstrScripts[i] = scriptTab.getName();\n\t\t\tif (scriptTab.hasBeenChanged()) {\n\t\t\t\tstrScripts[i] += CHANGE_INDICATOR;\n\t\t\t}\n\t\t\ti++;\n\t\t}\n\n\... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Gets the resolutionPlanMet value for this ServiceLevelAgreementResults. | public java.lang.Object getResolutionPlanMet() {
return resolutionPlanMet;
} | [
"public java.lang.Object getResolutionMet() {\n return resolutionMet;\n }",
"public void setResolutionPlanMet(java.lang.Object resolutionPlanMet) {\n this.resolutionPlanMet = resolutionPlanMet;\n }",
"public java.lang.Object getResolutionPlanElapsedHours() {\n return resolutionPlanEla... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
builder factory method for MyOrderFromCartDraft | public static MyOrderFromCartDraftBuilder builder() {
return MyOrderFromCartDraftBuilder.of();
} | [
"public static MyOrderFromCartDraftBuilder builder(final MyOrderFromCartDraft template) {\n return MyOrderFromCartDraftBuilder.of(template);\n }",
"public static CartDraftBuilder builder() {\n return CartDraftBuilder.of();\n }",
"public static MyOrderFromCartDraft of(final MyOrderFromCartDra... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Updates mTeam's AutonSynchronized. Also changes button colors | @Override
public void onCheckedChanged(CompoundButton compoundButton, boolean b) {
if (b)
compoundButton.setBackgroundColor(getResources().getColor(R.color.toggle_on_color));
else
compoundButton.setBackgroundColor(getResources().getColo... | [
"protected void updateJoinTeamButton() {\n if (Account.currentUser instanceof Player) {\n if (((Player) Account.currentUser).getTeam() != null) {\n team_joinTeamButton.setDisable(false);\n team_joinTeamButton.setText(\"Team\");\n } else {\n if (((Player) Account.currentUser).getTea... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Creates a new regex with given pattern and name. | public Regex(String aName, String aPattern, boolean isLiteral)
{
setName(aName); setPattern(aPattern); setLiteral(isLiteral);
} | [
"PatternNameTerm createPatternNameTerm(String name);",
"public RuleRegExp(String ruleName, String regExp) {\n this.ruleName = ruleName;\n pattern = Pattern.compile(regExp);\n }",
"public RuleRegExp(String ruleName, String regExp) {\n this.ruleName = ruleName;\n pattern = Pattern.compile(regEx... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
The Notifier for the ServerConnection. | public interface ServerConnectionNotifier {
/**
* The Method, that will forward the Message sent by the Server.
* @param notifyType The Type of notify, that was sent by the Server.
* @param args The possible arguments that will be sent within the answer.
* @since 1.0
*/
public void onNotify(int notifyType... | [
"void onServerConnectionChanged(String serverName, int serverID);",
"void notifyConnectionListener(ConnectionListener listener);",
"public void notifyServerListening() {\r\n nui.notifyHostListening();\r\n }",
"void onConnect(IServerConnection<_ATTACHMENT> connection);",
"private void serverBroadcast(... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
Sets site to the value of s | public void setSite(String s) {
// validate first
if (s == null || s.length() == 0) {
throw new IllegalArgumentException("Invalid site string: " + s);
}
this.set("SITE", s);
} | [
"public void setSite(java.lang.String site) {\r\n this.site = site;\r\n }",
"public void setSite(Site aSite) {\n this.site = aSite;\n }",
"public void setSite(String site) {\r\n this.site = site == null ? null : site.trim();\r\n }",
"public void setSite(ISite site) {\n ... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |
The test relies on a particular interaction between the BlobStore and the FileStore. The FileStore passes every binary whose length is grater than or equal to MEDIUM_LIMIT bytes to the BlobStore. The BlobStore creates inmemory IDs (where the binary content is embedded in the ID itself) if the binary's length is smaller... | @Test
public void inMemoryBinaryShouldNotBeDownloaded() throws Exception {
SegmentNodeStore store = SegmentNodeStoreBuilders.builder(fileStore.fileStore()).build();
NodeBuilder root = store.getRoot().builder();
root.setProperty("b", root.createBlob(new NullInputStream(SegmentTestConstants.M... | [
"DataSize getRequestSizeLimitBinaryUpload();",
"@Test\n public void testReadStringForRecordsHavingLengthMoreThanMaxAllowedSize() {\n int maxBufferSize = 2000;\n int extraMaxBufferSize = 1025;\n //this record size is more than the max allowed size\n int recordSize = maxBufferSize + e... | {
"objective": {
"paired": [],
"self": [],
"triplet": [
[
"query",
"document",
"negatives"
]
]
}
} |