query_id
stringlengths
32
32
query
stringlengths
7
129k
positive_passages
listlengths
1
1
negative_passages
listlengths
88
101
1f35402ad058b3c224594529e0c9696b
Initializes this class for drawing.
[ { "docid": "0c1733912924e5bc393ad05e5d2345f4", "score": "0.0", "text": "public DrawGraphics() {\n box = new BouncingBox(200, 50, Color.RED);\n circle = new SwirlingCircle(150, 150, Color.BLUE);\n int[] xValues = {40,30,50};\n int[] yValues = {40,50,50};\n triangle = ne...
[ { "docid": "762b8cdb7fb38baa034e73c998bee996", "score": "0.7641067", "text": "private void init() {\r\n\t\tStdDraw.setXscale(-1, TRACKSIZE + 1);\r\n\t\tStdDraw.setYscale(-1, TRACKSIZE + 1);\r\n\t\tStdDraw.setPenRadius(0.9 / (TRACKSIZE + 1));\r\n\t\tdrawEmptyTrack();\r\n\r\n\t\tcreateVehicles();\r\n\r\n\...
bfcdb63d2097f5dc660ae198eafc9fa4
function to check list size
[ { "docid": "1af81f2c7fc67aa7f3fa97a3f9e50b1e", "score": "0.0", "text": "private void checkList() {\n if (isMapShow) {\n rvMapDeals.setVisibility(mapList.size() > 0 ? View.VISIBLE : View.GONE);\n }\n }", "title": "" } ]
[ { "docid": "fb90632bf19e1ca6918c546ed01872c4", "score": "0.7842325", "text": "public void testListSize()\n {\n assertEquals(\"Check Empty Size\",0,empty.size()) ;\n assertEquals(\"Check One Size\",1,one.size()) ;\n assertEquals(\"Check Several Size\",DIM,several.size()) ;\n }", "title": "...
884314752fad15888797a2ea301f2357
Returns true if field endDt is set (has been assigned a value) and false otherwise
[ { "docid": "f097050d8fae2c095f9d6491766b54c0", "score": "0.88664657", "text": "public boolean isSetEndDt() {\n return this.endDt != null;\n }", "title": "" } ]
[ { "docid": "ecf201f341a0ee30acea5881d8a8dc6d", "score": "0.7934415", "text": "public boolean isSetEndDate() {\n return this.endDate != null;\n }", "title": "" }, { "docid": "e14bae0acc0c247657a98980957f4f68", "score": "0.78189796", "text": "boolean hasEndDateTime();", "ti...
a334b276348460fc0eed165ce4f6c92f
This method was generated by MyBatis Generator. This method corresponds to the database table t_cpy_legal_credit
[ { "docid": "46e1818f623233a16742b9cba32f9a03", "score": "0.0", "text": "public static Column[] excludes(Column ... excludes) {\n ArrayList<Column> columns = new ArrayList<>(Arrays.asList(Column.values()));\n if (excludes != null && excludes.length > 0) {\n columns.re...
[ { "docid": "b5f8ec194e3dd01e786613128192ba84", "score": "0.62840277", "text": "public void setLegalCredit(String legalCredit) {\n this.legalCredit = legalCredit;\n }", "title": "" }, { "docid": "e6122968b18112d089b6425fbf36f965", "score": "0.60703844", "text": "public Strin...
3dee1b2d8da4a68d77e8e8106c30fdfc
Returns a new object of class 'block'.
[ { "docid": "fb35fc23302bb95133a107b7383b088e", "score": "0.78705704", "text": "block createblock();", "title": "" } ]
[ { "docid": "7f87ef4083f54e03379af63006179ba9", "score": "0.8710768", "text": "Block createBlock();", "title": "" }, { "docid": "36f495c4ea25c699acad40dfdb9d989c", "score": "0.8228415", "text": "public Block() {}", "title": "" }, { "docid": "4190de1dc8e102923ca141625528a48...
9f3a6aac8da0ad7b9bcbab23e7c2f386
change the status of a Spaceship to flying if there is numlandings >=5 in runway, then status changes to cleaning
[ { "docid": "149a018c2394b5f8e10b4531b6a87653", "score": "0.7349252", "text": "public static void changeStatusToFlying(String spaceshipName) throws SQLException, SpaceshipException, RunwayException {\n\n Spaceship row = SpaceshipDAO.findById(spaceshipName);\n if (row.getStatus().equals(\"FL...
[ { "docid": "e606c738d7282029224d1a632fec843d", "score": "0.70068985", "text": "public static void changeStatusToLanded(String spaceshipName, String planet, String runway, int number) throws SQLException, SpaceshipException, RunwayException, SpaceportException {\n\n boolean wrongSpaceportRunway = ...
71332d3181b0ef3def3c1419283d72d2
Spawning ================================================================ Spawn robot of type rbtype in direction dir0 if allowed, transfers supply
[ { "docid": "e8f45ed8e2a6b5063cfb1d572813bbaf", "score": "0.68864757", "text": "public static void trySpawn(Direction dir0, RobotType robotType) throws GameActionException {\n if(rc.isCoreReady() && rc.getTeamOre() >= robotType.oreCost) {\n int dirint0 = dir0.ordinal();\n for...
[ { "docid": "9d360c95374c8845dd938680c50d4018", "score": "0.66982514", "text": "static void trySpawn(Direction d, RobotType type) throws GameActionException {\n\t\tint offsetIndex = 0;\n\t\tint[] offsets = {0,1,-1,2,-2,3,-3,4};\n\t\tint dirint = directionToInt(d);\n\t\t// boolean blocked = false;\n\t\twh...
76eb3df7f50bbfe08de0ac21c95cb04d
This method initializes jContentPane
[ { "docid": "0e9292959db6a5baf47e60fdb43a651e", "score": "0.70082265", "text": "private JPanel getJContentPane() {\n if (this.jContentPane == null) {\n this.jContentPane = new JPanel();\n this.jContentPane.setLayout(new BorderLayout());\n if (!this.scaled) {\n this.jContentPane.a...
[ { "docid": "9cb8f74287dad9b4e5581938cfdeff0d", "score": "0.80453455", "text": "private final void initContentPanel()\n\t{\n\t\tcontentPanel = new JPanel();\n\t\tcontentPanel.setLayout(new BorderLayout());\n\t}", "title": "" }, { "docid": "db0752395413790b90df19f9174879ca", "score": "0.79...
47c37004d55fdf7708d6bda0a6ff855c
/refreshNodes allows the user to refresh the program after adding new nodes with out turning on and off the whole program
[ { "docid": "83e1f78b7075a4457df9f7e32d021184", "score": "0.6544668", "text": "@FXML\r\n public void refreshNodes(ActionEvent event) throws IOException {\r\n\r\n setEdgeList(loadEdgeList());\r\n\r\n /*From = new ChoiceBox<>();\r\n To = new ChoiceBox<>();\r\n Through = new C...
[ { "docid": "6368989a00e05a72136a4c960e791403", "score": "0.7223517", "text": "public void refreshNodesOnGraph(){\n \tfor (int i=0; i < getNbUAV(); i++){\n \t /** Main graph */\n \t u_g[i].refreshPositionOnGraph(u[i].getAuto().getCurrentStatus());\n \t /** Uav graph */\n \t Node n = this.uavG...
6470a46cb8daf30cc9ea06d2f442c03f
/ access modifiers changed from: packageprivate
[ { "docid": "d14a8e1c228cc98a8ba302f1cb14a136", "score": "0.0", "text": "public int e() {\r\n if (getChildCount() == 0) {\r\n return 0;\r\n }\r\n return getPosition(getChildAt(0));\r\n }", "title": "" } ]
[ { "docid": "2ad52390d92954e1d6f2925b4b14bfd4", "score": "0.6959818", "text": "private Helpers() {}", "title": "" }, { "docid": "06d440269c184993ff4f11d933a81aed", "score": "0.6639125", "text": "public void mo11421d() {\n }", "title": "" }, { "docid": "06d44...
b9a4c9e6bdfa08a9df193248783617ca
evolve the populations one generation
[ { "docid": "0ad537c8e2afed5204c5d937972042a6", "score": "0.5683106", "text": "public void iterate()\n\t{\n\t\tfor (int p = 0; p < parasites.length; p++)\n\t\t\tpFitnesses[p][1] = 0;\n\t\t\n\t\ttry\n\t\t{\t// calculate fitnesses against other population\n\t\t\texecutor.invokeAll(tasks);\n\t\t\t// calcula...
[ { "docid": "0b247a6e91cbaf64d9f3b5b3c0f60bca", "score": "0.7215333", "text": "public Population evolve()\r\n {\r\n\tArrayList<Chromosome> tempPop = \r\n\t new ArrayList<Chromosome>(chromos.size());\r\n\tChromosome u;\r\n\tChromosome v;\r\n\r\n\tfor(int i = 0; i < chromos.size()/2; i++)\r\n\t {\...
a1fe847711eeeb25c71d70f4aa3662d5
O(1) space and O(n) time
[ { "docid": "d86f3ad5b98ba0ba4786efc593c0f7bc", "score": "0.0", "text": "public RandomListNode copyRandomList(RandomListNode head) {\r\n RandomListNode current = head;\r\n RandomListNode temp;\r\n while (current != null) {\r\n temp = current.next;\r\n RandomList...
[ { "docid": "a7c1965a0b0f18a90b5b8b4219325ce3", "score": "0.59801716", "text": "private static int complexity_O2(int[] inputArray) {\n\t\tint best = 0;\n\t\tfor(int i = 0; i < inputArray.length; i++) {\n\t\t\tint sum = 0;\n\t\t\tfor(int j = i; j < inputArray.length; j++) {\n\t\t\t\tsum += inputArray[j];\...
1914c249833e49ef440608b2950f1355
comparator, nulls lower (laneNumber) //
[ { "docid": "31203f0d1b4cebb4c8bf6aa86f8bf441", "score": "0.73282564", "text": "public JwComparator<AcGb0901AttachmentA> getLaneNumberComparatorNullsLower()\n {\n return LaneNumberComparatorNullsLower;\n }", "title": "" } ]
[ { "docid": "9de0cbb63f6c9cb732473dcd639c14f9", "score": "0.65233994", "text": "public JwComparator<AcGb0901AttachmentA> getLaneDesignationComparatorNullsLower()\n {\n return LaneDesignationComparatorNullsLower;\n }", "title": "" }, { "docid": "bbe58bae300f142a4a7c2df6c024437a", ...
5e185150f8b61ce5105970ef4a853eb6
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.
[ { "docid": "eec439f627f1335dbcb97912703b69ac", "score": "0.0", "text": "@SuppressWarnings(\"unchecked\")\n // <editor-fold defaultstate=\"collapsed\" desc=\"Generated Code\">//GEN-BEGIN:initComponents\n private void initComponents() {\n\n seperator1 = new javax.swing.JSeparator();\n ...
[ { "docid": "b2448da2d88321527a008e8847d4903d", "score": "0.75214386", "text": "public LineupForm()\n\t{\n\t\tinitComponents();\n\t}", "title": "" }, { "docid": "17113ab7a06544a62482637e283ac13d", "score": "0.7394068", "text": "@SuppressWarnings(\"unchecked\")\n // <editor-fold def...
2a76adbb437606dedb92b81fb8f8651d
set up the "Press new Key" message for key bind, shown when user hits the edit button in options on a keybind
[ { "docid": "e1a9e11ffbab66b181cb52616623d498", "score": "0.6156055", "text": "private void ShowNewKeyQuery() {\n newKeyMessageDialog = new JDialog();\n JOptionPane newKeyMessage = new JOptionPane(\"Hit Desired Key\", JOptionPane.INFORMATION_MESSAGE, JOptionPane.DEFAULT_OPTION, null, new Ob...
[ { "docid": "43127be101e9ca6177fc33a016560176", "score": "0.6757655", "text": "@Override\n\t\t\tpublic void keyReleased(KeyEvent arg0) {\n\t\t\t\tSystem.out.println(\"input key place\" + KeyEvent.getKeyText(arg0.getKeyCode()));\n\t\t\t\tString tempstring = \"\" + arg0.getKeyChar();\n\t\t\t\tlistenkeyfiel...
aafff1a79f3565c20d50715f22a944a1
Gets the data neighbours.
[ { "docid": "aeb45a47c1a239bedf0fca8a35ae6b3c", "score": "0.70736724", "text": "public native DataPropertyPointer[] getDataNeighbours(NodePointer object,\n boolean deterministicOnly);", "title": "" } ]
[ { "docid": "8c86b64d8e9dca79e67661f819e866ca", "score": "0.76063055", "text": "public List<Face<V, E, F>> getNeighbours() {\n\t\t\tFaceCollector<V, E, F> fC = new FaceCollector<V, E, F>();\n\t\t\tthis.visitNeighbourFaces(fC);\n\t\t\treturn fC.getList();\n\t\t}", "title": "" }, { "docid": "17...
fb26b3991c4d5baee609f476daada7d8
second option level getter
[ { "docid": "0ec33b2f287daa569ff554e9bb5c2423", "score": "0.63794273", "text": "public int getOption2Level() {\n\t\treturn option2Level;\n\t}", "title": "" } ]
[ { "docid": "30bfd70d0623f12c9cfe2a605dc7a4ee", "score": "0.6835124", "text": "int getOptionValue();", "title": "" }, { "docid": "17f2aa3f73b97339579b170f4fb06efa", "score": "0.6700341", "text": "OptionRight getOptionRight();", "title": "" }, { "docid": "3a41ce023f5ddf8fd9...
665d7f4335225e6ffad3bfb651e16f9e
Test to perform a bounce movement off the bottom left corner and to ensure that the Robot's position and colour after the movement is correct.
[ { "docid": "c7998d821959d6d1dd2205b21333d25a", "score": "0.78830904", "text": "@Test\n\tpublic void testBottomLeftBounce() {\n\t\tDynamicWheeledRobot robot = new DynamicWheeledRobot(12, 100, -12, 15, Color.cyan);\n\t\trobot.paint(_painter);\n\t\trobot.move(125, 135);\n\t\trobot.paint(_painter);\n\t\trob...
[ { "docid": "7f7a5a5509bf585bcdf2afc67d196eef", "score": "0.7989608", "text": "@Test\n\tpublic void testBottomBounce() {\n\t\tDynamicWheeledRobot robot = new DynamicWheeledRobot(100, 50, 0, 15, Color.cyan);\n\t\trobot.paint(_painter);\n\t\trobot.move(500, 100);\n\t\trobot.paint(_painter);\n\t\trobot.move...
41b44cd206b78424960ae0d7dbc9e417
Called when the activity is first created.
[ { "docid": "e2ea638e70508a89bcb614cefb93e6de", "score": "0.0", "text": "@Override\n\tpublic void onCreate(Bundle savedInstanceState) {\n\t\tdebug(\"onCreate\");\n\t\tsuper.onCreate(savedInstanceState);\n\n\t\t// メイン画面のアクティビティを設定\n\t\tsetContentView(R.layout.main);\n\n\t\t// 結果表示用のテキストボックス\n\t\tresult = ...
[ { "docid": "e9bd3a65071667c27eef9886d6e1d4bb", "score": "0.791686", "text": "@Override\n\tpublic void onActivityCreated(Bundle savedInstanceState) {\n\t\tsuper.onActivityCreated(savedInstanceState);\n\t\tinit();\n\t}", "title": "" }, { "docid": "b0006cf5cadbf0826603a0183db86285", "score"...
923195022f2df2d126ec3a5014133eeb
Creates a new TextFilePosition at the given position.
[ { "docid": "8e3874bf78ac862eef6d1d921695806f", "score": "0.5982413", "text": "public TextFilePosition(int line, int column) {\n this.line = line;\n this.column = column;\n }", "title": "" } ]
[ { "docid": "e07e491092f9a6df2a85a5c2cbc97e9a", "score": "0.6952716", "text": "public TextFilePosition() {\n this(1, 1);\n }", "title": "" }, { "docid": "9c0928837d10e7db5b94867b75a924c3", "score": "0.6306134", "text": "public SpOffsetPos createPosition() {\n return createP...
5096e66706b9e2ea233c5ee4d140d415
Consume energy on the receiving side and return a number indicating how good this went.
[ { "docid": "f2897c882be0695f461ffc5e54fdae8e", "score": "0.6922326", "text": "private static int consumeReceiverEnergy(PlayerEntity player, BlockPos c, RegistryKey<World> dimension) {\n World world = LevelTools.getLevel(player.level, dimension);\n if (world == null) {\n Logging....
[ { "docid": "66911fcf913e6960942698a66b6a4d0b", "score": "0.7428188", "text": "public int energy_consumed_GET()\n { return (int)((int) get_bytes(data, 29, 4)); }", "title": "" }, { "docid": "f71bb6103ab49e4d848c99480c951bc7", "score": "0.7131668", "text": "public void consume...
72088ba53ce4f86903761b8087d829e2
/ Flush the socket
[ { "docid": "29cdc849c359e6a21eb9bf3e4195c5f9", "score": "0.6770435", "text": "public static void flushSocket(DatagramSocket socket) {\n\tint len = RtpPacket.getDataSize(\n\t RtpPacket.PCM_ENCODING, RtpPacket.MAX_SAMPLE_RATE, 2);\n\n\tlen += RtpPacket.HEADER_SIZE;\n\n byte[] data = new byte[len...
[ { "docid": "66f16f49298767bf5a93c2a6d28976de", "score": "0.7315449", "text": "public void flush()\n {\n this.packets.clear();\n }", "title": "" }, { "docid": "f7d0f226fb3f0c531c3be2e513b36e12", "score": "0.69920063", "text": "private void flushBuffer()\n throws IOEx...
9a7ab8aa4e1ab0b7675ea99ffcc154c8
Returns a twosided confidence interval on the mean with confidence level alpha based on StudentT distribution
[ { "docid": "a0cd849ec83a38b4caba64ff051eac04", "score": "0.55127275", "text": "@Override\n public Interval getConfidenceInterval(double level) {\n if (getCount() < 1.0) {\n return new Interval(Double.NaN, Double.NaN);\n }\n double hw = getHalfWidth(level);\n dou...
[ { "docid": "ae5763ed442466f3131663363b83a5d4", "score": "0.662331", "text": "public double confidenceLo() { return mean() - 1.96 * stddev() / Math.sqrt(T); }", "title": "" }, { "docid": "81c53f25faac827a9fffd71c8058d4c6", "score": "0.660155", "text": "public double confidenceHi() { r...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "5c61619d7b7bfc4ec45e401ba99069e6", "score": "0.0", "text": "@Override\n\tpublic List<Flight> findByfromAndTo(String from, String to) {\n\t\ttry {\n\t\tList<Flight> flight=flightRepository.findByFromAndTo(from, to);\n\t\treturn flight;}\n\t\tcatch (Exception e) {\n\t\t\t// TODO: handle except...
[ { "docid": "f4bccec648e6eb25ae6f4d7165ffc5a1", "score": "0.7037216", "text": "@Override\n\t\t\tpublic void Goruntule() {\n\t\t\t\t\n\t\t\t}", "title": "" }, { "docid": "27bc40cf2c5e26e0bf8b70807e0bcaed", "score": "0.68683225", "text": "@Override\r\n\tpublic void caminar() {\n\t\t\r\n...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "2f1497ff4b6fb683bf5e1c167504b80c", "score": "0.0", "text": "@Override\n public boolean assignEmployee(String fullName, boolean assign) {\n for(Employee aConsultant : empArray) {\n if (aConsultant.getFullName().equals(fullName)){\n Consultant newConsultant ...
[ { "docid": "c4efc9f9911178a27ec9261384d5f141", "score": "0.6662341", "text": "public void mo12644zk() {\n }", "title": "" }, { "docid": "81758c2988d9979c7d4b3fd5b3cce0e5", "score": "0.65679675", "text": "@Override\r\n\tpublic void pular() {\n\r\n\t}", "title": "" }, { ...
67b43a5cad0df3ac02ff63740ff0efb7
Returns the element (panning or zooming) directions callback, to set the mode at runtime.
[ { "docid": "6d36797a0d5cbc4b780c3841eab3972b", "score": "0.55709106", "text": "default ModeCallback getModeCallback() {\n\t\treturn null;\n\t}", "title": "" } ]
[ { "docid": "4647ab4cd3767ff9519ac91e507f4378", "score": "0.54686123", "text": "int getDirection();", "title": "" }, { "docid": "4647ab4cd3767ff9519ac91e507f4378", "score": "0.54686123", "text": "int getDirection();", "title": "" }, { "docid": "4647ab4cd3767ff9519ac91e507f...
25250957baf8d7411bde28f8e55ba9ec
Update the news feed for the feed source.
[ { "docid": "9c851b9deb70442626d846c8db2ae2ff", "score": "0.7987923", "text": "public void updateNewsFeed(NewsFeedSupport feedSource) {\n updateNewsFeed(findNewsFeedByFeedRefValidated(feedSource.getFeedRefId()));\n }", "title": "" } ]
[ { "docid": "732249b52acba95fef811d2b84e80963", "score": "0.7050471", "text": "public void updateFeeds();", "title": "" }, { "docid": "5f658e765bc3ef44b5914121f11e96ac", "score": "0.69892555", "text": "public void updateNewsFeed(NewsFeed newsFeed) {\n newsFeeds.remove(newsFeed);\n ...
5ddb30924ffade81fcc4d3d9e6ddfa69
Converts degrees from Y+ to a Direction.
[ { "docid": "55ea2028e485405467bc5f7778227b05", "score": "0.53778833", "text": "public static Direction fromFacing(double facing) {\n\t\tfacing += 45.0;\n\t\tfacing = facing % 360.0;\n\t\tif (facing < 0.0)\n\t\t\tfacing = facing + 360.0;\n\t\t\n\t\tif (facing >= 0.0 && facing < 90.0) {\n\t\t\treturn Dire...
[ { "docid": "ef5fa4f84e254516e0ec503be8f53179", "score": "0.6140684", "text": "public void reverseYDirection() {\n this.ySpeed *= -1;\n }", "title": "" }, { "docid": "47ba3a8266d960225a1ee5d9555725af", "score": "0.60896957", "text": "public Vector getDirectionY() {\n ...
9163157e15626be31f38fa765426cefb
/ currently we avoid the default quick assistence parts (spell checking etc.)
[ { "docid": "38e6430e066e49aeea5e552d2de1b7c7", "score": "0.0", "text": "@Override\n public IQuickAssistAssistant getQuickAssistAssistant(ISourceViewer sourceViewer) {\n return null;\n }", "title": "" } ]
[ { "docid": "e57b9115896576bfbfdc31989f5a29c0", "score": "0.67349106", "text": "String getSpellSuggestions();", "title": "" }, { "docid": "1c15e578af830c3516d5551a8a485445", "score": "0.66434264", "text": "@Test\n\tpublic void testSpellChecker() {\n\t\t\n\n\n\t}", "title": "" },...
c5620aa266d6e49ec1616e3bbef6f7e0
Metodo que genera query para reporte SICMOF0100 historico
[ { "docid": "6af0b6e85a5e19c7d126f0b9cb9c7619", "score": "0.65577316", "text": "public static String SICMOF1000(TableParams params){\r\n\t\tif(params.cuenta != null){\r\n\t\t\t\r\n\t\t}\r\n\t\t\r\n\t\tString query=\" SELECT \\n\";\r\n\t\tif(params.cuenta != null){\r\n\t\t\tquery+=\" //*+ INDEX(TA TAC2_C...
[ { "docid": "236b4ab94910677e5ee9ee9e6002caba", "score": "0.6576868", "text": "public static String SICMOF0100(TableParams params){\r\n\t\tString query = \"\";\r\n\t\t\r\n\t\tquery=\r\n\t\t\t\" SELECT /*+ INDEX(PTA NDX_TAC_CUENTA) */ PTA.ARCH_NUMERO FUENTE \\n\"+\r\n\t\t\t\" ,PA.DESCRIPCION \\n\"+\r\n\...
d927ee987b0053a2c847d19718c33a3b
Game board represents a 2D game board of characters OR a map with a keyvalue pair of Integers as the key, and a list of Characters as the value. Initialization ensures the game board is empty Defines: number_of_rows: Z number_of_columns: Z number_needed_to_win: Z Constraints: Columns and Rows >= MIN_VAL and = MIN_VAL a...
[ { "docid": "88ebdfd3e566071b873f592c0c0d93ba", "score": "0.62258047", "text": "public interface IGameBoard {\r\n\r\n // constant variables\r\n int ZERO = 0;\r\n int MAX_TO_WIN = 25;\r\n int MIN_VAL = 3;\r\n int MAX_VAL = 100;\r\n\r\n /**\r\n * checks if column is full\r\n * @pa...
[ { "docid": "a7b0348197e5da866dbc12b85b535cf5", "score": "0.6702208", "text": "public Board() {\n\n tile = new Tile[8][8]; // Creates an 8 by 8 board\n\n // Populate tiles\n \n tile[0][0] = new Tile(new Rook(), false);\n tile[0][1] = new Tile(new Knight(), false);\n ...
b42864147f878026e04053505b199b93
/ Individual exclusive / DateOfBirth
[ { "docid": "f7e2baaeee9c52bd1b470028b502287b", "score": "0.62965345", "text": "public void setDateOfBirth(Date date_of_birth) {\n\t\tthis.date_of_birth = date_of_birth;\n\t}", "title": "" } ]
[ { "docid": "9f1a470269ec8ae8f8bdf34faeffa51c", "score": "0.6942463", "text": "public Date getDateOfBirth();", "title": "" }, { "docid": "c971fae5b8b3cc51cfd864ada2f561d9", "score": "0.6840314", "text": "Date getBirthDate();", "title": "" }, { "docid": "e09781001ce7c8814be...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "58db000aedf06fe79c62742be305ee42", "score": "0.0", "text": "public static void main(String[] args) {\n\n\t\t\n\t\tShape s1 = new circle(\"Red\", 3);\n\t\tShape s2 = new Rectangle (\"Yellow\", 6, 7);\n\t\tSystem.out.println(s1.toString());\n\t\t\n\t\tSystem.out.println(s2.toString());\n\t\t\n...
[ { "docid": "ffe5fe3cec40acf4b0b07ea257dfa06a", "score": "0.6831473", "text": "private void apparence()\r\n\t\t{\r\n\r\n\t\t}", "title": "" }, { "docid": "838a915c9ea69d56cc37df198cff9cb2", "score": "0.67589027", "text": "@Override\n\t\t\t\tpublic void pintar() {\n\t\t\t\t\t\n\t\t\t\t...
89e6d05d32d16528419c3168d9906877
optional uint32 bid_id = 2;
[ { "docid": "5f9e65bab1f2090146d96008c748312f", "score": "0.0", "text": "public Builder clearBidId() {\n copyOnWrite();\n instance.clearBidId();\n return this;\n }", "title": "" } ]
[ { "docid": "142df8e2b449ae31ffae3b8ad686baea", "score": "0.72797304", "text": "int getBidId();", "title": "" }, { "docid": "a8522f3a6e407b5e189d79997952570f", "score": "0.6793143", "text": "private void setBidId(int value) {\n \n bidId_ = value;\n }", "title": "" }...
faa011a9ade403fd5d5e30e7e18116f7
This method was generated by MyBatis Generator. This method returns the value of the database column exercise_record.start_angle
[ { "docid": "c73db10369876ef67b5e8fbb651bde42", "score": "0.6757286", "text": "public int getStartAngle() {\n return startAngle;\n }", "title": "" } ]
[ { "docid": "003472c4a0c61cd014863fe6dc18c1f3", "score": "0.6687948", "text": "public double getStartAngle() { return this.startAngle; }", "title": "" }, { "docid": "21216a5f972942509c295b98c00cd9d3", "score": "0.65857816", "text": "double getStartAngle();", "title": "" }, { ...
75c2dde996e541c2df77833bb1f6f1be
Gets the number of the current level
[ { "docid": "de2628475893c9ff919a3ceca46a5eef", "score": "0.79952735", "text": "int getCurrentLevelIndex();", "title": "" } ]
[ { "docid": "8fbaac2ac0ffeac26eb5519ad3d3b09f", "score": "0.8604931", "text": "public int getLevelNumber() {\n\t\treturn currentLevelIndex + 1;\n\t}", "title": "" }, { "docid": "1e42162d1dfb0e78232675be8c4f0129", "score": "0.8224975", "text": "public int getCurrentLevel() {\n ...
1d149418d65ffb259015a1ef73b0a365
Utility method to create a folder structure,if it does not exist.
[ { "docid": "ef570b07910214d9168dccd67d84e425", "score": "0.0", "text": "public static File getFolder(String name) throws GenericSystemException {\r\n\t\tif (StringUtils.isEmpty(name)) {\r\n\t\t\tlogger.error(\"Argument cannot be null/empty\");\r\n\t\t\tthrow new IllegalArgumentException(\"Argument canno...
[ { "docid": "92456fc94281a221394af123012bd81d", "score": "0.76681566", "text": "Folder createFolder();", "title": "" }, { "docid": "92456fc94281a221394af123012bd81d", "score": "0.76681566", "text": "Folder createFolder();", "title": "" }, { "docid": "010a3b4e686313ecf490a0...
098470c1723f69a6bc0b327039ffe76b
Retrieves all the FixedBillingStatuses that are currently in the persistent store.
[ { "docid": "f8c043161c07ad6cc801fbcb59fa1580", "score": "0.7863241", "text": "public FixedBillingStatus[] getAllFixedBillingStatuses()\r\n throws DataAccessException {\r\n try {\r\n return ManagerFactory.getFixedBililngStatusManager().getAllFixedBillingStatuses();\r\n } c...
[ { "docid": "0d56aaa93943d849f394d3ca47880600", "score": "0.67034775", "text": "public FixedBillingStatus[] searchFixedBillingStatuses(Filter criteria)\r\n throws DataAccessException {\r\n try {\r\n return ManagerFactory.getFixedBililngStatusManager().searchFixedBillingStatuses(c...
e49cd5d1e807088ef75509272db10bbb
/ TO DO: DECODER leave some characters in the form of escape sequence, e.g. 0x00 0x1f allow decoding of supplementary characters (?)
[ { "docid": "d4f8b0e192095cc3235eafabe512efc6", "score": "0.0", "text": "@Override\n public Charset getEncoding(FileObject file) {\n assert !file.isValid() || file.isData();\n Object attribute = file.getAttribute(PropertiesDataNode.PROPERTY_ENCODING);\n if (attribute != null) {\n ...
[ { "docid": "fae880e0facc3e8edba731453a3e74c5", "score": "0.6945902", "text": "public void testUnencodedAtEnd()\n {\n byte[] encoded = new byte[] {0x00, 0x01, 0x02, 0x7F}; //0x7F is undefined\n String decoded = toString(encoded, 0, encoded.length, PDFDocEncodingCharset.INSTANCE);\n ...
77a2da7e574b61ac8d765015b6a68e16
Run the Winsock NetBIOS listen code
[ { "docid": "401e52df368066bd399e805de9f9ea0c", "score": "0.6956514", "text": "private final void runWinsock() throws Exception {\n\n // Debug\n\n if (Debug.EnableInfo && hasDebug())\n Debug.println(\"[SMB] Waiting for Win32 NetBIOS session request (Winsock) ...\");\n\n // Wait for a new Ne...
[ { "docid": "a713e78be5abbf19280eff181c845819", "score": "0.69667995", "text": "private final void runNetBIOS() throws Exception {\n\n // Debug\n\n if (Debug.EnableInfo && hasDebug())\n Debug.println(\"[SMB] Waiting for Win32 NetBIOS session request (Netbios API) ...\");\n\n // Clear the ca...
62335ba552d09ebefd597f8e110f2390
This method obtains the content from a Combo.
[ { "docid": "0b064af5cdbcd44b32d2dd576f1f27b9", "score": "0.0", "text": "public String getComboValue(By locator) {\n try {\n WebElement element = getDriver().findElement(locator);\n Select combo = new Select(element);\n String comboFirstValue = combo.getFirstSelect...
[ { "docid": "6c202c137b0b589fae543c0ac5c7a523", "score": "0.7295778", "text": "private void loadContent() {\n ComboBoxModel<E> model = comboBox.getModel();\n for (int i = 0; i < model.getSize(); i++) {\n\n content.add(model.getElementAt(i));\n\n }\n }", "title": "" }, { "docid"...
e268d4222b63215984becc511d79986b
features is set to in, which is used for the JList. feature is set selected. Also checks for & commits edits in focus driven editors (syn,name,id)
[ { "docid": "26c75e672bf27956a855bed5d8eb7561", "score": "0.0", "text": "protected void loadAnnotation(AnnotatedFeatureI feature) {\n // Sort gene names (but not transcripts) in alphabetical order (?)\n // check if there is any hanging edits in old feature (from focus driven edits)\n // if there...
[ { "docid": "8888f2b3e26e1628b627a095956160fc", "score": "0.6452343", "text": "boolean isSelected(IFeature feature);", "title": "" }, { "docid": "c3fa41accea6ec983eab78ff799c9678", "score": "0.6416532", "text": "void selectFeatures(List<IFeature> features, Object userContext);", "...
ef9e47053bb382496129f57128140aba
Get the index th stored object
[ { "docid": "a8706ce5da1438dd5158fa89a006e10c", "score": "0.0", "text": "public E get(final int index) {\n if (index < STORED_OFFSET) {\n return staticObjects[index];\n } else {\n return storedObjects[index - STORED_OFFSET];\n }\n }", "title": "" } ]
[ { "docid": "cabc62a684b3c18f63523d3302fcb20b", "score": "0.7629181", "text": "public long getIndex();", "title": "" }, { "docid": "df6cd620940f85a5f612d426bf0f406d", "score": "0.75454783", "text": "long getIndex();", "title": "" }, { "docid": "df6cd620940f85a5f612d426bf0f...
b1eef222e730e9ed98c3ffc9a93af872
$ANTLR end "rule__LineChart__Group__15__Impl" $ANTLR start "rule__LineChart__Group__16" InternalMyDsl.g:4757:1: rule__LineChart__Group__16 : rule__LineChart__Group__16__Impl rule__LineChart__Group__17 ;
[ { "docid": "6ece2e1c8db9657cc17530d13b9a8831", "score": "0.79671013", "text": "public final void rule__LineChart__Group__16() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMyDsl.g:4761:1: ( rule__LineChart__Group__16__Imp...
[ { "docid": "b76dda79ae125f33442a0e0e56ce4e92", "score": "0.76065505", "text": "public final void rule__LineChart__Group__15() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMyDsl.g:4734:1: ( rule__LineChart__Group__15__Imp...
ab36f2c98b4bcf0b61823efeb9a6adb1
Prints the JSON data to the terminal.
[ { "docid": "5e9e9e0f0e6e110be210dc2b245facd7", "score": "0.67546093", "text": "public void prettyPrintData() {\n if (isObject){\n System.out.print(((JSONObject) data).toString(4));\n } else {\n System.out.print(((JSONArray) data).toString(4));\n }\n\n }", ...
[ { "docid": "9f41af82ec16cce3bd913abc2abb40c2", "score": "0.65760666", "text": "abstract void print(JSONPrintSession session);", "title": "" }, { "docid": "a7c96fa69fc40dcfe160512ce26d318e", "score": "0.60353386", "text": "public static String print(com.biosimilarity.lift.lib.json.Abs...
b1e5a5a9e1d7508791b41d372ffe12b9
Establece un vector de intencidades.
[ { "docid": "5a59f3cf119848201cef6b3094e3d176", "score": "0.0", "text": "public Light setIntensity(Color c)\n {\n this.intensity = c;\n return this;\n }", "title": "" } ]
[ { "docid": "7b6905ef10b104c43a7ba16eb0e01427", "score": "0.70301986", "text": "public int [] getVectorCiudadesEnteros(){\n int [] listadoCiudadesEnteros=new int [listadoCiudades.length];\n \n for(int i=0;i<listadoCiudades.length;i++){\n listadoCiudadesEnteros[i]=i;\n ...
08e84c797f5dce20760b49c3d21d7d62
check for required fields
[ { "docid": "716f1a335496cb334f2d19482d239687", "score": "0.0", "text": "public void validate() throws TException {\n }", "title": "" } ]
[ { "docid": "684de09b89a0d32d0bf47ee0f9ab2e54", "score": "0.7864415", "text": "private boolean checkRequiredFields() {\n boolean succcess = true;\n\n if (TextUtils.isEmpty(name.getText())) {\n name.setError(\"Name is required!\");\n succcess = false;\n }\n\n ...
c1bbc65412dffa25d0e703783acc73a2
ModelAtribute je request, a ModelMap responce
[ { "docid": "f170caf2dfefbcdd66ea67c94f6db3af", "score": "0.0", "text": "@RequestMapping(\"/saveLocation\") // action=\"\" iz forme u jsp-u\n\tpublic String saveLocation(@ModelAttribute(\"lokacija\") Lokacija lokacija, ModelMap model) //Ovo u zagradi \"lokacija\" je Bean koji ce spring kontejner da pre...
[ { "docid": "a512d24b12de5b04fc6f49ad8fbec7f8", "score": "0.6154225", "text": "public MappingModel getMappingModel() {\n return mappingModel;\n }", "title": "" }, { "docid": "57cf9d8de4ff3188e5e4407ef2c40998", "score": "0.60411125", "text": "public Object getByRequest(Obje...
aa6f850c0cb71fb8ca713537d7dab70a
Set up the exit menu and start the player.
[ { "docid": "dcaa026e908e393baeac28738346c140", "score": "0.6685603", "text": "@SuppressWarnings(\"serial\")\n\tpublic static void main(String[] args) throws AWTException, IOException, URISyntaxException {\n\n\t\t// Welcome message\n\t\tJOptionPane.showMessageDialog(\n\t\t\tnull,\n\t\t\t\"This player wil...
[ { "docid": "7a21ba5dcfe5ea3d04dd5f75925f38e1", "score": "0.7016452", "text": "protected void doExitGameAction() {\n if (isActive()) {\n gameOverDialog.hide();\n baseApplication.getSoundManager().stopMusic(\"level\");\n baseApplication.getSoundManager().playSound(\...
7912f162de0a5525ba5e7dc81a011bc5
Permutation in String Solution Given two strings s1 and s2, write a function to return true if s2 contains the permutation of s1. In other words, one of the first string's permutations is the substring of the second string. Example 1: Input: s1 = "ab" s2 = "eidbaooo" Output: True Explanation: s2 contains one permutatio...
[ { "docid": "bd11e1ebce42b0c07d34082a16c56a7d", "score": "0.77624005", "text": "public static boolean checkPermutationInclusion(String s1, String s2) {\n\t\tif (s1.length() > s2.length()) {\n\t\t\treturn false;\n\t\t}\n\n\t\tint[] ch = new int[26];\n\t\tfor (int i = 0; i < s1.length(); i++) {\n\t\t\tch[s...
[ { "docid": "a917c3531d40bd938a9d10e54eb3187f", "score": "0.86109", "text": "public static boolean isPermutation(String s1, String s2) {\n if (s1 == null)\n throw new NullPointerException(\"s1 is null\");\n if (s2 == null)\n throw new NullPointerException(\"s2 is null\...
a63cc922bc47238cb0dcc20a021a7e8d
<< define StrINKUNDEBankDesignation2 $$GetPropertyName^COMConst("INKUNDE",118)
[ { "docid": "6adeb37116683cd5b2d50f13f03dc383", "score": "0.84387934", "text": "public static Object $$$StrINKUNDEBankDesignation2(mContext m$) {\n return (m$.fnc$(\"COMConst.GetPropertyName\",\"INKUNDE\",118));\n }", "title": "" } ]
[ { "docid": "19a3f010a907cccd170964ea7a515731", "score": "0.8490429", "text": "public static Object $$$StrINKUNDEBankDesignation1(mContext m$) {\n return (m$.fnc$(\"COMConst.GetPropertyName\",\"INKUNDE\",108));\n }", "title": "" }, { "docid": "88da469a1910d4e3321207e1c12471ed", "score...
1b0db9a86fbc30535f4932272842fb48
/ renamed from: a
[ { "docid": "6de008cb98ef33673a15cd78321f0c7e", "score": "0.0", "text": "public bf m9789a(ax axVar) {\r\n this.f6290d = axVar;\r\n return this;\r\n }", "title": "" } ]
[ { "docid": "c79c695ff1a387d67d7909ad1aa5f659", "score": "0.6257125", "text": "public interface C34917a {\n /* renamed from: a */\n void mo88344a();\n }", "title": "" }, { "docid": "bd698bac216066724da966bcf8ed7aa8", "score": "0.62108594", "text": "public interface C0...
a19138120bf76cd70ed055cfc865dff4
Method that returns the interesting Nodes that the Jump method found.
[ { "docid": "dea4231de4636550409032f9bf307177", "score": "0.5184965", "text": "private MyArrayList<Node> successors(Graph g, Node start, int[] end) {\n\t\tMyArrayList<Node> successors = new MyArrayList<>();\n\t\tMyArrayList<int[]> neighbors = prune(g, start);\n\t\tfor (int[] n : neighbors) {\n\t\t\tNode ...
[ { "docid": "4489f20cfbc90356319863fb00ce78e6", "score": "0.65225434", "text": "public abstract LinkedList<Move> getJumps(Board board, Position position);", "title": "" }, { "docid": "988324616f47410d32754eeb17bdebd1", "score": "0.6407488", "text": "public abstract LinkedList<Move> ge...
1bd0d245f3ecfb5aafbd477700f92481
This method was generated by MyBatis Generator. This method sets the value of the database column fx_eval_management_score.managementid
[ { "docid": "3a1fbe88baa015140df3dccb7d259a25", "score": "0.62631285", "text": "public void setManagementid(BigDecimal managementid) {\n this.managementid = managementid;\n }", "title": "" } ]
[ { "docid": "e834ccb92d27027209c8d346e4c00a97", "score": "0.5311737", "text": "public BigDecimal getManagementid() {\n return managementid;\n }", "title": "" }, { "docid": "cb2ee22053461729e7c7ab9219958755", "score": "0.5101798", "text": "public void assignID()\r\n\t{\n\t\tS...
abb33f85d76f7e8736e63ece06e7d531
databinding method to get an XML representation of this object
[ { "docid": "255207f21743238555f26fc05296c9e8", "score": "0.0", "text": "public javax.xml.stream.XMLStreamReader getPullParser(javax.xml.namespace.QName qName)\n throws org.apache.axis2.databinding.ADBException{\n\n\n \n java.util.ArrayList elementList = new java...
[ { "docid": "0b4aa25b695f451530dec4e195be6359", "score": "0.72065026", "text": "@Override\n\tpublic String toXML() {\n\t\treturn super.toXML();\n\t}", "title": "" }, { "docid": "e8e01405cbdc7e8bfc26bf89b5568b29", "score": "0.6843911", "text": "@Override\n\tpublic Object toXML() {\n\t\...
246150c1183f4bef8996f4e57b28ac6a
used for labeling major validation sections
[ { "docid": "8b56aa8cd2d60e14ded5ab771496bcea", "score": "0.0", "text": "public void sectionHeading(String msg) {\n\t\ttagLastInfo2();\n\t\tErrorInfo ei = new ErrorInfo();\n\t\tei.indent = 0;\n\t\tei.msg = msg;\n\t\tei.isError = false;\n\t\terrMsgs.add(ei);\n\t}", "title": "" } ]
[ { "docid": "f224ca80ffdd8fb650bb562fda897550", "score": "0.573902", "text": "public void setLabels() {\n\t \n }", "title": "" }, { "docid": "e9056081cb8f7633f9bc69c09ebd55b6", "score": "0.573366", "text": "private void displayConformanceLabel( boolean iValidPackage,\n ...
94164490af5cb608d9ac56ec1b01c603
Format date to default date time string.
[ { "docid": "ed31160dd61b0a8bfdb028df3a3a7044", "score": "0.74542564", "text": "public static String formatDateToDefaultDateTime(Date date, boolean withTime) {\n final DateFormat dateFormat = withTime ? new SimpleDateFormat(DEFAULT_DATE_TIME_PATTERN) :\n new SimpleDateFormat(DEFAULT_SYS...
[ { "docid": "1dcf4572e96ba163d25aa325e483418e", "score": "0.6853325", "text": "public static String format(Date date){\n return format(date,DEFAULT_PATTERN);\n }", "title": "" }, { "docid": "cdcc3f8107ff212527e8fbdd565e860d", "score": "0.6699919", "text": "private String ge...
3abeff31d9be49b70a078945f4733953
String requete = "SELECT tion_cleunik,v_po_pnr,num_billet,passager,date_dep,val_facial,cnj_billet,val_vente,val_net,tax_locale,tax_compag,tax_destin,val_commis,val_remise,num_cccf,num_client FROM ticketintegration WHERE tion_integrated = 0 AND v_po_pnr LIKE(CONCAT(?,'%')) ORDER BY tion_cleunik";
[ { "docid": "b0ccdd3eb8657da7f7a34128dbbec2e8", "score": "0.50392395", "text": "public ArrayList getIntegrationListe(int urcleunik, String po) throws RemoteException, srcastra.astra.sys.rmi.Exception.ServeurSqlFailure {\n String requete = \"SELECT tion_cleunik,v_po_pnr,num_billet,passager,date_dep...
[ { "docid": "2093544fbbe6932ebce5c193ccaaaaee", "score": "0.64308125", "text": "public String getInterrupcionesQuery(String direccion) {\n String query = \"select %s where %s\";\n String select = \"barrio, inicio, fin, servicio, direccion\";\n String where = \"barrio like '%\" + dire...
76144a9a4d8dfa346d481ff0fdc2d490
Creates the features' initializers. They are sampled from a uniform distribution around the barycentre of the rings.
[ { "docid": "ad2e7364f2bff291a936fa1e53ca7e6f", "score": "0.764631", "text": "private FeatureInitializer[] makeInitializers() {\n final SummaryStatistics[] centre = new SummaryStatistics[] {\n new SummaryStatistics(),\n new SummaryStatistics(),\n new SummaryStatist...
[ { "docid": "d450b6d0793d16e34700bc063a84099a", "score": "0.58841246", "text": "private void createWeight() {\n\t\t\n\t\tdouble max = 1;\n\t\tdouble min = -1;\n\t\tdouble range = max-min;\n\t\t//first weights array (3x5)\n\t\t\n\t\tfor (int i=0; i<_syn0.length; i++) {\n\t\t\tfor (int j=0; j<_syn0[0].leng...
360dde14e531e1bd6ecdba94d527c341
getRoot returns self if no parent, else parent's root
[ { "docid": "8b50b94da966612f1e5ece542800617d", "score": "0.0", "text": "public void testGetRoot() {\n NoopCC a = new NoopCC();\n NoopCC b = new NoopCC(a);\n NoopCC c = new NoopCC(b);\n assertSame(a, a.getRoot());\n assertSame(a, b.getRoot());\n assertSame(a, c.g...
[ { "docid": "2194f76e9696a0d1169c40c77892ee57", "score": "0.8684664", "text": "Parent getRoot();", "title": "" }, { "docid": "900b3357e1932e03a9fca370af3f9b05", "score": "0.84346455", "text": "public static Parent getRoot() {\n return root;\n }", "title": "" }, { ...
b8d073dfd9ad35f9b126e9ff4c21f35e
Cap test 32. king yellow cap down right
[ { "docid": "7e4f5302528af93c26e15678dc7a1a36", "score": "0.68267864", "text": "@Test\n\tpublic void capTest32() {\n\t\tassertTrue(JunitTester.canCaptureTest(yellowKingBoard, 2, 0));\n\t}", "title": "" } ]
[ { "docid": "33a6bd2355d02767615fde7e7d4c8946", "score": "0.6404327", "text": "@Test\n\tpublic void capTest31() {\n\t\tassertTrue(JunitTester.canCaptureTest(yellowKingBoard, 4, 0));\n\t}", "title": "" }, { "docid": "4443fdc47e8ff7a4fc055cb0dadf820c", "score": "0.6361781", "text": "@Te...
cf97e9d07d6d0a9504e37fee7f63f613
Enables or disables the action play beep sound
[ { "docid": "b7449d342d8c608adfaa996748455ce9", "score": "0.7069332", "text": "public DetectorOptions setActionPlayBeepSoundEnabled(boolean actionPlayBeepSoundEnabled)\n {\n this.actionPlayBeepSoundEnabled = actionPlayBeepSoundEnabled;\n return this;\n }", "title": "" } ]
[ { "docid": "3a5645660ece9d1896fab77db02967c0", "score": "0.7776039", "text": "public boolean isActionPlayBeepSoundEnabled()\n {\n return actionPlayBeepSoundEnabled;\n }", "title": "" }, { "docid": "fadc24aeb414b4f794c5e61131107c8a", "score": "0.77279145", "text": "pub...
66a0217962da76b3430497785e10b746
Create contents of the dialog.
[ { "docid": "07a7ae73a2a2fdb98b0b905b5f096434", "score": "0.6025582", "text": "private void createContents() {\r\n\t\tshlLogin = new Shell(getParent(), SWT.APPLICATION_MODAL);\r\n\t\t\r\n\t\tshlLogin.setSize(450, 300);\r\n\t\tshlLogin.setText(\"Login\");\r\n\t\tshlLogin.setLayout(new BorderLayout(0, 0));...
[ { "docid": "968b17821b595bfc2e823849405c425a", "score": "0.7198054", "text": "private void createContents() {\n\t\tshell = new Shell(getParent(), getStyle());\n\t\tshell.setSize(495, 157);\n\t\tshell.setText(getText());\n\t\t\n\t\tprogressBar = new ProgressBar(shell, SWT.NONE);\n\t\tprogressBar.setBound...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "ce1c4eef09e3050383346b43546586b9", "score": "0.0", "text": "public void onStart(ITestContext context) {\n\t\t\n\t}", "title": "" } ]
[ { "docid": "ef1b6c3f597a66c59960d73eadee6f25", "score": "0.6904447", "text": "private void apparence()\n\t\t{\n\n\t\t}", "title": "" }, { "docid": "4862518dedb9e169c3cc620e5ebe04c5", "score": "0.6696056", "text": "@Override\r\n\tpublic void atura() {\n\t\t\r\n\t}", "title": "" ...
0417c4e5ef6e5e4fe15b4d4e34f689c0
Created by varad on 07/10/18.
[ { "docid": "6aaf1b7326a5359dc5a1ce7b827d7b9f", "score": "0.0", "text": "public interface MvpPresenter<V extends BaseView> {\n\n void onAttach(V baseView);\n\n void onDetach();\n\n// void handleApiError(ANError error);\n\n// void setUserAsLoggedOut();\n}", "title": "" } ]
[ { "docid": "ffe5fe3cec40acf4b0b07ea257dfa06a", "score": "0.64401156", "text": "private void apparence()\r\n\t\t{\r\n\r\n\t\t}", "title": "" }, { "docid": "440ce72c689aef1dd3c429cf5498732b", "score": "0.6076477", "text": "@Override\n\tpublic void pohyb() {\n\n\t}", "title": "" }...
c0feb629a60e5f62215efa77c7a571c1
/ Updating the new password in database
[ { "docid": "c1a56d44a5def05f6dea6b6f0b993594", "score": "0.710685", "text": "public static int updatePassword(PasswordJSON json)\r\n{ \r\n\tint flag=1;\r\n\tConnection connection=null;\r\n\ttry {\r\n\t\tconnection=DatabaseUtil.getDBConnection();\r\n\t\tString querySelect=QueryConstants.UPADTE_NEW_PAS...
[ { "docid": "cc15c8eaee4a008e81c16c47543b741f", "score": "0.8268199", "text": "void updatePassword(String username, String newPassword);", "title": "" }, { "docid": "2bbad8cd10262c8c35701af124bfe26b", "score": "0.81389135", "text": "Boolean updatePassword(Integer loginUserId, String o...
1c70f0e81f0f747cd814771d7e26d0e1
Returns the token at the end of the node.
[ { "docid": "0e69cef2d8e21c5ed14592f0f738a665", "score": "0.0", "text": "public Token getClose() {\n return close;\n }", "title": "" } ]
[ { "docid": "1d87791166fa90d741f01cbaa07916af", "score": "0.8124863", "text": "public Token getEndToken()\n {\n return tokLast == null ? tokFirst : tokLast;\n }", "title": "" }, { "docid": "faa7b32430b87143823fc7866028f045", "score": "0.7301519", "text": "public I...
1e0b9f0e3f1472ad94e86a17225d3271
Returns the value of the 'Name' containment reference. A natural language name identifying the structure map. This name should be usable as an identifier for the module by machine processing applications such as code generation.
[ { "docid": "3b9f404dda05cbafdd116df95a45cd0a", "score": "0.0", "text": "org.hl7.fhir.String getName();", "title": "" } ]
[ { "docid": "d2ed58c79c3b07cd33040186f36f6ffe", "score": "0.676557", "text": "public static String getName() {\r\n\t\treturn Name;\r\n\t}", "title": "" }, { "docid": "ef294dc737291410e96ae0c9af32ace6", "score": "0.6694452", "text": "public final String name() {\n\t\treturn name;\n\t}"...
321d588bb2c9f7033af50146a8a432e6
Recursively work through all parents and add them to the list
[ { "docid": "51d3cb65baf09df372365d13b3e6cbd5", "score": "0.6197706", "text": "public Iterable<Concept> listParents(LinkedHashSet<Concept> hierarchyList) throws Exception {\n\t\tboolean firstSeen;\n\t\tfor (Concept thisParent : parents) {\n\t\t\tfirstSeen = hierarchyList.add(thisParent);\n\t\t\tif (hiera...
[ { "docid": "7e85714864f6eb16f1ffec6e12a4e5b1", "score": "0.6540451", "text": "public List<Node> getAllParents(Node root) {\r\n List<Node> res = new ArrayList<>();\r\n if (root == null || root.parents.size() == 0)\r\n return res;\r\n\r\n Queue<Node> queue = new LinkedList<...
65219a738f1e403b8cd25d4d5303b8cf
if we want to change the path name we can mention below annotation
[ { "docid": "828ec7141f0ea7d68ded2d46779f16ea", "score": "0.0", "text": "public interface EmployeeRepository extends JpaRepository<Employee, Integer> {\n\n\n\n}", "title": "" } ]
[ { "docid": "2da8cce78d30b55abbf066aba5be9614", "score": "0.64516944", "text": "public void setPath(String param){\n localPathTracker = true;\n \n this.localPath=param;\n ...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "e6e4474be6b76c4d12001a63f9a50a27", "score": "0.0", "text": "protected void closeThis() {\n\t\tthis.setVisible(false);\n\t}", "title": "" } ]
[ { "docid": "d7194e467f51e022c107531d8614b6a3", "score": "0.6905833", "text": "@Override\r\n\tpublic void anular() {\n\t\t\r\n\t}", "title": "" }, { "docid": "cdf542363f5b089e84183e3d9020935f", "score": "0.6697644", "text": "@Override\n\t protected void ramana() {\n\t\t\n\t}", "ti...
de6551f07600e84ca562f6620be0b7f2
Instantiate the user with all required fields prefilled.
[ { "docid": "0b4cbe0aabd4f98e7ffb1b4c9ef59a9f", "score": "0.0", "text": "public User(final String the_user, final String the_pass, final String the_email, \n\t\t\tfinal String the_first, final String the_last, final String the_address) {\n\t\tmy_email = the_email;\n\t\tmy_firstname = the_first;\n\t\tmy_l...
[ { "docid": "8a3ac1c3d94746fe1e1902eca7437e2d", "score": "0.76179826", "text": "public AirliftUser() {}", "title": "" }, { "docid": "40eaecb9044305979a0eeb15c8f47520", "score": "0.7583314", "text": "public User() {\r\n name = \"null\";\r\n gender = \"null\";\r\n a...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "dc04f96139bc5007487c7a805b0e3c1f", "score": "0.0", "text": "@Override\n\n\tpublic void inputScore() {\n\t}", "title": "" } ]
[ { "docid": "b7c706d331e2b507ec0ff8404ad87dc7", "score": "0.69742316", "text": "@Override\r\n\t\t\tpublic void crispel() {\n\t\t\t\t\r\n\t\t\t}", "title": "" }, { "docid": "76b3966c8e3f64884c4127d1a3df09a8", "score": "0.68059677", "text": "@Override\r\n\t\t\tpublic void maruti() {\n\t...
e92952b8cd156793848c9c2f7ed0c127
A proper value for the parameter An empty value for the parameter A null value for the parameter Value with only whitespace Value with whitespace around edges
[ { "docid": "b48dbd1ef53f6eef00b78368b746417c", "score": "0.0", "text": "private Map<String,String> getTestValues() {\n\t\tHashMap<String, String> testToExpected = new HashMap<String, String>();\n\t\ttestToExpected.put(\"ABCD\", \"ABCD\");\n\t\ttestToExpected.put(\"\", null);\n\t\ttestToExpected.put(\" ...
[ { "docid": "57277f122336fe0429bbc1a026ba5643", "score": "0.63675", "text": "private String paramValue(String paramValue, String defaultValue) {\n\t\tif ( paramValue != null ) {\n\t\t\tString paramValue2 = paramValue.trim() ;\n\t\t\tif ( paramValue2.length() > 0 ) {\n\t\t\t\treturn paramValue2 ;\n\t\t\t}...
45c9e37f2468ea56562230f921a5fed8
Register a namespace prefix
[ { "docid": "7ccee006d562c56af3fffba35bebadf8", "score": "0.0", "text": "private java.lang.String registerPrefix(javax.xml.stream.XMLStreamWriter xmlWriter, java.lang.String namespace) throws javax.xml.stream.XMLStreamException {\n java.lang.String prefix = xmlWriter.getPrefix(namespace);\n ...
[ { "docid": "8682d1d294c761f8b58879e5f7fc537c", "score": "0.78696835", "text": "public void registerNamespace(String prefix, String uri) {\n namespaces.put(prefix, uri);\n }", "title": "" }, { "docid": "adee3659dc70df5d15b4b1e06c317f12", "score": "0.754755", "text": "publi...
441402b4220421f5d5e9ed35d3f8950f
Created with IntelliJ IDEA. User: ross Date: 27/09/16
[ { "docid": "db78dcf4ce8b4273ebe3f0e121746096", "score": "0.0", "text": "public interface Query {\n\n /**\n * Provides a list of movies that have the provided title in\n * their name.\n *\n * @param title the title of the movie to search for\n * @return zero to many Movies in a lis...
[ { "docid": "288fd3ee71b736e770bbef790831c263", "score": "0.6328412", "text": "User mo18615e();", "title": "" }, { "docid": "76a80470fd21f5a9092c258ed3a8a632", "score": "0.6285613", "text": "private static void 로또번호리스트() {\n\t\t\r\n\t}", "title": "" }, { "docid": "33d41636...
ccdeeb3c4f9b571493250b0b64b608d8
Makes sure exception chaining works correctly (DERBY1117)
[ { "docid": "77a660939570a6e899b2158f7e114539", "score": "0.6605866", "text": "public void testChainedException() {\n IOException ioe = new IOException(\"Test exception\");\n SqlException sqle = new SqlException(null,\n new ClientMessageId(SQLState.NOGETCONN_ON_CLOSED_POOLED_CONN...
[ { "docid": "3e4db3749a64ac42a098509d38841e09", "score": "0.6770506", "text": "@Test\n\tpublic void exception() {\n\t\t// ReactiveValue wraps all exceptions in CompletionException.\n\t\tCompletionException ce = assertThrows(CompletionException.class, () -> f.freeze(\"key\", () -> {\n\t\t\tthrow new Arith...
29d82c5ec6b05553e533ca2dd0b2d169
Checking whether this timer has been started or not.
[ { "docid": "20ad6546df21f168e1e1217e33c41bc5", "score": "0.6936962", "text": "public final boolean isStarted() {\n return isActive;\n }", "title": "" } ]
[ { "docid": "4207d04fa68040ff9bb8792f40e3d341", "score": "0.81706643", "text": "public boolean checkIsTimerRunning() {\n return isTimerRunning;\n }", "title": "" }, { "docid": "8bab77288a54446d143e9ff55d8945dc", "score": "0.77125716", "text": "public boolean isCallTimerStart...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "ef9118836d0d4604735069f6eed2d4d4", "score": "0.0", "text": "@Override\n\tpublic void browse(InputStreamGetter content, MimeType contentType, Completed<?> completed) throws ContentException, IOException {\n\t\t\n\t}", "title": "" } ]
[ { "docid": "663ac6f718361fb243bf093a1c7ded6a", "score": "0.66285414", "text": "@Override\r\n\tprotected void Goukakyuu() {\n\t\t\r\n\t}", "title": "" }, { "docid": "80d20df1cc75d8fa96c12c49a757fc43", "score": "0.65323734", "text": "@Override\n\tprotected void getExras() {\n\t\t\n\t}"...
7b5e0a52b36d670e70546635ec74b679
THIS IS FOR TESTING ONLY!!
[ { "docid": "db86ab0e2a143ce584c83f23f7488ca8", "score": "0.0", "text": "public static void setBroadcastInetAddressAndPort(InetAddressAndPort addr)\n {\n broadcastInetAddress = addr.getAddress();\n broadcastInetAddressAndPort = addr;\n }", "title": "" } ]
[ { "docid": "1260bf70decb91faff8466bae6765ba2", "score": "0.6023251", "text": "private stendhal() {\n\t}", "title": "" }, { "docid": "fa27b313748d3dbdbb294e8ab31beafe", "score": "0.587118", "text": "private void strin() {\n\n\t}", "title": "" }, { "docid": "ea8460c7314de45...
cace544dd525f4cb5db33ac8475e886e
Gets the full pathnames of the files that have been checked off in the list
[ { "docid": "b41889a6c862c3ffba441b11e843b5d0", "score": "0.76826936", "text": "public String[] getCheckedFiles() {\r\n\t\t\treturn checkList.toArray(new String[0]);\r\n\t\t}", "title": "" } ]
[ { "docid": "238cde745878552e97b322cb30b5dc88", "score": "0.66792953", "text": "public List<String> getFileNames()\n\t{\n\t\treturn new ArrayList<String>(this.filenamelist);\n\t}", "title": "" }, { "docid": "6a986fd14baed6045b67b25010f5b161", "score": "0.6532944", "text": "List<String...
29fa0e7c696ecbcdf573a8849fb5f4c8
required string nick = 2;
[ { "docid": "db01854efe99943f774c3c2c3a9d8213", "score": "0.54049915", "text": "public com.google.protobuf.ByteString\n getNickBytes() {\n java.lang.Object ref = nick_;\n if (ref instanceof java.lang.String) {\n com.google.protobuf.ByteString b = \n com.google.protobuf....
[ { "docid": "622f0f1770094eb89c7d1c1fd4794404", "score": "0.65413225", "text": "String getNewNick();", "title": "" }, { "docid": "4eea23479aa182deaa69c7a8c312506b", "score": "0.62644315", "text": "public String getNick() {\n return nick;\n }", "title": "" }, ...
733b4a0275b03920b9e83e0e716def33
Sets the primary key of this kyso.
[ { "docid": "5687dcf2ee63305ea928e24a7c08b98c", "score": "0.69520605", "text": "@Override\n\tpublic void setPrimaryKey(long primaryKey) {\n\t\tmodel.setPrimaryKey(primaryKey);\n\t}", "title": "" } ]
[ { "docid": "3036f1d3417d06baecf1c96f683d62ab", "score": "0.7987608", "text": "public void setKey(int primary_key) {\n\t\tthis.primary_key = primary_key;\n\t}", "title": "" }, { "docid": "5a65d7aa23f4e5c68e7c8ae2a49a0e7c", "score": "0.733059", "text": "@Override\n public void setPr...
8e61aaa64ca90d0eb186b65f8c35a58d
Return the elements chosen from the list derived by getNextChoice().
[ { "docid": "d52762a26d33edab0855496313cbcfcd", "score": "0.50417364", "text": "public void makeChoice(ChoiceResponse choiceResponse) throws AlgorithmException {\n if (choiceResponse == null || !choiceResponse.isValidRequest(listEntityUtil.getListEntity())) {\n throw new AlgorithmExcept...
[ { "docid": "0d1294e829e230baf0f19e1cf60bbd7e", "score": "0.5922807", "text": "public void selectNext() {\r\n\t\tfloat bestDistance = -1.0f;\r\n\t\tRandomGenerater r = new RandomGenerater();\r\n\t\tfor (int i = 0; i < candidateSize; i++) {\r\n\t\t\tif (cases.get(0).size() != 0) {\r\n\t\t\t\t// random cho...
4fa01d383841c181edaa2450bb7d4794
Creates an InputStreamReader using a given file name
[ { "docid": "1261333716ac66fb615d94036ab90919", "score": "0.6653683", "text": "public static InputStreamReader readerInit(String fileName){\r\n\t\t\r\n\t\ttry {\r\n\t\t\t\r\n\t\t\tFileInputStream stream = new FileInputStream(fileName);\r\n\t\t\tInputStreamReader reader = new InputStreamReader(stream, \"U...
[ { "docid": "864b87d3c32f77086bc95f708cb87520", "score": "0.6784116", "text": "private static InputStreamReader getResourceReader(String resourceName) throws URISyntaxException, FileNotFoundException {\n\t\treturn new InputStreamReader(\n\t\t\t\tnew FileInputStream(\n\t\t\t\t\t\tgetResourceFile(resourceN...
c19a758dddce59453e8520d5b7f5f63b
Generated Property Getter for attribute SYM19
[ { "docid": "2bd9a6ba28a1fa09c0ed6540f7bc05c7", "score": "0.7092707", "text": "@Override\n public java.lang.Object getSym19() throws G2AccessException {\n java.lang.Object retnValue = getAttributeValue (SYM_19_);\n return (java.lang.Object)retnValue;\n }", "title": "" } ]
[ { "docid": "44c8ff923c5611a59d83296bd309d6aa", "score": "0.6995834", "text": "@Override\n public java.lang.Object getSym18() throws G2AccessException {\n java.lang.Object retnValue = getAttributeValue (SYM_18_);\n return (java.lang.Object)retnValue;\n }", "title": "" }, { "docid": "1...
520b8ccb10026e40b18f8c91abbbaf08
Marks the leaf "sdlocation" with operation "merge".
[ { "docid": "c4e4b8a5b2811af02c5c3aeed171f9c7", "score": "0.79680705", "text": "public void markSdLocationMerge() throws JNCException {\n markLeafMerge(\"sdLocation\");\n }", "title": "" } ]
[ { "docid": "04d92f456952a2a9e632c6c8dd8e3aac", "score": "0.63448024", "text": "public void markDataSapsUtilizedMerge() throws JNCException {\n markLeafMerge(\"dataSapsUtilized\");\n }", "title": "" }, { "docid": "40a9b8d819dde49c2aa37483fe96d0bb", "score": "0.61477566", "te...
895ccad298ad304db2d576c6c287e829
Sets the "MNT" element
[ { "docid": "10a7240d5d9e93551d329998fb9a6e07", "score": "0.7960076", "text": "void setMNT(java.math.BigDecimal mnt);", "title": "" } ]
[ { "docid": "45332041fddb646ef5de64d952261e37", "score": "0.8019942", "text": "void xsetMNT(cl.sii.siiDte.DTEDefType.Exportaciones.TED.DD.MNT mnt);", "title": "" }, { "docid": "3830a017d359a4d7b0fd2384de3f0f0a", "score": "0.79018587", "text": "void setMNT(java.math.BigInteger mnt);", ...
e84201944c62fe15746769aed6ce08d5
return true if the BC is included into the Physical column list
[ { "docid": "4080331ee492b1cf034b9624d092e982", "score": "0.50716543", "text": "protected PhysicalColumn findPhysicalColumn (List<PhysicalColumn> fColumn,PhysicalColumn bColumn){\r\n\t\tfor (PhysicalColumn fc : fColumn){\r\n\t\t\tif (bColumn.getName().equals(fc.getName())){\r\n\t\t\t\tlogger.info(\"FOUND...
[ { "docid": "6691180eb02a51d9f8300b2109a80a24", "score": "0.6511743", "text": "boolean hasColumnCondition();", "title": "" }, { "docid": "37ea265abb83d8f09b6f79c154da49cb", "score": "0.6105464", "text": "boolean hasColumnfamily();", "title": "" }, { "docid": "e6c85f7d41706...
d7cc8d5c97bc74aa11271f7c7502665d
TODO Autogenerated method stub return label + ","+text+","+ start + ","+ end;
[ { "docid": "85b9675e6e8e355485aca1207c43f4af", "score": "0.54841274", "text": "@Override\r\n\tpublic String toString() {\n\t\tString labelFunc = \"\";\r\n\t\tswitch (label){\r\n\t\t\tcase TOK_ALPHANUM: labelFunc = \"alphanum\"; break;\r\n\t\t\tcase TOK_NUMBER: labelFunc = \"number\"; break;\r\n\t\t\...
[ { "docid": "4f00fcd61e32ac6d12bf7dceb3f2a6bb", "score": "0.6732845", "text": "@Override\n\t\tpublic String toString() {\n\t\t\treturn \"[ \" +start + \" , \" + end + \" ]\";\n\t\t}", "title": "" }, { "docid": "a7060ee3c9607af08510bf112c50baf6", "score": "0.630835", "text": "@Override...
6241d2136221ab78a77a615a89d0ba24
Will attempt to purchase the item selected
[ { "docid": "f74a051a411c8e5ef7efbfb9e3631398", "score": "0.6155241", "text": "Item selectItem(int index) throws ItemOutOfStockException, InsufficientChangeException, SelectionUnknownException;", "title": "" } ]
[ { "docid": "04123e4b2bd2df75f972519fd87eec36", "score": "0.7224017", "text": "public void targetPurchase() {\n\t\t\n\t}", "title": "" }, { "docid": "e441afed57c902ae29f831b8b8b2aa51", "score": "0.6925702", "text": "public void macysPurchase() {\n\t\t\n\t}", "title": "" }, { ...
9f14200493f4529885f5fa62c9ec4fa1
same name is NEEDED because ...it won't work if the name is dif.
[ { "docid": "6188ff63f63f8879bfa56815ac72142e", "score": "0.0", "text": "public static void main(String[] args) {\n StringBuilder mybuilder = new StringBuilder();\n\n try {\n File book = new File(\"PrideAndPrejudice.txt\");\n Scanner sn = new Scanner(book);\n\n while (sn.hasNextLine(...
[ { "docid": "887a3373b3744a5dd2f130863c6c066e", "score": "0.66481495", "text": "private void nameComponents() {\n\t\t\n\t}", "title": "" }, { "docid": "8fd79ac677300d0a31dfed015f603227", "score": "0.6284721", "text": "public void testFixName() {\n\t\tassertEquals( \"name2_1\", nl.fixN...
8432d55c203bc1691212b1fb96c74e65
read the name of a course given its id
[ { "docid": "f4a53294e80810995dd61995c7ea327c", "score": "0.7335264", "text": "public void readCourseName(Context ctx) {\n\t\t\n\t\tlog.trace(\"Entering readCourseName in CourseController\");\n\t\t\n\t\tint courseId = Integer.valueOf((ctx.formParam(\"courseId\")));\n\t\t\n\t\ttry {\n\t\t\tctx.html(\"Cour...
[ { "docid": "859da167dba35760155b24fc5eeb516f", "score": "0.7786777", "text": "java.lang.String getCourseName();", "title": "" }, { "docid": "d290f380a6fff5d73d725253a032ee74", "score": "0.70436335", "text": "public Course getByName(String courseName) throws DAOException;", "title...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "b285a68e76edbd37fa6ab34d755011b6", "score": "0.0", "text": "private void doUninit() {\n\t\tmChronometer.stop();\n\t\t\n\t\tmBtnUninit.setEnabled(false);\n\t\tmBtnInit.setEnabled(true);\n\t}", "title": "" } ]
[ { "docid": "b7c706d331e2b507ec0ff8404ad87dc7", "score": "0.69742316", "text": "@Override\r\n\t\t\tpublic void crispel() {\n\t\t\t\t\r\n\t\t\t}", "title": "" }, { "docid": "76b3966c8e3f64884c4127d1a3df09a8", "score": "0.68059677", "text": "@Override\r\n\t\t\tpublic void maruti() {\n\t...
99fefc850fbd3b767d547d2709aa4958
Write a chunk to GFS
[ { "docid": "293126a2a88190bf96269031bef6a047", "score": "0.6705943", "text": "public void writeChunk(String filename, int chunkIndex, String content) {\n }", "title": "" } ]
[ { "docid": "b0dd8b698d68a84347989158618289e0", "score": "0.6533989", "text": "public void writeChunk(String filename, int chunkIndex,\n String content) {\n }", "title": "" }, { "docid": "8cc7250095d186e8d1ab72706626aee6", "score": "0.638286", "text": "voi...
961522f5e85c441f32c1dabb0d9f3141
This method can be used to encrypt multiple pieces of data; e.g. buffersize pieces when reading the data from a stream. Encrypts the given data with the key and mechansim given to the encryptInit method. The application must call encryptFinal to get the final result of the encryption after feeding in all data using thi...
[ { "docid": "88f9549a9791290791793c6999c679e2", "score": "0.0", "text": "public byte[] encryptUpdate(byte[] part) throws TokenException {\n return pkcs11Module_.C_EncryptUpdate(sessionHandle_, part);\n }", "title": "" } ]
[ { "docid": "a335756e20d1a02fd3a8cddbfd8bda16", "score": "0.6655144", "text": "@Override\n\tpublic byte[] encrypt(byte[] data) {\n\t\tint keylength = publicKey.getP().bitLength();\n\t\t\n\t\t// calculating the length of a block using the keylength\n\t\tint blocklength = keylength / 8 - 1;\n\t\t\n\t\t// c...
2ef79af4fc93f755add91a97c47d765b
`status: Not Mapped` coredatatypereference: BIAN::DataTypesLibrary::CoreDataTypes::UNCEFACT::Code generalinfo: The type of external performance analysis report available
[ { "docid": "dcbbe2cdf5b76f2594d8cc1dbc9ac633", "score": "0.48775706", "text": "public String getCaptureandClassificationInstanceAnalysisReportType() {\n return captureandClassificationInstanceAnalysisReportType;\n }", "title": "" } ]
[ { "docid": "075cdaf5af4c9fce38376f0c00296dd2", "score": "0.5533936", "text": "private void getDetailedInformation() {\n }", "title": "" }, { "docid": "fc8dfbfb5eafff05f80ad0253b0bf53a", "score": "0.5526453", "text": "@Override\n public String getLoadStatusReport() {\n\treturn n...
9f7eb35692cadaa145f7e08b373d3c49
Sends a given statement back into the interpreter's visitor method
[ { "docid": "0da0ad2e3cf421187b51201880ee022d", "score": "0.6112003", "text": "private void execute(Stmt stmt) {\n stmt.accept(this);\n }", "title": "" } ]
[ { "docid": "68f881148a8c475b5557ecfda98cdda0", "score": "0.6674101", "text": "public void statement() {\n if (have(Token.Kind.VAR)) {\n variable_declaration();\n }\n else if (have(Token.Kind.CALL)) {\n call_statement();\n }\n else if (have(Token.K...
9c64dfa6f36b1124c81871293d236ad0
Returns the value of object identifier argument
[ { "docid": "4660fee8559629425972da8a397c26a4", "score": "0.0", "text": "protected String get_object_name() {\n\t\treturn this.monitorname;\n\t}", "title": "" } ]
[ { "docid": "1459bdcfa4dc88f2a1165bcd37fcd717", "score": "0.7541577", "text": "public String getID(Object object);", "title": "" }, { "docid": "47227eac38ca1405413458b62dfd10c2", "score": "0.6980248", "text": "Object getIdentifier(Object entity);", "title": "" }, { "docid"...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "ed5a17d52332679589e6a24fac0a8cbc", "score": "0.0", "text": "@Override\n public void onDetach() {\n super.onDetach();\n }", "title": "" } ]
[ { "docid": "c4efc9f9911178a27ec9261384d5f141", "score": "0.6662341", "text": "public void mo12644zk() {\n }", "title": "" }, { "docid": "81758c2988d9979c7d4b3fd5b3cce0e5", "score": "0.65679675", "text": "@Override\r\n\tpublic void pular() {\n\r\n\t}", "title": "" }, { ...