query_id
stringlengths
32
32
query
stringlengths
7
129k
positive_passages
listlengths
1
1
negative_passages
listlengths
88
101
fa5a8cdf25ff8d7ad9d60944b32bf4e4
/ Converts a request type string into its RequestType equivalent.
[ { "docid": "7b9791ecef7906e9bf46c76b5b9978db", "score": "0.76668644", "text": "private static RequestType getRequestType(String requestStr)\n\t{\n\t\tfor (RequestType type : RequestType.values())\n\t\t{\n\t\t\tif (type.toString().equals(requestStr.toUpperCase()))\n\t\t\t{\n\t\t\t\treturn type;\n\t\t\t}\...
[ { "docid": "12edb17022204beefb96c234663ed54c", "score": "0.6649227", "text": "private RequestType getRequestType(String inputLine) {\n\t\t\n\t\tif (inputLine.startsWith(\"GET\")){\n\t\t\treturn RequestType.GET;\n\t\t}\n\t\telse {\n\t\t\treturn RequestType.POST;\n\t\t}\n\t}", "title": "" }, { ...
4c2615406aa70f74966c3b5905577708
computes the aggregation level for the given row of the calculators matrix
[ { "docid": "64a2c1078a256c756a95b3054205f5a0", "score": "0.6593923", "text": "@Override \r\n public int computeAggLevelForCalcRowNumber(StepInput stepInput, int calcRowNumber){\r\n \treturn getIntermGroupColsLength(stepInput) - calcRowNumber - 1;\r\n }", "title": "" } ]
[ { "docid": "a6e6cd6631895165c6ff7cf42a3c8a05", "score": "0.63019335", "text": "@Override \r\n public int computeCalcRowNumberForAggLevel(StepInput stepInput, int level){\r\n \treturn getIntermGroupColsLength(stepInput) - level -1;\r\n }", "title": "" }, { "docid": "837747f8d36b50604...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "29b51261cd6028d17d7cd441adb1f94e", "score": "0.0", "text": "@Override\n\tpublic List<Role> queryAllRoleInfoByCompany() {\n\t\treturn roleDao.queryAllRoleInfoByCompany();\n\t}", "title": "" } ]
[ { "docid": "05a606445504484958a1c21e14b7198e", "score": "0.69474965", "text": "@Override\r\n\tpublic void sapace() {\n\t\t\r\n\t}", "title": "" }, { "docid": "8619203d4867f5c6d05eb9a5354405c0", "score": "0.6920049", "text": "@Override\n\t\tpublic void pintate() {\n\t\t\t\n\t\t}", ...
c2b17e905cfb329110911d76f2340778
required int32 qty = 4;
[ { "docid": "ed267ce20fa4b80064119653383b4295", "score": "0.7142575", "text": "int getQty();", "title": "" } ]
[ { "docid": "765ea0c85efe894278cb9f1792a33735", "score": "0.7137269", "text": "int getFilledQty();", "title": "" }, { "docid": "afe2b366e792f62c774eb961ab4737b5", "score": "0.70643127", "text": "public void setQty(Integer qty) {\r\n this.qty = qty;\r\n }", "title": "" ...
fdb9312bc18f045834bf47dd9bd4cbc1
Returns the node with the minimum distance from the set of unvisited nodes.
[ { "docid": "e1b910ee573c33dfc25bae0f9af5f927", "score": "0.7743235", "text": "private Node<Integer> minDistance(Map<Node<Integer>, Double> distances, Map<Node<Integer>, Double> unvisitedNodes) {\n Double min = Double.POSITIVE_INFINITY;\n\n Node<Integer> minNode = null;\n for (Map.En...
[ { "docid": "44fe60f99a6001ae4bdce649b6bc4bb3", "score": "0.8330844", "text": "private T getMinUnvisited(){\n if (unvisited.isEmpty()) return null;\n T min = unvisited.get(0);\n for (int i = 1; i < unvisited.size(); i++){\n T temp = unvisited.get(i);\n if (distances[vertexInd...
e1d8dad2b07deb7f0ca9dda777b4dd4c
Who is listening for the button press?
[ { "docid": "bdd00f93052a8d76d90f54ead621ae4a", "score": "0.0", "text": "public void setRecordButtonListener(IRecordButtonListener listener){\n mListener = listener;\n }", "title": "" } ]
[ { "docid": "08f0c4f18341328e033a8c31b9458cf4", "score": "0.6677612", "text": "int getButtonReleased();", "title": "" }, { "docid": "0bb73418162bd8dd4f6e6837ebbcb307", "score": "0.66416407", "text": "void OnButtonDown(int button);", "title": "" }, { "docid": "e7f5ebca4cb04...
ea878d09fad54e5bfa4c47197943023e
Returns the serialized form of the Move, given the necessary values
[ { "docid": "7f51c3886435de3a5217bfaa7cfd6bf2", "score": "0.0", "text": "public static int value(int startPiece, int endPiece, int startPosition, int endPosition,\n\t\t\tint flags, int promotionPieceType) {\n\t\treturn (flags << FLAG_SHIFT) | (startPosition << START_POSITION_SHIFT)\n\t\t\t\t| (endPositio...
[ { "docid": "36e25e9c56de09812ee57c83d427b08b", "score": "0.7365105", "text": "public String serialize(AssistantMove<Board> move) {\n Board.MyMove mm = (Board.MyMove)move;\n if (mm.isPath) return String.format(\"%b,%d,%d,%s\",true,mm.x,mm.y,mm.ps);\n else return String.fo...
e3d7da003638038360a0f39d7d2a9339
Disables SSL certificate verification for all subsequent requests until the end of the test run. Use at your own risk! This makes https potentially as unsafe as http!
[ { "docid": "2715d56867d8bca78bbf3830c5d489bf", "score": "0.777611", "text": "public void disableSSLVerification() {\n clientFactory.setDisableSslVerification(true);\n }", "title": "" } ]
[ { "docid": "6be40d53d073da4c60fd94f271a27610", "score": "0.78866833", "text": "private static void disableSslVerification() {\n try {\n //---\n TrustManager[] trustAllCerts = new TrustManager[] {\n new X509TrustManager() {\n public j...
e8553abf1b37009d4a9e5905f8a8618b
Set up a date time interpreter which will show short date values when in week view and long date values otherwise.
[ { "docid": "c628c6def6a230a90353be5c15bfc1e0", "score": "0.7651879", "text": "private void setupDateTimeInterpreter(final boolean shortDate) {\n final String[] weekLabels = {\"日\", \"一\", \"二\", \"三\", \"四\", \"五\", \"六\"};\n mWeekView.setDateTimeInterpreter(new DateTimeInterpreter() {\n ...
[ { "docid": "b3257f296cf9c63aabee6225ee1be09c", "score": "0.77065235", "text": "private void setupDateTimeInterpreter(final boolean shortDate) {\n final String[] weekLabels={\"日\",\"一\",\"二\",\"三\",\"四\",\"五\",\"六\"};\n mWeekView.setDateTimeInterpreter(new DateTimeInterpreter() {\n ...
1c8957e27f6be858fde76951eacd3e4d
True if has "targetNamespace" attribute
[ { "docid": "a5ade69f47ae6d1599f27771c7840f80", "score": "0.85153824", "text": "public boolean isSetTargetNamespace()\n {\n synchronized (monitor())\n {\n check_orphaned();\n return get_store().find_attribute_user(TARGETNAMESPACE$12) != null;\n }\n }", ...
[ { "docid": "888864ad42accc9e4f860d334f641358", "score": "0.76682824", "text": "boolean hasNamespace();", "title": "" }, { "docid": "247a409300c6b963c0caf9ad8edebc48", "score": "0.7451772", "text": "public abstract boolean hasNamespaceName();", "title": "" }, { "docid": "9...
a66ea33592c8823e2d1d6a8af196dc4a
Function computeMin computes the minimum of inputs across all channels
[ { "docid": "a5bec0cb7b90ab77a095700483d4de6a", "score": "0.63655", "text": "public static int computeMin(int[] inputVals) {\n\n for(int i = 0; i < inputVals.length; i++){\n if(inputVals[i] < minValue){\n minValue = inputVals[i];\n }\n }\n\n retur...
[ { "docid": "c1e49f82df6beb06cbb2c125f105bd14", "score": "0.6176907", "text": "int min(int values[], Boolean includedNodes[]) \r\n { \r\n int min = Integer.MAX_VALUE, min_index = -1; \r\n \r\n for (int i = 0; i < nodes; i++) {\r\n if (includedNodes[i] == false && values[i] < ...
8a783706b51c0557109380b8563f7953
Returns the double value of an Arg. In case the Arg is of another type, an exception will be thrown.
[ { "docid": "884fd7dc25042250f6117348f0628353", "score": "0.8619525", "text": "private Double getDouble(Arg arg) throws ArgumentsException {\n\t\tif (TypeChecker.isDouble(arg)) {\n\n\t\t\treturn (Double) arg.getValue();\n\n\t\t} else {\n\t\t\tthrow new ArgumentsException(\"No such Double attribute: (key ...
[ { "docid": "bdba7ae9318ab49d4290f10c0b60eba8", "score": "0.7604143", "text": "public double getDoubleArg(String arg) {\r\n\t\tfor (int i = 0; i < arguments.length; i++) {\r\n\t\t\tif (arguments[i].equals(arg)) {\r\n\t\t\t\treturn Double.parseDouble(arguments [i+1]);\r\n\t\t\t}\r\n\t\t}\r\n\t\treturn 0.0...
6ce4de0b5ac6f0c8a0b7430a14f9670d
Get the target corner point
[ { "docid": "75bb9015e9e29e55403573cde9b9f375", "score": "0.6538216", "text": "public Point3D getCornerPoint(int index);", "title": "" } ]
[ { "docid": "9fb6abc56c279f1a60417dc24d32678a", "score": "0.7304242", "text": "Coordinate getTargetPosition();", "title": "" }, { "docid": "fd581d97127859da91229fde2e1fc6bb", "score": "0.69331056", "text": "public int getSelectedCorner();", "title": "" }, { "docid": "547d3...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "33c82161cecc5d66f996c95269d96f27", "score": "0.0", "text": "public static void main(String[] args) {\n\n\t}", "title": "" } ]
[ { "docid": "1acc57d42c31dee937ac33ea6f2a5b0b", "score": "0.6836411", "text": "@Override\r\n\tpublic void comer() {\n\t\t\r\n\t}", "title": "" }, { "docid": "33d41636b65afa8267c9085dae3d1a2d", "score": "0.6679176", "text": "private void apparence() {\r\n\r\n\t}", "title": "" }, ...
f107475fd4b75f454ff75dd391dae2d5
method to handle Qnames
[ { "docid": "8d479ed3c8cac482cb468824da256af9", "score": "0.0", "text": "private void writeQName(javax.xml.namespace.QName qname,\n javax.xml.stream.XMLStreamWriter xmlWriter) throws javax.xml.stream.XMLStreamException {\n java.lang.String namespaceURI = qname.ge...
[ { "docid": "c4a8cd6d675e92ee87562103f7393a5c", "score": "0.7002429", "text": "void setName(String qName, String name);", "title": "" }, { "docid": "8f5d3b9e816a128dbc631b46ea2b6de6", "score": "0.6889002", "text": "private void querywithNameQuery() {\n\t}", "title": "" }, { ...
a58fdde7eefb746f7a7ce31b848cdd22
given user, when retrieving attribute permissions
[ { "docid": "20fdcef35e98b21f475a8dd320386ea2", "score": "0.0", "text": "@Test\n\tpublic void shouldReturnItemAttributesAccessesForGroup1() throws JAXBException\n\t{\n\t\tfinal PermissionsListWsDTO entity = retrieveAttributesPermissions(GROUP1, USER2, \"Item.owner,Item.pk\");\n\n\t\t//then the following ...
[ { "docid": "b447c5a5d5ed15cf6a45448fed4df6f3", "score": "0.7272536", "text": "UserPermissionsType getUserPermissions();", "title": "" }, { "docid": "7056c1e9de97a0df53d7d77ff1ad8604", "score": "0.708923", "text": "@Override\n protected ObjectPermissionSet getEffectivePermissionSet...
3e411c1aaf1e07600b608bd52cc7f2e9
Handle navigation view item clicks here.
[ { "docid": "ac800a9a4d47814017f9a5825d555180", "score": "0.0", "text": "@SuppressWarnings(\"StatementWithEmptyBody\")\n @Override\n public boolean onNavigationItemSelected(MenuItem item) {\n int id = item.getItemId();\n\n if (id == R.id.nav_cart) {\n Intent cartIntent=new ...
[ { "docid": "9d36fdb51f5689e1777270e2c479a612", "score": "0.7332305", "text": "@Override\n public void onItemClick(Item item) {\n goToActiviy( item );\n }", "title": "" }, { "docid": "17da27477d15...
32ab219e3bdacd2e5fda8184f0be4139
false = alltasks, true = myTasks
[ { "docid": "15b2b6d8c4d38f53840249f65878d257", "score": "0.0", "text": "@Override\n protected void onCreate(Bundle savedInstanceState) {\n super.onCreate(savedInstanceState);\n\n //Toolbar setup\n setContentView(R.layout.activity_dash);\n Toolbar myToolbar = (Toolbar) find...
[ { "docid": "562e133ed01c2c89ddda2a85a63ff68b", "score": "0.72285277", "text": "boolean hasTask();", "title": "" }, { "docid": "ec5bcf037c19664f19f76750cde99e3f", "score": "0.71728885", "text": "int activeTasks();", "title": "" }, { "docid": "0aa2d1efe46e6705403c8157cd5381...
bc2bf29704df0ff5b181bb7879c3477b
subroutine 0f getMedians (rebalancing the heaps)
[ { "docid": "6e01a25a992e761c94869cf3b9121913", "score": "0.0", "text": "private static void rebalance(PriorityQueue<Integer> lowers, PriorityQueue<Integer> highers) {\n PriorityQueue<Integer> biggerHeap = lowers.size() > highers.size() ? lowers : highers;\n PriorityQueue<Integer> smallerHe...
[ { "docid": "814698e7deb6cf9794699bbbd3a9add3", "score": "0.63474524", "text": "private static double[] getMedians(List<Integer> expenses){\n // This is a max heap, inversed the standard return value of the comparator.\n PriorityQueue<Integer> lowers = new PriorityQueue<>(new Comparator<Int...
30487a7aa076c9ec9b12ac7da2dcfce7
To add a directed edge to graph
[ { "docid": "b13c45341da58a20390be0765c18348e", "score": "0.6724524", "text": "void addDirectedEdge(int v, int w) {\r\n adjacencyList[v].add(labels[w]);\r\n }", "title": "" } ]
[ { "docid": "ad9613ef89fa69112fa15ac1fcb57a39", "score": "0.8089939", "text": "void addEdge(E edge);", "title": "" }, { "docid": "b7260144a0d3dc4749fe40f6c3ce7bbc", "score": "0.78349125", "text": "public void addEdge(int source, int target);", "title": "" }, { "docid": "19...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "cc36b8a574432fcffa79162b514e15b6", "score": "0.0", "text": "@Override\n\tpublic Integer delModel(String tagID) throws BaseException {\n\t\treturn this.delete(\"Mapper.PhotoTag.deleteByID\", tagID);\n\t}", "title": "" } ]
[ { "docid": "3d9823aba51891281b4bbd4b1818b970", "score": "0.6671074", "text": "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "title": "" }, { "docid": "0b5b11f4251ace8b3d0f5ead186f7beb", "score": "0.6567672", "text": "@Override\n\tpublic void comer() {\n\t\t\n\t}", "ti...
3215f8b50713a534cf70e3d851366d29
Obtient l'extension d'un fichier
[ { "docid": "8207bdc3f51aca359f05f55645170bcb", "score": "0.6383689", "text": "public static String obtenirExtension(File f)\n\t{\n\t\tString ext = null;\n\t\tString s = f.getName();\n\t\tint i = s.lastIndexOf('.');\n\n\t\tif (i > 0 && i < s.length() - 1)\n\t\t{\n\t\t\text = s.substring(i + 1).toLowerCas...
[ { "docid": "55b0b13fa1d57292ba17da6f074ee517", "score": "0.7774513", "text": "public abstract String getFileExtension();", "title": "" }, { "docid": "55b0b13fa1d57292ba17da6f074ee517", "score": "0.7774513", "text": "public abstract String getFileExtension();", "title": "" }, ...
518bf5364cda3c6202a1a392996f93d1
Inflate the menu; this adds items to the action bar if it is present.
[ { "docid": "46ec9e45dd3429463754098cb9d64723", "score": "0.0", "text": "@Override\n public boolean onCreateOptionsMenu(Menu menu) {\n getMenuInflater().inflate(R.menu.new_cake, menu);\n return true;\n }", "title": "" } ]
[ { "docid": "d74efebd6fe79f46209a7e8cb2c52d89", "score": "0.7184634", "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": "" ...
7524394097fe69bfa553e063aba124cf
/ Write your DynamicControl code below this line
[ { "docid": "80e45334b8b2189f4843d2c9c428e1bb", "score": "0.5695893", "text": "@Override\n public void valueChanged(String control_val) {\n if (control_val.equalsIgnoreCase(COMMAND_PLAY)){\n samplePlayer.pause(false);\n }\n else i...
[ { "docid": "8996400390309e979f497036cfb913b6", "score": "0.7004432", "text": "@Override\n protected void initControl() {\n\n }", "title": "" }, { "docid": "5e079bb25f2a63aa75955e81d6d050e6", "score": "0.69118917", "text": "@Override\r\n\tprotected void createAdditionalControls(...
af8d417ed2455bd5730b98e2cd11642b
$ANTLR end "rule__Expression_aux__Group_3__0" $ANTLR start "rule__Expression_aux__Group_3__0__Impl" InternalMyDsl.g:7723:1: rule__Expression_aux__Group_3__0__Impl : ( ( rule__Expression_aux__Group_3_0__0 ) ) ;
[ { "docid": "513ba8c72bbf6d39b58cd92e01a1a43e", "score": "0.78276736", "text": "public final void rule__Expression_aux__Group_3__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // InternalMyDsl.g:7727:1: ( ( ( rule__Express...
[ { "docid": "d4f276615ee694cb39489b17b4ddd847", "score": "0.8482506", "text": "public final void rule__Expression_aux__Group_0_0_3__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../compiladores.ui/src-gen/org/xtext/example/u...
cfa4f2695fcf4ffeb9eef3d793cd2e71
Goo update settings. Use this setting to override the default `goo` patch rules. .google.cloud.osconfig.v1.GooSettings goo = 5;
[ { "docid": "7b169b8266c79e2c1c76af60b459c823", "score": "0.70902556", "text": "public Builder mergeGoo(com.google.cloud.osconfig.v1.PatchJobs.GooSettings value) {\n if (gooBuilder_ == null) {\n if (((bitField0_ & 0x00000008) != 0)\n && goo_ != null\n && goo_ != ...
[ { "docid": "e6e3e1b55a11cd1272eaa2b85164b69d", "score": "0.75853646", "text": "public Builder setGoo(com.google.cloud.osconfig.v1.PatchJobs.GooSettings value) {\n if (gooBuilder_ == null) {\n if (value == null) {\n throw new NullPointerException();\n }\n goo_...
7539a91d680fa0b07ed96f98fcf90762
Returns the object Player and set him as playing
[ { "docid": "9789171ac69f4d40f86b665c515009a8", "score": "0.7043347", "text": "public Player getPlayer(String player) {\n\t\tif (player.equals(\"A\")) {\n\t\t\tplayer1.setPlaying(true);\n\t\t\tplayer2.setPlaying(false);\n\t\t\treturn player1;\n\t\t}\n\t\tplayer2.setPlaying(true);\n\t\tplayer1.setPlaying(...
[ { "docid": "3b372aa82ada21054b21088dc53cf7d5", "score": "0.7416166", "text": "public void setPlayer()\r\n\t{\r\n\t\tplayer = Player.getInstance();\r\n\t}", "title": "" }, { "docid": "ddccdde7f0d2a25210f858a0f5ab7bce", "score": "0.7316268", "text": "public static void setPlayer(Player...
53a19a6b284afaf64e47bcdeaa2b3a88
.toit.model.DeviceEvent.Info.Value.Primitive.Type type = 1;
[ { "docid": "f74fc1b1ce4a150ad8d0f4a9c5264030", "score": "0.0", "text": "public io.toit.proto.toit.model.DeviceProto.DeviceEvent.Info.Value.Primitive.Type getType() {\n @SuppressWarnings(\"deprecation\")\n io.toit.proto.toit.model.DeviceProto.DeviceEvent.Info.Value.Primitive.Type re...
[ { "docid": "ba15aa9c6001161e2d05438b72a002d1", "score": "0.73711205", "text": "io.toit.proto.toit.model.DeviceProto.DeviceEvent.Info.Value.Primitive.Type getType();", "title": "" }, { "docid": "01138ee6a969cfc4199c913c4a732eb5", "score": "0.68365103", "text": "io.toit.proto.toit.mode...
3cc21096b6eca779a688539d1968913e
Handle action bar item clicks here. The action bar will automatically handle clicks on the Home/Up button, so long as you specify a parent activity in AndroidManifest.xml.
[ { "docid": "1a239553d1a9a50807c9256d7901f3e1", "score": "0.0", "text": "@Override\n public boolean onOptionsItemSelected(MenuItem item) {\n int id = item.getItemId();\n\n //noinspection SimplifiableIfStatement\n if (id == R.id.action_settings) {\n return true;\n ...
[ { "docid": "bdde0d68ded7452fa609fa2d7d3fb4a9", "score": "0.77375287", "text": "@Override\n\tpublic boolean onOptionsItemSelected(MenuItem item) {\n\t\tswitch(item.getItemId()){\n\t\tcase android.R.id.home:\n\t\t\t// app icon in action bar clicked; go home\n Intent intent = new Intent(this, Ma...
4b78e7d07a3ae35239f71eccfd7c989b
Css style for control window
[ { "docid": "0d90935fe08842d33d02e07f503df187", "score": "0.0", "text": "public static void initCommonWindowStyles(CommonWindowStyles commonStyles){\r\n if(!isInitialized){\r\n WindowManager.commonStyles=commonStyles;\r\n }else{\r\n WMLW.LOGGER.log(Level.WARNING,\"Try ...
[ { "docid": "e04c8281641ecf2abb1088e859b69c6e", "score": "0.64041513", "text": "private void applyStyle() {\n\t\tthis.setCursor(Cursor.getPredefinedCursor(Cursor.HAND_CURSOR));\n//\t\tthis.setOpaque(true);\n//\t\tthis.setMinimumSize(new Dimension(100, 100));\n\n\t}", "title": "" }, { "docid":...
26cbaac18c38430373fbe91e5c205f9e
$ANTLR end "rule__FunRef__Group__0" $ANTLR start "rule__FunRef__Group__0__Impl" ../org.erlide.erlang.ui/srcgen/org/erlide/ui/contentassist/antlr/internal/InternalErlang.g:17119:1: rule__FunRef__Group__0__Impl : ( ( rule__FunRef__Group_0__0 )? ) ;
[ { "docid": "79f0551c656e7f2ea1d688fe000aa4b6", "score": "0.81915456", "text": "public final void rule__FunRef__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.erlide.erlang.ui/src-gen/org/erlide/ui/content...
[ { "docid": "08606982b4ff7c565871909b5a45087a", "score": "0.8314311", "text": "public final void rule__FunRef__Group_0__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.erlide.erlang.ui/src-gen/org/erlide/ui/contentassis...
e385644ab0c85ccb174e64c077e998b5
This method returns the Exception Type.
[ { "docid": "96adaf0a619ea162b98b53ca81b50034", "score": "0.0", "text": "public String getErrorSrc()\n\t{\n\t\treturn strErrorSrc;\n\t}", "title": "" } ]
[ { "docid": "9103eb9ead1d741546aaa051f7e230af", "score": "0.85937655", "text": "public String getExceptionType() {\n\t\treturn mExceptionType;\n\t}", "title": "" }, { "docid": "96b8770da55c4976f4666d16f0229d61", "score": "0.85688245", "text": "public String getExceptionType() {\n r...
7de2ffec5413d20fe4fead50b58d4641
Devuelve el datechooser dateChooserFecha
[ { "docid": "fcb7c27f606742891e772f50f21b5d51", "score": "0.7697432", "text": "public JDateChooser verDateChooserFecha() {\n return this.dateChooseFecha;\n }", "title": "" } ]
[ { "docid": "6de683b25e3057e0664c78329b884369", "score": "0.77995217", "text": "private JDateChooser getJDateChooserFecha() {\r\n\t\tif (jDateChooserFecha == null) {\r\n\t\t\tjDateChooserFecha = new JDateChooser();\r\n\t\t\tjDateChooserFecha.setBounds(new Rectangle(325, 6, 182, 33));\r\n\t\t}\r\n\t\tretu...
4c525f5819adf322ebf8d54a2e9b7174
prints the stats for the current game, and total number of games
[ { "docid": "bba0661cd01d1b8141599faac5773924", "score": "0.7615505", "text": "public static void printStats(Model frame, int numGames)\n {\n System.out.println(\"Your final score for this game was: \" + frame.getScore());\n System.out.println(\"Your total score for \" + numGames + \" game...
[ { "docid": "31156a18dec3daa1336cd90bfa0f44f6", "score": "0.7444779", "text": "void printStats() {\n\t\tSystem.out.println(\"Average thinking time (seconds): \" + totalTime/totalMoves);\n\t}", "title": "" }, { "docid": "4c08498da1ab8980440b64fef226802a", "score": "0.7407998", "text": ...
8744be9e40cc218c93316b7fe38f4552
this log output is optional, this is to show how to check log
[ { "docid": "b00c61cff29c2e9db35ac67507522691", "score": "0.0", "text": "@Test\n\tpublic void testAgentLogsFinal() {\n\t\tReporter reporter = mock(Reporter.class);\n\t\tparty = new ShineParty(reporter);\n\t\tparty.connect(connection);\n\t\tparty.notifyChange(settings);\n\t\tparty.notifyChange(new Finishe...
[ { "docid": "5ed72156501cc0d3a3efbc0c7681265e", "score": "0.76485705", "text": "private static void _logInfo ()\n {\n System.err.println (\"Logging is enabled using \" + log.getClass ().getName ());\n }", "title": "" }, { "docid": "63edc00da4aafb704b8de6dad3236bb3", "score": "0.71624...
0a95e41ccb4b1b454c6f4e61b9126f0f
This method was generated by MyBatis Generator. This method corresponds to the database table tb_company
[ { "docid": "8a9f3f4f9d0cb8123bb9798b14935a76", "score": "0.0", "text": "int updateByExample(@Param(\"record\") TbCompanyEntity record, @Param(\"example\") TbCompanyEntityExample example);", "title": "" } ]
[ { "docid": "13ef9c20a6668af28ecb3d848916d587", "score": "0.6660526", "text": "TbCompanyEntity selectByPrimaryKey(String companyId);", "title": "" }, { "docid": "b4aed328499e88ffc93c6ab78138012f", "score": "0.6115202", "text": "protected void createCompany2() {\r\n createEntity...
0ae651e557eca1c05b4dd2ace8df45e9
This method was generated by Apache iBATIS ibator. This method corresponds to the database table scale_def
[ { "docid": "ee7d8141526f47daeca7cfb3606c8452", "score": "0.0", "text": "public int countByExample(ScaleDefExample example) {\r\n Integer count = (Integer) getSqlMapClientTemplate().queryForObject(\"scale_def.ibatorgenerated_countByExample\", example);\r\n return count.intValue();\r\n }...
[ { "docid": "1abb66f0c241b5b6cd5e604f6149b596", "score": "0.6909062", "text": "public void setScale(Integer scale) throws DBException {\n _scale = scale;\n }", "title": "" }, { "docid": "1abb66f0c241b5b6cd5e604f6149b596", "score": "0.6909062", "text": "public void setScale(I...
dda2684d2336e7fa76d74fc2dc1be314
Returns the set of all valid words in the given Boggle board, as an Iterable.
[ { "docid": "fc8997b3400e720448097a6a8876bb61", "score": "0.817862", "text": "public Iterable<String> getAllValidWords(BoggleBoard board) {\n\t\treturn generateWords(board);\n\t}", "title": "" } ]
[ { "docid": "374471f81b5af139f546860046e63f0e", "score": "0.874069", "text": "public Iterable<String> getAllValidWords(BoggleBoard board) {\n boolean[][] visited = new boolean[board.rows()][board.cols()];\n SET<String> validWords = new SET<String>();\n for (int i = 0; i < board.rows(...
acb52956ad2d23b9b288d6e235d0567b
Method to add new template doc in DB
[ { "docid": "0e72ade675f596db586342167cb7993f", "score": "0.0", "text": "@PostMapping(ADD_TEMPLATE)\n\tpublic List<Map<String,Object>> getProperties(@RequestParam(METATDATA) String metadata,@RequestParam(FORMNAME2) String formname,\n\t\t\t@RequestParam(FINAL_HTML) String finalHtml) {\n\t\tList<Map<Str...
[ { "docid": "5f27a6e08e933f299f23cfd68fb20fb3", "score": "0.6647812", "text": "com.walgreens.rxit.ch.cda.II addNewTemplateId();", "title": "" }, { "docid": "3ad581613d2a49ce6d22770b9c3a4e55", "score": "0.63293105", "text": "com.walgreens.rxit.ch.cda.II insertNewTemplateId(int i);", ...
518bf5364cda3c6202a1a392996f93d1
Inflate the menu; this adds items to the action bar if it is present.
[ { "docid": "b503fc7fa1f36527045b729accf7ab38", "score": "0.0", "text": "@Override\n public boolean onCreateOptionsMenu(Menu menu) {\n getMenuInflater().inflate(R.menu.menu_main, menu);\n return true;\n }", "title": "" } ]
[ { "docid": "336240563eed6d025065f97a46803a2c", "score": "0.7246102", "text": "@Override\n public boolean onCreateOptionsMenu(Menu menu) {\n \tMenuInflater inflater = getMenuInflater();\n \tinflater.inflate(R.menu.main_activity_actions, menu);\n \treturn super.onCreateOptionsMenu(menu);\n ...
3cc21096b6eca779a688539d1968913e
Handle action bar item clicks here. The action bar will automatically handle clicks on the Home/Up button, so long as you specify a parent activity in AndroidManifest.xml.
[ { "docid": "1a239553d1a9a50807c9256d7901f3e1", "score": "0.0", "text": "@Override\n public boolean onOptionsItemSelected(MenuItem item) {\n int id = item.getItemId();\n\n //noinspection SimplifiableIfStatement\n if (id == R.id.action_settings) {\n return true;\n ...
[ { "docid": "07ae17b4f0aba18cdb307bd571a38f09", "score": "0.7816941", "text": "@Override\n\tpublic boolean onOptionsItemSelected(MenuItem item) {\n\t\tswitch (item.getItemId()) {\n case android.R.id.home:\n // app icon in action bar clicked; goto parent activity.\n this.finis...
1b0db9a86fbc30535f4932272842fb48
/ renamed from: a
[ { "docid": "1729466274b841f919ff8a6e413b39e0", "score": "0.0", "text": "private final boolean m141931a(View view, MotionEvent motionEvent, float f, float f2, boolean z) {\n ViewScrollJudge qVar = this.f103200w;\n if (qVar != null) {\n return qVar.mo123523a(view, motionEvent, f, ...
[ { "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...
6e70206e547962dcb91e3f1d28bc6d72
Getter for finances Finance details of the notice
[ { "docid": "34d1082122413191dbff8c106d65d2cb", "score": "0.7214283", "text": "public ArrayList<NoticeFinanceModel> getFinances() {\r\n return this.finances;\r\n }", "title": "" } ]
[ { "docid": "b44dd9ffbbe271c8e8f3e567d3390c58", "score": "0.7209687", "text": "public ArrayList<NoticeFinanceModel> getFinances() {\n return this.finances;\n }", "title": "" }, { "docid": "90215fa44f68666700d6b03e8579c876", "score": "0.6051979", "text": "public FinancialData...
5f735b60561aaa9e53030e174d0097b7
OperationEnvironment returns OperationEnvironment: environmentName=STRING (default?='default')? ;
[ { "docid": "050fb6519ef5425f15e1778a457aefb3", "score": "0.6557464", "text": "public TechnologyDslGrammarAccess.OperationEnvironmentElements getOperationEnvironmentAccess() {\n\t\treturn gaTechnologyDsl.getOperationEnvironmentAccess();\n\t}", "title": "" } ]
[ { "docid": "9f7f2e17c92fa8c1755ac086942533ef", "score": "0.68615574", "text": "public String getEnvironment() {\n return environment;\n }", "title": "" }, { "docid": "fdcc6202aad3e65b640e3b907bc83d7f", "score": "0.6698818", "text": "int getEnvironment();", "title": "" ...
4ae65a792b3f421c2531896e10049989
Used internally obtain dependency information, such as for cyclical graph detection.
[ { "docid": "115b84fb1e8daf518e1283313d6b2926", "score": "0.0", "text": "@Override\n public void getDependencies(Set<Binding<?>> getBindings, Set<Binding<?>> injectMembersBindings) {\n injectMembersBindings.add(keyProvider);\n injectMembersBindings.add(userAgentProvider);\n }", "title": "" ...
[ { "docid": "56a6b16ace1d1dac2a9f3da69922295a", "score": "0.6988404", "text": "public DependencyGraphReference getDependencyGraphReference();", "title": "" }, { "docid": "a319361d8a0b268be51b87607920efcf", "score": "0.69294494", "text": "String getDependency();", "title": "" }, ...
abb14ce78b64769cc1089702fe19e9ed
Executes the search, and checks that the default entity is not returned
[ { "docid": "44b205e74da615a643da3b30c589f98c", "score": "0.0", "text": "private void defaultHelpRequestShouldNotBeFound(String filter) throws Exception {\n restHelpRequestMockMvc.perform(get(\"/api/help-requests?sort=id,desc&\" + filter))\n .andExpect(status().isOk())\n .and...
[ { "docid": "bb88517df31dea9ecf9a681117d25f9c", "score": "0.70135117", "text": "public void cmdPrepareDefaultFind() throws PersistenceException {\n\r\n if (restState.getCommand() == null)\r\n if (!PersistentSearch.feedFromDefaultSearch(Resource.RESOURCE, restState)) {\r\n // when not set u...
87d465e4b27f5dcd028d9f20fa797b85
Finishes and removes the WebAPK's task. Returns true on success.
[ { "docid": "c212acbaa94caa49457e06e6a39eac1f", "score": "0.71889067", "text": "public boolean finishAndRemoveTaskSdk23() throws android.os.RemoteException;", "title": "" } ]
[ { "docid": "237eb9bc601ac37a66757045c1ad2471", "score": "0.69108796", "text": "@Override\n public boolean finishAndRemoveTaskSdk23() throws android.os.RemoteException {\n return false;\n }", "title": "" }, { "docid": "98a1756a9df893e130ce62e2c509614b", "score": "...
0778d7a29e4a7c94cbf867904b160c50
/ Default Medium Calls
[ { "docid": "d6669ad8fc07404866b2d8c6ac4acb20", "score": "0.0", "text": "public String GetFanartPoster(Object mediafile) {\r\n return GetFanartPosterMedium(mediafile);\r\n }", "title": "" } ]
[ { "docid": "783ef356b884e0cc55a2dc6c3abfd41e", "score": "0.58735454", "text": "public void setMedium(String medium) {\r\n this.medium = medium;\r\n }", "title": "" }, { "docid": "632c66f25d251c6ecd36064d12bad879", "score": "0.5646021", "text": "private SimulateLmmMedium() {...
87f73b6fd9b006cf9f2148272c6e999d
Convert the given object to string with each line indented by 4 spaces (except the first line).
[ { "docid": "8279fe35d1f3c688ad6983974b78755b", "score": "0.0", "text": "private String toIndentedString(java.lang.Object o) {\n if (o == null) {\n return \"null\";\n }\n return o.toString().replace(\"\\n\", \"\\n \");\n }", "title": "" } ]
[ { "docid": "5ba91dc3b84c54d334b0aff5a9bed628", "score": "0.75471514", "text": "private String toIndentedString(Object o)\n/* */ {\n/* 146 */ if (o == null) {\n/* 147 */ return \"null\";\n/* */ }\n/* 149 */ return o.toString().replace(\"\\n\", \"\\n \");\n/* */ }", ...
9751f7484aa918f17f3c67a68c5be333
GET /mcauditdetails/:id : get the "id" mCAuditDetails.
[ { "docid": "5406f46c6c578c8602a22de387ceb1af", "score": "0.8600503", "text": "@GetMapping(\"/mc-audit-details/{id}\")\n @Timed\n public ResponseEntity<MCAuditDetails> getMCAuditDetails(@PathVariable UUID id) {\n log.debug(\"REST request to get MCAuditDetails : {}\", id);\n Optional<M...
[ { "docid": "11c896a5dceb0f093cab0f26259390e7", "score": "0.6494345", "text": "@DeleteMapping(\"/mc-audit-details/{id}\")\n @Timed\n public ResponseEntity<Void> deleteMCAuditDetails(@PathVariable UUID id) {\n log.debug(\"REST request to delete MCAuditDetails : {}\", id);\n mCAuditDeta...
f3a22fea777291d100d69fec2e1a0ab1
.speech.training_cache.Criteria.OrderedSelect ordered_select = 2;
[ { "docid": "1b1a6bdf190efc2fb50abfb23506e526", "score": "0.0", "text": "public Builder clearOrderedSelect() {\n if (orderedSelectBuilder_ == null) {\n if (stepCase_ == 2) {\n stepCase_ = 0;\n step_ = null;\n onChanged();\n }\n } else {\n ...
[ { "docid": "96063e08e998fb5e62301c9fc9da934b", "score": "0.75350636", "text": "com.google.speech.trainingcache.Criteria.OrderedSelect getOrderedSelect();", "title": "" }, { "docid": "0845c1e3d06867c81c2c41f6bb3fb0fd", "score": "0.6774791", "text": "com.google.speech.trainingcache.Cri...
67c47ac403f080d1047b212c942d2587
get uncleansed loco data from loco type master
[ { "docid": "954f30f9a8e162eb143de60a38674ea0", "score": "0.5765282", "text": "@RequestMapping(method=RequestMethod.POST, value=\"/getuncleansedlocotypedata\")\n\t\t\t\tpublic List<MLocoType> getlocotypedata(@RequestBody MLocoType unlocotype){\t\t \n\t\t\t\t System.out.println( \"controller\" + unlocotyp...
[ { "docid": "d31ea4ee6062dfc31cb0772902e400d7", "score": "0.6086114", "text": "@RequestMapping(method=RequestMethod.POST, value=\"/getuncleansedlocodata\")\n\t\t\t\tpublic List<LocoDataFois> getdata(@RequestBody LocoDataFois locos){\t\t \n\t\t\t\t System.out.println(locos.getLoco_Owningshed());\n\t\t\t\t...
66b102786ad70f899a9e9029b64f74a8
this is for crossdb to know whether to close the statement when the resultset is closed, not to be used by app programmer
[ { "docid": "e04076bd6e430b780242ad30cdf12310", "score": "0.0", "text": "void setStatementCreated(Statement stmt);", "title": "" } ]
[ { "docid": "7f6f63bfdf93904e38bde9e28c89fa05", "score": "0.76195824", "text": "private boolean closeResultSet () {\n\t\t\t if (rs != null) {\n\t\t\t\t try {\n\t\t\t\t\t rs.close();\n\t\t\t\t } catch (SQLException se) {\n\t\t\t\t\t text.append(\"\\nError closing the last result set\\n\");\n\t\t\t\t\t...
634fa98008448ca4d335043768e55190
Main method to ensure validity of the Binary Search Class
[ { "docid": "b56a9f1ab6944988dfdfbc4cae456417", "score": "0.0", "text": "public static void main(String[] args) {\r\n\t\tMyBST<String> myBST = new MyBST<String>();\r\n\t\tmyBST.add(\"one\");\r\n\t\tmyBST.add(\"two\");\r\n\t\tmyBST.add(\"three\");\r\n\t\tmyBST.add(\"four\");\r\n\t\tmyBST.add(\"five\");\r\...
[ { "docid": "38c11f4d307c5893dd17e980fa17c5ef", "score": "0.7791057", "text": "@Test\n public void testBinarySearch() {\n assertEquals(5, _02_BinarySearch.binarySearch(binary, 0, binary.length-1, 10000));\n assertEquals(4, _02_BinarySearch.binarySearch(binary, 0, binary.length-1, 599));\...
64ba3223049f1a551bad09c8737fd28d
The time of the last critical modification of the given file. The modification time (mtime) is changed by file modifications, e.g. by mknod(2), truncate(2), utime(2) and write(2).The change time (ctime) changed by writing or by setting inode information (owner, group, link count, mode, etc.). When a file on a Unix file...
[ { "docid": "7aeaadefb35034c042e9849700598da3", "score": "0.62852675", "text": "public long\n lastCriticalChange\n (\n long critical \n ) \n {\n return (pLastChange > critical) ? Math.max(pLastMod, pLastChange) : pLastMod;\n }", "title": "" } ]
[ { "docid": "965f325379622566ef0943a97bc25349", "score": "0.7086601", "text": "public long getModificationTime() {\n\t // Just use the file modification time. \n\t String path = dataPath + System.getProperty(\"file.separator\") + uuid;\n\n\t try {\n\t\tBasicFileAttributes attr\n\t\t = Files.g...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "90aef2161bf413df70fa5a424194ce54", "score": "0.0", "text": "public String[] AutoInstall() {\n\t\treturn null;\n\t}", "title": "" } ]
[ { "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...
5eb7264fd07e3b592befd52dd86fde68
Injects the users service proxy.
[ { "docid": "d72bdb169bdc35f3264505e9438bbeb0", "score": "0.5677991", "text": "@Inject\r\n\tpublic void setService(IPortalUsersServiceAsync service) {\r\n\t\tthis.service = service;\r\n\t}", "title": "" } ]
[ { "docid": "1f0040442f1122edcf943d4eaf3aca87", "score": "0.6292346", "text": "void setUserService(UserService userService);", "title": "" }, { "docid": "225afb0bbf766a7099a36fbfe4c29be8", "score": "0.62431175", "text": "private UserService() {\n init();\n }", "title": "...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "639238da4f334c4ddd60d8b53f9d5948", "score": "0.0", "text": "public static void main(String[] args) {\n\t\tSystem.setProperty(\"webdriver.chrome.driver\",\"E:\\\\Work\\\\chromedriver.exe\");\n\n\tWebDriver driver =new ChromeDriver();\n\t/*driver.get(\"http://www.axisbank.com\");Hit URL\n\tSys...
[ { "docid": "da34ed11fe7c5649b3cd0bdad6dca5df", "score": "0.7115525", "text": "@Override\n\t\tpublic void 비행() {\n\t\t\t\n\t\t}", "title": "" }, { "docid": "99cfe01c5035e9a9ca6dafada0e4a005", "score": "0.673545", "text": "@Override\r\n\tpublic void caminar() {\r\n\t\t// TODO Auto-gen...
7b62c35a85d371f6dedf62e90d44f37a
/ constructor call the copy constructor of the superclass, assign the savingsNumber to be one more than the savingsNumber of the original savings account.
[ { "docid": "b669a49a1b115f0e3e7177ab6e1daf04", "score": "0.77957034", "text": "public SavingsAccount(SavingsAccount oldAccount,double amount) {\r\n\t//calls superclass constructor\r\n\tsuper(oldAccount, amount);\r\n\taccountNumber=(oldAccount.getAccountNumber()+1);\r\n\t\r\n}", "title": "" } ]
[ { "docid": "9cf7231194f81dd2985fe4665307a625", "score": "0.74889576", "text": "public SavingsAccount(String name,double amount) {\r\n\t//calls superclass constructor \r\n\tsuper(name, amount);\r\n\taccountNumber = super.getAccountNumber() + \"-\" + savingsNumber;\r\n}", "title": "" }, { "doc...
7012558699fa0660f37829ae5455a6f5
Whether this transaction could be replaced due to BIP125 (replacebyfee); may be unknown for unconfirmed transactions not in the mempool
[ { "docid": "3f115130c7a72ab4620f9747c1f0d212", "score": "0.6132852", "text": "@ApiModelProperty(value = \"Whether this transaction could be replaced due to BIP125 (replace-by-fee); may be unknown for unconfirmed transactions not in the mempool\")\n public Bip125ReplaceableEnum getBip125Replaceable() {\...
[ { "docid": "d09f3c1775bbe60a187873b51674faca", "score": "0.5814443", "text": "@Override\n protected boolean arePendingTransactions() throws IOException {\n return ethWrapper.arePendingTransactionsForSendSuperblocksAddress();\n }", "title": "" }, { "docid": "85af22c6697c26fe3824d...
8ada1091f7aab2ec43cf6c996aec50d5
Criteria list of strings to batch the task by.
[ { "docid": "e1a1db0142ce6992338e9dc55e735a6d", "score": "0.55964077", "text": "List<String> getCriteria();", "title": "" } ]
[ { "docid": "680c1dedff3756e679e3ca3660719cea", "score": "0.6069407", "text": "void updateFilteredTaskList(Set<String> keywordSet);", "title": "" }, { "docid": "b8e2a1a352538126cd9d1029d3acd41c", "score": "0.603183", "text": "void updateFilteredTaskList(Set<String> keywords);", "t...
a52d5c5a47e689529b30401f214d58c9
JSP method to release all resources held by the tag.
[ { "docid": "6beedb56a23da78b539596c8dc49030f", "score": "0.0", "text": "public void release() {\n super.release();\n this.name = null;\n this.originalName = null;\n this.originalNesting = null;\n this.originalNestingName = null;\n }", "title": "" } ]
[ { "docid": "8228cb4cd5069703f114d45fe2308de9", "score": "0.76896507", "text": "@Override\n\tfinal public void destroy() {\n\t\tjspDestroy();\n\t}", "title": "" }, { "docid": "46208bbb6ec0901a362e34d4d5f827cc", "score": "0.75827044", "text": "public void release() {\r\n pageEL ...
abb6a870e7c71a3f46f718cec3afa914
Enhances (mutably) this entity fetch provider with dotnotation property.
[ { "docid": "e301d2407e56a18d3ab9f6a246e2c1c7", "score": "0.71843755", "text": "private FetchProvider<T> enhanceWith0(final String dotNotationProperty, final FetchProvider<AbstractEntity<?>> propertyProvider) {\n if (PropertyTypeDeterminator.isDotNotation(dotNotationProperty)) {\n final...
[ { "docid": "c8c84c771e79872ef8f06f520640a946", "score": "0.8032647", "text": "private FetchProvider<T> enhanceWith(final String dotNotationProperty) {\n if (\"\".equals(dotNotationProperty)) { // represents entity-itself (it is permitted to use such notation)\n return this;\n } ...
238eb0e09acc3e7e0b3cdf00c255762d
required .movie.Poster.Dimensions dimensions = 3;
[ { "docid": "d70d1b323ecd343fdc5d7f686bb341a8", "score": "0.7331345", "text": "com.ua.mytrinity.tv_client.proto.MovieServer.Poster.DimensionsOrBuilder getDimensionsOrBuilder();", "title": "" } ]
[ { "docid": "bbaca1434f15a27b20c7edb930ebfcf4", "score": "0.74298036", "text": "com.ua.mytrinity.tv_client.proto.MovieServer.Poster.Dimensions getDimensions();", "title": "" }, { "docid": "cfdc8c8c844ffb54ed951b6c7c9e45ca", "score": "0.6058872", "text": "public com.ua.mytrinity.tv_cli...
ee48713b9e9ecf0265f498e4f6bfa1dd
///////////////////////// config /////////////////////////// For 'config ' argument.
[ { "docid": "c8905383ef71c2653d510e35c1564893", "score": "0.0", "text": "public JmodDefinition addDirectoryToConfigPath(DirectoryRef dir) throws StfException {\n\t\targCollection.checkAndUpdateLevel(argStage);\n\t\tconfigArg.addToPath(dir);\n\t\treturn this;\n\t}", "title": "" } ]
[ { "docid": "cbf007d64135182c2cd888358399a948", "score": "0.8170957", "text": "private void config() {\r\n }", "title": "" }, { "docid": "f800cf9af9a833b28ed3d99148afd2da", "score": "0.79182947", "text": "void config();", "title": "" }, { "docid": "bdb6c277ff6a1becf6660...
dc53e3e5249629a56b36c54b26a50a9b
Returns an array of integers indexing the least busy day (fewest visits) of the week, for each week.
[ { "docid": "b4b950c4883cc6a2ed81ecf7331178c5", "score": "0.80965805", "text": "public static int[] leastBusyDayPerWeek(int[][][] data) {\n\t\tint[][] patientsVisitedPerDayPerWeek= new int[NUM_WEEKS][NUM_DAYS];\n\t\tfor (int week = 0; week < NUM_WEEKS; week++){ \n\t\t\t\tfor (int day = 0; day < NUM_DAYS;...
[ { "docid": "d1222d832e9f3db27ff24298018a5b73", "score": "0.697403", "text": "public static int[] busiestDayPerWeek(int[][][] data) {\n\t\tint[][] patientsVisitedPerDayPerWeek= new int[NUM_WEEKS][NUM_DAYS];\n\t\tfor (int week = 0; week < NUM_WEEKS; week++){ \n\t\t\t\tfor (int day = 0; day < NUM_DAYS; day...
11309f742fe877e07f2732660817154f
Set the mountOption property: Mode that describes whether the LUN has to be mounted as a datastore or attached as a LUN.
[ { "docid": "de07f58919126ed7b70e5af0a2f0a711", "score": "0.6915849", "text": "public DiskPoolVolume withMountOption(MountOptionEnum mountOption) {\n this.mountOption = mountOption;\n return this;\n }", "title": "" } ]
[ { "docid": "50484ed7167f65dabac9012841a857ea", "score": "0.63154554", "text": "public MountOptionEnum mountOption() {\n return this.mountOption;\n }", "title": "" }, { "docid": "a0118a0decfb26c98a01bf51a14154b3", "score": "0.6180265", "text": "public mount_args setOptions(M...
1f2168732def344cabca5261f6bbf7f7
This method was generated by MyBatis Generator. This method sets the value of the database column litemall_order_goods.goods_sn
[ { "docid": "f35f7aa9feced4b61e2d7870892857c9", "score": "0.735534", "text": "public void setGoodsSn(String goodsSn) {\n this.goodsSn = goodsSn;\n }", "title": "" } ]
[ { "docid": "0e213cf88a68b3a10f4c7d2e532860af", "score": "0.5934692", "text": "public String getGoodsSn() {\n return goodsSn;\n }", "title": "" }, { "docid": "157fce75dd74ffd2538b56fa570710bc", "score": "0.56624883", "text": "public void setGoodsNumber(String goodsNumber) {\...
df7582ed18c3e33a22772d6e78d359c4
PROPIEDADES DE LA VENTANA
[ { "docid": "87ba2941c3e4a568991278b60ee5c50e", "score": "0.0", "text": "private void initialize() {\n\t\tventana = new JFrame();\r\n\t\tventana.setTitle(\"Inscripciones de alumno\");\r\n\t\tventana.setBounds(100, 100, 1375, 497);\r\n\t\tventana.setLocationRelativeTo(null);\r\n\t\tPanelVertical panelPrin...
[ { "docid": "629e0f271058a90ca59850e7146c7b73", "score": "0.65203196", "text": "public void mostrarPrestamosActivos()\n {\n for(int i =0; i< prestamosPelis.length; i++)\n {\n System.out.println(prestamosPelis[i]);\n }\n }", "title": "" }, { "docid": "ea78...
d987a37eee370305ecbf1d3e7b733e9b
Tests retrieving an Order from the Database
[ { "docid": "4910b5c7d44ee4b65e2d62f57a4ad380", "score": "0.75907385", "text": "@Test\n\tpublic void getOrderTest() {\n\t\tOrderDTO order = service.getOrder(2);\n\n\t\tassertEquals(3, order.getClientId());\n\t\tassertEquals(\"BT Group\", order.getInstrument().getName());\n\t\tassertEquals(\"BT\", order.g...
[ { "docid": "4c66795dabe549d30210090c664d12ab", "score": "0.79078805", "text": "@Test\n void getByIdOrderSuccess() {\n Order retrievedOrder = dao.getById(2);\n assertNotNull(retrievedOrder);\n assertEquals(\"February Large Long-Sleeve\", retrievedOrder.getDescription());\n\n }"...
caebe815b59e8d801ec539a05569ac68
the test creates 2 electors which try to become active using a real zookeeper server. It verifies that 1 becomes active and 1 becomes standby. Upon becoming active the leader quits election and the test verifies that the standby now becomes active.
[ { "docid": "92ccd108e0eb94d5bc8d6f084792efe6", "score": "0.77003354", "text": "@Test(timeout=20000)\n public void testActiveStandbyTransition() throws Exception {\n LOG.info(\"starting test with parentDir:\" + PARENT_DIR);\n\n assertFalse(electors[0].parentZNodeExists());\n electors[0].ensureP...
[ { "docid": "bc9cb8ce748217d3a5c679df7660a38f", "score": "0.703424", "text": "@Test(timeout=15000)\n public void testHandleSessionExpirationOfStandby() throws Exception {\n electors[0].ensureParentZNode();\n electors[0].joinElection(appDatas[0]);\n ZooKeeperServer zks = getServer(serverFactory)...
5f0065af6509db566aebd7e7ffb5278d
Updates the movement of the arrows in the game.
[ { "docid": "34dcd66260608a75e1a53a96b14d1255", "score": "0.0", "text": "public void update() {\n if (y > 20) {\n y -= 20;\n } else {\n reachEnd = true;\n }\n\n }", "title": "" } ]
[ { "docid": "be0d58e31499cf8089b7d13871ac77e1", "score": "0.692193", "text": "private void updateArrowsLeft() {\n TextView arrowsLeft = findViewById(R.id.arrowsLeft);\n arrowsLeft.setText(String.valueOf(String.valueOf(game.getArrows())));\n }", "title": "" }, { "docid": "a8f6...
3e57d442c35b06ce86d4c4dc892bab46
isUnitCircle return true if the radius of this circle is 1 and its center is (0,0) and false otherwise.
[ { "docid": "d4d3f7fe0718d11a9f3f5a626a017766", "score": "0.91261303", "text": "public boolean isUnitCircle() {\r\n\r\n\t\tif (x == 0 && y == 0 && radius == 1) {\r\n\t\t\treturn true;\r\n\t\t} else {\r\n\t\t\treturn false;\r\n\t\t}\r\n\r\n\t}", "title": "" } ]
[ { "docid": "59153d00d534928e651505f8c03b9d64", "score": "0.7293025", "text": "public boolean isCircle() {\r\n\t\treturn true;\t}", "title": "" }, { "docid": "7e7048ceb380e40592ad5e85f978364b", "score": "0.6529428", "text": "boolean contains(Circle2D circle) {\n return dist...
4711b773700d765cd7e40ffc734b5fc9
Instantiates a new charge.
[ { "docid": "84338859c75d11d83fa5880f28249002", "score": "0.68481845", "text": "Charge(){\n\n\t}", "title": "" } ]
[ { "docid": "5f90553763b59093b44b92e704140d81", "score": "0.65433025", "text": "public Charge(double x0,double y0,double q0)\n {\n this.rx=x0;\n this.ry=y0;\n this.q=q0;\n }", "title": "" }, { "docid": "b63c377ba8763db8231d19ddcbf650bf", "score": "0.63862294", ...
67d9011498a3da8028a7e3dc4ee91e84
Creates a Card with details of name, limit and rebate.
[ { "docid": "ee6642c36f7e010f5f84fcd173f8c8fb", "score": "0.7835879", "text": "public Card(String name, double limit, double rebate) {\n this.name = name;\n this.limit = limit;\n this.rebate = rebate;\n this.paid = new TransactionList();\n this.unpaid = new TransactionL...
[ { "docid": "55bc026e0c5ea204577b7393cc9cbbcc", "score": "0.76397705", "text": "public Card(String name, double limit, double rebate, UUID uuid) {\n this.name = name;\n this.limit = limit;\n this.rebate = rebate;\n this.paid = new TransactionList();\n this.unpaid = new ...
dea96de0c8e05a71531a6bc6e4428899
Sets the es url.
[ { "docid": "3a629c083e0b71d407010355ae55daea", "score": "0.7792689", "text": "private void setEsUrl(String url, ResourceResolver resolver) {\n String language = AEMUtils.getLanguageFromPath(url);\n String urlString = elasticSearchConfigurationImpl.getESUrl() + EsSearchConstants.PROJECT_US ...
[ { "docid": "a4347b978b259d5f699efbbbf269d6d6", "score": "0.69251174", "text": "void setURL(java.lang.String url);", "title": "" }, { "docid": "131d3e77a045cd7e30dc968428525696", "score": "0.68695223", "text": "@Override\r\n public void SetUrl(String url) {\n \t_url=url;\r\n \t\...
b5cb131615c6e70e07cc0ba0cf461a01
TagInput requires a CreationStore purely for suggestions and validation purposes.
[ { "docid": "82a099b4c89c5240b97b080838ee3ff7", "score": "0.0", "text": "public void setCreationStore(CreationStore creationStore) {\n _creationStore.setValue(creationStore);\n }", "title": "" } ]
[ { "docid": "cc85d29780c68ec1ca5351f7f8f6ed61", "score": "0.55122715", "text": "@Override\n\tpublic String getTag() {\n\t\treturn \"input\";\n\t}", "title": "" }, { "docid": "de865026d0cdf8402f0c6425cdbdd1ed", "score": "0.5370999", "text": "public Input createInput(String name);", ...
b1c456886a9fbc97961d8c5e21715247
Called by timer every time timer ticks
[ { "docid": "dc02043ce68f05c610d28870d9c24305", "score": "0.0", "text": "public void addDataPerTick()\n\t{\n\t\t//Create and Add dynamic graphs to Canvas\n\t\t\n\t\tdynamicGraph.addDataObservation();\n\t\t\n\t}", "title": "" } ]
[ { "docid": "9e929caab15ad29f863b7bfd07b6bc8e", "score": "0.7731322", "text": "protected abstract void timerTick();", "title": "" }, { "docid": "540f141b96ad4d66cd0eac5ff56d1fad", "score": "0.76958406", "text": "@Override\n\tpublic void onTimerTick(int id) {\n\t\t\n\t}", "title": ...
d4c2b9aaac7deedc7343b9e4312193f2
Clear the selection color
[ { "docid": "34175a5b772bdaa191a637b0a0cac326", "score": "0.838748", "text": "public SelectionOptions clearColor()\r\n {\r\n clear( COLOR_KEY );\r\n return this;\r\n }", "title": "" } ]
[ { "docid": "ab6d3dc9c5fb81248681181eb3af58ec", "score": "0.81972814", "text": "public void clearCurSelection();", "title": "" }, { "docid": "db4ad92e81f39a5cc25c33c7b879f78a", "score": "0.8118725", "text": "void clearSelection();", "title": "" }, { "docid": "52a9fbac889c9...
29efa56c8dd4c40f4923a117f18a0a4d
Calculates an elementwise multiplication of a vector and a scalar
[ { "docid": "33dfe83e75f53b9406319ef00e0f7850", "score": "0.7336182", "text": "private double[] multiplyVectorScalar(double[] vector, double scalar) {\n\t\tdouble[] ret = new double[vector.length];\n\t\tfor (int i = 0; i < ret.length; i++) {\n\t\t\tret[i] = vector[i] * scalar;\n\t\t}\n\t\treturn ret;\n\t...
[ { "docid": "1ac2a635ee8955356f27426d902a0f36", "score": "0.76382464", "text": "public void multiply (Float scalar) {\n float temp = scalar;\n for (int i = 0, n = vector.length; i < n; i++) {\n vector[i] *= temp;\n }\n }", "title": "" }, { "docid": "48e7f472...
a35df0ab638db1407d3d275f97e06dec
Sets the maximum number of transactions that can be in the "prepared" state simultaneously .google.protobuf.Int64Value max_prepared_transactions = 6;
[ { "docid": "7e6f672541a7b3eb9f27044675de0040", "score": "0.66262764", "text": "boolean hasMaxPreparedTransactions();", "title": "" } ]
[ { "docid": "5436ee83e0854e1ab5a54593e2792acb", "score": "0.74123305", "text": "public Builder setMaxPreparedTransactions(com.google.protobuf.Int64Value value) {\n if (maxPreparedTransactionsBuilder_ == null) {\n if (value == null) {\n throw new NullPointerException();\n ...
800996cc999ce8297d629d9fc1a6130f
Retrieve all refunds for a booking
[ { "docid": "bab77cbbecf342539b5508a8cca7fdd6", "score": "0.6509598", "text": "public InlineResponse20016 getRefunds(Long bookingId) throws ApiException {\n ApiResponse<InlineResponse20016> resp = getRefundsWithHttpInfo(bookingId);\n return resp.getData();\n }", "title": "" } ]
[ { "docid": "d76b26434418ab46a3009848118ff577", "score": "0.6922936", "text": "public ArrayList<Refund> SelectAllRefundMember() {\n\t\tConnection con = getConnection();\r\n\t\t\r\n\t\tArrayList<Refund> list = new AdminDao().SelectAllRefundMember(con);\r\n\t\t\r\n\t\tif(list != null) {\r\n\t\t\tcommit(con...
77f75a9481d8cd231a87f69d1b0ee6ac
Updates (repaints) the location images in the location shop. Primarily used to update the dispaly after a location is bought from the location market.
[ { "docid": "476ba433903a0fc914a01cb6755319cd", "score": "0.6171496", "text": "public void updateShopImages(DiceCityGame game){\n\t\tfor(int n = 0; n < 4; n++){\n\t\t\tLocation rowOneLocation = game.getLocationMarket().getLocation(n);\n\t\t\tLocation rowTwoLocation = game.getLocationMarket().getLocation(...
[ { "docid": "dfce7eada01256897186b873773dc9cc", "score": "0.65541255", "text": "void updateImage() {\n\t\n\t\tliveMapNew = op.openURL(liveMapStr);\n\t\t\n\t\t//ImageProcessor ipOld = liveMapOrig.getProcessor();\n\t\tImageProcessor ipNew = liveMapNew.getProcessor();\n\t\t\n\t\t//Calibration cal = liveMapN...
0047c1a7eab602459a591cff19f59ad2
/ / / / / / / / / / / / /
[ { "docid": "e86d6dadd25126362b292addea229865", "score": "0.0", "text": "public AggregateResourceBundleLocator(List<String> bundleNames, ResourceBundleLocator delegate)\n/* */ {\n/* 59 */ this(bundleNames, delegate, null);\n/* */ }", "title": "" } ]
[ { "docid": "c5535bcafc031111cd4759821f42c009", "score": "0.560194", "text": "@Override\n\tdouble permimeter() {\n\t\treturn 2*length+2*breadth;\n\t}", "title": "" }, { "docid": "c2abac99adbb5cc23924536ed7ed5bb2", "score": "0.5431525", "text": "@Override\n\tpublic void divertir() {\n\...
e566119490dee5d8927f8c5ababad9b8
Function to list all datasets of a specific openBIS project
[ { "docid": "cde74546442039759fd006032948bb65", "score": "0.73456824", "text": "@Override\n public List<DataSet> getDataSetsOfProjects(List<Project> projectIdentifier) {\n // TODO does not work yet\n throw new NotImplementedException();\n }", "title": "" } ]
[ { "docid": "58faafd591413d31b66504559f5c3348", "score": "0.7032779", "text": "@Override\n public List<DataSet> getDataSetsOfProjectByIdentifier(String projectIdentifier) {\n // TODO does not work yet\n throw new NotImplementedException();\n }", "title": "" }, { "docid": "9a66554c00cd...
77e3aa5633cc91f2d369a84b2b1958e1
/ To change this license header, choose License Headers in Project Properties. To change this template file, choose Tools | Templates and open the template in the editor.
[ { "docid": "37123301893cc7a12adb5f2017697bd7", "score": "0.0", "text": "public interface Controller {\r\n \r\n public void recalc(); \r\n \r\n}", "title": "" } ]
[ { "docid": "c4efc9f9911178a27ec9261384d5f141", "score": "0.66131103", "text": "public void mo12644zk() {\n }", "title": "" }, { "docid": "5d259e9a9ed31ac29902b25db191acd1", "score": "0.62317604", "text": "@Override\n\tpublic void bewegen() {\n\t\t\n\t}", "title": "" }, ...
3da0dd3ee192b6eadbb7741c0f9b29fd
Retourne le solde d'argent du joueur.
[ { "docid": "2da8a12a96e37485fe3e168ebd6ecff5", "score": "0.0", "text": "public int getMoney();", "title": "" } ]
[ { "docid": "80fa59a48b796866f145a49bfc25c0af", "score": "0.67152727", "text": "public double getSolde() {\n\t\treturn Filiere.LA_FILIERE.getBanque().getSolde(Filiere.LA_FILIERE.getActeur(getNom()), this.cryptogramme);\n\t}", "title": "" }, { "docid": "1edc41cdc4d0db3465e8834af72150df", "...
2ed645c89383ed74e847997ddb34f595
This method was generated by MyBatis Generator. This method returns the value of the database column cl_user.regist_time
[ { "docid": "0904c4c4a41c61367f41e9d9de4d08e0", "score": "0.66008645", "text": "public Date getRegist_time() {\n return regist_time;\n }", "title": "" } ]
[ { "docid": "c115b5917d4955efaf8341d6813d90da", "score": "0.6631942", "text": "public String getRegisterTime() {\r\n return registerTime;\r\n }", "title": "" }, { "docid": "a9693f856e5b40e21a2b58ecb16104bd", "score": "0.6629384", "text": "public Long getRegtime() {\r\n ...
a8ee70f09bb9fc369be4c81b4de11f8a
Returns a new geo hash distance filter.
[ { "docid": "abc98d7b75586304ff8f390f3ff87ac9", "score": "0.76632774", "text": "private Filter getNewGeoHashDistanceFilter(String field, double lat, double lng, double distanceInMiles) {\n\t\treturn new GeoHashDistanceFilter(new QueryWrapperFilter(new MatchAllDocsQuery()), \n\t\t\t\tlat, lng, distanceInM...
[ { "docid": "b4389ccef651b1085308b4b79858ce02", "score": "0.5532078", "text": "@JsonCreator\n public GeoDistancePredicate(@JsonProperty(\"latitude\") String latitude,\n @JsonProperty(\"longitude\") String longitude,\n @JsonProperty(\"distance\") ...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "a4855700f6f96a5504764d87b6a665fd", "score": "0.0", "text": "@Override\n\t\t\t\t\t\t\t\t\tpublic void onLoadingStarted(String arg0,\n\t\t\t\t\t\t\t\t\t\t\tView arg1) {\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t}", "title": "" } ]
[ { "docid": "d7194e467f51e022c107531d8614b6a3", "score": "0.6905833", "text": "@Override\r\n\tpublic void anular() {\n\t\t\r\n\t}", "title": "" }, { "docid": "941cb2826e3c700358fcaba402e6bb01", "score": "0.66775143", "text": "@Override\r\n\tpublic void hissetmek() {\n\r\n\t}", "ti...
36cc5c22e77c57d2e12bd2ebc18884f1
/ / / / /
[ { "docid": "cdac6e64c8490e463130c016e3b46723", "score": "0.0", "text": "public void setPreventiveAction(PreventiveAction preventiveAction) {\r\n/* 379 */ PreventiveAction oldAction = this.getPreventiveAction();\r\n/* 380 */ ((Deviation)this.object).setPreventiveAction(preventiveAction);\r\n/...
[ { "docid": "785f839822f847fb68d932ffd1b6fbf8", "score": "0.5444842", "text": "public static void main(String[] args) {\nSystem.out.println(\"\\\\\\\\\\\\\\\\\\\\\\\\\");\r\nSystem.out.println(\"| * * |\");\r\nSystem.out.println(\"| * |\");\r\nSystem.out.println(\"| \\\\_/ |\");\r\nSystem.out.print(\"\...
f9c1ec696cfc88cd8b23fa813f521375
/ Fill mailing information and submit
[ { "docid": "3acc844f4563674cdb57ce4392e2cc3b", "score": "0.6152706", "text": "public void fillMailingSection(String firstName, String lastName, String zipCode) {\n\t\tWaitExtensions.waitForPageToLoad(10);\n\t\t\n\t\tthis.firstName.sendKeys(firstName);\n\t\tthis.lastName.sendKeys(lastName);\n\t\tthis.zip...
[ { "docid": "de6decce737ce3ec8df8388ba985da2d", "score": "0.61724734", "text": "@Test\n public void coutactFormFilling() {\n \tWebElement contactLink = driver.findElement(By.linkText(\"Contact\"));\n \tcontactLink.click();\n \t\n \t//Wait for page to load\n \twait.until(ExpectedConditio...
3e5f98f79f18c8b2ab34d55dc1f35d32
helperfunction for register a keyListener at all components in a container
[ { "docid": "f86588a642919509988e949bcfc98eae", "score": "0.6982149", "text": "static public void registerKeyListener(JComponent component, KeyListener listener)\n {\n Component _child = null;\n\n if (component != null)\n {\n component.addKeyListener(listener);\n\n int co...
[ { "docid": "004db1ff07fda6dee8cfd0bea4525578", "score": "0.71057534", "text": "@Override\r\n public void addListener(KeyListener listener) {\n }", "title": "" }, { "docid": "aec04ffb9bd2fadc58ed4a068dbfb801", "score": "0.6995726", "text": "private void registerListener() {\r\n ...
aac1ed01f11de3770eea13245170e67e
circle square rectangle sphere area volume circle pir^2 sphere volume = 4/3pir^3 4pir^2
[ { "docid": "427cdb45773b9b0d62073b9db8c12eb0", "score": "0.0", "text": "double getArea();", "title": "" } ]
[ { "docid": "d340cad52591c3818959f292b0af81d7", "score": "0.72727436", "text": "public static double getSphereSurface(double diameter) { return Math.PI*(diameter/2.0)*(diameter/2.0)*4;}", "title": "" }, { "docid": "48d8812c5d022ba3fc46f5b17e968497", "score": "0.71222246", "text": "pu...
a18c6cf64529030e96d2c89022b19e34
get all todo items in this run; used when ADAPTIVE_EP = true
[ { "docid": "19a7504486e4689400480c62952a3204", "score": "0.0", "text": "public ArrayList<SolutionEdge> getShortestPath(int[] curCurList) throws SQLException{\n\t\tHashMap<SolutionEdge, ArrayList<SolutionEdge>> partitions;\n\t\tpartitions = new HashMap<SolutionEdge, ArrayList<SolutionEdge>>();\n\t\tSolut...
[ { "docid": "a8a2900b08148042e27be926fcbab345", "score": "0.7752652", "text": "public static List<ToDoItem> getAllTasks() {\n\n\t\tMongoDatabase database = JavaMongoConnection.getDB(DBNAME);\n\n\t\tMongoCollection<Document> collection = database.getCollection(COLLECTION_NAME);\n\n\t\tList<ToDoItem> allIt...
e0e141432eb248e714e63ab3a7908d5f
/ 211: / 212:
[ { "docid": "0e436e43d7000f949c60b5f23aad727f", "score": "0.0", "text": "public void setDtComponenteCosto(DataTable dtComponenteCosto)\r\n/* 213: */ {\r\n/* 214:306 */ this.dtComponenteCosto = dtComponenteCosto;\r\n/* 215: */ }", "title": "" } ]
[ { "docid": "e41f74918f7a4cd46ab198c167b00b21", "score": "0.58071434", "text": "public int k_()\r\n/* 244: */ {\r\n/* 245:196 */ return 9;\r\n/* 246: */ }", "title": "" }, { "docid": "f55a03c1b0bb41c30a368bb3b7179305", "score": "0.5367814", "text": "Map m21532OooO00o();"...
8fe0d1aeedf39692bbab545f6a286d1a
Called when the observable encounters an error
[ { "docid": "5a84614b23f69e80168d221ec481abdb", "score": "0.6644533", "text": "@Override\n public void onError(Throwable e) {\n }", "title": "" } ]
[ { "docid": "a98913e4308ec395c6585ed53df8099a", "score": "0.7005145", "text": "@Override\n public void onError() {\n }", "title": "" }, { "docid": "4d3e838a8fda387117963bb7c39c1f21", "score": "0.69400525", "text": "@Override\n publi...
7716388372393339ffc558d658c5b995
Creates a new instance of Logic
[ { "docid": "63fc8274eec8656036927e8c835ef2a6", "score": "0.7917029", "text": "public Logic() {\n }", "title": "" } ]
[ { "docid": "f2f5b5cea5cf739b918dec43e0247493", "score": "0.71501964", "text": "LogicCondition createLogicCondition();", "title": "" }, { "docid": "7c28fdf65bbe12901efe0f45decae38b", "score": "0.69601566", "text": "void create(GameLogic gameLogic);", "title": "" }, { "doci...
a45a44e1da907685f8a76a4049f0ac3c
Removes an overlay from its cache
[ { "docid": "f6613812de1fd979b908b6b576d1c015", "score": "0.51922137", "text": "public static void removeCache(String fxml) {\n cache.remove(fxml);\n }", "title": "" } ]
[ { "docid": "5332b6e91737f476bf337a01692d8e1b", "score": "0.6411467", "text": "void evictCache();", "title": "" }, { "docid": "f08b4a897f22e3eb9c37ba93fa192706", "score": "0.6381261", "text": "public void removeObject(int cacheLevel);", "title": "" }, { "docid": "71288477d...
4241e2407beede8e7d7cba553e468554
$ANTLR end "rule__PojoAttributeDirective__Group_6__6" $ANTLR start "rule__PojoAttributeDirective__Group_6__6__Impl" ../org.sqlproc.model.ui/srcgen/org/sqlproc/model/ui/contentassist/antlr/internal/InternalProcessorModel.g:21470:1: rule__PojoAttributeDirective__Group_6__6__Impl : ( RULE_RPAREN ) ;
[ { "docid": "9137c4c8e895f0acc513ede5277b3a44", "score": "0.7887756", "text": "public final void rule__PojoAttributeDirective__Group_6__6__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.sqlproc.model.ui/src-gen/org/...
[ { "docid": "fbe0c4f1cba7c2e555efda99a248db5a", "score": "0.82953715", "text": "public final void rule__PojoAttributeDirective__Group_6__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.sqlproc.model.ui/src-gen/org/sqlpr...