query_id
stringlengths
32
32
query
stringlengths
7
129k
positive_passages
listlengths
1
1
negative_passages
listlengths
88
101
7d6fed73b159beba8b70cd3d1225c722
imprime uma frase as vezes pedidas
[ { "docid": "c178f25f9827b1cd65487d81f10b9584", "score": "0.0", "text": "public static void printNtimes (int n, String crazy) {\n\n\t\tfor (int i = 1; i <= n; i++) {\n\t\t\n\t\t\tSystem.out.println(crazy);\n\n\t\t}\n\n\t}", "title": "" } ]
[ { "docid": "ce65321a2fe3fc22fa71f8ce3e5efe03", "score": "0.826679", "text": "public void imprimir(String frase);", "title": "" }, { "docid": "6f5f572ffea3298abbcbdcca57f4e0a5", "score": "0.58964115", "text": "public static void geraSentenca() {\n\t\tList<String> novaFrase = new Array...
917e84c55b76e3b4f76a5003e0bee13c
repeated .quality.dialog_manager.DialogIntentState client_intent_states = 9;
[ { "docid": "b2f3a0bab96a21937e5d99006c9d7eed", "score": "0.0", "text": "public Builder addAllClientIntentStates(\n java.lang.Iterable<? extends com.google.dialog.proto.DialogIntentStateProto.DialogIntentState> values) {\n if (clientIntentStatesBuilder_ == null) {\n ensureC...
[ { "docid": "eeda68ed1c430c89efd0bb7915a09dfa", "score": "0.66324973", "text": "int getDialogIntentStatesCount();", "title": "" }, { "docid": "70d757566c9cde96ec9d57664fe52ac1", "score": "0.64339596", "text": "com.google.dialog.proto.DialogIntentStateProto.DialogIntentState getClientI...
c086d75976358b4562999b5b22980fb6
Wanneer speler wilt stoppen en het spel nog niet is opgeslagen, wordt er een boodschap getoond met de vraag of het spel opgeslagen moet worden
[ { "docid": "7548e41db544b4da553b6e09dce73e75", "score": "0.0", "text": "private void opslaan() {\n Scanner sc = new Scanner(System.in);\n int keuze = -1;\n while (keuze < 0) {\n System.out.printf(\"%s%n\", Taal.geefVertaling(\"waarschuwingStoppen\"));\n System....
[ { "docid": "824df84170da9eecdf90a111de7cf46f", "score": "0.66708964", "text": "public void speelSpel() {\n while (!dc.heeftWinnaar()) {\n int keuze = -1;\n while (keuze < 0) {\n String speler = dc.geefHuidigeSpeler();\n System.out.printf(\"%s: %...
0291779b46e3d32049a46d9f24432283
Returns a single group master record by passing group code as primary key. Also generates next Group Code if transaction is for Save Master
[ { "docid": "954c5af31a6d8e979436e6fcce3d1ed6", "score": "0.0", "text": "private clsWebClubGroupMasterModel funPrepareModel(clsWebClubGroupMasterBean groupBean,HttpServletRequest req)\r\n\t\t{\r\n\t\t\t\r\n\t\t\tString clientCode=req.getSession().getAttribute(\"clientCode\").toString();\r\n\t\t\tString u...
[ { "docid": "006cad882d7a98c3e8658836e26c0819", "score": "0.6316185", "text": "@Override\n public int addGroupMaster(GroupMaster groupMaster) {\n Connection conn = null;\n PreparedStatement preparedStatement = null;\n int result = 0;\n try {\n conn = ConnectionMa...
b491239416278446930ff7edf17f7e89
$ANTLR end "T__25" $ANTLR start "T__26"
[ { "docid": "03733c296bf99687c573e0df215409df", "score": "0.0", "text": "public final void mT__26() throws RecognitionException {\n try {\n int _type = T__26;\n int _channel = DEFAULT_TOKEN_CHANNEL;\n // InternalMyDsl.g:26:7: ( 'ManufacturingSystemElement' )\n ...
[ { "docid": "fffeb4f7fedd741663c65f9d347863e8", "score": "0.51640034", "text": "public interface MyNewGrammarConstants {\n\n /** End of File. */\n int EOF = 0;\n /** RegularExpression Id. */\n int _plus = 5;\n /** RegularExpression Id. */\n int _minus = 6;\n /** RegularExpression Id. */\n int _mu...
61d5f6ff5609f2c48dd434e06e55be00
Start a routine that will take time and allow progress updates.
[ { "docid": "222f6a83e16dffe7354563b2aab8e7a8", "score": "0.0", "text": "public void longOperation(ActionEvent event) {\r\n setPercent(1);\r\n Thread copyThread = new Thread(new LongOperationRunner(this,\r\n PersistentFacesState....
[ { "docid": "76d6884153509459e33097bfeb8f6be4", "score": "0.6168416", "text": "public void start(){\n if (running) return;\n else {\n timeStart = System.nanoTime();\n running = true;\n }\n }", "title": "" }, { "docid": "fef490fd5325261e4af049d669966...
775cc50306201096ff80a30ef13a5ff5
Calculates the extremity number used in the adjacency array from the gene number.
[ { "docid": "192644c5b691bf5cd723f94e288812a7", "score": "0.6573108", "text": "public static int getExtremity(int geneExt, final boolean fstExtremity) {\n if (geneExt < 0 && fstExtremity) {\n geneExt = (geneExt * -1) - 1;\n } else if (geneExt < 0 && !fstExtremity) {\n ...
[ { "docid": "0173f3b8bf991e31f90c54c70f08e73e", "score": "0.60047567", "text": "public static int getNeighbourExt(final int ext) {\n if (ext % 2 == 0) {\n return ext + 1;\n } else {\n return ext - 1;\n }\n }", "title": "" }, { "docid": "400674cbf0...
c9ea139ecef46332dbc4f8c439498507
obtiene al nodo que esta a la izquierda de este
[ { "docid": "a1e8a2bfbfe9c42cd905bdd90079b110", "score": "0.0", "text": "public Nodo getLeft() {\r\n\t\treturn left;\r\n\t}", "title": "" } ]
[ { "docid": "7cab2c9941f3b2c94cb75107b7fb4bb3", "score": "0.6802451", "text": "Nodo() {\n this.anterior = null;\n this.elemento = null;\n this.siguiente = null;\n }", "title": "" }, { "docid": "28e9148aba0b6ebeb04bb859944fbdc0", "score": "0.6534923"...
fcfa56d01f79096263279ec62b95f51c
Configuration setting which enables/disables autofailover in cluster. .google.protobuf.BoolValue autofailover = 6;
[ { "docid": "5070f45f38108a2186a8d7b319d429b0", "score": "0.6959295", "text": "boolean hasAutofailover();", "title": "" } ]
[ { "docid": "c3e278cd4fe2a37231da10fcd3bd332c", "score": "0.791511", "text": "com.google.protobuf.BoolValue getAutofailover();", "title": "" }, { "docid": "8ae8b133da198acde1fae87fcba07a7a", "score": "0.74910676", "text": "com.google.protobuf.BoolValueOrBuilder getAutofailoverOrBuilde...
177ceed9ccce94be17126f1252817d03
adds an event to the entry list
[ { "docid": "3cd1aec87b6620552d2c7e5cddb93cf1", "score": "0.7391768", "text": "public void addEntry(Entries e) {\r\n entries.add(e);\r\n }", "title": "" } ]
[ { "docid": "3a12ad754e7a62f483b039bddd0ca162", "score": "0.76783115", "text": "void addNewEvent(Event event);", "title": "" }, { "docid": "e1c62ba73281e1bd9efd60dc615c21cf", "score": "0.75819415", "text": "public void add(Event e) {\n events.add(e);\n }", "title": "" ...
cd8086edee1f92a1887b35d2e4b515b8
Gets the batch debut ts.
[ { "docid": "c954f71092ab798e22618e99e80aa4b4", "score": "0.7775747", "text": "public Date getBatchDebutTs() {\n return this.batchDebutTs;\n }", "title": "" } ]
[ { "docid": "3580eb9513b524f013e27a3681e62294", "score": "0.75596285", "text": "public Date getBatchDemandeTs() {\n return this.batchDemandeTs;\n }", "title": "" }, { "docid": "3887b77dae1a3ee042997354f43cda36", "score": "0.7286011", "text": "public String getBatchDebutTsSt...
93bea44169f34e4b2417cfa6deb929db
Tests if the caret is placed inside a new paragraph after pressing Enter inside a text node that is a descendant of body with only inline parents.
[ { "docid": "f59b020338555d739899059dee516035", "score": "0.6757609", "text": "private void doTestEnterInBodyWithStyledText()\n {\n rta.setHTML(\"<strong>xwiki</strong>enterprise\");\n\n // Place the caret at the end of the first heading.\n Range range = rta.getDocument().createRa...
[ { "docid": "d77986e228feddd188ed37bf61d1e24e", "score": "0.71306187", "text": "private void doTestEnterInBodyWithPlainText()\n {\n rta.setHTML(\"amazing!\");\n\n // Place the caret at the end of the first heading.\n Range range = rta.getDocument().createRange();\n range.se...
89b1e085ab3ada1d826f5e2fbde54811
<< define INAUFPTProductionOrderAt(%obj) $piece(%obj,"~",51)
[ { "docid": "70aa05e5ee8aa9420a794ad03cf83bc1", "score": "0.72963285", "text": "public static Object $$$INAUFPTProductionOrderAt(mContext m$, Object ... _p) {\n mVar p$obj = m$.varRef(\"p$obj\",(((_p!=null)&&(_p.length>=1))?_p[0]:null));\n return (m$.Fnc.$piece(p$obj.get(),\"~\",51));\n }", "t...
[ { "docid": "a71067c84eede3a82ce28c324e79ea89", "score": "0.7212033", "text": "public static Object $$$FldINAUFPTProductionOrderAt(mContext m$) {\n return (51);\n }", "title": "" }, { "docid": "c45c55b1152168d875521afac831c71b", "score": "0.71419615", "text": "public static Object...
a8fd70212e892a6bb94326157d6a22d6
Returns the sudoku grid from the view
[ { "docid": "764e6b8c484058239a673058fd9760da", "score": "0.590911", "text": "public JTextField[][] getNumberGrid() {\n return grid.getGrid();\n }", "title": "" } ]
[ { "docid": "d73dc953949553ff76360b3e345c26bd", "score": "0.63584274", "text": "@Override\n public int[][] getGrid()\n {\n return gameParser.getGrid();\n }", "title": "" }, { "docid": "111a10e21951baf346c64ea60c6f42ef", "score": "0.63083875", "text": "private void getGrid() {\n ...
9f4d996b42a565be6fb0333fe9dd8792
Initializes the store inventory. This method adds all the items given to the store inventory.
[ { "docid": "61821b7da99612d356580688d60cf6b4", "score": "0.0", "text": "public void load ( BookInventoryInfo[] inventory )\n {\n BookInventoryInfo[] temp = new BookInventoryInfo[inventory.length + bookInventoryInfo.length];\n for ( int i = 0 ; i < bookInventoryInfo.length ; i++ )\n ...
[ { "docid": "61d151fa6f674ec3f90fab2fce28b79b", "score": "0.7786981", "text": "private void initialize(){\n numItems = 0;\n //Insert items into the vending machine\n //Inserting coke item, worth $1.25 with 20 in stock\n inventory.put(new item (\"coke\", 125), 20);\n //I...
48e26880ff32a15e07c91ee396c5d59b
this method only reverses the number.
[ { "docid": "8fa95b8a85968c0c8849267bb62945a5", "score": "0.57388085", "text": "public static int reverseNumber(int primeNumber){ \n\t //converting the number into String.\n\t String reverseSinglePime = Integer.toString(primeNumber); \n\t //reversing the string using reverse method of StringBuffe...
[ { "docid": "fd899ad4730b9ba5217a385f59c3d247", "score": "0.75221527", "text": "static void reverseNum(int number) {\n\t\tint origNum=number, reverseNum=0;\n\t\twhile(number!=0) {\n\t\t\treverseNum=(reverseNum*10)+number%10;\n\t\t\tnumber=number/10;\n\t\t}\n\t\tSystem.out.println(\"Number \"+origNum+\" a...
fb0afe36292ff0fcdf874e16d121c172
End of variables declaration//GENEND:variables
[ { "docid": "18bfc19eb18235f854c3c65abb942fa4", "score": "0.0", "text": "void setUserId(String string) {\n this.theUserID = Integer.parseInt(string);\n }", "title": "" } ]
[ { "docid": "b941b399a338e8c204f1063e54a94824", "score": "0.6544804", "text": "public void mo7103g() {\n }", "title": "" }, { "docid": "ccbad2fe39581989696edf7ff479266d", "score": "0.6517313", "text": "private static void somrtinhg() {\n\t\t\r\n\t}", "title": "" }, { ...
396aa688774467f51073d07ea92c60e7
This adds a property descriptor for the Create Date feature.
[ { "docid": "26cca89fa64010ea24c3f4c8b63348ae", "score": "0.7766586", "text": "protected void addCreateDatePropertyDescriptor(Object object) {\n\t\titemPropertyDescriptors.add\n\t\t\t(createItemPropertyDescriptor\n\t\t\t\t(((ComposeableAdapterFactory)adapterFactory).getRootAdapterFactory(),\n\t\t\t\t get...
[ { "docid": "f6796887990653587da40a25a4854b7e", "score": "0.7081087", "text": "public void setCreateDate(Date createDate);", "title": "" }, { "docid": "f6796887990653587da40a25a4854b7e", "score": "0.7081087", "text": "public void setCreateDate(Date createDate);", "title": "" }, ...
b34ed31fdb5ad70af33b5ac8ca121c38
Gets a HealthMapSubDisease by ID.
[ { "docid": "fd7d4847588eff0ba3ee4f6064085511", "score": "0.8882308", "text": "HealthMapSubDisease getById(Integer id);", "title": "" } ]
[ { "docid": "4d364164b0641e3b3cfefa36187a7d55", "score": "0.56762826", "text": "public SubMenu getSubmenuById(String submenuId){\n for(MenuSubMenu menuSubMenu : this.getSubMenus()){\n if(menuSubMenu.getSubmenu().getId().equals(submenuId)){\n return menuSubMenu.getSubmenu(...
a34cb8d461dfd3ae974a5a40912d76bc
System.out.println(new App().getGreeting()); BinarySearchTree test = new BinarySearchTree(5); test.root.leftChild = new Node(3); test.root.rightChild = new Node(6); test.root.leftChild.leftChild = new Node(2); test.root.leftChild.rightChild = new Node(4); test.add(1); System.out.println(test.contains(3,test.root)); Sys...
[ { "docid": "3409a4befc0c25ff94223d827d7a599f", "score": "0.60450095", "text": "public static void main(String[] args) {\n\n\n BinaryTree<Integer> tree1 = new BinaryTree<>(150);\n tree1.root.rightChild = new Node<>(250);\n tree1.root.leftChild = new Node<>(100) ;\n tree1.root....
[ { "docid": "9d4b60384f64c87f2fc490317d66823d", "score": "0.7453204", "text": "public static void main(String[] args) {\n\t\t\n\t\tNode root = new Node(25);\n\t\troot.insert(20);\n\t\troot.insert(15);\n\t\troot.insert(27);\n\t\troot.insert(30);\n\t\troot.insert(29);\n\t\troot.insert(26);\n\t\troot.insert...
a7174882a3b17755afab09d4fcfc64c0
Returns the relative target section after the situation
[ { "docid": "f36a7175c8c14611c92f01cdd4b7fd1c", "score": "0.69584405", "text": "public int getTargetSection() {\n return targetSection;\n }", "title": "" } ]
[ { "docid": "9ad761a26a250802b2f5ed864b4c5176", "score": "0.6133738", "text": "Anchor getTargetAnchor();", "title": "" }, { "docid": "e7510cb7c686dc12dd6849e73c877ad8", "score": "0.60853076", "text": "String getTarget();", "title": "" }, { "docid": "e7510cb7c686dc12dd6849e...
89866d38dc2fc516c498fdb15b1fc28c
Write a description of class Rover here.
[ { "docid": "549019b0e263364fc5b8872412eeec6e", "score": "0.0", "text": "public void transmitPictures(){\r\n System.out.println(name + \" has sent all pictures back to earth.\");\r\n this.pics = 0;\r\n System.out.println(name + \" has taken \" + pics + \" picture since last transmit....
[ { "docid": "744427661930a70f27a9d3132b9e5400", "score": "0.62314165", "text": "public Dot getRover(){\n return new Dot(roverLocation);\n }", "title": "" }, { "docid": "755135ca249a3ed6ec358c9fb1bcc7f2", "score": "0.6107734", "text": "public static void main(String[] args) {...
518bf5364cda3c6202a1a392996f93d1
Inflate the menu; this adds items to the action bar if it is present.
[ { "docid": "bdfbacdc1dedad3f36bab247817f461d", "score": "0.0", "text": "@Override\n public boolean onCreateOptionsMenu(Menu menu) {\n MenuInflater inflater = getMenuInflater();\n inflater.inflate(R.menu.menu_main, menu);\n return super.onCreateOptionsMenu(menu);\n /*getMen...
[ { "docid": "b470b12158e9a37414c1897a8fc7b04e", "score": "0.71330893", "text": "@Override\n\tpublic boolean onCreateOptionsMenu(Menu menu) {\n\t\tMenuInflater mif = getMenuInflater();\n\t\tmif.inflate(R.menu.main_activity_action, menu);\n\t\treturn super.onCreateOptionsMenu(menu);\n\t}", "title": "" ...
00264d0a9966073b38f997ca90a07c9c
/ This is where we retrieve our message data from the stream. You don't need to invoke this method yourself, it's done automatically.
[ { "docid": "d90d5a9e511d344a74a8333f3710b40d", "score": "0.0", "text": "@Override\n public void decode(DataInputStream istream) throws IOException {\n\n // Wotlas Location\n this.location = new WotlasLocation();\n\n this.location.setWorldMapID(istream.readInt());\n this.lo...
[ { "docid": "741615dbc04516b3eac517b6b9ff83df", "score": "0.68060565", "text": "private Object readObject() {\r\n\t\tObject msg;\r\n\t\t\r\n\t\ttry {\r\n\t\t\t// read object\r\n\t\t\tmsg = inputStream.readObject();\r\n\t\t\tMainWindow.log(new LogMessage(LEVEL.INFORMATION, \"Received message of type: \" +...
77762c40122543ae36470f9c90a56f84
Deletes a user account from Amazon Connect.
[ { "docid": "683ece3fd5666b24bc7b73e5e687b0f4", "score": "0.6748714", "text": "@Override\n public DeleteUserResult deleteUser(DeleteUserRequest request) {\n request = beforeClientExecution(request);\n return executeDeleteUser(request);\n }", "title": "" } ]
[ { "docid": "212eebf80519d6294a3419f3cc69f3da", "score": "0.7703412", "text": "public void deleteUser() {\n int trans_estate = KO;\n try {\n dOut.writeUTF(DELETE_ACCOUNT);\n\n trans_estate = dIn.readInt();\n controller.networkDeleteAccountResult(trans_estate...
06f3962efe96c47dbe7f4ed6c2ff1b66
Tests the getAllPresets method. Also tests the getPresetAmount method.
[ { "docid": "b0005599aecca8015e9cd2e37f9ff558", "score": "0.77957934", "text": "@Test\n public void testGetAllPresets() {\n Camera cam = new Camera(new CameraSettings(1, 10, 10, 10));\n Preset p = new InstantPreset(new CameraSettings(65, 65, 65, 65), 1);\n Preset p2 = new InstantP...
[ { "docid": "465a925b998d8a7faf68bd15211408f3", "score": "0.6335517", "text": "@Test\n public void testAddPreset() {\n Camera cam = new Camera(new CameraSettings(1, 33, 7, 10));\n Preset p = new InstantPreset(new CameraSettings(65, 65, 65, 65), 1);\n cam.addPreset(p);\n ass...
d584f4cf6969eec6b6f8e9dde7229942
received your chat data successfully sent to the other end
[ { "docid": "646bdf8c65dcbfa58a307a87b9884c32", "score": "0.0", "text": "@Override\n public void onAcknowledgedSendData(JSONObject jsonObject) {\n }", "title": "" } ]
[ { "docid": "fa3af8dcdb3dfbe8878e8b7ace9ba5df", "score": "0.7341359", "text": "public void receiveMessage(){\n\t\tchatManager.addChatListener(new ChatManagerListener()\n\t\t{\n\t\t\tpublic void chatCreated(final Chat chat, final boolean createdLocally)\n\t\t\t{\n\t\t\t\tchat.addMessageListener(new Messag...
840414977c691bef4877768b23aa8e12
Creates a zip file containing the provided android resources and assets.
[ { "docid": "d7df03dd10688e2988cf7726b3d40aa1", "score": "0.6329773", "text": "public void writeTo(Path output, boolean compress) throws IOException {\n try (final ZipBuilder zip = ZipBuilder.createFor(output)) {\n if (resourcesRoot != null && Files.exists(resourcesRoot)) {\n ZipBuilderVis...
[ { "docid": "b90daaf8442f8e701e989514bbbffdf5", "score": "0.5941915", "text": "public static boolean copyAsset(Context context) {\n con = context;\n String apkPath = context.getPackageCodePath();\n Log.i(TAG, apkPath);\n dataPath = \"data/data/\" + context.getPackageName();\n ...
376ff62163664d357ff846abf301aa74
Get the list of all fragments in the fragment manager
[ { "docid": "25ea8ccae8a62503ae733037d0c5c09f", "score": "0.0", "text": "@Override\n public void onBackPressed() {\n List<Fragment> fragmentList = getSupportFragmentManager().getFragments();\n\n boolean onBackPressHandled = false;\n for(Fragment fragment : fragmentList) {\n ...
[ { "docid": "0bfe968c726c9563fc0f142672f6efe6", "score": "0.8061324", "text": "List<Fragment> getFragments() throws Exception;", "title": "" }, { "docid": "550c4c55f380d3ad6393a9a0ba991e9e", "score": "0.73794264", "text": "public List<C0198Fragment> getActiveFragments() {\n ret...
dc23d3f66cb26d630174bec2d7209cbf
Returns the reverse of the input string.
[ { "docid": "cdaf692ba442919399725e0d4d8a7460", "score": "0.8249257", "text": "public String reverse(String input) {\n \treturn new String(reverse(input.getBytes()));\n }", "title": "" } ]
[ { "docid": "b839b47f48ce7730db04551b9ddf298d", "score": "0.8232196", "text": "public String reverse(String input) {\r\n\t\tStringBuffer buf = new StringBuffer(input);\r\n\t\treturn buf.reverse().toString();\r\n\t}", "title": "" }, { "docid": "2e80cbe552bf8c1ba4e9e69a9bdd75f3", "score": "...
eaf69d8f94146d639135a500e27d5c45
Instantiate new Google Analytics tracker without id. Universal tracker is created by default. AnonymizeIP is set by default.
[ { "docid": "13121bfaa4fe3e3f233d74d7fb5b9a95", "score": "0.7198977", "text": "public AnonymizedGoogleAnalyticsTracker() {\r\n\t\tsuper();\r\n\t}", "title": "" } ]
[ { "docid": "cd143f30d19d7de00eec1362f8cdcbe1", "score": "0.6588688", "text": "public AnonymizedGoogleAnalyticsTracker(String trackerId) {\r\n\t\tsuper(trackerId);\r\n\t\toptOut = existsOptOutCookie();\r\n\t}", "title": "" }, { "docid": "e75201072f685b2a69a7e04ccdfccd20", "score": "0.6271...
eae63ea3dbf1c0fa70aee4e9f20ad8ca
Hides the flashing "E" indicator above the entity
[ { "docid": "caebf40e4f31aa30b0fd56af25b905ec", "score": "0.6132154", "text": "public void hideInderactIndicator() {\n if (interactIndicator != null) {\n interactIndicator.remove();\n interactIndicator = null;\n }\n }", "title": "" } ]
[ { "docid": "172cd1d77465aedd9519f61ef5316486", "score": "0.71133876", "text": "public void hide(){\n background.setOpacity(0);\n text.setOpacity(0);\n }", "title": "" }, { "docid": "f6c180ef6098d1a84d91bf25527331ca", "score": "0.6780057", "text": "public void hide() {\n ...
44be8cef4ecaa58a96dc626540347e05
end size() / precond: DLLDeque is created postcond: returns true if value is in DLLDeque, false otherwise.
[ { "docid": "59d21d857d5086e56459b7d9f9dec5f2", "score": "0.63824445", "text": "public boolean contains(T value) {//O(n)\n\tDLLNode<T> tmp = _first;\n\tint counter = _size;\n\twhile ( counter > 0 ) {\n\t if (tmp.getCargo().equals(value)) {return true;}\n\t tmp = tmp.getNext();\n\t counter --;\n\...
[ { "docid": "9e16db48bafd4de80f7ddd6bd407ec1c", "score": "0.64130384", "text": "public boolean isFull() {\n return deque.size() >= size;\n }", "title": "" }, { "docid": "303fe46ae6a150ddac7f43ca37fdffab", "score": "0.62477165", "text": "@Override\n public boolean contains...
f68cfd60053050e310bc4389b5d051ec
Compile a file from an open input stream
[ { "docid": "b92f4d888b12e269ce15f002beb1bdd3", "score": "0.0", "text": "public void loadSchema(String path, FileReader reader)\n throws VoltCompiler.VoltCompilerException {\n \n DDLStatement stmt = getNextStatement(reader, m_compiler);\n while (stmt != null) {\n /...
[ { "docid": "ef2ca0bd06602f38b259ef0ecb318ea5", "score": "0.5879579", "text": "FileInput(File source) throws IOException {\n outputBuffer = new StringBuffer();\n buffer = new char[BUFF_SIZE];\n is = new FileInputStream(source);\n try {\n rea...
4823bf4f5f054da63dd2f2563b8a0834
Returns the result of interpreting the object as an instance of 'Iterator Over No Collection Type'. This implementation returns null; returning a nonnull result will terminate the switch.
[ { "docid": "77325e63678697954460cbe6f4b15d0d", "score": "0.7824167", "text": "public T caseIteratorOverNoCollectionType(IteratorOverNoCollectionType object) {\n\t\treturn null;\n\t}", "title": "" } ]
[ { "docid": "f693197a441a5a0d831e76e1c7e96b9b", "score": "0.6635695", "text": "public T caseIteratorOverEmptySequence(IteratorOverEmptySequence object) {\n\t\treturn null;\n\t}", "title": "" }, { "docid": "1b271eb3e44a41b1a9c26b6637e69769", "score": "0.6534685", "text": "@Override\r\n...
a6a4d8716ad9146adfe0f0199dba41d1
Check whether this primitive contains a Number.
[ { "docid": "81420761cc3aabe0d6dec59d9659ff29", "score": "0.7462287", "text": "public boolean isNumber() {\n return value instanceof Number;\n }", "title": "" } ]
[ { "docid": "af482ac65f399a59d28859aa34cebd77", "score": "0.7740506", "text": "boolean hasNumber();", "title": "" }, { "docid": "af482ac65f399a59d28859aa34cebd77", "score": "0.7740506", "text": "boolean hasNumber();", "title": "" }, { "docid": "af482ac65f399a59d28859aa34ce...
7cb17be1d8fd07b6ef389e430b0415a3
Author: xialiangbo Date: 2017/8/21 21:16 Description:
[ { "docid": "6bdff93297cd070d89164c6af6eacc62", "score": "0.0", "text": "public interface UserService {\n\n /**\n * 保存用户\n * @param user\n * @return\n */\n User saveUser(User user);\n\n /**\n * 删除用户\n * @param id\n * @return\n */\n void removeUser(Long id);\n\n...
[ { "docid": "cdf542363f5b089e84183e3d9020935f", "score": "0.6338458", "text": "@Override\n\t protected void ramana() {\n\t\t\n\t}", "title": "" }, { "docid": "f0705d77863f0fa7c516a99a8eca8134", "score": "0.62777454", "text": "private void zbudujSciezkeiRozpocznij() {\n\t\t\r\n\t}", ...
0976c2a34f6dc397e9235799a9adc188
Created by jolvera on 6/05/16.
[ { "docid": "01eb1c3042256c42c27487dda8cc520b", "score": "0.0", "text": "public interface ProvidersContactDao extends InterfaceDao<ProvidersContact>{\n Long countContacts(Providers provider);\n List<ProvidersContact> findByProvider (Providers p);\n ProvidersContact findByIdProvider(Integer idPro...
[ { "docid": "40be4915804d3229e08fed067ec03fd6", "score": "0.6279467", "text": "Bug_616419() {\r\n\t}", "title": "" }, { "docid": "4d9e164e4e911df1380f4618e0fe7a08", "score": "0.61723375", "text": "OI (){\n\t\t\n\t}", "title": "" }, { "docid": "582acaef2e3110454651d58f22c1b...
5d041b6ff1a4236a74d58ed00d1d2e76
string receiverAddress = 8;
[ { "docid": "e34642152b4ffcdf0d508689c595c35d", "score": "0.58379054", "text": "public com.google.protobuf.ByteString\n getReceiverAddressBytes() {\n java.lang.Object ref = receiverAddress_;\n if (ref instanceof String) {\n com.google.protobuf.ByteString b = \n ...
[ { "docid": "6cfe5b24385058b8d7edf8929ce335c9", "score": "0.76323646", "text": "java.lang.String getReceiverAddress();", "title": "" }, { "docid": "0790456e41ed602d4bf17258fea5dc70", "score": "0.7242563", "text": "public String getAddress_receiver() {\n return address_receiver;...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "2a20121450329e45ec5f82e92e06a7db", "score": "0.0", "text": "public static void main(String[] args) {\n\t\t\n\t\tConta conta = new Conta(1214,2336);\n\t\t\n // O encapsulamento ajuda a validar na propria classe auxilia\n\t\t//na parte de manipular as informações.\n\t\t // conta.setNumero(13...
[ { "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...
263dcb9838302d75cdd3db372cfbdb5b
Inflate the layout for this fragment
[ { "docid": "018f97ee3a46b2776ceb93c8bb3890ea", "score": "0.0", "text": "@Override\n public View onCreateView(LayoutInflater inflater, ViewGroup container,\n Bundle savedInstanceState) {\n view = inflater.inflate(R.layout.fragment_, container, false);\n recycl...
[ { "docid": "8bb7e3993bde01b4555bbb3cffff8569", "score": "0.7403527", "text": "protected void onInflateView() {\n }", "title": "" }, { "docid": "afe95b32eaf36044ffac0c621528e0ae", "score": "0.68513155", "text": "@Override\n public View onCreateView(LayoutInflater inflater, ViewG...
b7e69a74f66a6f09b8cfb661a4196cda
compare the description of two choices; determine if they are the same
[ { "docid": "9f3ac5ea23ba7ad34feb1959329da773", "score": "0.65818757", "text": "public boolean equals(Choice choice) {\n\t\t// the choices are the same if the descriptions of the choices are the same\n\t\tif (this.getChoiceDescription().equals(choice.getChoiceDescription()))\n\t\t\treturn true;\n\t\tretu...
[ { "docid": "49aa2f654033ea312cd0ea4c547a70f9", "score": "0.70126164", "text": "@Test\n public void testEqualsWithDifferentLabel() {\n final String value=dirValue;\n final Choice choice1=new Choice(\"This is a label\", value);\n final Choice choice2=new Choice(\"A different label\...
cade7535dd5cb240ef850d16c9437eee
/ JADX ERROR: Method load error jadx.core.utils.exceptions.DecodeException: Load method exception: bogus opcode: 00e3 in method: com.android.internal.widget.PointerLocationView.PointerState.get6(com.android.internal.widget.PointerLocationView$PointerState):float, dex: at jadx.core.dex.nodes.MethodNode.load(MethodNode.j...
[ { "docid": "a7e4daa0e05f422593ee6a64d81b08c7", "score": "0.6893378", "text": "static /* synthetic */ float m689-get6(com.android.internal.widget.PointerLocationView.PointerState r1) {\n /*\n // Can't load method instructions: Load method exception: bogus opcode: 00e3 in method: com...
[ { "docid": "39b11bdcf904f8e18666ce0b7bc9adde", "score": "0.7640404", "text": "public final void mo6837a() {\n /* JADX: method processing error */\n/*\nError: java.lang.NullPointerException\n\tat jadx.core.dex.visitors.regions.ProcessTryCatchRegions.searchTryCatchDominators(ProcessTryCatchRegions....
eba03ae0404328323f5a3e2d6d484512
Perform cleanup once after all tests are turn.
[ { "docid": "1127c0f0647dd7b927e06958ca96893f", "score": "0.7208138", "text": "@AfterClass\n public static void afterAllTests()\n throws IOException {\n if (ghfs != null) {\n GoogleCloudStorageFileSystemIntegrationTest.afterAllTests();\n ghfs.close();\n ghfs = null;\n ghfsFil...
[ { "docid": "a50c4d8993ff674026f7b27575263c67", "score": "0.8359199", "text": "@After\n\tpublic void testEachCleanup() {\n\t\tSystem.out.println(\"Test Completed!\");\n\t\tSystem.out.println(\"_________________________________________________________\");\n\t}", "title": "" }, { "docid": "536c...
a89e24f928000a8a4b1f9497a5f57438
Add entities to the world
[ { "docid": "20795c42684df2acaebb30f2d61b6c23", "score": "0.6707098", "text": "@Override\n public void start(GameData gameData, World world) {\n Entity enemy = createEnemyShip(gameData);\n world.addEntity(enemy);\n }", "title": "" } ]
[ { "docid": "0d2a577457bb564211f372a1fe5e1cb6", "score": "0.6876795", "text": "public void addEntity(Entity entity){\r\n entities.add(entity);\r\n }", "title": "" }, { "docid": "1ee03ac8b94d23445174705b530bfd6b", "score": "0.6851622", "text": "public void addEntity(Entity e)...
afecbbc47ad7e6b5997078507cb4ae18
read all method calls so that we can correlate with webpages
[ { "docid": "4689425202f5f8194569042d87fa39a4", "score": "0.0", "text": "public void visit(MethodDeclaration n, Void arg) {\n\t \tString methodId;\r\n\t \ttry {\r\n\t \t\tBlockStmt body = n.getBody().get();\r\n\t \t\t\r\n\t \t\tmethodId = ((ClassOrInterfaceDeclaration)(n.getParentNode().ge...
[ { "docid": "b2d1de001a2b077b402dc53b3fd882eb", "score": "0.6089209", "text": "private int readMethod(ClassVisitor classVisitor, Context context, int u) {\n/* 847 */ char[] c = context.buffer;\n/* 848 */ context.access = readUnsignedShort(u);\n/* 849 */ context.name = readUTF8(u + 2, c);\n...
6ca74ba2e1a818c1ea879b1c3b2e1447
Recupera o valor das competencias de um aluno.
[ { "docid": "469e5f1613f93e3eb8e797ac3e6b5e56", "score": "0.0", "text": "@Query(value=\"SELECT view.total FROM skill LEFT JOIN radar_result_view view ON skill.ski_type = view.skill_type \"\n\t\t\t+ \"WHERE view.user_id = ?1 OR view.user_id IS NULL ORDER BY skill.ski_id;\", nativeQuery = true)\n\tpublic L...
[ { "docid": "541b999e4bd4c161808e39c047332005", "score": "0.65213495", "text": "public java.lang.String getComentarios()\r\n {\r\n return this.comentarios;\r\n }", "title": "" }, { "docid": "5d50ba62b135d4a61d0eb9e79f570acf", "score": "0.6314522", "text": "public String g...
2fbd305849d7199c72d1234677b8c5dd
Toast.makeText(context, "Tab Listeneer" + getTabDetails(tabId, false), Toast.LENGTH_SHORT).show();
[ { "docid": "b8df73e0f13f69b779e4cefd65ba16af", "score": "0.0", "text": "@Override\n public void onTabSelected(@IdRes int tabId) {\n\n Fragment fragment = null;\n\n String title = getString(R.string.app_name);\n\n if (tabId == R.id.tab_home) {\n\n ...
[ { "docid": "3d02296e072390b9fc56ac972ff4a86d", "score": "0.6728125", "text": "@Override\n public void onClick(View view) {\n Toast.makeText(getActivity(),\"Display description\", Toast.LENGTH_SHORT).show();\n }", "title": "" }, { "docid": "0c6d7ff55691266...
8dfa020a981d8432d974f59fb3c50c19
Gets table data from the specified sheet in the form of an ArrayList of HashMaps.
[ { "docid": "435ee57c32c1ea57f3a3e0721b75cd8d", "score": "0.80586", "text": "public static ArrayList<HashMap<String, Object>> getData(int sheet)\n throws IOException, ServiceException {\n ArrayList<HashMap<String, Object>> dataSet = new ArrayList();\n URL url;\n switch (sh...
[ { "docid": "e44f170dd3db469d374a3d0501ab17b4", "score": "0.72035605", "text": "public List<List<String>> getSheetDataList(Sheet sheet) {\n\t\tList<List<String>> ret = new ArrayList<List<String>>();\n\n\t\t// Get the first and last sheet row number.\n\t\tint firstRowNum = sheet.getFirstRowNum();\n\t\tint...
877a174920d2314646cb3fdc5353013d
void setCdProfAssmtApptRsn(java.lang.String) Sets the value of field 'dtProfAssmtAppt'.
[ { "docid": "4b29d58257d9475b71db60d702741766", "score": "0.7296961", "text": "public void setDtProfAssmtAppt(org.exolab.castor.types.Date dtProfAssmtAppt)\r\n {\r\n this._dtProfAssmtAppt = dtProfAssmtAppt;\r\n }", "title": "" } ]
[ { "docid": "65b36bfa3f51b8ceecd1cf65ea9094b3", "score": "0.8880117", "text": "public void setCdProfAssmtApptRsn(java.lang.String cdProfAssmtApptRsn)\r\n {\r\n this._cdProfAssmtApptRsn = cdProfAssmtApptRsn;\r\n }", "title": "" }, { "docid": "0b03d02f25094b1cca16b5d707811b33", ...
b2520bcd995a4c0ac8614af726cd82d9
Gets the line cd.
[ { "docid": "ec403cb74524b235fa2646d743a4c1ee", "score": "0.74711484", "text": "public String getLineCd() {\n\t\treturn lineCd;\n\t}", "title": "" } ]
[ { "docid": "92388a3a1721d6b87f9ae5011ba5dbc6", "score": "0.662882", "text": "public java.lang.String getTip_cli_cd();", "title": "" }, { "docid": "9c82f7b4b535b0820df6b14c584e3fd0", "score": "0.6248929", "text": "String getPy_cd();", "title": "" }, { "docid": "c6a9ab5a1da...
dfb0782de97e4e6ef2fd773b5a96d0bd
Created by pinnal on 19/01/2018.
[ { "docid": "341ecb3242cb16fa3e90b4c73ff92b5b", "score": "0.0", "text": "public interface OnImageDownloadListener {\n public void onDownloadComplete(String downloadedContent);\n\n public void onDownloadError(String error);\n}", "title": "" } ]
[ { "docid": "f777356e2cd2fecd871f35f7e556fda8", "score": "0.63818103", "text": "public void mo3640e() {\n }", "title": "" }, { "docid": "33d41636b65afa8267c9085dae3d1a2d", "score": "0.61405855", "text": "private void apparence() {\r\n\r\n\t}", "title": "" }, { "doci...
723af88ae7d29daac8736b02613b22e0
List of all Wards for the given Facility
[ { "docid": "8ec0e00a13b95e966e8bba50a9952aa2", "score": "0.6904192", "text": "public List<Ward> getAllWardsByFacility(\n\t\t\tfinal com.oreon.cerebrum.facility.Facility facility) {\n\t\tsetMaxResults(ABSOLUTE_MAX_RECORDS);\n\t\tward.setFacility(facility);\n\t\treturn getResultListTable();\n\t}", "ti...
[ { "docid": "ed7352b060732b95f51c933c7a2c475c", "score": "0.593687", "text": "public void showFacilities() {\r\n\t\tfor(Facility f: facilities.values()) {\r\n\t\t\tSystem.out.println(f.toString());\r\n\t\t}\r\n\t}", "title": "" }, { "docid": "2a45c20459a475933d2cc9f5b86c4f40", "score": "0...
745643ffa08da8ec6764e862789b4ffb
Test of getItem method, of class VendingMachineDAO.
[ { "docid": "73c02626fb12a53afdec46538ee3ddd2", "score": "0.69754016", "text": "@Test\n public void testGetItem() throws Exception {\n Item itemA1 = dao.getItem(\"A1\");\n assertNotNull(itemA1);\n List<Item> itemList = dao.getAllItems();\n Item currentItem = null;\n ...
[ { "docid": "a9593e8769e3cc1729d7023e55a49658", "score": "0.7078051", "text": "@Test\n\tpublic void getItemTest() {\n\t\ttestStock.addItem(testItem1);\n\t\ttestStock.AddQuantity(testItem1, 1);\n\t\ttestStock.addItem(testItem2);\n\t\ttestStock.AddQuantity(testItem2, 1);\n\t\t\n\t\tstore.SetStock(testStock...
e973c8651764cdffd257c63563217963
Run the FreeColClient(InputStream,String,float,boolean) constructor test.
[ { "docid": "e921f55e13878e5663fba8e6335de984", "score": "0.63267183", "text": "@Test\r\n\tpublic void testFreeColClient_15()\r\n\t\tthrows Exception {\r\n\t\tInputStream splashStream = new PipedInputStream();\r\n\t\tString fontName = \"\";\r\n\t\tfloat scale = 1.0f;\r\n\t\tboolean headless = true;\r\n\r...
[ { "docid": "1d3779ee78a41df32107c5ca7bf66971", "score": "0.68022776", "text": "@Test\r\n\tpublic void testFreeColClient_1()\r\n\t\tthrows Exception {\r\n\t\tboolean thrown = false;\r\n\t\ttry{\r\n\t\tInputStream splashStream = new PipedInputStream();\r\n\t\tString fontName = \"\";\r\n\r\n\t\tFreeColCli...
6e4a7318e61437830586e96cb2a6f27d
Determine if this JavaImplementation has the given mainClass
[ { "docid": "f796b02eb409957a89b11413eb849eb9", "score": "0.866043", "text": "public boolean hasMainClass(IJavaClassFile mainClassToCheck);", "title": "" } ]
[ { "docid": "6c9029f5cfb608b4299beccfa052d20a", "score": "0.73712736", "text": "public static boolean isMainClass(ClassNode cn) {\n return cn.methods.stream()\n .filter(m -> m.name.equalsIgnoreCase(\"main\")).findFirst().map(m -> {\n //logger.info(\"found main candidate, ...
daccaaaf038834362d7c1357e3619c0d
Return the current URL index in a threadsafe manner.
[ { "docid": "5c3be00e10415375bb6132972b074f96", "score": "0.84225845", "text": "private int getCurrentUrlIndex() {\n synchronized (urlLock) {\n return this.currentUrlIndex;\n }\n }", "title": "" } ]
[ { "docid": "57bb077e491ddd88b865659d0d025977", "score": "0.6902374", "text": "int getCurrentPageIndex();", "title": "" }, { "docid": "dfdd0994f4eb09466e00489880f809a8", "score": "0.67700315", "text": "int getCurrentIndex();", "title": "" }, { "docid": "61e83c08b555f1543b4...
85ecea745982e3eb75076c867e72893c
Returns the data at the rightmost end of the tree.
[ { "docid": "e45e629eaa68e6dc0197cce6f69aa748", "score": "0.7662849", "text": "public T getRightMostData();", "title": "" } ]
[ { "docid": "7467975ee6bec28e2eec5d04e4a96254", "score": "0.7304714", "text": "protected int rightMost() {\n if (right == null) {\n // no more right children\n return value;\n } else {\n return right.rightMost();\n }\n }", "title": "" }, { ...
3e90f11e38a98f6155dc27c7e107365c
euclidean distance matrix (ported from
[ { "docid": "8df2e32d7161624c82b3911b90b89ace", "score": "0.64958733", "text": "public static double[][] distanceMatrix(double[][] a) {\n int n = a.length;\n int m = a[0].length;\n \n double[][] d = new double[n][n];\n \n int i, j, col;\n double diff;\n ...
[ { "docid": "83904850962f81ea5abbf454af9a6ccd", "score": "0.8053594", "text": "public EucledianSymmetricMatrix generateEuclideanDistanceMatrix() {\n EucledianSymmetricMatrix distanceMatrix = new EucledianSymmetricMatrix(numRows);\n for (int x = 0; x < numRows; x++) {\n for (int y...
36f98761c6f211538d105edb04f6996e
This method was generated by MyBatis Generator. This method returns the value of the database column activity_task_user.activity_id
[ { "docid": "d86f5a712c756253e14943f0d810ee3d", "score": "0.68319654", "text": "public Integer getActivityId() {\n return activityId;\n }", "title": "" } ]
[ { "docid": "8a7961820b40193b2db8590e88417b7e", "score": "0.704089", "text": "public String activityId() {\n return this.activityId;\n }", "title": "" }, { "docid": "5f04161fa3bcc0f7ed42ef47adafcd3e", "score": "0.6340827", "text": "public String getActivityId() {\n\t\treturn...
518bf5364cda3c6202a1a392996f93d1
Inflate the menu; this adds items to the action bar if it is present.
[ { "docid": "40f00a16a9ce5587e54e769f265e7cd6", "score": "0.0", "text": "@Override\n\tpublic boolean onCreateOptionsMenu(Menu menu) {\n\t\tgetMenuInflater().inflate(R.menu.command, menu);\n\t\treturn true;\n\t}", "title": "" } ]
[ { "docid": "733ed274ccd37b1430acd3149250d7f2", "score": "0.7213824", "text": "protected abstract void createActionBarMenu(Menu menu);", "title": "" }, { "docid": "d74efebd6fe79f46209a7e8cb2c52d89", "score": "0.718685", "text": "@Override\n\tpublic boolean onCreateOptionsMenu(Menu men...
d42da54f1205c46173b2207c1fac2c85
Get an instance of the ReaderFactory.
[ { "docid": "9befbde4d44b3a84a1ea041cfe4584ae", "score": "0.8167245", "text": "public synchronized static ReaderFactory instance() {\n\t\tif (instance == null)\n\t\t\tinstance = new ReaderFactory();\n\t\t\n\t\treturn instance;\n\t}", "title": "" } ]
[ { "docid": "17bb88096f8a93c31b8a3058e52235d0", "score": "0.69790035", "text": "public static Reader getInstance() {\r\n if (instance == null) {\r\n synchronized (DataBase.class) {\r\n if (instance == null) {\r\n instance = new Reader();\r\n ...
34da2b4ee32ced8ddb3ee52c67430ec4
Creates a new option set with default values
[ { "docid": "e67e92f0d4407feb87d63aaf15c68ff0", "score": "0.5927555", "text": "public OptionSet() {\r\n this.classPath = new String[0];\r\n this.libraryPath = new String[0];\r\n this.isInterpreterSelected = false;\r\n this.interpreterName = \"\";\r\n ...
[ { "docid": "0152bc1f9cb78976808415ec526cbeed", "score": "0.7526056", "text": "public OptSet ()\r\n {\r\n addDefaultOptions ();\r\n }", "title": "" }, { "docid": "602e495bea7ff223f4a3a90711290251", "score": "0.674512", "text": "public void initDefaultValues() {\n for (Op...
1f6be46ce0d98db97c6b593e7100c394
Get certain book by its Id (or null in case of failture)
[ { "docid": "b5a9f19ed5d359886c15854d1c226402", "score": "0.7592894", "text": "public Book getBook(int bookId)\n {\n Book result = null;\n \n try \n {\n getBook.setInt(1, bookId);\n ResultSet selectResults = getBook.executeQuery();\n while(s...
[ { "docid": "fdf6fd0ab1c1210dcf4d9d8ffafc57a8", "score": "0.82609856", "text": "public Book getBookById(int id) {\n\t\tBook book = null;\n\t\ttry {\n\t\t\t//Method I:\n\t\t\tbook = listBook.stream().filter(e->e.getId()==id).findFirst().get();\n\t\t\t//Method II:\n//\t\t\tfor(Book b: listBook) {\n//\t\t\t...
790ad7cd8bb108cd28883e1803db1407
Unpacks the compressed character translation table.
[ { "docid": "e148fc308fba9ff114a9c2a167649fc8", "score": "0.6115958", "text": "private static char [] zzUnpackCMap(String packed) {\n char [] map = new char[0x110000];\n int i = 0; /* index in packed string */\n int j = 0; /* index in unpacked array */\n while (i < 270) {\n int count...
[ { "docid": "3c35b58917259da8661f32294efbe2f0", "score": "0.6268001", "text": "private static int yy_unpack(String packed, int offset, int [] trans) {\n int i = 0; /* index in packed string */\n int j = offset; /* index in unpacked array */\n int l = packed.length();\n while (i < l) {...
ce96da44dced105e12e4b96c2b715f42
Reads item and decrypt the encrypted fields
[ { "docid": "d8a9fb50f1a6d22a102f0d0fdf17fa02", "score": "0.0", "text": "public <T> CosmosItemResponse<T> readItem(String id,\n PartitionKey partitionKey,\n CosmosItemRequestOptions requestOptions,\n ...
[ { "docid": "e9586608b461cd016f7dad22888d35d6", "score": "0.5906048", "text": "public void testDecrypt() {\n FileResource fr = new FileResource();\n String message = fr.asString();\n CaesarCipher cc = new CaesarCipher();\n // Encrypt first\n String encrypted = cc.encryp...
2f02b77d5eacd97538beaddabcda42e5
Unique device fingerprint for this analytics context. string fingerprint = 3 [(.gen_bq_schema.description) = "Unique device fingerprint for this analytics context."];
[ { "docid": "1f09c6411fa90e614107915c8b0841ef", "score": "0.7043931", "text": "public com.google.protobuf.ByteString\n getFingerprintBytes() {\n java.lang.Object ref = fingerprint_;\n if (ref instanceof String) {\n com.google.protobuf.ByteString b = \n com.goo...
[ { "docid": "8a7a87884fa3232a4f7cc528bd3374e8", "score": "0.7114073", "text": "public java.lang.String getFingerprint() {\n java.lang.Object ref = fingerprint_;\n if (!(ref instanceof java.lang.String)) {\n com.google.protobuf.ByteString bs =\n (com.google.protobuf.Byt...
a67aa0315587a99ceeaf40862c1d6f11
uses current status to determine next iteration
[ { "docid": "6d4618e0b73aeb80023baa5ba3f59999", "score": "0.0", "text": "public void tick(){\n\t\tsuper.tick();\n\t\tsetCollisionToImageSize();\n\t\tremoveIfOutSideScreen();\n\t\t//this.setCollisionToImageSize();\n\t}", "title": "" } ]
[ { "docid": "0c3f9a33eec93ba706ca12098e6cf36b", "score": "0.6249437", "text": "public void nextIteration() {\n\t\tmTicker.rescheduleTimedJob(this, mName, 0);\n\t}", "title": "" }, { "docid": "4b999e05544b372846dcf5f1b4f8d52f", "score": "0.62236434", "text": "private static void waitUn...
494c4b782a19afd59f81a65221a8548a
Allows a manager to view all requests
[ { "docid": "81da0ad153a42926ff877514a5497320", "score": "0.0", "text": "public ArrayList<Reimbursement> getAllRequests() throws SQLException;", "title": "" } ]
[ { "docid": "b641cdd92988dcb10375304e7f1669d5", "score": "0.671106", "text": "@Override\n\tpublic List<Request> viewAllRequest() {\n\t\treturn null;\n\t}", "title": "" }, { "docid": "728c8c280fdc18a97cc8e80f6888aaf0", "score": "0.65374094", "text": "public abstract List<Request> viewR...
659f48b5fc961e92ba56f5859e3649b4
Constructor para la clase MenuPrincipal
[ { "docid": "a24b23248168f22f0c7c53a23ea91063", "score": "0.0", "text": "MPrincipal(JFrame zoo, boolean isAdmin){\n\n\t\tJTabbedPane tabs = new JTabbedPane();\n\n\t\tif(isAdmin) {\n\t\t\tJPanel usuarios = new JPanel();\n\t\t\tgestionUsuarios = new GestionUsuarios();\n\t\t\tgestionUsuarios.setLocation(0, ...
[ { "docid": "b6c5fe9d82acf6193a63fc076c4ab753", "score": "0.8460504", "text": "public MenuPrincipal() {\n initComponents();\n }", "title": "" }, { "docid": "b6c5fe9d82acf6193a63fc076c4ab753", "score": "0.8460504", "text": "public MenuPrincipal() {\n initComponents();\...
cf426f99e3e2a06b40a274c9e6043ed2
Sets the size of the document (and all of its pages).
[ { "docid": "6c0c2f699d26fb6811f2a50d64809e79", "score": "0.7266468", "text": "public void setPageSize(double aWidth, double aHeight)\n {\n // Cache old value\n Object oldValue = getPageSize();\n\n // Set size of all doc pages\n for (int i = 0, iMax = getPageCount(); i < iM...
[ { "docid": "8c9f576e50144e6615e86a2c6eb9febc", "score": "0.68730825", "text": "public void setPageSize(int size) {\n this.pageSize = size;\n }", "title": "" }, { "docid": "139cc493d9c3cea18f7007519607051a", "score": "0.6821482", "text": "public void setSize(int size) {\r\n ...
8bff538a326e9f3ce6625b68a5664e67
Initialize the contents of the frame.
[ { "docid": "d3097735ee7b98d543eab6281afbbb2b", "score": "0.0", "text": "private void initialize() {\n\t\tframe = new JFrame(\"Mario's Revenge\");\n\t\tframe.getContentPane().setBackground(Color.BLACK);\n\t\tframe.setBackground(Color.BLACK);\n\t\tframe.getContentPane().setForeground(Color.BLACK);\n\t\tfr...
[ { "docid": "eec4e7f1b87ef8b4320509df7493a0d4", "score": "0.8125531", "text": "public _Frame() {\n\t\tsuper();\n\t\tinitialize();\n\t}", "title": "" }, { "docid": "16f9c8717055ca09a518ec91a86468d6", "score": "0.75012314", "text": "private void initialize() {\n frame = new JFram...
a40f96e85c228191d0b4e64d9973cf86
Tao thu muc theo ngay
[ { "docid": "e0a916313f2a8550573a368af5079c17", "score": "0.0", "text": "public static void convertPPTxToImage(String fileName) throws IOException {\n\t\tFile directory = new File(\"export/123\");\n\t\tif (!directory.exists())\n\t\t\tdirectory.mkdir();\n\n\t\tFileInputStream file = new FileInputStream(\"...
[ { "docid": "0cac24180db34a598e6a7438b8091529", "score": "0.66974455", "text": "public int getTrangThaiXuLy();", "title": "" }, { "docid": "5d08f6cb7ba89b8556d89490ac3e25b0", "score": "0.6300202", "text": "private static void xuLyXuat() {\n\t\tSystem.out.println(\"====================...
59f7f8a45e8eb1ef07efa60843d8c4d4
Clear the given bitmask from this instance upstreamoptionbits using bitand w/ ~v
[ { "docid": "613e7d03925b5cfaf044472f17df754e", "score": "0.7861753", "text": "public void clearUpstreamOptionBits(int v);", "title": "" } ]
[ { "docid": "f1a247d86eafb8287f1a60bc243e65ab", "score": "0.6373994", "text": "static long clearBit(long value, int bitNumber) {\n return value & (~(1L << bitNumber));\n }", "title": "" }, { "docid": "25c385663573fb767aeac18aef97735c", "score": "0.63122344", "text": "public Builde...
ba4a9edb6e0736bc599f2278f03e79f0
Called on hover exit event.
[ { "docid": "c19d26aba3cc7d01368fcbf2e6353130", "score": "0.8090082", "text": "public void onHoverExit() {\n if (!isPeripheralsSupportForTabStripEnabled()) return;\n clearLastHoveredTab();\n mUpdateHost.requestUpdate();\n }", "title": "" } ]
[ { "docid": "17a21971650b3d4f0dd80f5006f7b9b8", "score": "0.8426339", "text": "@Override\n\tpublic void onExit() {\n\t\thover = false;\n\t}", "title": "" }, { "docid": "28ff61396210cd8cdc6ff3396ceaaae2", "score": "0.72830737", "text": "public void mouseExited(MouseEvent e) {\n\t\t\t\t...
6bb5ea184ba6fc3d8f1b90d5d629d329
$ANTLR end "rule__Aggregate_definition__Group_6_1_1__0__Impl" $ANTLR start "rule__Aggregate_definition__Group_6_1_1__1" InternalMyDsl.g:30879:1: rule__Aggregate_definition__Group_6_1_1__1 : rule__Aggregate_definition__Group_6_1_1__1__Impl ;
[ { "docid": "e37484d92b6e9abadd1c80ed521a156b", "score": "0.8127579", "text": "public final void rule__Aggregate_definition__Group_6_1_1__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMyDsl.g:30883:1: ( rule__Aggregate...
[ { "docid": "032f161d018a970be16d509621c789f2", "score": "0.81267494", "text": "public final void rule__Aggregate_definition__Group_6_0__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMyDsl.g:30397:1: ( rule__Aggregate_...
4193c2dba50d9c323e8657509d006c08
int64 totalBet = 5;
[ { "docid": "6414ba7ace08e5d9fb911cd9c1cc295f", "score": "0.0", "text": "public Builder clearTotalBet() {\n \n totalBet_ = 0L;\n onChanged();\n return this;\n }", "title": "" } ]
[ { "docid": "2428e3b28ab33cdffa5204ae63c2629c", "score": "0.7649005", "text": "long getTotalBet();", "title": "" }, { "docid": "b991313dbfb84c011c3cd1de99fbfdbf", "score": "0.7482293", "text": "long getYourBet();", "title": "" }, { "docid": "e0f14aa9d0884d7a25ceaebab084021...
c7416e042e345e830ec6ee62a0c75403
calls your addNucleotide method to verify correct behavior add more tests to make sure that your method works in all cases
[ { "docid": "2f737862a81a0a2f14ff52ebd0941c2e", "score": "0.75716674", "text": "public static boolean testAddNucleotide() {\r\n System.out.println(\"Starting testAddNucleotide...\");\r\n //Test 1\r\n {\r\n // this test adds two new nucleotides 'o' and 'k' to the DNA\r\n\t\...
[ { "docid": "80fb967b2230110e64c1a8146f4391ab", "score": "0.6386223", "text": "public static boolean testContainsNucleotide() {\r\n System.out.println(\"Starting testContainsNucleotide...\");\r\n //Test 1\r\n {\r\n\t\t\t// this test checks that the sequence DFRTGYG has the nucleotide...
1002577e0dcc635812876b5d6b3436d6
Test case number: 9 /Coverage entropy=1.945910149055313
[ { "docid": "5c0fe8008e0e584ac9a288e0102c91eb", "score": "0.0", "text": "@Test(timeout = 4000)\n public void test09() throws Throwable {\n Player player0 = new Player();\n player0.getZ();\n player0.setZ(0.0F);\n player0.remove((Party) null);\n player0.setZ((-2700.456F));\n ...
[ { "docid": "80807553c59aad5881b49e5bf8f2ae4d", "score": "0.73041344", "text": "@Test(timeout = 4000)\n public void test126() throws Throwable {\n TestInstances testInstances0 = new TestInstances();\n Instances instances0 = testInstances0.generate((String) null);\n Evaluation evaluation...
d901e0eb0e9c2747f20fe15db2c07932
Get a texter for a specific data type
[ { "docid": "1d3960714784de60aa143cf1b411be6a", "score": "0.0", "text": "private static final NodeSet.NodeSetTexter getVariantsTexter(ULocale l) {\n final ULocale inLocale = l;\n return new NodeSet.NodeSetTexter() { \n public String text(NodeSet.NodeSetEntry e) {\n ...
[ { "docid": "8b4acfcac34a7aff4bb72b0d1995d8b0", "score": "0.66366774", "text": "public java.lang.String getTextType(){\r\n return localTextType;\r\n }", "title": "" }, { "docid": "6cc433b65d21c33618e05da010dacad2", "score": "0.61909...
b5229dcd4b0306cd812f6a3cc46a89e8
Sets the matrix to starting position.
[ { "docid": "35895d2fcb44f9c7106ab16a14d85aac", "score": "0.68188435", "text": "public void toStartPosition() {\n for (int row = 0; row < 6; row++) {\n for (int column = 0; column < 6; column++) {\n matrix[row][column] = 'e';\n }\n }\n matrix[0][0...
[ { "docid": "602e1b2cef936b7cc2f68f3b5650a21a", "score": "0.7072447", "text": "public void setStartPosition() {\n Random rand = new Random();\n int startRow = rand.nextInt(Rows);\n int startColumn = rand.nextInt(Columns);\n StartPosition = new Position(startRow, startColumn);\...
ff01a2e56e4162781489f5ac172b22c3
Construtor do objeto do evento.
[ { "docid": "836cca194c4f3ec6046490923eafc1eb", "score": "0.0", "text": "public ProjectChangeEvent(ProjectRepository source, Project[] projectsAdded, Project[] projectsRemoved) {\r\n\t\tsuper(source);\r\n\t\tadded = projectsAdded;\r\n\t\tremoved = projectsRemoved;\r\n\t}", "title": "" } ]
[ { "docid": "a4be7263bc9db0968212ed9e69ff730a", "score": "0.7911225", "text": "public Event() {\n\t\tsuper();\n\t}", "title": "" }, { "docid": "f5056d510c6f1b66fe8c5b7847315a3f", "score": "0.78188574", "text": "public Event(){\r\n }", "title": "" }, { "docid": "c06e3d0f88...
99feef952fd44a1947b367071d675c5c
Create instance of LibValid
[ { "docid": "7b989f9b79f47c369dd642d8300c6d8b", "score": "0.691703", "text": "public static LibValid getInstance() {\n\t\treturn instance;\n\t}", "title": "" } ]
[ { "docid": "e49d658d7bf140ad6195fb4714e95862", "score": "0.6716901", "text": "private ValidationUtils() {}", "title": "" }, { "docid": "c812c175a8258d763500a1a3e0f640b5", "score": "0.6578338", "text": "private TSLValidatorFactory() {\r\n\t\tsuper();\r\n\t}", "title": "" }, { ...
280154efc68fa4c44a39c40f97d9f509
Does the submission status allow us to withdraw the protocol?
[ { "docid": "4232f6e1eeef204d4060b39c967735d5", "score": "0.6832913", "text": "protected boolean isAllowedStatus(ProtocolSubmissionBase submission) {\n return StringUtils.equals(submission.getSubmissionStatusCode(), ProtocolSubmissionStatus.PENDING) ||\n StringUtils.equals(submission...
[ { "docid": "c2a3ce59c5d72188b73d476b68b74256", "score": "0.7629235", "text": "boolean hasWithdrawSubmission();", "title": "" }, { "docid": "4902b0b5874914b104081ba81334f5bc", "score": "0.7269559", "text": "@java.lang.Override\n public boolean hasWithdrawSubmission() {\n retur...
357c74b92e2975ef6276f270dc1cda08
Returns the maximum sojourn time of this activity. Note that the method calculateTimes should be called before this method.
[ { "docid": "bf3f8535f702d8bcb3ac9167aaf8d754", "score": "0.8298118", "text": "public double getMaxSojournTime() {\n\t\treturn sojournStatistics.getMax();\n\t}", "title": "" } ]
[ { "docid": "1b625c76e86b32d54f2c357a82c8d9ac", "score": "0.7080145", "text": "public int getMaxTime() {\r\n\t\treturn maxTime;\r\n\t}", "title": "" }, { "docid": "2212fe627db4d2f0691014a155c393b3", "score": "0.70355535", "text": "public int getMaxTurnTime() {\n return this.max...
ec126c3999e289194c7b067f12993ac8
Find the _Fields constant that matches fieldId, or null if its not found.
[ { "docid": "74c9c18e81cd879de60f9b16b4b0cfc8", "score": "0.0", "text": "public static _Fields findByThriftId(int fieldId) {\n switch(fieldId) {\n case 0: // SUCCESS\n return SUCCESS;\n default:\n return null;\n }\n }", "title": "" } ]
[ { "docid": "cf8eec83d3b8ac58e5d3157ccaed0307", "score": "0.7857978", "text": "@org.apache.thrift.annotation.Nullable\r\n public static _Fields findByThriftId(int fieldId) {\r\n switch(fieldId) {\r\n default:\r\n return null;\r\n }\r\n }", "title": "" }, ...
babc12e7bac12fc8738f9fadd1dd2ce5
Get relative time for date
[ { "docid": "bd859e0ce51324f812b538a4c9bb93b4", "score": "0.6989444", "text": "public static CharSequence getRelativeTime(final Date date) {\n\t\tlong now = System.currentTimeMillis();\n\t\tif (Math.abs(now - date.getTime()) > 60000)\n\t\t\treturn DateUtils.getRelativeTimeSpanString(date.getTime(), now,\...
[ { "docid": "caa39c1f19f15313a4ad55a18b026c79", "score": "0.720526", "text": "public static String getRelativeTime(Date date) {\n String relativeDate;\n long dateMillis = date.getTime();\n relativeDate = DateUtils.getRelativeTimeSpanString(dateMillis, System.currentTimeMillis(), Date...
e8c5ed8b266d66a4e129094b62d65322
Pops the Deque and transcribes String values in to floats
[ { "docid": "7344bf526452a027f4b1aac177fe1aa2", "score": "0.0", "text": "public static void FormatMatrices(ArrayDeque inputCSVs\n ,float[][][] e_v, int[][] o_s){\n\n String[][] temp_in;\n float[][] temp_fout;\n int[] temp_iout;\n\n while(!...
[ { "docid": "f8c9fe6fb9abc9ff64e2aeceadd05e34", "score": "0.5785622", "text": "public static double readFloat() {\n return Float.parseFloat(readString());\n }", "title": "" }, { "docid": "7b10d441e7ecc2c78c437aafa49fc39f", "score": "0.5725617", "text": "public float[...
6606d087a8cc4d005927a34a6c40e327
Print the current screen view to an attached printer with the given magnification scale factor. A standard printer dialog is shown before printing is started. Return false, if printing is canceled in this dialog, return true, when print data is sent to the printer spooler.
[ { "docid": "e9468458bb74a3217cccba1989eef0f5", "score": "0.7834253", "text": "public boolean printScreen(double scale)\n {\n return internalPrint(null, scale);\n }", "title": "" } ]
[ { "docid": "0f3c853680b33c5d647f4c2763a0fffc", "score": "0.61338645", "text": "public boolean printScreen()\n {\n return printScreen(1);\n }", "title": "" }, { "docid": "e32265909445e93ee97c0899ffcf642d", "score": "0.5958635", "text": "public boolean shouldScaleForPrinting() { t...
b0523a8ab4bb9272435a6c9b60bcb2ac
Handle a request that uses a rfid token to scan a ticket.
[ { "docid": "b7d1105918b25cfd99822183da90a1b0", "score": "0.5695074", "text": "private String handleRfidTokenRequest(RedirectAttributes redirect, Product product, String rfidToken) {\n try {\n Customer customer = customerService.getByRfidToken(rfidToken);\n ScanResult result ...
[ { "docid": "2efcf080ef236cefb879692f75c86e97", "score": "0.5639116", "text": "abstract T doLookup(@Nonnull TokenRequest req);", "title": "" }, { "docid": "556186195d8cbbfad502f3440882db09", "score": "0.5472522", "text": "public void validateTicket(final Context context, final String ...
359f37d87dd99556c1b30681a9cc474b
Test the property 'fee'
[ { "docid": "0e16c59071e44e57214946a744409c48", "score": "0.70600677", "text": "@Test\n public void feeTest() {\n // TODO: test fee\n }", "title": "" } ]
[ { "docid": "50e0c6c4199edd2c8415bce8b7b91ed9", "score": "0.74738324", "text": "public void setFee(Fee fee) { this.fee = fee;}", "title": "" }, { "docid": "e392685d1487894a45768fa9b7456dc2", "score": "0.73532546", "text": "public Fee getFee() { return this.fee;}", "title": "" },...
6bc9957a29a89fa1b4e81e2eea7c8d3d
Gets the model manager.
[ { "docid": "92611a9bd7c1b7180507f2c97e40663b", "score": "0.7393952", "text": "public ModelMgr getModelMgr();", "title": "" } ]
[ { "docid": "eae9b83ed6733c4ed65e3b38a8ab5e10", "score": "0.81449866", "text": "public CommonModelManager getModelManager() {\n\t\treturn modelManager;\n\t}", "title": "" }, { "docid": "16ea699ee8fbfbeb6b928cd0fe05aa87", "score": "0.7471341", "text": "Manager getManager() {\n r...
cd5077c393ca606e17be81edb6a0f5bf
Replies if this attribute type is a number type. A number type is always a base type.
[ { "docid": "dccacc14a5dd560b0c26055908724b0d", "score": "0.6957465", "text": "@Pure\n\tpublic abstract boolean isNumberType();", "title": "" } ]
[ { "docid": "1bda13ca96e47532e7ad1b2740e354a7", "score": "0.76730657", "text": "public boolean isNumericType(Object type);", "title": "" }, { "docid": "975d12411a9b173f3f981052186a44c2", "score": "0.75526226", "text": "public boolean isNumeric() {\n return type() == Types.BIGINT\n ...
0979486c3579d81ecb084046a702dd38
Number hidden(): HEX | (INT | DECIMAL) ("." (INT | DECIMAL))?;
[ { "docid": "02ea5ea4eddb03216f48d1b8317cf137", "score": "0.0", "text": "public XbaseGrammarAccess.NumberElements getNumberAccess() {\n\t\treturn gaXbase.getNumberAccess();\n\t}", "title": "" } ]
[ { "docid": "606e273b37b3a5d046dd1d57cdca8693", "score": "0.5635112", "text": "public String readDecimalNumber() {\n String s = this.readWord();\n if (!Util.DECIMAL_PATTERN.matcher(s).matches()) throw new IllegalStateException(\"Expected decimal number but got '\" + s + \"'\");\n ret...
59dd0a6c5cf26d61c52f9eb1f558d4f4
Util method to write an attribute without the ns prefix
[ { "docid": "70bc88bf23a800fc2331ffdbbb336d99", "score": "0.0", "text": "private void writeQNameAttribute(java.lang.String namespace, java.lang.String attName,\r\n javax.xml.namespace.QName qname, javax.xml.stream.XMLStreamWriter xmlWriter) throws javax.xml.str...
[ { "docid": "4032b8c44c9067682aec7c95df9e1e42", "score": "0.72442746", "text": "private void writeAttribute(java.lang.String namespace,java.lang.String attName,\r\n java.lang.String attValue,javax.xml.stream.XMLStreamWriter xmlWriter) throws javax.xml.stream.XMLStream...
26d7cf2b670e8346af55ed7e44be435d
To get the Quote name in line level info page
[ { "docid": "eadbfed1513637f92a1e8a8294caa5a6", "score": "0.5552685", "text": "public static By getCutomerQuoteInLLInfo(String partNum){\n\t\treturn By.xpath(\"//p[contains(.,'Insight Part #: \"+partNum+\"')]/following::div[@class='row expanded is-collapse-child'][1]//input[@name='licenseInformation.CUST...
[ { "docid": "2098c4101ad0934bf4cb901c42437223", "score": "0.66542375", "text": "public String getQuote();", "title": "" }, { "docid": "a8cfc07fa81e0b00edf13ab0a84da8fe", "score": "0.6429711", "text": "public LocalQuote\t\tgetQuote();", "title": "" }, { "docid": "d248900404...
2c3fcaf889c40dbd196900567114fade
Creates new form Panel2
[ { "docid": "8ea58064aed38b369edb3487da0d073b", "score": "0.637825", "text": "public Panel2() {\n initComponents();\n this.setExtendedState(JFrame.MAXIMIZED_BOTH);\n this.setBackground(Color.blue);\n }", "title": "" } ]
[ { "docid": "73e864ac931bb6580fbb7c0bf3fde291", "score": "0.7495429", "text": "public Panel2() {\n initComponents();\n }", "title": "" }, { "docid": "296439ed0c2a7633c95e5629f5f0a580", "score": "0.7037155", "text": "public void createPanel() {}", "title": "" }, { ...
e477ee56c71a083376bb70cec93cb407
Builds a GraphQL Field on a field that takes arguments in order to fetch it.
[ { "docid": "c6b126f0d64aeb7fc4375b3277523499", "score": "0.651186", "text": "public static GraphQLFieldDefinition buildFieldWithArgs(String fieldName, GraphQLType type, Class<?> beanClazz) {\n\t\tPropertyDataFetcherWithArgs dataFetcher = new PropertyDataFetcherWithArgs(fieldName, beanClazz);\n\t\treturn...
[ { "docid": "1f60e4cb817ecab6236100bc3ab2e5b3", "score": "0.6699065", "text": "public static GraphQLFieldDefinition buildField(String name, GraphQLType type) { \n\t\treturn GraphQLFieldDefinition.newFieldDefinition()\n\t\t\t.type((GraphQLOutputType) type)\n\t\t\t.name(name)\n\t\t\t.build();\n\t}", "t...
a3e2d1c30c5ef80ece72fa7e9b5a17db
Construct a new instance.
[ { "docid": "1ce9f32363a69467e2d79f324c78980b", "score": "0.0", "text": "private LockDescription(LockBroker broker, Token token, LockType type) {\n this.broker = broker;\n this.type = type;\n this.token = token;\n }", "title": "" } ]
[ { "docid": "e3fa980b53c5ddbf6f448725041a3e60", "score": "0.72330624", "text": "public abstract Object construct();", "title": "" }, { "docid": "e3fa980b53c5ddbf6f448725041a3e60", "score": "0.72330624", "text": "public abstract Object construct();", "title": "" }, { "docid...
5c3827cdf628a594c3574d525f73f768
Checks whether the preference exists for the indicated tool and entity.
[ { "docid": "794ec319dfb27d4635a679855901b58b", "score": "0.83219665", "text": "boolean hasPreference(final String toolId, final String preference, final Scope scope, final String entityId);", "title": "" } ]
[ { "docid": "af974dac45b223f127ad3c38decb268d", "score": "0.6704864", "text": "boolean hasPreference();", "title": "" }, { "docid": "c0fee6d1cc9393aace9fc5fcbeed9d55", "score": "0.5982268", "text": "boolean hasToolid();", "title": "" }, { "docid": "e1b5aac774614f4cbe91e14a...