\n\n\n"}
+{"text": "% Generated by roxygen2: do not edit by hand\n% Please edit documentation in R/data-movie.R\n\\docType{data}\n\\name{movie_656}\n\\alias{movie_656}\n\\title{Star Wars: Episode IV - A New Hope}\n\\format{\nigraph object\n}\n\\source{\nhttps://dataverse.harvard.edu/dataset.xhtml?persistentId=doi:10.7910/DVN/T4HBA3\n\nhttps://www.imdb.com/title/tt0076759\n}\n\\usage{\nmovie_656\n}\n\\description{\nInteractions of characters in the movie \"Star Wars: Episode IV - A New Hope\" (1977)\n}\n\\details{\nThe networks were built with a movie script parser. Even after multiple manual checks, the data set can still contain minor errors (e.g. typos in character names or wrongly parsed names). This may require some additional manual checks before using the data. Please report any such issues (https://github.com/schochastics/networkdata/issues/)\n}\n\\references{\nKaminski, Jermain; Schober, Michael; Albaladejo, Raymond; Zastupailo, Oleksandr; Hidalgo, César, 2018, Moviegalaxies - Social Networks in Movies, https://doi.org/10.7910/DVN/T4HBA3, Harvard Dataverse, V3\n}\n\\keyword{datasets}\n"}
+{"text": "\n#define uint32 unsigned int\n#define uint8 unsigned char\n\n// ===================================================================\n// emulates google3/util/endian/endian.h\n//\n// TODO(xiaofeng): PROTOBUF_LITTLE_ENDIAN is unfortunately defined in\n// google/protobuf/io/coded_stream.h and therefore can not be used here.\n// Maybe move that macro definition here in the furture.\nuint32 ghtonl(uint32 x) \n {\n#if 0\n class \n {\n };\n#endif\n#if 1\n union\n {\n uint32 result;\n uint8 result_array[4];\n };\n#endif\n#if 0\n result_array[0] = static_cast(x >> 24);\n result_array[1] = static_cast((x >> 16) & 0xFF);\n result_array[2] = static_cast((x >> 8) & 0xFF);\n result_array[3] = static_cast(x & 0xFF);\n#endif\n\n return result;\n }\n"}
+{"text": "HEADERS += \\\n $$PWD/qtestrunner.h \\\n $$PWD/qdocumentqmlparsertest.h \\\n $$PWD/qplugintypestest.h \\\n $$PWD/qtypestub.h\n\nSOURCES += \\\n $$PWD/main.cpp \\\n $$PWD/qtestrunner.cpp \\\n $$PWD/qdocumentqmlparsertest.cpp \\\n $$PWD/qplugintypestest.cpp \\\n $$PWD/qtypestub.cpp\n"}
+{"text": "\n\n \n CodeMirror: Search/Replace Demo\n \n \n \n \n \n \n \n \n\n \n \n \n
CodeMirror: Search/Replace Demo
\n\n \n\n \n\n
Demonstration of primitive search/replace functionality. The\n keybindings (which can be overridden by custom keymaps) are:
\n \n\n"}
+{"text": "/*\n * pthread_condattr_init.c\n *\n * Description:\n * This translation unit implements condition variables and their primitives.\n *\n *\n * --------------------------------------------------------------------------\n *\n * Pthreads-win32 - POSIX Threads Library for Win32\n * Copyright(C) 1998 John E. Bossom\n * Copyright(C) 1999,2003 Pthreads-win32 contributors\n * \n * Contact Email: rpj@callisto.canberra.edu.au\n * \n * The current list of contributors is contained\n * in the file CONTRIBUTORS included with the source\n * code distribution. The list can also be seen at the\n * following World Wide Web location:\n * http://sources.redhat.com/pthreads-win32/contributors.html\n * \n * This library is free software; you can redistribute it and/or\n * modify it under the terms of the GNU Lesser General Public\n * License as published by the Free Software Foundation; either\n * version 2 of the License, or (at your option) any later version.\n * \n * This library is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n * Lesser General Public License for more details.\n * \n * You should have received a copy of the GNU Lesser General Public\n * License along with this library in the file COPYING.LIB;\n * if not, write to the Free Software Foundation, Inc.,\n * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA\n */\n\n#include \"pthread.h\"\n#include \"implement.h\"\n\n\nint\npthread_condattr_init (pthread_condattr_t * attr)\n /*\n * ------------------------------------------------------\n * DOCPUBLIC\n * Initializes a condition variable attributes object\n * with default attributes.\n *\n * PARAMETERS\n * attr\n * pointer to an instance of pthread_condattr_t\n *\n *\n * DESCRIPTION\n * Initializes a condition variable attributes object\n * with default attributes.\n *\n * NOTES:\n * 1) Use to define condition variable types\n * 2) It is up to the application to ensure\n * that it doesn't re-init an attribute\n * without destroying it first. Otherwise\n * a memory leak is created.\n *\n * RESULTS\n * 0 successfully initialized attr,\n * ENOMEM insufficient memory for attr.\n *\n * ------------------------------------------------------\n */\n{\n pthread_condattr_t attr_result;\n int result = 0;\n\n attr_result = (pthread_condattr_t) calloc (1, sizeof (*attr_result));\n\n if (attr_result == NULL)\n {\n result = ENOMEM;\n }\n\n *attr = attr_result;\n\n return result;\n\n} /* pthread_condattr_init */\n"}
+{"text": "# This file is part of Tautulli.\n#\n# Tautulli is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# Tautulli is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with Tautulli. If not, see .\n\nfrom __future__ import unicode_literals\nfrom future.builtins import object\n\nimport re\n\nimport plexpy\nif plexpy.PYTHON2:\n import database\n import helpers\n import logger\nelse:\n from plexpy import database\n from plexpy import helpers\n from plexpy import logger\n\n\nclass DataTables(object):\n \"\"\"\n Server side processing for Datatables\n \"\"\"\n\n def __init__(self):\n self.ssp_db = database.MonitorDatabase()\n\n def ssp_query(self,\n table_name=None,\n table_name_union=None,\n columns=[],\n columns_union=[],\n custom_where=[],\n custom_where_union=[],\n group_by=[],\n group_by_union=[],\n join_types=[],\n join_tables=[],\n join_evals=[],\n kwargs=None):\n\n if not table_name:\n logger.error('Tautulli DataTables :: No table name received.')\n return None\n\n # Fetch all our parameters\n if kwargs.get('json_data'):\n parameters = helpers.process_json_kwargs(json_kwargs=kwargs.get('json_data'))\n else:\n logger.error('Tautulli DataTables :: Parameters for Datatables must be sent as a serialised json object '\n 'named json_data.')\n return None\n\n extracted_columns = self.extract_columns(columns=columns)\n join = self.build_join(join_types, join_tables, join_evals)\n group = self.build_grouping(group_by)\n c_where, cw_args = self.build_custom_where(custom_where)\n order = self.build_order(parameters['order'],\n extracted_columns['column_named'],\n parameters['columns'])\n where, w_args = self.build_where(parameters['search']['value'],\n extracted_columns['column_named'],\n parameters['columns'])\n\n # Build union parameters\n if table_name_union:\n extracted_columns_union = self.extract_columns(columns=columns_union)\n group_u = self.build_grouping(group_by_union)\n c_where_u, cwu_args = self.build_custom_where(custom_where_union)\n union = 'UNION SELECT %s FROM %s %s %s' % (extracted_columns_union['column_string'],\n table_name_union,\n c_where_u,\n group_u)\n else:\n union = ''\n cwu_args = []\n\n args = cw_args + cwu_args + w_args\n\n # Build the query\n query = 'SELECT * FROM (SELECT %s FROM %s %s %s %s %s) %s %s' \\\n % (extracted_columns['column_string'], table_name, join, c_where, group, union, where, order)\n\n # logger.debug(\"Query: %s\" % query)\n\n # Execute the query\n filtered = self.ssp_db.select(query, args=args)\n\n # Remove NULL rows\n filtered = [row for row in filtered if not all(v is None for v in row.values())]\n\n # Build grand totals\n totalcount = self.ssp_db.select('SELECT COUNT(id) as total_count from %s' % table_name)[0]['total_count']\n\n # Get draw counter\n draw_counter = int(parameters['draw'])\n\n # Paginate results\n result = filtered[parameters['start']:(parameters['start'] + parameters['length'])]\n\n output = {'result': result,\n 'draw': draw_counter,\n 'filteredCount': len(filtered),\n 'totalCount': totalcount}\n\n return output\n\n def build_grouping(self, group_by=[]):\n # Build grouping\n group = ''\n\n for g in group_by:\n group += g + ', '\n if group:\n group = 'GROUP BY ' + group.rstrip(', ')\n\n return group\n\n def build_join(self, join_types=[], join_tables=[], join_evals=[]):\n # Build join parameters\n join = ''\n\n for i, join_type in enumerate(join_types):\n if join_type.upper() == 'LEFT OUTER JOIN':\n join += 'LEFT OUTER JOIN %s ON %s = %s ' % (join_tables[i], join_evals[i][0], join_evals[i][1])\n elif join_type.upper() == 'JOIN' or join_type.upper() == 'INNER JOIN':\n join += 'JOIN %s ON %s = %s ' % (join_tables[i], join_evals[i][0], join_evals[i][1])\n\n return join\n\n def build_custom_where(self, custom_where=[]):\n # Build custom where parameters\n c_where = ''\n args = []\n\n for w in custom_where:\n if isinstance(w[1], (list, tuple)) and len(w[1]):\n c_where += '('\n for w_ in w[1]:\n if w_ == None:\n c_where += w[0] + ' IS NULL OR '\n elif str(w_).startswith('LIKE '):\n c_where += w[0] + ' LIKE ? OR '\n args.append(w_[5:])\n else:\n c_where += w[0] + ' = ? OR '\n args.append(w_)\n c_where = c_where.rstrip(' OR ') + ') AND '\n else:\n if w[1] == None:\n c_where += w[0] + ' IS NULL AND '\n elif str(w[1]).startswith('LIKE '):\n c_where += w[0] + ' LIKE ? AND '\n args.append(w[1][5:])\n else:\n c_where += w[0] + ' = ? AND '\n args.append(w[1])\n\n if c_where:\n c_where = 'WHERE ' + c_where.rstrip(' AND ')\n\n return c_where, args\n\n def build_order(self, order_param=[], columns=[], dt_columns=[]):\n # Build ordering\n order = ''\n\n for o in order_param:\n sort_order = ' COLLATE NOCASE'\n if o['dir'] == 'desc':\n sort_order += ' DESC'\n # We first see if a name was sent though for the column sort.\n if dt_columns[int(o['column'])]['data']:\n # We have a name, now check if it's a valid column name for our query\n # so we don't just inject a random value\n if any(d.lower() == dt_columns[int(o['column'])]['data'].lower()\n for d in columns):\n order += dt_columns[int(o['column'])]['data'] + '%s, ' % sort_order\n else:\n # if we receive a bogus name, rather not sort at all.\n pass\n # If no name exists for the column, just use the column index to sort\n else:\n order += columns[int(o['column'])] + ', '\n\n if order:\n order = 'ORDER BY ' + order.rstrip(', ')\n\n return order\n\n def build_where(self, search_param='', columns=[], dt_columns=[]):\n # Build where parameters\n where = ''\n args = []\n\n if search_param:\n for i, s in enumerate(dt_columns):\n if s['searchable']:\n # We first see if a name was sent though for the column search.\n if s['data']:\n # We have a name, now check if it's a valid column name for our query\n # so we don't just inject a random value\n if any(d.lower() == s['data'].lower() for d in columns):\n where += s['data'] + ' LIKE ? OR '\n args.append('%' + search_param + '%')\n else:\n # if we receive a bogus name, rather not search at all.\n pass\n # If no name exists for the column, just use the column index to search\n else:\n where += columns[i] + ' LIKE ? OR '\n args.append('%' + search_param + '%')\n if where:\n where = 'WHERE ' + where.rstrip(' OR ')\n \n return where, args\n\n # This method extracts column data from our column list\n # The first parameter is required, the match_columns parameter is optional and will cause the function to\n # only return results if the value also exists in the match_columns 'data' field\n @staticmethod\n def extract_columns(columns=None, match_columns=None):\n columns_string = ''\n columns_literal = []\n columns_named = []\n columns_order = []\n\n for column in columns:\n # We allow using \"as\" in column names for more complex sql functions.\n # This function breaks up the column to get all it's parts.\n as_search = re.compile(' as ', re.IGNORECASE)\n\n if re.search(as_search, column):\n column_named = re.split(as_search, column)[1].rpartition('.')[-1]\n column_literal = re.split(as_search, column)[0]\n column_order = re.split(as_search, column)[1]\n if match_columns:\n if any(d['data'].lower() == column_named.lower() for d in match_columns):\n columns_string += column + ', '\n columns_literal.append(column_literal)\n columns_named.append(column_named)\n columns_order.append(column_order)\n else:\n columns_string += column + ', '\n columns_literal.append(column_literal)\n columns_named.append(column_named)\n columns_order.append(column_order)\n else:\n column_named = column.rpartition('.')[-1]\n if match_columns:\n if any(d['data'].lower() == column_named.lower() for d in match_columns):\n columns_string += column + ', '\n columns_literal.append(column)\n columns_named.append(column_named)\n columns_order.append(column)\n else:\n columns_string += column + ', '\n columns_literal.append(column)\n columns_named.append(column_named)\n columns_order.append(column)\n\n columns_string = columns_string.rstrip(', ')\n\n # We return a dict of the column params\n # column_string is a comma seperated list of the exact column variables received.\n # column_literal is the text before the \"as\" if we have an \"as\". Usually a function.\n # column_named is the text after the \"as\", if we have an \"as\". Any table prefix is also stripped off.\n # We use this to match with columns received from the Datatables request.\n # column_order is the text after the \"as\", if we have an \"as\". Any table prefix is left intact.\n column_data = {'column_string': columns_string,\n 'column_literal': columns_literal,\n 'column_named': columns_named,\n 'column_order': columns_order\n }\n\n return column_data\n"}
+{"text": "\n\n\n DBpedia Mapping Sprint, Summer 2011 - Language Race\n \n \n \n \n\n\n\n
\nAuthor: \nPablo N. Mendes (call for action and race pages).\nThanks to Paul Kreis and Max Jakob for doing the actual work of computing the things I display here. \n
\n\n"}
+{"text": "/*\n * Copyright (c) 2016, Intel Corporation\n * All rights reserved.\n *\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions are met:\n *\n * 1. Redistributions of source code must retain the above copyright notice,\n * this list of conditions and the following disclaimer.\n * 2. Redistributions in binary form must reproduce the above copyright notice,\n * this list of conditions and the following disclaimer in the documentation\n * and/or other materials provided with the distribution.\n * 3. Neither the name of the Intel Corporation nor the names of its\n * contributors may be used to endorse or promote products derived from this\n * software without specific prior written permission.\n *\n * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n * ARE DISCLAIMED. IN NO EVENT SHALL THE INTEL CORPORATION OR CONTRIBUTORS BE\n * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n * POSSIBILITY OF SUCH DAMAGE.\n */\n\n/**\n * @brief DFU class driver\n *\n * USB DFU device class driver\n *\n */\n\n#include \n#include \n\n#include \"qm_flash.h\"\n#include \"qm_gpio.h\"\n#include \"qm_init.h\"\n#include \"qm_interrupt.h\"\n#include \"qm_isr.h\"\n#include \"qm_pic_timer.h\"\n\n#include \"usb_device.h\"\n#include \"usb_dfu.h\"\n#include \"usb_struct.h\"\n\n#include \"bl_data.h\"\n#include \"dfu/core/dfu_core.h\"\n#include \"fw-manager.h\"\n#include \"fw-manager_utils.h\"\n\n#define USB_VBUS_GPIO_PIN 28\n#define USB_VBUS_GPIO_PORT QM_GPIO_0\n#define DBG QM_PRINTF\n\n#define LOW_BYTE(x) ((x)&0xFF)\n#define HIGH_BYTE(x) ((x) >> 8)\n\n/* Lakemont application's entry point (Flash1) */\n#if (UNIT_TEST)\nuint32_t test_lmt_app;\n#define LMT_APP_ADDR (&test_lmt_app)\n#else\n#define LMT_APP_ADDR (0x40030000)\n#endif\n\n/* Generates one interrupt after 10 seconds with a 32MHz sysclk. */\n#define TIMEOUT 0x14000000\n\n/* Forward declarations */\nstatic void dfu_status_cb(void *data, int error, qm_usb_status_t status);\nstatic int dfu_class_handle_req(usb_setup_packet_t *pSetup, uint32_t *data_len,\n\t\t\t\tuint8_t **data);\nstatic void timeout(void *data);\n\nstatic uint8_t usb_buffer[DFU_MAX_XFER_SIZE]; /* DFU data buffer */\n\n/* Set on USB detach, needed for the proprietary 'detach' extension of DFU. */\nstatic bool usb_detached = false;\n\nstatic const qm_pic_timer_config_t pic_conf = {.mode =\n\t\t\t\t\t\t QM_PIC_TIMER_MODE_PERIODIC,\n\t\t\t\t\t .int_en = true,\n\t\t\t\t\t .callback = timeout,\n\t\t\t\t\t .callback_data = NULL};\n\n/* Structure representing the DFU mode USB description */\nstatic const uint8_t dfu_mode_usb_description[] = {\n /* Device descriptor */\n USB_DEVICE_DESC_SIZE,\t\t /* Descriptor size */\n USB_DEVICE_DESC,\t\t\t /* Descriptor type */\n LOW_BYTE(USB_1_1), HIGH_BYTE(USB_1_1), /* USB version in BCD format */\n 0x00,\t\t\t\t /* Class - Interface specific */\n 0x00,\t\t\t\t /* SubClass - Interface specific */\n 0x00,\t\t\t\t /* Protocol - Interface specific */\n MAX_PACKET_SIZE_EP0,\t\t /* EP0 Max Packet Size */\n LOW_BYTE(VENDOR_ID), HIGH_BYTE(VENDOR_ID),\t\t /* Vendor Id */\n LOW_BYTE(DFU_PRODUCT_ID), HIGH_BYTE(DFU_PRODUCT_ID), /* Product Id */\n LOW_BYTE(BCDDEVICE_RELNUM),\n HIGH_BYTE(BCDDEVICE_RELNUM), /* Device Release Number */\n 0x01,\t\t\t /* Index of Manufacturer String Descriptor */\n 0x02,\t\t\t /* Index of Product String Descriptor */\n 0x03,\t\t\t /* Index of Serial Number String Descriptor */\n DFU_NUM_CONF,\t\t /* Number of Possible Configuration */\n\n /* Configuration descriptor */\n USB_CONFIGURATION_DESC_SIZE, /* Descriptor size */\n USB_CONFIGURATION_DESC, /* Descriptor type */\n LOW_BYTE(DFU_RUNTIME_CONF_SIZE),\n HIGH_BYTE(\n\tDFU_RUNTIME_CONF_SIZE), /* Total length in bytes of data returned */\n DFU_NUM_ITF,\t\t /* Number of interfaces */\n 0x01,\t\t\t /* Configuration value */\n 0x00,\t\t\t /* Index of the Configuration string */\n USB_CONFIGURATION_ATTRIBUTES, /* Attributes */\n USB_MAX_LOW_POWER,\t\t /* Max power consumption */\n\n /* Interface descriptor, alternate setting 0 */\n USB_INTERFACE_DESC_SIZE, /* Descriptor size */\n USB_INTERFACE_DESC,\t\t/* Descriptor type */\n 0x00,\t\t\t/* Interface index */\n 0x00,\t\t\t/* Alternate setting */\n DFU_NUM_EP,\t\t\t/* Number of Endpoints */\n USB_DFU_CLASS,\t\t/* Class */\n USB_DFU_INTERFACE_SUBCLASS, /* SubClass */\n USB_DFU_MODE_PROTOCOL, /* DFU Runtime Protocol */\n 0x04,\t\t\t/* Index of the Interface String Descriptor */\n\n /* Interface descriptor, alternate setting 1 */\n USB_INTERFACE_DESC_SIZE, /* Descriptor size */\n USB_INTERFACE_DESC,\t\t/* Descriptor type */\n 0x00,\t\t\t/* Interface index */\n 0x01,\t\t\t/* Alternate setting */\n DFU_NUM_EP,\t\t\t/* Number of Endpoints */\n USB_DFU_CLASS,\t\t/* Class */\n USB_DFU_INTERFACE_SUBCLASS, /* SubClass */\n USB_DFU_MODE_PROTOCOL, /* DFU Runtime Protocol */\n 0x05,\t\t\t/* Index of the Interface String Descriptor */\n\n /* Interface descriptor, alternate setting 2 */\n USB_INTERFACE_DESC_SIZE, /* Descriptor size */\n USB_INTERFACE_DESC,\t\t/* Descriptor type */\n 0x00,\t\t\t/* Interface index */\n 0x02,\t\t\t/* Alternate setting */\n DFU_NUM_EP,\t\t\t/* Number of Endpoints */\n USB_DFU_CLASS,\t\t/* Class */\n USB_DFU_INTERFACE_SUBCLASS, /* SubClass */\n USB_DFU_MODE_PROTOCOL, /* DFU Runtime Protocol */\n 0x06,\t\t\t/* Index of the Interface String Descriptor */\n\n /* DFU descriptor */\n USB_DFU_DESC_SIZE, /* Descriptor size */\n USB_DFU_FUNCTIONAL_DESC, /* Descriptor type DFU: Functional */\n DFU_ATTR_CAN_DNLOAD | DFU_ATTR_CAN_UPLOAD |\n\tDFU_ATTR_MANIFESTATION_TOLERANT, /* DFU attributes */\n LOW_BYTE(DFU_DETACH_TIMEOUT),\n HIGH_BYTE(DFU_DETACH_TIMEOUT), /* wDetachTimeOut */\n LOW_BYTE(DFU_MAX_XFER_SIZE),\n HIGH_BYTE(DFU_MAX_XFER_SIZE), /* wXferSize - 512bytes */\n 0x11, 0,\t\t\t /* DFU Version */\n\n /* String descriptor language, only one, so min size 4 bytes.\n * 0x0409 English(US) language code used.\n */\n USB_STRING_DESC_SIZE, /* Descriptor size */\n USB_STRING_DESC, /* Descriptor type */\n 0x09, 0x04,\n\n /* Manufacturer String Descriptor \"Intel\" */\n 0x0C, USB_STRING_DESC, 'I', 0, 'n', 0, 't', 0, 'e', 0, 'l', 0,\n\n /* Product String Descriptor \"ATP-Dev1.0\" */\n 0x16, USB_STRING_DESC, 'A', 0, 'T', 0, 'P', 0, '-', 0, 'D', 0, 'e', 0, 'v',\n 0, '1', 0, '.', 0, '0', 0,\n\n /* Serial Number String Descriptor \"00.01\" */\n 0x0C, USB_STRING_DESC, '0', 0, '0', 0, '.', 0, '0', 0, '1', 0,\n\n /* Interface alternate setting 0 String Descriptor: \"QDM\" */\n 0x08, USB_STRING_DESC, 'Q', 0, 'D', 0, 'M', 0,\n\n /* Interface alternate setting 0 String Descriptor: \"PARTITION0\" */\n 0x16, USB_STRING_DESC, 'P', 0, 'A', 0, 'R', 0, 'T', 0, 'I', 0, 'T', 0, 'I',\n 0, 'O', 0, 'N', 0, '1', 0,\n\n /* Interface alternate setting 0 String Descriptor: \"PARTITION2\" */\n 0x16, USB_STRING_DESC, 'P', 0, 'A', 0, 'R', 0, 'T', 0, 'I', 0, 'T', 0, 'I',\n 0, 'O', 0, 'N', 0, '2', 0};\n\nstatic bool lmt_partition_is_bootable()\n{\n\tconst bool app_present = (0xffffffff != *(uint32_t *)LMT_APP_ADDR);\n\n\treturn app_present;\n}\n\nstatic void reset(void)\n{\n\tqm_soc_reset(QM_COLD_RESET);\n}\n\nstatic void timeout(void *data)\n{\n\t(void)(data);\n\t/*\n\t * If we timeout and we have a valid LMT image, load it.\n\t * Otherwise, reset the timer.\n\t */\n\tif (lmt_partition_is_bootable()) {\n\t\tqm_pic_timer_set(0);\n\t\treset();\n\t} else {\n\t\tqm_pic_timer_set(TIMEOUT);\n\t}\n}\n\nstatic __inline__ void start_timer(void)\n{\n\tqm_int_vector_request(QM_X86_PIC_TIMER_INT_VECTOR, qm_pic_timer_0_isr);\n\n\tqm_pic_timer_set_config(&pic_conf);\n\n\tqm_pic_timer_set(TIMEOUT);\n}\n\n/**\n * @brief Custom handler for standard ('chapter 9') requests\n * in order to catch the SET_INTERFACE request and\n * extract the interface alternate setting\n *\n * @param pSetup Information about the request to execute.\n * @param len Size of the buffer.\n * @param data Buffer containing the request result.\n *\n * @return 0 if SET_INTERFACE request, -ENOTSUP otherwise.\n */\n\nstatic int dfu_custom_handle_req(usb_setup_packet_t *pSetup, uint32_t *data_len,\n\t\t\t\t uint8_t **data)\n{\n\tif (REQTYPE_GET_RECIP(pSetup->request_type) ==\n\t REQTYPE_RECIP_INTERFACE) {\n\t\tif (pSetup->request == REQ_SET_INTERFACE) {\n\t\t\tDBG(\"DFU alternate setting %d\\n\", pSetup->value);\n\n\t\t\tif (pSetup->value >= DFU_MODE_ALTERNATE_SETTINGS) {\n\t\t\t\tDBG(\"Invalid DFU alternate setting (%d)\\n\",\n\t\t\t\t pSetup->value);\n\t\t\t} else {\n\t\t\t\tdfu_set_alt_setting(pSetup->value);\n\t\t\t}\n\t\t\t*data_len = 0;\n\n\t\t\t/* We this was a valid DFU Request, reset timeout.*/\n\t\t\tqm_pic_timer_set(TIMEOUT);\n\t\t\treturn 0;\n\t\t}\n\t}\n\n\t/*Ignore the unused parameter error*/\n\t(void)(data);\n\n\t/* Not handled by us */\n\treturn -ENOTSUP;\n}\n\n/* Configuration of the DFU Device send to the USB Driver */\nstatic const usb_device_config_t dfu_config = {\n .device_description = dfu_mode_usb_description,\n .status_callback = dfu_status_cb,\n .interface = {.class_handler = dfu_class_handle_req,\n\t\t .custom_handler = dfu_custom_handle_req,\n\t\t .data = usb_buffer},\n .num_endpoints = DFU_NUM_EP};\n\n/**\n * @brief Handler called for DFU Class requests not handled by the USB stack.\n *\n * @param pSetup Information about the request to execute.\n * @param len Size of the buffer.\n * @param data Buffer containing the request result.\n *\n * @return 0 on success, negative errno code on fail.\n */\nstatic int dfu_class_handle_req(usb_setup_packet_t *pSetup, uint32_t *data_len,\n\t\t\t\tuint8_t **data)\n{\n\tdfu_dev_state_t state;\n\tdfu_dev_status_t status;\n\tuint32_t poll_timeout;\n\tint retv;\n\tuint16_t len;\n\n\t/* We get a DFU Request, reset timeout. */\n\tqm_pic_timer_set(TIMEOUT);\n\n\tswitch (pSetup->request) {\n\tcase DFU_GETSTATUS:\n\t\tDBG(\"DFU_GETSTATUS\\n\");\n\t\tretv = dfu_get_status(&status, &state, &poll_timeout);\n\t\tif (retv < 0) {\n\t\t\treturn -EINVAL;\n\t\t}\n\t\t(*data)[0] = status;\n\t\t(*data)[1] = poll_timeout & 0xFF;\n\t\t(*data)[2] = (poll_timeout >> 8) & 0xFF;\n\t\t(*data)[3] = (poll_timeout >> 16) & 0xFF;\n\t\t(*data)[4] = state;\n\t\t(*data)[5] = 0;\n\t\t*data_len = 6;\n\t\tbreak;\n\n\tcase DFU_GETSTATE:\n\t\tDBG(\"DFU_GETSTATE\\n\");\n\t\tretv = dfu_get_state(&state);\n\t\tif (retv < 0) {\n\t\t\treturn -EINVAL;\n\t\t}\n\t\t(*data)[0] = state;\n\t\t*data_len = 1;\n\t\tbreak;\n\n\tcase DFU_ABORT:\n\t\tDBG(\"DFU_ABORT\\n\");\n\t\tretv = dfu_abort();\n\t\tif (retv < 0) {\n\t\t\treturn -EINVAL;\n\t\t}\n\t\tbreak;\n\n\tcase DFU_CLRSTATUS:\n\t\tDBG(\"DFU_CLRSTATUS\\n\");\n\t\tretv = dfu_clr_status();\n\t\tif (retv < 0) {\n\t\t\treturn -EINVAL;\n\t\t}\n\t\tbreak;\n\n\tcase DFU_DNLOAD:\n\t\tDBG(\"DFU_DNLOAD block %d, len %d\\n\", pSetup->value,\n\t\t pSetup->length);\n\n\t\tretv = dfu_process_dnload(pSetup->value, *data, pSetup->length);\n\t\tif (retv < 0) {\n\t\t\treturn -EINVAL;\n\t\t}\n\t\tbreak;\n\n\tcase DFU_UPLOAD:\n\t\tDBG(\"DFU_UPLOAD block %d, len %d\\n\", pSetup->value,\n\t\t pSetup->length);\n\t\tretv = dfu_process_upload(pSetup->value, pSetup->length, *data,\n\t\t\t\t\t &len);\n\t\tif (retv < 0) {\n\t\t\treturn -EINVAL;\n\t\t}\n\t\t*data_len = len;\n\t\tbreak;\n\tcase DFU_DETACH:\n\t\tDBG(\"DFU_DETACH timeout %d\\n\", pSetup->value);\n\t\tusb_detached = true;\n\t\tbreak;\n\tdefault:\n\t\tDBG(\"DFU UNKNOWN STATE: %d\\n\", pSetup->request);\n\t\treturn -EINVAL;\n\t}\n\n\treturn 0;\n}\n\n/**\n * Callback used to know the USB connection status.\n *\n * @param data Callback data. Not used here.\n * @param error Error returned by the driver.\n * @param status USB status code.\n */\nstatic void dfu_status_cb(void *data, int error, qm_usb_status_t status)\n{\n\t(void)data;\n\tif (error) {\n\t\tQM_PUTS(\"DFU device error\");\n\t}\n\n\t/* We get a DFU Request, reset timeout. */\n\tqm_pic_timer_set(TIMEOUT);\n\n\t/* Check the USB status and do needed action if required */\n\tswitch (status) {\n\tcase QM_USB_RESET:\n\t\tDBG(\"USB device reset detected\\n\");\n\t\t/*\n\t\t * Linux seems to send several resets in short time, so reseting\n\t\t * the system on any USB reset won't work.\n\t\t * dfu-util has a proprietary extension 'detach' to work around\n\t\t * this issue: only reset after an USB detach.\n\t\t */\n\t\tif (usb_detached) {\n\t\t\treset();\n\t\t}\n\t\tbreak;\n\tcase QM_USB_CONNECTED:\n\t\tDBG(\"USB device connected\\n\");\n\t\tbreak;\n\tcase QM_USB_CONFIGURED:\n\t\tDBG(\"USB device configured\\n\");\n\t\tbreak;\n\tcase QM_USB_DISCONNECTED:\n\t\tDBG(\"USB device disconnected\\n\");\n\t\tbreak;\n\tcase QM_USB_SUSPEND:\n\t\tDBG(\"USB device suspended\\n\");\n\t\tbreak;\n\tcase QM_USB_RESUME:\n\t\tDBG(\"USB device resumed\\n\");\n\t\tbreak;\n\tdefault:\n\t\tDBG(\"USB unknown state\\n\");\n\t\tbreak;\n\t}\n}\n\nstatic void enable_usb_vbus(void)\n{\n\tqm_gpio_port_config_t cfg = {0};\n\tcfg.direction |= BIT(USB_VBUS_GPIO_PIN);\n\t/* Here we assume the GPIO pinmux hasn't changed. */\n\tqm_gpio_set_config(USB_VBUS_GPIO_PORT, &cfg);\n\tqm_gpio_set_pin(USB_VBUS_GPIO_PORT, USB_VBUS_GPIO_PIN);\n}\n\nint usb_dfu_start(void)\n{\n\tint ret;\n\n\tDBG(\"Starting DFU Device class\\n\");\n\n\t/* Initialize the DFU state machine */\n\tdfu_init();\n\t/* Set alternate setting for partition 0 (x86) */\n\tdfu_set_alt_setting(1);\n\n\t/* On MountAtlas we must set GPIO 28 to enable VCC_USB into the SoC. */\n\tenable_usb_vbus();\n\n\t/* Enable USB driver */\n\tret = usb_enable(&dfu_config);\n\tif (ret < 0) {\n\t\tDBG(\"Failed to enable USB\\n\");\n\t\treturn ret;\n\t}\n\n\tstart_timer();\n\n\treturn 0;\n}\n"}
+{"text": "\n\n\n\n \"Khetha umbala\"\n \"Umbala we-%1$d\"\n \"Umbala we-%1$d ukhethiwe\"\n\n"}
+{"text": "tombstone1 = $this->createTombstone('file', 1, 'method1');\n $this->tombstone2 = $this->createTombstone('file', 2, 'method1');\n $this->tombstone3 = $this->createTombstone('file', 3, null);\n $this->tombstone4 = $this->createTombstone('file', 4, 'method2');\n\n $this->tombstoneIndex = new TombstoneIndex();\n $this->tombstoneIndex->addTombstone($this->tombstone1);\n $this->tombstoneIndex->addTombstone($this->tombstone2);\n $this->tombstoneIndex->addTombstone($this->tombstone3);\n $this->tombstoneIndex->addTombstone($this->tombstone4);\n }\n\n private function createTombstone(string $file, int $line, ?string $method): Tombstone\n {\n $tombstone = $this->createMock(Tombstone::class);\n $tombstone\n ->expects($this->any())\n ->method('getFile')\n ->willReturn($this->createFilePath($file));\n $tombstone\n ->expects($this->any())\n ->method('getLine')\n ->willReturn($line);\n $tombstone\n ->expects($this->any())\n ->method('getMethod')\n ->willReturn($method);\n\n return $tombstone;\n }\n\n private function createFilePath(string $file): FilePathInterface\n {\n $filePath = $this->createMock(FilePathInterface::class);\n $filePath\n ->expects($this->any())\n ->method('getReferencePath')\n ->willReturn($file);\n\n return $filePath;\n }\n\n /**\n * @test\n */\n public function count_hasTombstones_returnNumberOfTombstones(): void\n {\n $this->assertEquals(4, $this->tombstoneIndex->count());\n }\n\n /**\n * @test\n */\n public function getIterator_hasTombstones_iterateAllTombstones(): void\n {\n $tombstones = iterator_to_array($this->tombstoneIndex);\n $this->assertEquals([$this->tombstone1, $this->tombstone2, $this->tombstone3, $this->tombstone4], $tombstones);\n }\n\n /**\n * @test\n */\n public function getInMethod_hasTombstones_returnArrayOfTombstones(): void\n {\n $returnValue = $this->tombstoneIndex->getInMethod('method1');\n $this->assertCount(2, $returnValue);\n $this->assertContainsOnlyInstancesOf(Tombstone::class, $returnValue);\n $this->assertSame([$this->tombstone1, $this->tombstone2], $returnValue);\n }\n\n /**\n * @test\n */\n public function getInMethod_noTombstones_returnEmptyArray(): void\n {\n $returnValue = $this->tombstoneIndex->getInMethod('otherMethod');\n $this->assertCount(0, $returnValue);\n }\n\n /**\n * @test\n */\n public function getInFileAndLine_hasTombstone_returnTombstone(): void\n {\n $returnValue = $this->tombstoneIndex->getInFileAndLine($this->createFilePath('file'), 2);\n $this->assertSame($this->tombstone2, $returnValue);\n }\n\n /**\n * @test\n */\n public function getInFileAndLine_noTombstone_returnNull(): void\n {\n $returnValue = $this->tombstoneIndex->getInFileAndLine($this->createFilePath('file'), 5);\n $this->assertNull($returnValue);\n }\n}\n"}
+{"text": "/*\n * Copyright 2004-2006 Stefan Reuter\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n *\n */\npackage org.asteriskjava.manager.action;\n\nimport org.asteriskjava.manager.event.DahdiShowChannelsCompleteEvent;\nimport org.asteriskjava.manager.event.ResponseEvent;\n\n/**\n * The DahdiShowChannelsAction requests the state of all Dahdi channels.
\n * For each Dahdi channel aDahdiShowChannelsEvent is generated. After all Dahdi\n * channels have been listed a DahdiShowChannelsCompleteEvent is generated.\n * \n * @see org.asteriskjava.manager.event.DahdiShowChannelsEvent\n * @see org.asteriskjava.manager.event.DahdiShowChannelsCompleteEvent\n * @author srt\n * @version $Id$\n */\npublic class DahdiShowChannelsAction extends AbstractManagerAction\n implements\n EventGeneratingAction\n{\n /**\n * Serializable version identifier\n */\n private static final long serialVersionUID = 8697000330085766825L;\n\n /**\n * Creates a new DahdiShowChannelsAction.\n */\n public DahdiShowChannelsAction()\n {\n\n }\n\n /**\n * Returns the name of this action, i.e. \"DahdiShowChannels\".\n */\n @Override\n public String getAction()\n {\n return \"DahdiShowChannels\";\n }\n\n public Class extends ResponseEvent> getActionCompleteEventClass()\n {\n return DahdiShowChannelsCompleteEvent.class;\n }\n}\n"}
+{"text": "/*\n * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved.\n * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.\n *\n * This code is free software; you can redistribute it and/or modify it\n * under the terms of the GNU General Public License version 2 only, as\n * published by the Free Software Foundation.\n *\n * This code is distributed in the hope that it will be useful, but WITHOUT\n * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\n * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License\n * version 2 for more details (a copy is included in the LICENSE file that\n * accompanied this code).\n *\n * You should have received a copy of the GNU General Public License version\n * 2 along with this work; if not, write to the Free Software Foundation,\n * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.\n *\n * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA\n * or visit www.oracle.com if you need additional information or have any\n * questions.\n */\n\n// key: compiler.err.illegal.nonascii.digit\n\nclass X {\n int i = 0\\u0660; // Zero followed by Arabic-Indic Digit Zero\n}\n"}
+{"text": "namespace Composite.C1Console.Forms.StandardProducerMediators.BuildinProducers\r\n{\r\n internal sealed class BindProducer : IBuildinProducer\r\n {\r\n private string _source;\r\n\r\n internal BindProducer() { }\r\n\r\n public string source\r\n {\r\n get { return _source; }\r\n set { _source = value; }\r\n }\r\n }\r\n}\r\n"}
+{"text": "// path_name_check implementation ------------------------------------------//\n\n// Copyright Beman Dawes 2002.\n// Copyright Gennaro Prota 2006.\n//\n// Distributed under the Boost Software License, Version 1.0.\n// (See accompanying file LICENSE_1_0.txt or copy at\n// http://www.boost.org/LICENSE_1_0.txt)\n\n#include \"path_name_check.hpp\"\n\n#include \"boost/filesystem/operations.hpp\"\n#include \"boost/lexical_cast.hpp\"\n\n#include \n#include \n#include \n#include \n\nusing std::string;\n\nnamespace\n{\n const char allowable[] = \"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789_-.\";\n const char initial_char[] = \"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789_\";\n}\n\nnamespace boost\n{\n namespace inspect\n {\n\n\n file_name_check::file_name_check() : m_name_errors(0) {}\n\n void file_name_check::inspect(\n const string & library_name,\n const path & full_path )\n {\n string::size_type pos;\n \n // called for each file and directory, so only the leaf need be tested\n string const leaf( full_path.leaf().string() );\n\n // includes only allowable characters\n if ( (pos = leaf.find_first_not_of( allowable )) != string::npos )\n {\n ++m_name_errors;\n error( library_name, full_path, string(name())\n + \" file or directory name contains unacceptable character '\"\n + leaf[pos] + \"'\" );\n }\n\n // allowable initial character\n if ( std::strchr( initial_char, leaf[0] ) == 0 )\n {\n ++m_name_errors;\n error( library_name, full_path, string(name())\n + \" file or directory name begins with an unacceptable character\" );\n }\n\n // rules for dot characters differ slightly for directories and files\n if ( filesystem::is_directory( full_path ) )\n {\n if ( std::strchr( leaf.c_str(), '.' ) )\n {\n ++m_name_errors;\n error( library_name, full_path, string(name())\n + \" directory name contains a dot character ('.')\" );\n }\n }\n //else // not a directory\n //{\n // // includes at most one dot character\n // const char * first_dot = std::strchr( leaf.c_str(), '.' );\n // if ( first_dot && std::strchr( first_dot+1, '.' ) )\n // {\n // ++m_name_errors;\n // error( library_name, full_path, string(name())\n // + \" file name with more than one dot character ('.')\" );\n // }\n //}\n\n // the path, including a presumed root, does not exceed the maximum size\n path const relative_path( relative_to( full_path, search_root_path() ) );\n const unsigned max_relative_path = 207; // ISO 9660:1999 sets this limit\n const string generic_root( \"boost_X_XX_X/\" );\n if ( relative_path.string().size() >\n ( max_relative_path - generic_root.size() ) )\n {\n ++m_name_errors;\n error( library_name, full_path,\n string(name())\n + \" path will exceed \"\n + boost::lexical_cast(max_relative_path)\n + \" characters in a directory tree with a root in the form \"\n + generic_root + \", and this exceeds ISO 9660:1999 limit of 207\" )\n ;\n }\n\n }\n\n file_name_check::~file_name_check()\n {\n std::cout << \" \" << m_name_errors << \" \" << desc() << line_break();\n }\n\n\n } // namespace inspect\n} // namespace boost\n"}
+{"text": "from datetime import timedelta\n\nfrom django.urls import reverse_lazy, resolve\nfrom django.contrib.auth.models import User\nfrom django.utils import timezone\n\nfrom allauth.account.models import EmailAddress\nfrom rest_framework.test import APITestCase, APIClient\n\nfrom challenges.models import Challenge\nfrom hosts.models import ChallengeHost, ChallengeHostTeam\nfrom participants.models import ParticipantTeam\n\n\nclass BaseAPITestClass(APITestCase):\n def setUp(self):\n self.client = APIClient(enforce_csrf_checks=True)\n\n self.user = User.objects.create(\n username=\"someuser\",\n email=\"user@test.com\",\n password=\"secret_password\",\n )\n\n EmailAddress.objects.create(\n user=self.user, email=\"user@test.com\", primary=True, verified=True\n )\n\n self.invite_user = User.objects.create(\n username=\"otheruser\",\n email=\"other@platform.com\",\n password=\"other_secret_password\",\n )\n\n self.participant_team = ParticipantTeam.objects.create(\n team_name=\"Participant Team\", created_by=self.user\n )\n\n # user who create a challenge host team\n self.user2 = User.objects.create(\n username=\"someuser2\", password=\"some_secret_password\"\n )\n\n self.challenge_host_team = ChallengeHostTeam.objects.create(\n team_name=\"Some Test Challenge Host Team\", created_by=self.user2\n )\n\n self.challenge_host2 = ChallengeHost.objects.create(\n user=self.user2,\n team_name=self.challenge_host_team,\n status=ChallengeHost.ACCEPTED,\n permissions=ChallengeHost.ADMIN,\n )\n\n self.challenge = Challenge.objects.create(\n title=\"Some Test Challenge\",\n short_description=\"Short description for some test challenge\",\n description=\"Description for some test challenge\",\n terms_and_conditions=\"Terms and conditions for some test challenge\",\n submission_guidelines=\"Submission guidelines for some test challenge\",\n creator=self.challenge_host_team,\n published=False,\n enable_forum=True,\n anonymous_leaderboard=False,\n start_date=timezone.now() - timedelta(days=2),\n end_date=timezone.now() + timedelta(days=1),\n )\n self.client.force_authenticate(user=self.user)\n\n\nclass TestStringMethods(BaseAPITestClass):\n def test_participant_team_list_url(self):\n self.url = reverse_lazy(\"participants:get_participant_team_list\")\n self.assertEqual(str(self.url), \"/api/participants/participant_team\")\n resolver = resolve(self.url)\n self.assertEqual(\n resolver.view_name, \"participants:get_participant_team_list\"\n )\n\n def test_get_participant_team_challenge_list(self):\n self.url = reverse_lazy(\n \"participants:get_participant_team_challenge_list\",\n kwargs={\"participant_team_pk\": self.participant_team.pk},\n )\n self.assertEqual(\n str(self.url),\n \"/api/participants/participant_team/%s/challenge\"\n % (self.participant_team.pk),\n )\n resolver = resolve(self.url)\n self.assertEqual(\n resolver.view_name,\n \"participants:get_participant_team_challenge_list\",\n )\n\n def test_participant_team_detail_url(self):\n self.url = reverse_lazy(\n \"participants:get_participant_team_details\",\n kwargs={\"pk\": self.participant_team.pk},\n )\n self.assertEqual(\n str(self.url),\n \"/api/participants/participant_team/%s\"\n % (self.participant_team.pk),\n )\n resolver = resolve(self.url)\n self.assertEqual(\n resolver.view_name, \"participants:get_participant_team_details\"\n )\n\n def test_invite_participant_to_team_url(self):\n self.url = reverse_lazy(\n \"participants:invite_participant_to_team\",\n kwargs={\"pk\": self.participant_team.pk},\n )\n self.assertEqual(\n str(self.url),\n \"/api/participants/participant_team/%s/invite\"\n % (self.participant_team.pk),\n )\n resolver = resolve(self.url)\n self.assertEqual(\n resolver.view_name, \"participants:invite_participant_to_team\"\n )\n\n def test_delete_participant_from_team_url(self):\n self.url = reverse_lazy(\n \"participants:delete_participant_from_team\",\n kwargs={\n \"participant_team_pk\": self.participant_team.pk,\n \"participant_pk\": self.invite_user.pk,\n },\n )\n self.assertEqual(\n str(self.url),\n \"/api/participants/participant_team/%s/participant/%s\"\n % (self.participant_team.pk, self.invite_user.pk),\n )\n resolver = resolve(self.url)\n self.assertEqual(\n resolver.view_name, \"participants:delete_participant_from_team\"\n )\n\n def test_get_teams_and_corresponding_challenges_for_a_participant_url(\n self,\n ):\n self.url = reverse_lazy(\n \"participants:get_teams_and_corresponding_challenges_for_a_participant\",\n kwargs={\"challenge_pk\": self.challenge.pk},\n )\n self.assertEqual(\n str(self.url),\n \"/api/participants/participant_teams/challenges/{}/user\".format(\n self.challenge.pk\n ),\n )\n resolver = resolve(self.url)\n self.assertEqual(\n resolver.view_name,\n \"participants:get_teams_and_corresponding_challenges_for_a_participant\",\n )\n\n def test_remove_self_from_participant_team_url(self):\n self.url = reverse_lazy(\n \"participants:remove_self_from_participant_team\",\n kwargs={\"participant_team_pk\": self.participant_team.pk},\n )\n self.assertEqual(\n str(self.url),\n \"/api/participants/remove_self_from_participant_team/%s\"\n % (self.participant_team.pk),\n )\n resolver = resolve(self.url)\n self.assertEqual(\n resolver.view_name,\n \"participants:remove_self_from_participant_team\",\n )\n"}
+{"text": "package lhttp\n\nimport (\n\t\"container/list\"\n\t// \"log\"\n\t\"net/url\"\n\t\"strings\"\n)\n\ntype WsMessage struct {\n\t//message raw data\n\tmessage string\n\n\t//message command type\n\tcommand string\n\t//message headers\n\theaders map[string]string\n\t//message body\n\tbody string\n}\n\n//fill message by command headers and body\nfunc (m *WsMessage) serializeMessage() string {\n\tm.message = protocolNameWithVersion + \" \"\n\tm.message += m.command + CRLF\n\n\tfor k, v := range m.headers {\n\t\tm.message += k + \":\" + v + CRLF\n\t}\n\tm.message += CRLF + m.body\n\n\treturn m.message\n}\n\n//parse websocket body\nfunc buildMessage(data string) *WsMessage {\n\t//TODO optimise ,to use builder pattern\n\ts := data\n\tmessage := &WsMessage{message: data}\n\tmessage.headers = make(map[string]string, headerMax)\n\t//parse message\n\n\t//parse start line\n\ti := strings.Index(s, CRLF)\n\tmessage.command = s[protocolLength+1 : i]\n\n\t//parse hearders\n\tk := 0\n\theaders := s[i+2:]\n\tvar key string\n\tvar value string\n\t//traverse once\n\tlength := len(headers)\n\tfor j, ch := range headers {\n\t\tif ch == ':' && key == \"\" {\n\t\t\tkey = headers[k:j]\n\t\t\tk = j + 1\n\t\t} else if length > j+1 && headers[j:j+2] == CRLF {\n\t\t\tvalue = headers[k:j]\n\t\t\tk = j + 2\n\n\t\t\tmessage.headers[key] = value\n\t\t\t// log.Print(\"parse head key:\", key, \" value:\", value)\n\t\t\tkey = \"\"\n\t\t}\n\t\tif length > k+1 && headers[k:k+2] == CRLF {\n\t\t\tk += 2\n\t\t\tbreak\n\t\t}\n\t}\n\n\t//set body\n\tmessage.body = headers[k:]\n\n\treturn message\n}\n\ntype WsHandler struct {\n\tcallbacks HandlerCallbacks\n\n\t//websocket connection\n\tconn *Conn\n\n\t// nats conn\n\tsubscribe_nats_conn map[string]interface{}\n\n\t//receive message\n\tmessage *WsMessage\n\n\tresp WsMessage\n\n\tupstreamURL *url.URL\n\t//one connection set id map sevel connections\n\t//connSetID string\n\n\t//save multipars datas, it is a list\n\tmultiparts *multipartBlock\n}\n\nfunc (req *WsHandler) reset() {\n\treq.resp = WsMessage{command: \"\", headers: nil, body: \"\"}\n}\n\n\nfunc (req *WsHandler) GetMultipart() *multipartBlock {\n\treturn req.multiparts\n}\n\n//define subscribe callback as a WsHandler method is very very very importent\nfunc (req *WsHandler) subscribeCallback(s string) {\n\tMessage.Send(req.conn, s)\n}\n\nfunc (req *WsHandler) SetCommand(s string) {\n\treq.resp.command = s\n}\n\nfunc (req *WsHandler) GetCommand() string {\n\treturn req.message.command\n}\n\n\nfunc (req *WsHandler) SetHeader(hkey ,hvalue string) {\n\treq.message.headers[hkey] = hvalue\n}\n\nfunc (req *WsHandler) GetHeader(hkey string) string {\n\tif value, ok := req.message.headers[hkey]; ok {\n\t\treturn value\n\t} else {\n\t\treturn \"\"\n\t}\n}\n\n//if header already exist,update it\nfunc (req *WsHandler) AddHeader(hkey, hvalue string) {\n\treq.resp.headers = make(map[string]string, headerMax)\n\treq.resp.headers[hkey] = hvalue\n}\n\nfunc (req *WsHandler) GetBody() string {\n\treturn req.message.body\n}\n\n//if response is nil, use request to fill it\nfunc (req *WsHandler) setResponse() {\n\tif req.resp.command == \"\" {\n\t\treq.resp.command = req.message.command\n\t}\n\tif req.resp.headers == nil {\n\t\treq.resp.headers = req.message.headers\n\t}\n\tif req.resp.body == \"\" {\n\t\treq.resp.body = req.message.body\n\t}\n}\n\n//if you want change command or header ,using SetCommand or AddHeader\nfunc (req *WsHandler) Send(body string) {\n\tresp := protocolNameWithVersion + \" \"\n\tif req.resp.command != \"\" {\n\t\tresp = resp + req.resp.command + CRLF\n\t} else {\n\t\tresp = resp + req.message.command + CRLF\n\t}\n\n\tif req.resp.headers != nil {\n\t\tfor k, v := range req.resp.headers {\n\t\t\tresp = resp + k + \":\" + v + CRLF\n\t\t}\n\t} else {\n\t\tfor k, v := range req.message.headers {\n\t\t\tresp = resp + k + \":\" + v + CRLF\n\t\t}\n\t}\n\tresp += CRLF + body\n\n\treq.resp.message = resp\n\n\t// log.Print(\"send message:\", string(req.message.message))\n\n\tMessage.Send(req.conn, req.resp.message)\n\n\treq.resp = WsMessage{command: \"\", headers: nil, body: \"\"}\n}\n\ntype HandlerCallbacks interface {\n\tOnOpen(*WsHandler)\n\tOnClose(*WsHandler)\n\tOnMessage(*WsHandler)\n}\n\ntype BaseProcessor struct {\n}\n\nfunc (*BaseProcessor) OnOpen(*WsHandler) {\n\t// log.Print(\"base on open\")\n}\nfunc (*BaseProcessor) OnMessage(*WsHandler) {\n\t// log.Print(\"base on message\")\n}\nfunc (*BaseProcessor) OnClose(*WsHandler) {\n\t// log.Print(\"base on close\")\n}\n\nfunc StartServer(ws *Conn) {\n\topenFlag := 0\n\n\t//init WsHandler,set connection and connsetid\n\twsHandler := &WsHandler{conn: ws}\n\twsHandler.subscribe_nats_conn = make(map[string]interface{}, subscribeMax)\n\n\tfor {\n\t\tvar data string\n\t\terr := Message.Receive(ws, &data)\n\t\t// log.Print(\"receive message:\", string(data))\n\t\tif err != nil {\n\t\t\tbreak\n\t\t}\n\t\tl:=len(data)\n\t\tif l <= protocolLength {\n\t\t\t//TODO how to provide other protocol\n\t\t\t// log.Print(\"TODO provide other protocol\")\n\t\t\tcontinue\n\t\t}\n\n\t\tl=len(data)\n\t\tif l > MaxLength {\n\t\t\t//TODO how to provide other protocol\n\t\t\t// log.Print(\"TODO provide other protocol\")\n\t\t\tcontinue\n\t\t}\n\n\n\t\tif data[:protocolLength] != protocolNameWithVersion {\n\t\t\t//TODO how to provide other protocol\n\t\t\t// log.Print(\"TODO provide other protocol\")\n\t\t\tcontinue\n\t\t}\n\n\t\twsHandler.message = buildMessage(data)\n\t\twsHandler.reset()\n\n\t\tvar e *list.Element\n\t\t//head filter before process message\n\t\tfor e = beforeRequestFilterList.Front(); e != nil; e = e.Next() {\n\t\t\te.Value.(HeadFilterHandler).BeforeRequestFilterHandle(wsHandler)\n\t\t}\n\n\t\twsHandler.callbacks = getProcessor(wsHandler.message.command)\n\t\tif wsHandler.callbacks == nil {\n\t\t\twsHandler.callbacks = &BaseProcessor{}\n\t\t}\n\t\t// log.Print(\"callbacks:\", wsHandler.callbacks.OnMessage)\n\t\t//just call once\n\t\tif openFlag == 0 {\n\t\t\tfor e = onOpenFilterList.Front(); e != nil; e = e.Next() {\n\t\t\t\te.Value.(HeadFilterHandler).OnOpenFilterHandle(wsHandler)\n\t\t\t}\n\t\t\tif wsHandler.callbacks != nil {\n\t\t\t\twsHandler.callbacks.OnOpen(wsHandler)\n\t\t\t} else {\n\t\t\t\t//log.Print(\"error on open is null\")\n\t\t\t}\n\t\t\topenFlag = 1\n\t\t}\n\t\tif wsHandler.callbacks != nil {\n\t\t\twsHandler.callbacks.OnMessage(wsHandler)\n\t\t} else {\n\t\t\t//log.Print(\"error onmessage is null \")\n\t\t}\n\n\t\t//head filter after process message\n\t\tfor e = afterRequestFilterList.Front(); e != nil; e = e.Next() {\n\t\t\te.Value.(HeadFilterHandler).AfterRequestFilterHandle(wsHandler)\n\t\t}\n\t}\n\tdefer func() {\n\t\tfor e := onCloseFilterList.Front(); e != nil; e = e.Next() {\n\t\t\te.Value.(HeadFilterHandler).OnCloseFilterHandle(wsHandler)\n\t\t}\n\t\tif wsHandler.callbacks != nil {\n\t\t\twsHandler.callbacks.OnClose(wsHandler)\n\t\t} else {\n\t\t\t//log.Print(\"error on close is null\")\n\t\t}\n\t\tws.Close()\n\t}()\n}\n"}
+{"text": "/**********************************************************************\n * $Id: gmlhandler.cpp 29217 2015-05-21 09:08:48Z rouault $\n *\n * Project: GML Reader\n * Purpose: Implementation of GMLHandler class.\n * Author: Frank Warmerdam, warmerdam@pobox.com\n *\n **********************************************************************\n * Copyright (c) 2002, Frank Warmerdam\n * Copyright (c) 2008-2014, Even Rouault \n *\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the \"Software\"),\n * to deal in the Software without restriction, including without limitation\n * the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the\n * Software is furnished to do so, subject to the following conditions:\n * \n * The above copyright notice and this permission notice shall be included\n * in all copies or substantial portions of the Software.\n * \n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER \n * DEALINGS IN THE SOFTWARE.\n ****************************************************************************/\n\n#include \n#include \"gmlreaderp.h\"\n#include \"cpl_conv.h\"\n#include \"cpl_string.h\"\n#include \"cpl_hash_set.h\"\n\n#ifdef HAVE_XERCES\n\n/* Must be a multiple of 4 */\n#define MAX_TOKEN_SIZE 1000\n\n/************************************************************************/\n/* GMLXercesHandler() */\n/************************************************************************/\n\nGMLXercesHandler::GMLXercesHandler( GMLReader *poReader ) : GMLHandler(poReader)\n{\n m_nEntityCounter = 0;\n}\n\n/************************************************************************/\n/* startElement() */\n/************************************************************************/\n\nvoid GMLXercesHandler::startElement(CPL_UNUSED const XMLCh* const uri,\n const XMLCh* const localname,\n CPL_UNUSED const XMLCh* const qname,\n const Attributes& attrs )\n{\n char szElementName[MAX_TOKEN_SIZE];\n\n m_nEntityCounter = 0;\n\n /* A XMLCh character can expand to 4 bytes in UTF-8 */\n if (4 * tr_strlen( localname ) >= MAX_TOKEN_SIZE)\n {\n static int bWarnOnce = FALSE;\n XMLCh* tempBuffer = (XMLCh*) CPLMalloc(sizeof(XMLCh) * (MAX_TOKEN_SIZE / 4 + 1));\n memcpy(tempBuffer, localname, sizeof(XMLCh) * (MAX_TOKEN_SIZE / 4));\n tempBuffer[MAX_TOKEN_SIZE / 4] = 0;\n tr_strcpy( szElementName, tempBuffer );\n CPLFree(tempBuffer);\n if (!bWarnOnce)\n {\n bWarnOnce = TRUE;\n CPLError(CE_Warning, CPLE_AppDefined, \"A too big element name has been truncated\");\n }\n }\n else\n tr_strcpy( szElementName, localname );\n\n if (GMLHandler::startElement(szElementName, strlen(szElementName), (void*) &attrs) == OGRERR_NOT_ENOUGH_MEMORY)\n {\n throw SAXNotSupportedException(\"Out of memory\");\n }\n}\n\n/************************************************************************/\n/* endElement() */\n/************************************************************************/\nvoid GMLXercesHandler::endElement(CPL_UNUSED const XMLCh* const uri,\n CPL_UNUSED const XMLCh* const localname,\n CPL_UNUSED const XMLCh* const qname )\n{\n m_nEntityCounter = 0;\n\n if (GMLHandler::endElement() == OGRERR_NOT_ENOUGH_MEMORY)\n {\n throw SAXNotSupportedException(\"Out of memory\");\n }\n}\n\n/************************************************************************/\n/* characters() */\n/************************************************************************/\n\nvoid GMLXercesHandler::characters(const XMLCh* const chars_in,\n CPL_UNUSED\n#if XERCES_VERSION_MAJOR >= 3\n const XMLSize_t length\n#else\n const unsigned int length\n#endif\n )\n\n{\n char* utf8String = tr_strdup(chars_in);\n int nLen = strlen(utf8String);\n OGRErr eErr = GMLHandler::dataHandler(utf8String, nLen);\n CPLFree(utf8String);\n if (eErr == OGRERR_NOT_ENOUGH_MEMORY)\n {\n throw SAXNotSupportedException(\"Out of memory\");\n }\n}\n\n/************************************************************************/\n/* fatalError() */\n/************************************************************************/\n\nvoid GMLXercesHandler::fatalError( const SAXParseException &exception)\n\n{\n char *pszErrorMessage;\n\n pszErrorMessage = tr_strdup( exception.getMessage() );\n CPLError( CE_Failure, CPLE_AppDefined, \n \"XML Parsing Error: %s at line %d, column %d\\n\", \n pszErrorMessage, (int)exception.getLineNumber(), (int)exception.getColumnNumber() );\n\n CPLFree( pszErrorMessage );\n}\n\n/************************************************************************/\n/* startEntity() */\n/************************************************************************/\n\nvoid GMLXercesHandler::startEntity (CPL_UNUSED const XMLCh *const name)\n{\n m_nEntityCounter ++;\n if (m_nEntityCounter > 1000 && !m_poReader->HasStoppedParsing())\n {\n throw SAXNotSupportedException(\"File probably corrupted (million laugh pattern)\");\n }\n}\n\n/************************************************************************/\n/* GetFID() */\n/************************************************************************/\n\nconst char* GMLXercesHandler::GetFID(void* attr)\n{\n const Attributes* attrs = (const Attributes*) attr;\n int nFIDIndex;\n XMLCh anFID[100];\n\n tr_strcpy( anFID, \"fid\" );\n nFIDIndex = attrs->getIndex( anFID );\n if( nFIDIndex != -1 )\n {\n char* pszValue = tr_strdup( attrs->getValue( nFIDIndex ) );\n osFID.assign(pszValue);\n CPLFree(pszValue);\n return osFID.c_str();\n }\n else\n {\n tr_strcpy( anFID, \"gml:id\" );\n nFIDIndex = attrs->getIndex( anFID );\n if( nFIDIndex != -1 )\n {\n char* pszValue = tr_strdup( attrs->getValue( nFIDIndex ) );\n osFID.assign(pszValue);\n CPLFree(pszValue);\n return osFID.c_str();\n }\n }\n\n osFID.resize(0);\n return NULL;\n}\n\n/************************************************************************/\n/* AddAttributes() */\n/************************************************************************/\n\nCPLXMLNode* GMLXercesHandler::AddAttributes(CPLXMLNode* psNode, void* attr)\n{\n const Attributes* attrs = (const Attributes*) attr;\n\n CPLXMLNode* psLastChild = NULL;\n\n for(unsigned int i=0; i < attrs->getLength(); i++)\n {\n char* pszName = tr_strdup(attrs->getQName(i));\n char* pszValue = tr_strdup(attrs->getValue(i));\n\n CPLXMLNode* psChild = CPLCreateXMLNode(NULL, CXT_Attribute, pszName);\n CPLCreateXMLNode(psChild, CXT_Text, pszValue);\n\n CPLFree(pszName);\n CPLFree(pszValue);\n\n if (psLastChild == NULL)\n psNode->psChild = psChild;\n else\n psLastChild->psNext = psChild;\n psLastChild = psChild;\n }\n\n return psLastChild;\n}\n\n/************************************************************************/\n/* GetAttributeValue() */\n/************************************************************************/\n\nchar* GMLXercesHandler::GetAttributeValue(void* attr, const char* pszAttributeName)\n{\n const Attributes* attrs = (const Attributes*) attr;\n for(unsigned int i=0; i < attrs->getLength(); i++)\n {\n char* pszString = tr_strdup(attrs->getQName(i));\n if (strcmp(pszString, pszAttributeName) == 0)\n {\n CPLFree(pszString);\n return tr_strdup(attrs->getValue(i));\n }\n CPLFree(pszString);\n }\n return NULL;\n}\n\n/************************************************************************/\n/* GetAttributeByIdx() */\n/************************************************************************/\n\nchar* GMLXercesHandler::GetAttributeByIdx(void* attr, unsigned int idx, char** ppszKey)\n{\n const Attributes* attrs = (const Attributes*) attr;\n if( idx >= attrs->getLength() )\n {\n *ppszKey = NULL;\n return NULL;\n }\n *ppszKey = tr_strdup(attrs->getQName(idx));\n return tr_strdup(attrs->getValue(idx));\n}\n\n#endif\n\n#ifdef HAVE_EXPAT\n\n/************************************************************************/\n/* GMLExpatHandler() */\n/************************************************************************/\n\nGMLExpatHandler::GMLExpatHandler( GMLReader *poReader, XML_Parser oParser ) : GMLHandler(poReader)\n\n{\n m_oParser = oParser;\n m_bStopParsing = FALSE;\n m_nDataHandlerCounter = 0;\n}\n\n/************************************************************************/\n/* startElementCbk() */\n/************************************************************************/\n\nvoid XMLCALL GMLExpatHandler::startElementCbk(void *pUserData, const char *pszName,\n const char **ppszAttr)\n\n{\n GMLExpatHandler* pThis = ((GMLExpatHandler*)pUserData);\n if (pThis->m_bStopParsing)\n return;\n\n const char* pszIter = pszName;\n char ch;\n while((ch = *pszIter) != '\\0')\n {\n if (ch == ':')\n pszName = pszIter + 1;\n pszIter ++;\n }\n\n if (pThis->GMLHandler::startElement(pszName, (int)(pszIter - pszName), ppszAttr) == OGRERR_NOT_ENOUGH_MEMORY)\n {\n CPLError(CE_Failure, CPLE_OutOfMemory, \"Out of memory\");\n pThis->m_bStopParsing = TRUE;\n XML_StopParser(pThis->m_oParser, XML_FALSE);\n }\n\n}\n\n/************************************************************************/\n/* endElementCbk() */\n/************************************************************************/\nvoid XMLCALL GMLExpatHandler::endElementCbk(void *pUserData,\n CPL_UNUSED const char* pszName )\n{\n GMLExpatHandler* pThis = ((GMLExpatHandler*)pUserData);\n if (pThis->m_bStopParsing)\n return;\n\n if (pThis->GMLHandler::endElement() == OGRERR_NOT_ENOUGH_MEMORY)\n {\n CPLError(CE_Failure, CPLE_OutOfMemory, \"Out of memory\");\n pThis->m_bStopParsing = TRUE;\n XML_StopParser(pThis->m_oParser, XML_FALSE);\n }\n}\n\n/************************************************************************/\n/* dataHandlerCbk() */\n/************************************************************************/\n\nvoid XMLCALL GMLExpatHandler::dataHandlerCbk(void *pUserData, const char *data, int nLen)\n\n{\n GMLExpatHandler* pThis = ((GMLExpatHandler*)pUserData);\n if (pThis->m_bStopParsing)\n return;\n\n pThis->m_nDataHandlerCounter ++;\n /* The size of the buffer that is fetched and that Expat parses is */\n /* PARSER_BUF_SIZE bytes. If the dataHandlerCbk() callback is called */\n /* more than PARSER_BUF_SIZE times, this means that one byte in the */\n /* file expands to more XML text fragments, which is the sign of a */\n /* likely abuse of */\n /* Note: the counter is zeroed by ResetDataHandlerCounter() before each */\n /* new XML parsing. */\n if (pThis->m_nDataHandlerCounter >= PARSER_BUF_SIZE)\n {\n CPLError(CE_Failure, CPLE_AppDefined, \"File probably corrupted (million laugh pattern)\");\n pThis->m_bStopParsing = TRUE;\n XML_StopParser(pThis->m_oParser, XML_FALSE);\n return;\n }\n\n if (pThis->GMLHandler::dataHandler(data, nLen) == OGRERR_NOT_ENOUGH_MEMORY)\n {\n CPLError(CE_Failure, CPLE_OutOfMemory, \"Out of memory\");\n pThis->m_bStopParsing = TRUE;\n XML_StopParser(pThis->m_oParser, XML_FALSE);\n return;\n }\n}\n\n/************************************************************************/\n/* GetFID() */\n/************************************************************************/\n\nconst char* GMLExpatHandler::GetFID(void* attr)\n{\n const char** papszIter = (const char** )attr;\n while(*papszIter)\n {\n if (strcmp(*papszIter, \"fid\") == 0 ||\n strcmp(*papszIter, \"gml:id\") == 0)\n {\n return papszIter[1];\n }\n papszIter += 2;\n }\n return NULL;\n}\n\n/************************************************************************/\n/* AddAttributes() */\n/************************************************************************/\n\nCPLXMLNode* GMLExpatHandler::AddAttributes(CPLXMLNode* psNode, void* attr)\n{\n const char** papszIter = (const char** )attr;\n\n CPLXMLNode* psLastChild = NULL;\n\n while(*papszIter)\n {\n CPLXMLNode* psChild = CPLCreateXMLNode(NULL, CXT_Attribute, papszIter[0]);\n CPLCreateXMLNode(psChild, CXT_Text, papszIter[1]);\n\n if (psLastChild == NULL)\n psNode->psChild = psChild;\n else\n psLastChild->psNext = psChild;\n psLastChild = psChild;\n\n papszIter += 2;\n }\n\n return psLastChild;\n}\n\n/************************************************************************/\n/* GetAttributeValue() */\n/************************************************************************/\n\nchar* GMLExpatHandler::GetAttributeValue(void* attr, const char* pszAttributeName)\n{\n const char** papszIter = (const char** )attr;\n while(*papszIter)\n {\n if (strcmp(*papszIter, pszAttributeName) == 0)\n {\n return CPLStrdup(papszIter[1]);\n }\n papszIter += 2;\n }\n return NULL;\n}\n\n/************************************************************************/\n/* GetAttributeByIdx() */\n/************************************************************************/\n\n/* CAUTION: should be called with increasing idx starting from 0 and */\n/* no attempt to read beyond end of list */\nchar* GMLExpatHandler::GetAttributeByIdx(void* attr, unsigned int idx, char** ppszKey)\n{\n const char** papszIter = (const char** )attr;\n if( papszIter[2 * idx] == NULL )\n {\n *ppszKey = NULL;\n return NULL;\n }\n *ppszKey = CPLStrdup(papszIter[2 * idx]);\n return CPLStrdup(papszIter[2 * idx+1]);\n}\n\n#endif\n\n\nstatic const char* const apszGMLGeometryElements[] =\n{\n \"BoundingBox\", /* ows:BoundingBox */\n \"CompositeCurve\",\n \"CompositeSurface\",\n \"Curve\",\n \"GeometryCollection\", /* OGR < 1.8.0 bug... */\n \"LineString\",\n \"MultiCurve\",\n \"MultiGeometry\",\n \"MultiLineString\",\n \"MultiPoint\",\n \"MultiPolygon\",\n \"MultiSurface\",\n \"Point\",\n \"Polygon\",\n \"PolygonPatch\",\n \"SimplePolygon\", /* GML 3.3 compact encoding */\n \"SimpleRectangle\", /* GML 3.3 compact encoding */\n \"SimpleTriangle\", /* GML 3.3 compact encoding */\n \"SimpleMultiPoint\", /* GML 3.3 compact encoding */\n \"Solid\",\n \"Surface\",\n \"TopoCurve\",\n \"TopoSurface\"\n};\n\n#define GML_GEOMETRY_TYPE_COUNT \\\n (int)(sizeof(apszGMLGeometryElements) / sizeof(apszGMLGeometryElements[0]))\n\nstruct _GeometryNamesStruct {\n unsigned long nHash;\n const char *pszName;\n} ;\n\n/************************************************************************/\n/* GMLHandlerSortGeometryElements() */\n/************************************************************************/\n\nstatic int GMLHandlerSortGeometryElements(const void *_pA, const void *_pB)\n{\n GeometryNamesStruct* pA = (GeometryNamesStruct*)_pA;\n GeometryNamesStruct* pB = (GeometryNamesStruct*)_pB;\n CPLAssert(pA->nHash != pB->nHash);\n if (pA->nHash < pB->nHash)\n return -1;\n else\n return 1;\n}\n\n/************************************************************************/\n/* GMLHandler() */\n/************************************************************************/\n\nGMLHandler::GMLHandler( GMLReader *poReader )\n\n{\n m_poReader = poReader;\n m_bInCurField = FALSE;\n m_nCurFieldAlloc = 0;\n m_nCurFieldLen = 0;\n m_pszCurField = NULL;\n m_nAttributeIndex = -1;\n m_nAttributeDepth = 0;\n\n m_pszGeometry = NULL;\n m_nGeomAlloc = 0;\n m_nGeomLen = 0;\n m_nGeometryDepth = 0;\n m_bAlreadyFoundGeometry = FALSE;\n m_nGeometryPropertyIndex = 0;\n\n m_nDepthFeature = m_nDepth = 0;\n m_inBoundedByDepth = 0;\n\n eAppSchemaType = APPSCHEMA_GENERIC;\n\n m_pszCityGMLGenericAttrName = NULL;\n m_inCityGMLGenericAttrDepth = 0;\n\n m_bReportHref = FALSE;\n m_pszHref = NULL;\n m_pszUom = NULL;\n m_pszValue = NULL;\n m_pszKieli = NULL;\n\n pasGeometryNames = (GeometryNamesStruct*)CPLMalloc(\n GML_GEOMETRY_TYPE_COUNT * sizeof(GeometryNamesStruct));\n for(int i=0; i= 2 && apsXMLNode[1].psNode != NULL)\n CPLDestroyXMLNode(apsXMLNode[1].psNode);\n\n CPLFree( m_pszCurField );\n CPLFree( m_pszGeometry );\n CPLFree( m_pszCityGMLGenericAttrName );\n CPLFree( m_pszHref );\n CPLFree( m_pszUom );\n CPLFree( m_pszValue );\n CPLFree( m_pszKieli );\n CPLFree( pasGeometryNames );\n}\n\n\n/************************************************************************/\n/* startElement() */\n/************************************************************************/\n\nOGRErr GMLHandler::startElement(const char *pszName, int nLenName, void* attr)\n{\n OGRErr eRet;\n switch(stateStack[nStackDepth])\n {\n case STATE_TOP: eRet = startElementTop(pszName, nLenName, attr); break;\n case STATE_DEFAULT: eRet = startElementDefault(pszName, nLenName, attr); break;\n case STATE_FEATURE: eRet = startElementFeatureAttribute(pszName, nLenName, attr); break;\n case STATE_PROPERTY: eRet = startElementFeatureAttribute(pszName, nLenName, attr); break;\n case STATE_FEATUREPROPERTY: eRet = startElementFeatureProperty(pszName, nLenName, attr); break;\n case STATE_GEOMETRY: eRet = startElementGeometry(pszName, nLenName, attr); break;\n case STATE_IGNORED_FEATURE: eRet = OGRERR_NONE; break;\n case STATE_BOUNDED_BY: eRet = startElementBoundedBy(pszName, nLenName, attr); break;\n case STATE_CITYGML_ATTRIBUTE: eRet = startElementCityGMLGenericAttr(pszName, nLenName, attr); break;\n default: eRet = OGRERR_NONE; break;\n }\n m_nDepth++;\n return eRet;\n}\n\n/************************************************************************/\n/* endElement() */\n/************************************************************************/\n\nOGRErr GMLHandler::endElement()\n{\n m_nDepth--;\n switch(stateStack[nStackDepth])\n {\n case STATE_TOP: return OGRERR_NONE; break;\n case STATE_DEFAULT: return endElementDefault(); break;\n case STATE_FEATURE: return endElementFeature(); break;\n case STATE_PROPERTY: return endElementAttribute(); break;\n case STATE_FEATUREPROPERTY: return endElementFeatureProperty(); break;\n case STATE_GEOMETRY: return endElementGeometry(); break;\n case STATE_IGNORED_FEATURE: return endElementIgnoredFeature(); break;\n case STATE_BOUNDED_BY: return endElementBoundedBy(); break;\n case STATE_CITYGML_ATTRIBUTE: return endElementCityGMLGenericAttr(); break;\n default: return OGRERR_NONE; break;\n }\n}\n\n/************************************************************************/\n/* dataHandler() */\n/************************************************************************/\n\nOGRErr GMLHandler::dataHandler(const char *data, int nLen)\n{\n switch(stateStack[nStackDepth])\n {\n case STATE_TOP: return OGRERR_NONE; break;\n case STATE_DEFAULT: return OGRERR_NONE; break;\n case STATE_FEATURE: return OGRERR_NONE; break;\n case STATE_PROPERTY: return dataHandlerAttribute(data, nLen); break;\n case STATE_FEATUREPROPERTY: return OGRERR_NONE; break;\n case STATE_GEOMETRY: return dataHandlerGeometry(data, nLen); break;\n case STATE_IGNORED_FEATURE: return OGRERR_NONE; break;\n case STATE_BOUNDED_BY: return OGRERR_NONE; break;\n case STATE_CITYGML_ATTRIBUTE: return dataHandlerAttribute(data, nLen); break;\n default: return OGRERR_NONE; break;\n }\n}\n\n#define PUSH_STATE(val) do { nStackDepth ++; CPLAssert(nStackDepth < STACK_SIZE); stateStack[nStackDepth] = val; } while(0)\n#define POP_STATE() nStackDepth --\n\n/************************************************************************/\n/* startElementBoundedBy() */\n/************************************************************************/\n\nOGRErr GMLHandler::startElementBoundedBy(const char *pszName,\n CPL_UNUSED int nLenName,\n void* attr )\n{\n if ( m_nDepth == 2 && strcmp(pszName, \"Envelope\") == 0 )\n {\n char* pszGlobalSRSName = GetAttributeValue(attr, \"srsName\");\n m_poReader->SetGlobalSRSName(pszGlobalSRSName);\n CPLFree(pszGlobalSRSName);\n }\n\n return OGRERR_NONE;\n}\n\n/************************************************************************/\n/* startElementGeometry() */\n/************************************************************************/\n\nOGRErr GMLHandler::startElementGeometry(const char *pszName, int nLenName, void* attr )\n{\n if( nLenName == 9 && strcmp(pszName, \"boundedBy\") == 0 )\n {\n m_inBoundedByDepth = m_nDepth;\n\n PUSH_STATE(STATE_BOUNDED_BY);\n\n return OGRERR_NONE;\n }\n\n /* Create new XML Element */\n CPLXMLNode* psCurNode = (CPLXMLNode *) CPLCalloc(sizeof(CPLXMLNode),1);\n psCurNode->eType = CXT_Element;\n psCurNode->pszValue = (char*) CPLMalloc( nLenName+1 );\n memcpy(psCurNode->pszValue, pszName, nLenName+1);\n\n /* Attach element as the last child of its parent */\n NodeLastChild& sNodeLastChild = apsXMLNode[apsXMLNode.size()-1];\n CPLXMLNode* psLastChildParent = sNodeLastChild.psLastChild;\n\n if (psLastChildParent == NULL)\n {\n CPLXMLNode* psParent = sNodeLastChild.psNode;\n if (psParent)\n psParent->psChild = psCurNode;\n }\n else\n {\n psLastChildParent->psNext = psCurNode;\n }\n sNodeLastChild.psLastChild = psCurNode;\n\n /* Add attributes to the element */\n CPLXMLNode* psLastChildCurNode = AddAttributes(psCurNode, attr);\n\n /* Some CityGML lack a srsDimension=\"3\" in posList, such as in */\n /* http://www.citygml.org/fileadmin/count.php?f=fileadmin%2Fcitygml%2Fdocs%2FFrankfurt_Street_Setting_LOD3.zip */\n /* So we have to add it manually */\n if (eAppSchemaType == APPSCHEMA_CITYGML && nLenName == 7 &&\n strcmp(pszName, \"posList\") == 0 &&\n CPLGetXMLValue(psCurNode, \"srsDimension\", NULL) == NULL)\n {\n CPLXMLNode* psChild = CPLCreateXMLNode(NULL, CXT_Attribute, \"srsDimension\");\n CPLCreateXMLNode(psChild, CXT_Text, \"3\");\n\n if (psLastChildCurNode == NULL)\n psCurNode->psChild = psChild;\n else\n psLastChildCurNode->psNext = psChild;\n psLastChildCurNode = psChild;\n }\n\n /* Push the element on the stack */\n NodeLastChild sNewNodeLastChild;\n sNewNodeLastChild.psNode = psCurNode;\n sNewNodeLastChild.psLastChild = psLastChildCurNode;\n apsXMLNode.push_back(sNewNodeLastChild);\n\n if (m_pszGeometry)\n {\n CPLFree(m_pszGeometry);\n m_pszGeometry = NULL;\n m_nGeomAlloc = 0;\n m_nGeomLen = 0;\n }\n\n return OGRERR_NONE;\n}\n\n/************************************************************************/\n/* startElementCityGMLGenericAttr() */\n/************************************************************************/\n\nOGRErr GMLHandler::startElementCityGMLGenericAttr(const char *pszName,\n CPL_UNUSED int nLenName,\n CPL_UNUSED void* attr )\n{\n if( strcmp(pszName, \"value\") == 0 )\n {\n if(m_pszCurField)\n {\n CPLFree(m_pszCurField);\n m_pszCurField = NULL;\n m_nCurFieldLen = m_nCurFieldAlloc = 0;\n }\n m_bInCurField = TRUE;\n }\n\n return OGRERR_NONE;\n}\n\n/************************************************************************/\n/* DealWithAttributes() */\n/************************************************************************/\n\nvoid GMLHandler::DealWithAttributes(const char *pszName, int nLenName, void* attr )\n{\n GMLReadState *poState = m_poReader->GetState();\n GMLFeatureClass *poClass = poState->m_poFeature->GetClass();\n\n for(unsigned int idx=0; TRUE ;idx++)\n {\n char* pszAttrKey = NULL;\n char* pszAttrVal = NULL;\n\n pszAttrVal = GetAttributeByIdx(attr, idx, &pszAttrKey);\n if( pszAttrVal == NULL )\n break;\n\n int nAttrIndex = 0;\n const char* pszAttrKeyNoNS = strchr(pszAttrKey, ':');\n if( pszAttrKeyNoNS != NULL )\n pszAttrKeyNoNS ++;\n\n /* If attribute is referenced by the .gfs */\n if( poClass->IsSchemaLocked() &&\n ( (pszAttrKeyNoNS != NULL &&\n (nAttrIndex =\n m_poReader->GetAttributeElementIndex( pszName, nLenName, pszAttrKeyNoNS )) != -1) ||\n ((nAttrIndex =\n m_poReader->GetAttributeElementIndex( pszName, nLenName, pszAttrKey )) != -1 ) ) )\n {\n nAttrIndex = FindRealPropertyByCheckingConditions( nAttrIndex, attr );\n if( nAttrIndex >= 0 )\n {\n m_poReader->SetFeaturePropertyDirectly( NULL, pszAttrVal, nAttrIndex );\n pszAttrVal = NULL;\n }\n }\n\n /* Hard-coded historic cases */\n else if( strcmp(pszAttrKey, \"xlink:href\") == 0 )\n {\n if( (m_bReportHref || m_poReader->ReportAllAttributes()) && m_bInCurField )\n {\n CPLFree(m_pszHref);\n m_pszHref = pszAttrVal;\n pszAttrVal = NULL;\n }\n else if( (!poClass->IsSchemaLocked() && (m_bReportHref || m_poReader->ReportAllAttributes())) ||\n (poClass->IsSchemaLocked() && (nAttrIndex =\n m_poReader->GetAttributeElementIndex( CPLSPrintf(\"%s_href\", pszName ),\n nLenName + 5 )) != -1) )\n {\n poState->PushPath( pszName, nLenName );\n CPLString osPropNameHref = poState->osPath + \"_href\";\n poState->PopPath();\n m_poReader->SetFeaturePropertyDirectly( osPropNameHref, pszAttrVal, nAttrIndex );\n pszAttrVal = NULL;\n }\n }\n else if( strcmp(pszAttrKey, \"uom\") == 0 )\n {\n CPLFree(m_pszUom);\n m_pszUom = pszAttrVal;\n pszAttrVal = NULL;\n }\n else if( strcmp(pszAttrKey, \"value\") == 0 )\n {\n CPLFree(m_pszValue);\n m_pszValue = pszAttrVal;\n pszAttrVal = NULL;\n }\n else /* Get language in 'kieli' attribute of 'teksti' element */\n if( eAppSchemaType == APPSCHEMA_MTKGML &&\n nLenName == 6 && strcmp(pszName, \"teksti\") == 0 &&\n strcmp(pszAttrKey, \"kieli\") == 0 )\n {\n CPLFree(m_pszKieli);\n m_pszKieli = pszAttrVal;\n pszAttrVal = NULL;\n }\n\n /* Should we report all attributes ? */\n else if( m_poReader->ReportAllAttributes() && !poClass->IsSchemaLocked() )\n {\n poState->PushPath( pszName, nLenName );\n CPLString osPropName = poState->osPath;\n poState->PopPath();\n\n m_poReader->SetFeaturePropertyDirectly(\n CPLSPrintf(\"%s@%s\", osPropName.c_str(), pszAttrKeyNoNS ? pszAttrKeyNoNS : pszAttrKey),\n pszAttrVal, -1 );\n pszAttrVal = NULL;\n }\n\n CPLFree(pszAttrKey);\n CPLFree(pszAttrVal);\n }\n\n#if 0\n if( poClass->IsSchemaLocked() )\n {\n poState->PushPath( pszName, nLenName );\n CPLString osPath = poState->osPath;\n poState->PopPath();\n /* Find fields that match an attribute that is missing */\n for(int i=0; i < poClass->GetPropertyCount(); i++ )\n {\n GMLPropertyDefn* poProp = poClass->GetProperty(i);\n const char* pszSrcElement = poProp->GetSrcElement();\n if( poProp->GetType() == OFTStringList &&\n poProp->GetSrcElementLen() > osPath.size() &&\n strncmp(pszSrcElement, osPath, osPath.size()) == 0 &&\n pszSrcElement[osPath.size()] == '@' )\n {\n char* pszAttrVal = GetAttributeValue(attr, pszSrcElement + osPath.size() + 1);\n if( pszAttrVal == NULL )\n {\n const char* pszCond = poProp->GetCondition();\n if( pszCond == NULL || IsConditionMatched(pszCond, attr) )\n {\n m_poReader->SetFeaturePropertyDirectly( NULL, CPLStrdup(\"\"), i );\n }\n }\n else\n CPLFree(pszAttrVal);\n }\n }\n }\n#endif\n}\n\n/************************************************************************/\n/* IsConditionMatched() */\n/************************************************************************/\n\n/* FIXME! 'and' / 'or' operators are evaluated left to right, without */\n/* and precedence rules between them ! */\n\nint GMLHandler::IsConditionMatched(const char* pszCondition, void* attr)\n{\n if( pszCondition == NULL )\n return TRUE;\n\n int bSyntaxError = FALSE;\n CPLString osCondAttr, osCondVal;\n const char* pszIter = pszCondition;\n int bOpEqual = TRUE;\n while( *pszIter == ' ' )\n pszIter ++;\n if( *pszIter != '@' )\n bSyntaxError = TRUE;\n else\n {\n pszIter++;\n while( *pszIter != '\\0' &&\n *pszIter != ' ' &&\n *pszIter != '!' &&\n *pszIter != '=' )\n {\n osCondAttr += *pszIter;\n pszIter++;\n }\n while( *pszIter == ' ' )\n pszIter ++;\n\n if( *pszIter == '!' )\n {\n bOpEqual = FALSE;\n pszIter ++;\n }\n\n if( *pszIter != '=' )\n bSyntaxError = TRUE;\n else\n {\n pszIter ++;\n while( *pszIter == ' ' )\n pszIter ++;\n if( *pszIter != '\\'' )\n bSyntaxError = TRUE;\n else\n {\n pszIter ++;\n while( *pszIter != '\\0' &&\n *pszIter != '\\'' )\n {\n osCondVal += *pszIter;\n pszIter++;\n }\n if( *pszIter != '\\'' )\n bSyntaxError = TRUE;\n else\n {\n pszIter ++;\n while( *pszIter == ' ' )\n pszIter ++;\n }\n }\n }\n }\n\n if( bSyntaxError )\n {\n CPLError(CE_Failure, CPLE_NotSupported,\n \"Invalid condition : %s. Must be of the form @attrname[!]='attrvalue' [and|or other_cond]*. 'and' and 'or' operators cannot be mixed\",\n pszCondition);\n return FALSE;\n }\n\n char* pszVal = GetAttributeValue(attr, osCondAttr);\n if( pszVal == NULL )\n pszVal = CPLStrdup(\"\");\n int bCondMet = ((bOpEqual && strcmp(pszVal, osCondVal) == 0 ) ||\n (!bOpEqual && strcmp(pszVal, osCondVal) != 0 ));\n CPLFree(pszVal);\n if( *pszIter == '\\0' )\n return bCondMet;\n\n if( strncmp(pszIter, \"and\", 3) == 0 )\n {\n pszIter += 3;\n if( !bCondMet )\n return FALSE;\n return IsConditionMatched(pszIter, attr);\n }\n\n if( strncmp(pszIter, \"or\", 2) == 0 )\n {\n pszIter += 2;\n if( bCondMet )\n return TRUE;\n return IsConditionMatched(pszIter, attr);\n }\n\n CPLError(CE_Failure, CPLE_NotSupported,\n \"Invalid condition : %s. Must be of the form @attrname[!]='attrvalue' [and|or other_cond]*. 'and' and 'or' operators cannot be mixed\",\n pszCondition);\n return FALSE;\n}\n\n/************************************************************************/\n/* FindRealPropertyByCheckingConditions() */\n/************************************************************************/\n\nint GMLHandler::FindRealPropertyByCheckingConditions(int nIdx, void* attr)\n{\n GMLReadState *poState = m_poReader->GetState();\n GMLFeatureClass *poClass = poState->m_poFeature->GetClass();\n\n GMLPropertyDefn* poProp = poClass->GetProperty(nIdx);\n const char* pszCond = poProp->GetCondition();\n if( pszCond != NULL && !IsConditionMatched(pszCond, attr) )\n {\n /* try other attributes with same source element, but with different */\n /* condition */\n const char* pszSrcElement = poProp->GetSrcElement();\n nIdx = -1;\n for(int i=m_nAttributeIndex+1; i < poClass->GetPropertyCount(); i++ )\n {\n poProp = poClass->GetProperty(i);\n if( strcmp(poProp->GetSrcElement(), pszSrcElement) == 0 )\n {\n pszCond = poProp->GetCondition();\n if( IsConditionMatched(pszCond, attr) )\n {\n nIdx = i;\n break;\n }\n }\n }\n }\n return nIdx;\n}\n\n/************************************************************************/\n/* startElementFeatureAttribute() */\n/************************************************************************/\n\nOGRErr GMLHandler::startElementFeatureAttribute(const char *pszName, int nLenName, void* attr )\n{\n /* Reset flag */\n m_bInCurField = FALSE;\n\n GMLReadState *poState = m_poReader->GetState();\n\n/* -------------------------------------------------------------------- */\n/* If we are collecting geometry, or if we determine this is a */\n/* geometry element then append to the geometry info. */\n/* -------------------------------------------------------------------- */\n if( IsGeometryElement( pszName ) )\n {\n int bReadGeometry;\n\n /* If the is defined in the .gfs, use it */\n /* to read the appropriate geometry element */\n GMLFeatureClass* poClass = poState->m_poFeature->GetClass();\n m_nGeometryPropertyIndex = 0;\n if( poClass->IsSchemaLocked() &&\n poClass->GetGeometryPropertyCount() == 0 )\n {\n bReadGeometry = FALSE;\n }\n else if( poClass->IsSchemaLocked() &&\n poClass->GetGeometryPropertyCount() == 1 &&\n poClass->GetGeometryProperty(0)->GetSrcElement()[0] == '\\0' )\n {\n bReadGeometry = TRUE;\n }\n else if( poClass->IsSchemaLocked() &&\n poClass->GetGeometryPropertyCount() > 0 )\n {\n m_nGeometryPropertyIndex = poClass->GetGeometryPropertyIndexBySrcElement( poState->osPath.c_str() );\n bReadGeometry = (m_nGeometryPropertyIndex >= 0);\n }\n else if( m_poReader->FetchAllGeometries() )\n {\n bReadGeometry = TRUE;\n }\n else if( !poClass->IsSchemaLocked() && m_poReader->IsWFSJointLayer() )\n {\n m_nGeometryPropertyIndex = poClass->GetGeometryPropertyIndexBySrcElement( poState->osPath.c_str() );\n if( m_nGeometryPropertyIndex < 0 )\n {\n const char* pszElement = poState->osPath.c_str();\n CPLString osFieldName;\n /* Strip member| prefix. Should always be true normally */\n if( strncmp(pszElement, \"member|\", strlen(\"member|\")) == 0 )\n osFieldName = pszElement + strlen(\"member|\");\n\n /* Replace layer|property by layer_property */\n size_t iPos = osFieldName.find('|');\n if( iPos != std::string::npos )\n osFieldName[iPos] = '.';\n\n poClass->AddGeometryProperty( new GMLGeometryPropertyDefn(\n osFieldName, poState->osPath.c_str(), wkbUnknown, -1, TRUE ) );\n m_nGeometryPropertyIndex = poClass->GetGeometryPropertyCount();\n }\n bReadGeometry = TRUE;\n }\n else\n {\n /* AIXM special case: for RouteSegment, we only want to read Curve geometries */\n /* not 'start' and 'end' geometries */\n if (eAppSchemaType == APPSCHEMA_AIXM &&\n strcmp(poState->m_poFeature->GetClass()->GetName(), \"RouteSegment\") == 0)\n bReadGeometry = strcmp( pszName, \"Curve\") == 0;\n\n /* For Inspire objects : the \"main\" geometry is in a element */\n else if (m_bAlreadyFoundGeometry)\n bReadGeometry = FALSE;\n else if (strcmp( poState->osPath.c_str(), \"geometry\") == 0)\n {\n m_bAlreadyFoundGeometry = TRUE;\n bReadGeometry = TRUE;\n }\n\n else\n bReadGeometry = TRUE;\n }\n if (bReadGeometry)\n {\n m_nGeometryDepth = m_nDepth;\n\n CPLAssert(apsXMLNode.size() == 0);\n\n NodeLastChild sNodeLastChild;\n sNodeLastChild.psNode = NULL;\n sNodeLastChild.psLastChild = NULL;\n apsXMLNode.push_back(sNodeLastChild);\n\n PUSH_STATE(STATE_GEOMETRY);\n\n return startElementGeometry(pszName, nLenName, attr);\n }\n }\n\n\n else if( nLenName == 9 && strcmp(pszName, \"boundedBy\") == 0 )\n {\n m_inBoundedByDepth = m_nDepth;\n\n PUSH_STATE(STATE_BOUNDED_BY);\n\n return OGRERR_NONE;\n }\n\n/* -------------------------------------------------------------------- */\n/* Is it a CityGML generic attribute ? */\n/* -------------------------------------------------------------------- */\n else if( eAppSchemaType == APPSCHEMA_CITYGML &&\n m_poReader->IsCityGMLGenericAttributeElement( pszName, attr ) )\n {\n CPLFree(m_pszCityGMLGenericAttrName);\n m_pszCityGMLGenericAttrName = GetAttributeValue(attr, \"name\");\n m_inCityGMLGenericAttrDepth = m_nDepth;\n\n PUSH_STATE(STATE_CITYGML_ATTRIBUTE);\n\n return OGRERR_NONE;\n }\n \n else if( m_poReader->IsWFSJointLayer() && m_nDepth == m_nDepthFeature + 1 )\n {\n }\n\n else if( m_poReader->IsWFSJointLayer() && m_nDepth == m_nDepthFeature + 2 )\n {\n const char* pszFID = GetFID(attr);\n if( pszFID )\n {\n poState->PushPath( pszName, nLenName );\n CPLString osPropPath= poState->osPath + \"@id\";\n poState->PopPath();\n m_poReader->SetFeaturePropertyDirectly( osPropPath, CPLStrdup(pszFID), -1 );\n }\n }\n\n/* -------------------------------------------------------------------- */\n/* If it is (or at least potentially is) a simple attribute, */\n/* then start collecting it. */\n/* -------------------------------------------------------------------- */\n else if( (m_nAttributeIndex =\n m_poReader->GetAttributeElementIndex( pszName, nLenName )) != -1 )\n {\n GMLFeatureClass *poClass = poState->m_poFeature->GetClass();\n if( poClass->IsSchemaLocked() &&\n (poClass->GetProperty(m_nAttributeIndex)->GetType() == GMLPT_FeatureProperty ||\n poClass->GetProperty(m_nAttributeIndex)->GetType() == GMLPT_FeaturePropertyList) )\n {\n m_nAttributeDepth = m_nDepth;\n PUSH_STATE(STATE_FEATUREPROPERTY);\n }\n else\n {\n /* Is this a property with a condition on an attribute value ? */\n if( poClass->IsSchemaLocked() )\n {\n m_nAttributeIndex = FindRealPropertyByCheckingConditions( m_nAttributeIndex, attr );\n }\n\n if( m_nAttributeIndex >= 0 )\n {\n if(m_pszCurField)\n {\n CPLFree(m_pszCurField);\n m_pszCurField = NULL;\n m_nCurFieldLen = m_nCurFieldAlloc = 0;\n }\n m_bInCurField = TRUE;\n\n DealWithAttributes(pszName, nLenName, attr);\n\n if (stateStack[nStackDepth] != STATE_PROPERTY)\n {\n m_nAttributeDepth = m_nDepth;\n PUSH_STATE(STATE_PROPERTY);\n }\n }\n /*else\n {\n DealWithAttributes(pszName, nLenName, attr);\n }*/\n }\n\n }\n else\n {\n DealWithAttributes(pszName, nLenName, attr);\n }\n\n poState->PushPath( pszName, nLenName );\n\n return OGRERR_NONE;\n}\n\n/************************************************************************/\n/* startElementTop() */\n/************************************************************************/\n\nOGRErr GMLHandler::startElementTop(const char *pszName,\n CPL_UNUSED int nLenName,\n void* attr )\n{\n if (strcmp(pszName, \"CityModel\") == 0 )\n {\n eAppSchemaType = APPSCHEMA_CITYGML;\n }\n else if (strcmp(pszName, \"AIXMBasicMessage\") == 0)\n {\n eAppSchemaType = APPSCHEMA_AIXM;\n m_bReportHref = TRUE;\n }\n else if (strcmp(pszName, \"Maastotiedot\") == 0)\n {\n eAppSchemaType = APPSCHEMA_MTKGML;\n\n char *pszSRSName = GetAttributeValue(attr, \"srsName\");\n m_poReader->SetGlobalSRSName(pszSRSName);\n CPLFree(pszSRSName);\n\n m_bReportHref = TRUE;\n\n /* the schemas of MTKGML don't have (string) width, so don't set it */\n m_poReader->SetWidthFlag(FALSE);\n }\n\n stateStack[0] = STATE_DEFAULT;\n\n return OGRERR_NONE;\n}\n\n/************************************************************************/\n/* startElementDefault() */\n/************************************************************************/\n\nOGRErr GMLHandler::startElementDefault(const char *pszName, int nLenName, void* attr )\n\n{\n/* -------------------------------------------------------------------- */\n/* Is it a feature? If so push a whole new state, and return. */\n/* -------------------------------------------------------------------- */\n int nClassIndex;\n const char* pszFilteredClassName;\n\n if( nLenName == 9 && strcmp(pszName, \"boundedBy\") == 0 )\n {\n m_inBoundedByDepth = m_nDepth;\n\n PUSH_STATE(STATE_BOUNDED_BY);\n\n return OGRERR_NONE;\n }\n\n else if( m_poReader->ShouldLookForClassAtAnyLevel() &&\n ( pszFilteredClassName = m_poReader->GetFilteredClassName() ) != NULL )\n {\n if( strcmp(pszName, pszFilteredClassName) == 0 )\n {\n m_poReader->PushFeature( pszName, GetFID(attr), m_poReader->GetFilteredClassIndex() );\n\n m_nDepthFeature = m_nDepth;\n\n PUSH_STATE(STATE_FEATURE);\n\n return OGRERR_NONE;\n }\n }\n\n /* WFS 2.0 GetFeature documents have a wfs:FeatureCollection */\n /* as a wfs:member of the top wfs:FeatureCollection. We don't want this */\n /* wfs:FeatureCollection to be recognized as a feature */\n else if( (!(nLenName == strlen(\"FeatureCollection\") &&\n strcmp(pszName, \"FeatureCollection\") == 0)) &&\n (nClassIndex = m_poReader->GetFeatureElementIndex( pszName, nLenName, eAppSchemaType )) != -1 )\n {\n m_bAlreadyFoundGeometry = FALSE;\n\n pszFilteredClassName = m_poReader->GetFilteredClassName();\n if ( pszFilteredClassName != NULL &&\n strcmp(pszName, pszFilteredClassName) != 0 )\n {\n m_nDepthFeature = m_nDepth;\n\n PUSH_STATE(STATE_IGNORED_FEATURE);\n\n return OGRERR_NONE;\n }\n else\n {\n if( eAppSchemaType == APPSCHEMA_MTKGML )\n {\n m_poReader->PushFeature( pszName, NULL, nClassIndex );\n\n char* pszGID = GetAttributeValue(attr, \"gid\");\n if( pszGID )\n m_poReader->SetFeaturePropertyDirectly( \"gid\", pszGID, -1, GMLPT_String );\n }\n else\n m_poReader->PushFeature( pszName, GetFID(attr), nClassIndex );\n\n m_nDepthFeature = m_nDepth;\n\n PUSH_STATE(STATE_FEATURE);\n\n return OGRERR_NONE;\n }\n }\n\n/* -------------------------------------------------------------------- */\n/* Push the element onto the current state's path. */\n/* -------------------------------------------------------------------- */\n m_poReader->GetState()->PushPath( pszName, nLenName );\n\n return OGRERR_NONE;\n}\n\n/************************************************************************/\n/* endElementIgnoredFeature() */\n/************************************************************************/\n\nOGRErr GMLHandler::endElementIgnoredFeature()\n\n{\n if (m_nDepth == m_nDepthFeature)\n {\n POP_STATE();\n }\n return OGRERR_NONE;\n}\n\n/************************************************************************/\n/* endElementBoundedBy() */\n/************************************************************************/\nOGRErr GMLHandler::endElementBoundedBy()\n\n{\n if( m_inBoundedByDepth == m_nDepth)\n {\n POP_STATE();\n }\n\n return OGRERR_NONE;\n}\n\n/************************************************************************/\n/* ParseAIXMElevationPoint() */\n/************************************************************************/\n\nCPLXMLNode* GMLHandler::ParseAIXMElevationPoint(CPLXMLNode *psGML)\n{\n const char* pszElevation =\n CPLGetXMLValue( psGML, \"elevation\", NULL );\n if (pszElevation)\n {\n m_poReader->SetFeaturePropertyDirectly( \"elevation\",\n CPLStrdup(pszElevation), -1 );\n const char* pszElevationUnit =\n CPLGetXMLValue( psGML, \"elevation.uom\", NULL );\n if (pszElevationUnit)\n {\n m_poReader->SetFeaturePropertyDirectly( \"elevation_uom\",\n CPLStrdup(pszElevationUnit), -1 );\n }\n }\n\n const char* pszGeoidUndulation =\n CPLGetXMLValue( psGML, \"geoidUndulation\", NULL );\n if (pszGeoidUndulation)\n {\n m_poReader->SetFeaturePropertyDirectly( \"geoidUndulation\",\n CPLStrdup(pszGeoidUndulation), -1 );\n const char* pszGeoidUndulationUnit =\n CPLGetXMLValue( psGML, \"geoidUndulation.uom\", NULL );\n if (pszGeoidUndulationUnit)\n {\n m_poReader->SetFeaturePropertyDirectly( \"geoidUndulation_uom\",\n CPLStrdup(pszGeoidUndulationUnit), -1 );\n }\n }\n\n const char* pszPos =\n CPLGetXMLValue( psGML, \"pos\", NULL );\n const char* pszCoordinates =\n CPLGetXMLValue( psGML, \"coordinates\", NULL );\n if (pszPos != NULL)\n {\n char* pszGeometry = CPLStrdup(CPLSPrintf(\n \"%s\",\n pszPos));\n CPLDestroyXMLNode(psGML);\n psGML = CPLParseXMLString(pszGeometry);\n CPLFree(pszGeometry);\n }\n else if (pszCoordinates != NULL)\n {\n char* pszGeometry = CPLStrdup(CPLSPrintf(\n \"%s\",\n pszCoordinates));\n CPLDestroyXMLNode(psGML);\n psGML = CPLParseXMLString(pszGeometry);\n CPLFree(pszGeometry);\n }\n else\n {\n CPLDestroyXMLNode(psGML);\n psGML = NULL;\n }\n\n return psGML;\n}\n\n/************************************************************************/\n/* endElementGeometry() */\n/************************************************************************/\nOGRErr GMLHandler::endElementGeometry()\n\n{\n if (m_nGeomLen)\n {\n CPLXMLNode* psNode = (CPLXMLNode *) CPLCalloc(sizeof(CPLXMLNode),1);\n psNode->eType = CXT_Text;\n psNode->pszValue = m_pszGeometry;\n\n NodeLastChild& sNodeLastChild = apsXMLNode[apsXMLNode.size()-1];\n CPLXMLNode* psLastChildParent = sNodeLastChild.psLastChild;\n if (psLastChildParent == NULL)\n {\n CPLXMLNode* psParent = sNodeLastChild.psNode;\n if (psParent)\n psParent->psChild = psNode;\n }\n else\n psLastChildParent->psNext = psNode;\n sNodeLastChild.psLastChild = psNode;\n\n m_pszGeometry = NULL;\n m_nGeomAlloc = 0;\n m_nGeomLen = 0;\n }\n\n if( m_nDepth == m_nGeometryDepth )\n {\n CPLXMLNode* psInterestNode = apsXMLNode[apsXMLNode.size()-1].psNode;\n\n /*char* pszXML = CPLSerializeXMLTree(psInterestNode);\n CPLDebug(\"GML\", \"geometry = %s\", pszXML);\n CPLFree(pszXML);*/\n\n apsXMLNode.pop_back();\n\n /* AIXM ElevatedPoint. We want to parse this */\n /* a bit specially because ElevatedPoint is aixm: stuff and */\n /* the srsDimension of the can be set to TRUE although */\n /* they are only 2 coordinates in practice */\n if ( eAppSchemaType == APPSCHEMA_AIXM && psInterestNode != NULL &&\n strcmp(psInterestNode->pszValue, \"ElevatedPoint\") == 0 )\n {\n psInterestNode = ParseAIXMElevationPoint(psInterestNode);\n }\n else if ( eAppSchemaType == APPSCHEMA_MTKGML && psInterestNode != NULL )\n {\n if( strcmp(psInterestNode->pszValue, \"Murtoviiva\") == 0 )\n {\n CPLFree(psInterestNode->pszValue);\n psInterestNode->pszValue = CPLStrdup(\"gml:LineString\");\n }\n else if( strcmp(psInterestNode->pszValue, \"Alue\") == 0 )\n {\n CPLFree(psInterestNode->pszValue);\n psInterestNode->pszValue = CPLStrdup(\"gml:Polygon\");\n }\n else if( strcmp(psInterestNode->pszValue, \"Piste\") == 0 )\n {\n CPLFree(psInterestNode->pszValue);\n psInterestNode->pszValue = CPLStrdup(\"gml:Point\");\n }\n }\n else if( psInterestNode != NULL &&\n strcmp(psInterestNode->pszValue, \"BoundingBox\") == 0 )\n {\n CPLFree(psInterestNode->pszValue);\n psInterestNode->pszValue = CPLStrdup(\"Envelope\");\n for( CPLXMLNode* psChild = psInterestNode->psChild;\n psChild;\n psChild = psChild->psNext )\n {\n if( psChild->eType == CXT_Attribute &&\n strcmp(psChild->pszValue, \"crs\") == 0 )\n {\n CPLFree(psChild->pszValue);\n psChild->pszValue = CPLStrdup(\"srsName\");\n break;\n }\n }\n }\n\n GMLFeature* poGMLFeature = m_poReader->GetState()->m_poFeature;\n if (m_poReader->FetchAllGeometries())\n poGMLFeature->AddGeometry(psInterestNode);\n else\n {\n GMLFeatureClass* poClass = poGMLFeature->GetClass();\n if( poClass->GetGeometryPropertyCount() > 1 )\n {\n poGMLFeature->SetGeometryDirectly(\n m_nGeometryPropertyIndex, psInterestNode);\n }\n else\n {\n poGMLFeature->SetGeometryDirectly(psInterestNode);\n }\n }\n\n POP_STATE();\n }\n\n apsXMLNode.pop_back();\n\n return OGRERR_NONE;\n}\n\n/************************************************************************/\n/* endElementCityGMLGenericAttr() */\n/************************************************************************/\nOGRErr GMLHandler::endElementCityGMLGenericAttr()\n\n{\n if( m_pszCityGMLGenericAttrName != NULL && m_bInCurField )\n {\n if( m_pszCurField != NULL )\n {\n m_poReader->SetFeaturePropertyDirectly( m_pszCityGMLGenericAttrName,\n m_pszCurField, -1 );\n }\n m_pszCurField = NULL;\n m_nCurFieldLen = m_nCurFieldAlloc = 0;\n m_bInCurField = FALSE;\n CPLFree(m_pszCityGMLGenericAttrName);\n m_pszCityGMLGenericAttrName = NULL;\n }\n\n if( m_inCityGMLGenericAttrDepth == m_nDepth )\n {\n POP_STATE();\n }\n\n return OGRERR_NONE;\n}\n\n/************************************************************************/\n/* endElementAttribute() */\n/************************************************************************/\nOGRErr GMLHandler::endElementAttribute()\n\n{\n GMLReadState *poState = m_poReader->GetState();\n\n if (m_bInCurField)\n {\n if (m_pszCurField == NULL && m_poReader->IsEmptyAsNull())\n {\n if (m_pszValue != NULL)\n {\n m_poReader->SetFeaturePropertyDirectly( poState->osPath.c_str(),\n m_pszValue, -1 );\n m_pszValue = NULL;\n }\n }\n else\n {\n m_poReader->SetFeaturePropertyDirectly( poState->osPath.c_str(),\n m_pszCurField ? m_pszCurField : CPLStrdup(\"\"),\n m_nAttributeIndex );\n m_pszCurField = NULL;\n }\n\n if (m_pszHref != NULL)\n {\n CPLString osPropNameHref = poState->osPath + \"_href\";\n m_poReader->SetFeaturePropertyDirectly( osPropNameHref, m_pszHref, -1 );\n m_pszHref = NULL;\n }\n\n if (m_pszUom != NULL)\n {\n CPLString osPropNameUom = poState->osPath + \"_uom\";\n m_poReader->SetFeaturePropertyDirectly( osPropNameUom, m_pszUom, -1 );\n m_pszUom = NULL;\n }\n\n if (m_pszKieli != NULL)\n {\n CPLString osPropName = poState->osPath + \"_kieli\";\n m_poReader->SetFeaturePropertyDirectly( osPropName, m_pszKieli, -1 );\n m_pszKieli = NULL;\n }\n\n m_nCurFieldLen = m_nCurFieldAlloc = 0;\n m_bInCurField = FALSE;\n m_nAttributeIndex = -1;\n\n CPLFree( m_pszValue );\n m_pszValue = NULL;\n }\n\n poState->PopPath();\n\n if( m_nAttributeDepth == m_nDepth )\n {\n POP_STATE();\n }\n\n return OGRERR_NONE;\n}\n\n/************************************************************************/\n/* startElementFeatureProperty() */\n/************************************************************************/\n\nOGRErr GMLHandler::startElementFeatureProperty(CPL_UNUSED const char *pszName,\n CPL_UNUSED int nLenName,\n void* attr )\n{\n if (m_nDepth == m_nAttributeDepth + 1)\n {\n const char* pszGMLId = GetFID(attr);\n if( pszGMLId != NULL )\n {\n m_poReader->SetFeaturePropertyDirectly( NULL,\n CPLStrdup(CPLSPrintf(\"#%s\", pszGMLId)),\n m_nAttributeIndex );\n }\n }\n\n return OGRERR_NONE;\n}\n\n/************************************************************************/\n/* endElementFeatureProperty() */\n/************************************************************************/\n\nOGRErr GMLHandler::endElementFeatureProperty()\n\n{\n if (m_nDepth == m_nAttributeDepth)\n {\n GMLReadState *poState = m_poReader->GetState();\n poState->PopPath();\n\n POP_STATE();\n }\n return OGRERR_NONE;\n}\n\n/************************************************************************/\n/* endElementFeature() */\n/************************************************************************/\nOGRErr GMLHandler::endElementFeature()\n\n{\n/* -------------------------------------------------------------------- */\n/* If we are collecting a feature, and this element tag matches */\n/* element name for the class, then we have finished the */\n/* feature, and we pop the feature read state. */\n/* -------------------------------------------------------------------- */\n if( m_nDepth == m_nDepthFeature )\n {\n m_poReader->PopState();\n\n POP_STATE();\n }\n\n/* -------------------------------------------------------------------- */\n/* Otherwise, we just pop the element off the local read states */\n/* element stack. */\n/* -------------------------------------------------------------------- */\n else\n {\n m_poReader->GetState()->PopPath();\n }\n\n return OGRERR_NONE;\n}\n\n/************************************************************************/\n/* endElementDefault() */\n/************************************************************************/\nOGRErr GMLHandler::endElementDefault()\n\n{\n if (m_nDepth > 0)\n m_poReader->GetState()->PopPath();\n\n return OGRERR_NONE;\n}\n\n/************************************************************************/\n/* dataHandlerAttribute() */\n/************************************************************************/\n\nOGRErr GMLHandler::dataHandlerAttribute(const char *data, int nLen)\n\n{\n int nIter = 0;\n\n if( m_bInCurField )\n {\n // Ignore white space\n if (m_nCurFieldLen == 0)\n {\n while (nIter < nLen)\n {\n char ch = data[nIter];\n if( !(ch == ' ' || ch == 10 || ch == 13 || ch == '\\t') )\n break;\n nIter ++;\n }\n }\n\n int nCharsLen = nLen - nIter;\n\n if (m_nCurFieldLen + nCharsLen + 1 > m_nCurFieldAlloc)\n {\n m_nCurFieldAlloc = m_nCurFieldAlloc * 4 / 3 + nCharsLen + 1;\n char *pszNewCurField = (char *)\n VSIRealloc( m_pszCurField, m_nCurFieldAlloc );\n if (pszNewCurField == NULL)\n {\n return OGRERR_NOT_ENOUGH_MEMORY;\n }\n m_pszCurField = pszNewCurField;\n }\n memcpy( m_pszCurField + m_nCurFieldLen, data + nIter, nCharsLen);\n m_nCurFieldLen += nCharsLen;\n m_pszCurField[m_nCurFieldLen] = '\\0';\n }\n\n return OGRERR_NONE;\n}\n\n/************************************************************************/\n/* dataHandlerGeometry() */\n/************************************************************************/\n\nOGRErr GMLHandler::dataHandlerGeometry(const char *data, int nLen)\n\n{\n int nIter = 0;\n\n // Ignore white space\n if (m_nGeomLen == 0)\n {\n while (nIter < nLen)\n {\n char ch = data[nIter];\n if( !(ch == ' ' || ch == 10 || ch == 13 || ch == '\\t') )\n break;\n nIter ++;\n }\n }\n\n int nCharsLen = nLen - nIter;\n if (nCharsLen)\n {\n if( m_nGeomLen + nCharsLen + 1 > m_nGeomAlloc )\n {\n m_nGeomAlloc = m_nGeomAlloc * 4 / 3 + nCharsLen + 1;\n char* pszNewGeometry = (char *)\n VSIRealloc( m_pszGeometry, m_nGeomAlloc);\n if (pszNewGeometry == NULL)\n {\n return OGRERR_NOT_ENOUGH_MEMORY;\n }\n m_pszGeometry = pszNewGeometry;\n }\n memcpy( m_pszGeometry+m_nGeomLen, data + nIter, nCharsLen);\n m_nGeomLen += nCharsLen;\n m_pszGeometry[m_nGeomLen] = '\\0';\n }\n\n return OGRERR_NONE;\n}\n\n\n/************************************************************************/\n/* IsGeometryElement() */\n/************************************************************************/\n\nint GMLHandler::IsGeometryElement( const char *pszElement )\n\n{\n int nFirst = 0;\n int nLast = GML_GEOMETRY_TYPE_COUNT- 1;\n unsigned long nHash = CPLHashSetHashStr(pszElement);\n do\n {\n int nMiddle = (nFirst + nLast) / 2;\n if (nHash == pasGeometryNames[nMiddle].nHash)\n return strcmp(pszElement, pasGeometryNames[nMiddle].pszName) == 0;\n if (nHash < pasGeometryNames[nMiddle].nHash)\n nLast = nMiddle - 1;\n else\n nFirst = nMiddle + 1;\n } while(nFirst <= nLast);\n\n if (eAppSchemaType == APPSCHEMA_AIXM &&\n strcmp( pszElement, \"ElevatedPoint\") == 0)\n return TRUE;\n\n if( eAppSchemaType == APPSCHEMA_MTKGML &&\n ( strcmp( pszElement, \"Piste\") == 0 ||\n strcmp( pszElement, \"Alue\") == 0 ||\n strcmp( pszElement, \"Murtoviiva\") == 0 ) )\n return TRUE;\n\n return FALSE;\n}\n"}
+{"text": "/*\nCopyright 2016 The Kubernetes Authors.\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n*/\n\npackage v1beta1\n\nimport (\n\tauthorizationapi \"k8s.io/api/authorization/v1beta1\"\n)\n\ntype LocalSubjectAccessReviewExpansion interface {\n\tCreate(sar *authorizationapi.LocalSubjectAccessReview) (result *authorizationapi.LocalSubjectAccessReview, err error)\n}\n\nfunc (c *localSubjectAccessReviews) Create(sar *authorizationapi.LocalSubjectAccessReview) (result *authorizationapi.LocalSubjectAccessReview, err error) {\n\tresult = &authorizationapi.LocalSubjectAccessReview{}\n\terr = c.client.Post().\n\t\tNamespace(c.ns).\n\t\tResource(\"localsubjectaccessreviews\").\n\t\tBody(sar).\n\t\tDo().\n\t\tInto(result)\n\treturn\n}\n"}
+{"text": "/*-\n * #%L\n * This file is part of QuPath.\n * %%\n * Copyright (C) 2018 - 2020 QuPath developers, The University of Edinburgh\n * %%\n * QuPath is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n * \n * QuPath is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License \n * along with QuPath. If not, see .\n * #L%\n */\n\npackage qupath.lib.roi;\n\nimport static org.junit.jupiter.api.Assertions.assertArrayEquals;\nimport static org.junit.jupiter.api.Assertions.assertEquals;\nimport static org.junit.jupiter.api.Assertions.assertNotEquals;\nimport static org.junit.jupiter.api.Assertions.assertTrue;\nimport static org.junit.jupiter.api.Assertions.fail;\n\nimport java.awt.geom.AffineTransform;\nimport java.io.File;\nimport java.io.InputStream;\nimport java.io.ObjectInputStream;\nimport java.nio.file.Files;\nimport java.util.ArrayList;\nimport java.util.stream.Collectors;\n\nimport org.junit.jupiter.api.Test;\nimport org.locationtech.jts.geom.Coordinate;\nimport org.locationtech.jts.geom.Polygon;\nimport org.locationtech.jts.geom.util.AffineTransformation;\n\nimport qupath.lib.objects.hierarchy.PathObjectHierarchy;\n\n/**\n * Test {@link GeometryTools}. Note that most of the relevant tests for ROI conversion are in {@link TestROIs}.\n */\npublic class TestGeometryTools {\n\t\n\t/**\n\t * Compare conversion of {@link AffineTransform} and {@link AffineTransformation} objects.\n\t */\n\t@Test\n\tpublic void testAffineTransforms() {\n\t\t\n\t\tdouble[] source = new double[] {1.3, 2.7};\n\t\t\n\t\tdouble[] destTransform = new double[source.length];\n\t\tvar transform = AffineTransform.getScaleInstance(2.0, 0.5);\n\t\ttransform.rotate(0.5);\n\t\ttransform.translate(-20, 42);\n\t\ttransform.transform(source, 0, destTransform, 0, source.length/2);\n\t\t\n\t\tvar transformation = GeometryTools.convertTransform(transform);\n\t\tvar c = new Coordinate(source[0], source[1]);\n\t\ttransformation.transform(c, c);\n\t\tdouble[] destTransformation = new double[] {c.x, c.y};\n\t\t\n\t\tvar transformBack = GeometryTools.convertTransform(transformation);\n\t\tdouble[] matBefore = new double[6];\n\t\tdouble[] matAfter = new double[6];\n\t\ttransform.getMatrix(matBefore);\n\t\ttransformBack.getMatrix(matAfter);\n\t\t\n\t\tassertArrayEquals(destTransform, destTransformation, 0.001);\n\t\tassertArrayEquals(matBefore, matAfter, 0.001);\n\t\t\n\t}\n\t\n\t/**\n\t * Check we can perform various geometry changes while remaining valid\n\t */\n\t@Test\n\tpublic void testComplexROIs() {\n\t\t\n\t\tFile fileHierarchy = new File(\"src/test/resources/data/test-objects.hierarchy\");\n\t\ttry (InputStream stream = Files.newInputStream(fileHierarchy.toPath())) {\n\t\t\tvar hierarchy = (PathObjectHierarchy)new ObjectInputStream(stream).readObject();\n\t\t\tvar geometries = hierarchy.getFlattenedObjectList(null).stream().filter(p -> p.hasROI()).map(p -> p.getROI().getGeometry()).collect(Collectors.toCollection(() -> new ArrayList<>()));\n\t\t\t\n\t\t\t// Include some extra geometries that we know can be troublesome\n\t\t\tvar rectangle = GeometryTools.createRectangle(0, 0, 100, 100);\n\t\t\tvar ring = (Polygon)rectangle.buffer(100).difference(rectangle);\n\t\t\tgeometries.add(ring);\n\t\t\tvar nested = ring.union(rectangle.buffer(-40));\n\t\t\tgeometries.add(nested);\n\t\t\tvar nested2 = nested.difference(rectangle.buffer(-45));\n\t\t\tgeometries.add(nested2);\n\t\t\t\n\t\t\tvar filledNested = (Polygon)GeometryTools.fillHoles(nested);\n\t\t\tassertNotEquals(nested.getArea(), filledNested.getArea());\n\t\t\tassertNotEquals(nested.getNumGeometries(), 1);\n\t\t\tassertEquals(filledNested.getNumInteriorRing(), 0);\n\t\t\tassertEquals(filledNested.getArea(), GeometryTools.externalRingArea(filledNested));\n\n\t\t\tvar filledNested2 = (Polygon)GeometryTools.fillHoles(nested2);\n\t\t\tassertNotEquals(nested2.getArea(), filledNested2.getArea());\n\t\t\tassertNotEquals(nested2.getNumGeometries(), 1);\n\t\t\tassertEquals(filledNested2.getNumInteriorRing(), 0);\n\t\t\tassertEquals(filledNested2.getArea(), GeometryTools.externalRingArea(filledNested2));\n\n\t\t\tfor (var geom : geometries) {\n\t\t\t\t\n\t\t\t\tassertTrue(geom.isValid());\n\t\t\t\t\n\t\t\t\tvar geom2 = GeometryTools.fillHoles(geom);\n\t\t\t\tassertTrue(geom2.isValid());\n\t\t\t\t\n\t\t\t\tgeom2 = GeometryTools.removeFragments(geom, geom.getArea()/2);\n\t\t\t\tassertTrue(geom2.isValid());\n\n\t\t\t\tgeom2 = GeometryTools.refineAreas(geom, geom.getArea()/2, geom.getArea()/2);\n\t\t\t\tassertTrue(geom2.isValid());\n\t\t\t\t\n\t\t\t\tgeom2 = GeometryTools.ensurePolygonal(geom);\n\t\t\t\tassertTrue(geom2.isValid());\t\t\t\n\t\t\t}\n\t\t\tvar geom2 = GeometryTools.union(geometries);\n\t\t\tassertTrue(geom2.isValid());\n\t\t} catch (Exception e) {\n\t\t\te.printStackTrace();\n\t\t\tfail(e.getLocalizedMessage());\n\t\t}\n\t\t\n\t}\n\t\n\n}"}
+{"text": "//------------------------------------------------------------------------------\n// \n// This code was generated from a template.\n//\n// Manual changes to this file may cause unexpected behavior in your application.\n// Manual changes to this file will be overwritten if the code is regenerated.\n// \n//------------------------------------------------------------------------------\n\n"}
+{"text": "import React, {PureComponent, Fragment} from 'react';\nimport DeckGL from '@deck.gl/react';\nimport {AmbientLight, DirectionalLight, LightingEffect} from '@deck.gl/core';\nimport {StaticMap} from 'react-map-gl';\nimport {SolidPolygonLayer} from '@deck.gl/layers';\nimport WBOITLayer from './wboit-layer/wboit-layer';\n\nconst INITIAL_VIEW_STATE = {\n latitude: 37.78,\n longitude: -122.45,\n zoom: 12,\n bearing: 60,\n pitch: 60\n};\n\nconst data = [\n {\n type: 'Feature',\n properties: {\n elevation: 1000,\n fillColor: [200, 0, 0]\n },\n geometry: {\n type: 'Polygon',\n coordinates: [\n [\n [-122.48027965423081, 37.829867098561465, 2000],\n [-122.47809493799619, 37.81005779676214, 2000],\n [-122.47558250383605, 37.81012990109551, 2000],\n [-122.47793275748633, 37.83010787870729, 2000],\n [-122.48027965423081, 37.829867098561465, 2000]\n ]\n ]\n }\n },\n {\n type: 'Feature',\n properties: {\n elevation: 2500,\n fillColor: [200, 0, 0]\n },\n geometry: {\n type: 'Polygon',\n coordinates: [\n [\n [-122.4807592721423, 37.83148659090809],\n [-122.48042337175899, 37.830085010427176],\n [-122.47769563278436, 37.83049279439961],\n [-122.47803148135057, 37.83189437487894],\n [-122.4807592721423, 37.83148659090809]\n ]\n ]\n }\n },\n {\n type: 'Feature',\n properties: {\n elevation: 2500,\n fillColor: [200, 0, 0]\n },\n geometry: {\n type: 'Polygon',\n coordinates: [\n [\n [-122.47796926383656, 37.809650033000324],\n [-122.47796926383656, 37.80803536584605],\n [-122.47501561198487, 37.80803532897342],\n [-122.47501554739789, 37.80964999612554],\n [-122.47796926383656, 37.809650033000324]\n ]\n ]\n }\n }\n];\n\nexport default class App extends PureComponent {\n constructor(props) {\n super(props);\n this.state = {\n opacity: 0.5,\n wireframe: true,\n lightMode: 2,\n wboit: true\n };\n }\n\n render() {\n const {opacity, wireframe, lightMode, wboit} = this.state;\n\n let material = true;\n let lightingEffect = new LightingEffect();\n\n if (lightMode === 2) {\n // Ambient Light only / Flat\n material = {\n ambient: 1.0,\n diffuse: 0.0,\n shininess: 32,\n specularColor: [255, 255, 255]\n };\n\n lightingEffect = new LightingEffect({\n light1: new AmbientLight({\n color: [255, 255, 255],\n intensity: 1.0\n })\n });\n } else if (lightMode === 3) {\n // Single Directional\n material = {\n ambient: 0.5,\n diffuse: 0.5,\n shininess: 32,\n specularColor: [255, 255, 255]\n };\n\n lightingEffect = new LightingEffect({\n light1: new AmbientLight({\n color: [255, 255, 255],\n intensity: 1.0\n }),\n light2: new DirectionalLight({\n color: [255, 255, 255],\n intensity: 1.0,\n direction: [1, 1, 0]\n })\n });\n }\n\n const options = {\n data,\n getPolygon: f => f.geometry.coordinates,\n getFillColor: f => f.properties.fillColor,\n getLineColor: f => [0, 0, 0, 255],\n getElevation: f => f.properties.elevation,\n pickable: false,\n extruded: true,\n opacity,\n wireframe,\n material\n };\n\n const layers = [];\n if (wboit) {\n layers.push(new WBOITLayer({id: 'WBOITLayer', ...options}));\n } else {\n layers.push(new SolidPolygonLayer({id: 'SolidPolygonLayer', ...options}));\n }\n\n const mkButton = (label, name, value) => (\n \n );\n\n return (\n \n \n \n \n
\n \n );\n }\n}\n"}
+{"text": "# Licensed to the Apache Software Foundation (ASF) under one\n# or more contributor license agreements. See the NOTICE file\n# distributed with this work for additional information\n# regarding copyright ownership. The ASF licenses this file\n# to you under the Apache License, Version 2.0 (the\n# \"License\"); you may not use this file except in compliance\n# with the License. You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing,\n# software distributed under the License is distributed on an\n# \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n# KIND, either express or implied. See the License for the\n# specific language governing permissions and limitations\n# under the License.\n\nfrom unittest import TestCase, mock\n\nfrom moto import mock_secretsmanager\n\nfrom airflow.providers.amazon.aws.secrets.secrets_manager import SecretsManagerBackend\n\n\nclass TestSecretsManagerBackend(TestCase):\n @mock.patch(\"airflow.providers.amazon.aws.secrets.secrets_manager.SecretsManagerBackend.get_conn_uri\")\n def test_aws_secrets_manager_get_connections(self, mock_get_uri):\n mock_get_uri.return_value = \"scheme://user:pass@host:100\"\n conn_list = SecretsManagerBackend().get_connections(\"fake_conn\")\n conn = conn_list[0]\n assert conn.host == 'host'\n\n @mock_secretsmanager\n def test_get_conn_uri(self):\n param = {\n 'SecretId': 'airflow/connections/test_postgres',\n 'SecretString': 'postgresql://airflow:airflow@host:5432/airflow',\n }\n\n secrets_manager_backend = SecretsManagerBackend()\n secrets_manager_backend.client.put_secret_value(**param)\n\n returned_uri = secrets_manager_backend.get_conn_uri(conn_id=\"test_postgres\")\n self.assertEqual('postgresql://airflow:airflow@host:5432/airflow', returned_uri)\n\n @mock_secretsmanager\n def test_get_conn_uri_non_existent_key(self):\n \"\"\"\n Test that if the key with connection ID is not present,\n SecretsManagerBackend.get_connections should return None\n \"\"\"\n conn_id = \"test_mysql\"\n param = {\n 'SecretId': 'airflow/connections/test_postgres',\n 'SecretString': 'postgresql://airflow:airflow@host:5432/airflow',\n }\n\n secrets_manager_backend = SecretsManagerBackend()\n secrets_manager_backend.client.put_secret_value(**param)\n\n self.assertIsNone(secrets_manager_backend.get_conn_uri(conn_id=conn_id))\n self.assertEqual([], secrets_manager_backend.get_connections(conn_id=conn_id))\n\n @mock_secretsmanager\n def test_get_variable(self):\n param = {'SecretId': 'airflow/variables/hello', 'SecretString': 'world'}\n\n secrets_manager_backend = SecretsManagerBackend()\n secrets_manager_backend.client.put_secret_value(**param)\n\n returned_uri = secrets_manager_backend.get_variable('hello')\n self.assertEqual('world', returned_uri)\n\n @mock_secretsmanager\n def test_get_variable_non_existent_key(self):\n \"\"\"\n Test that if Variable key is not present,\n SystemsManagerParameterStoreBackend.get_variables should return None\n \"\"\"\n param = {'SecretId': 'airflow/variables/hello', 'SecretString': 'world'}\n\n secrets_manager_backend = SecretsManagerBackend()\n secrets_manager_backend.client.put_secret_value(**param)\n\n self.assertIsNone(secrets_manager_backend.get_variable(\"test_mysql\"))\n"}
+{"text": "// Copyright 2020 The VGC Developers\n// See the COPYRIGHT file at the top-level directory of this distribution\n// and at https://github.com/vgc/vgc/blob/master/COPYRIGHT\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\n\n#include \n\nnamespace vgc {\nnamespace widgets {\n\nToggleViewAction::ToggleViewAction(\n const QString& text,\n QWidget* widget,\n QObject* parent) :\n QAction(text, parent),\n widget_(widget)\n{\n setCheckable(true);\n setChecked(widget->isVisibleTo(widget->parentWidget()));\n connect(this, &QAction::toggled, this, &ToggleViewAction::onToggled_);\n\n // TODO we should add an eventFilter that listens to the ShowToParent and\n // HideToParent events of widget, so that we can react accordingly when the\n // value of `widget->isVisibleTo(widget->parentWidget())` changes due to\n // some code calling `widget->show()` or `widget->hide()` directly, without\n // using this ToggleViewAction.\n\n // TODO We should also probably listen to ParentChange and/or\n // ParentAboutToChange. See comment in the implementation of\n // PanelArea::addPanel().\n}\n\nvoid ToggleViewAction::onToggled_(bool checked)\n{\n widget_->setVisible(checked);\n}\n\n} // namespace widgets\n} // namespace vgc\n"}
+{"text": "/*\n * Copyright (C) 2006,2007 Felix Fietkau \n * Copyright (C) 2006,2007 Eugene Konev \n *\n * This program is free software; you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation; either version 2 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program; if not, write to the Free Software\n * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\n */\n\n#include \n#include \n#include \n#include \n#include \n#include \n#include \n#include \n#include \n#include \n#include \n#include \n#include \n#include \n#include \n#include \n#include \n\n#include \n#include \n#include \n#include \n\nstruct plat_vlynq_data {\n\tstruct plat_vlynq_ops ops;\n\tint gpio_bit;\n\tint reset_bit;\n};\n\n\nstatic int vlynq_on(struct vlynq_device *dev)\n{\n\tint result;\n\tstruct plat_vlynq_data *pdata = dev->dev.platform_data;\n\n\tresult = gpio_request(pdata->gpio_bit, \"vlynq\");\n\tif (result)\n\t\tgoto out;\n\n\tar7_device_reset(pdata->reset_bit);\n\n\tresult = ar7_gpio_disable(pdata->gpio_bit);\n\tif (result)\n\t\tgoto out_enabled;\n\n\tresult = ar7_gpio_enable(pdata->gpio_bit);\n\tif (result)\n\t\tgoto out_enabled;\n\n\tresult = gpio_direction_output(pdata->gpio_bit, 0);\n\tif (result)\n\t\tgoto out_gpio_enabled;\n\n\tmsleep(50);\n\n\tgpio_set_value(pdata->gpio_bit, 1);\n\tmsleep(50);\n\n\treturn 0;\n\nout_gpio_enabled:\n\tar7_gpio_disable(pdata->gpio_bit);\nout_enabled:\n\tar7_device_disable(pdata->reset_bit);\n\tgpio_free(pdata->gpio_bit);\nout:\n\treturn result;\n}\n\nstatic void vlynq_off(struct vlynq_device *dev)\n{\n\tstruct plat_vlynq_data *pdata = dev->dev.platform_data;\n\tar7_gpio_disable(pdata->gpio_bit);\n\tgpio_free(pdata->gpio_bit);\n\tar7_device_disable(pdata->reset_bit);\n}\n\nstatic struct resource physmap_flash_resource = {\n\t.name = \"mem\",\n\t.flags = IORESOURCE_MEM,\n\t.start = 0x10000000,\n\t.end = 0x107fffff,\n};\n\nstatic struct resource cpmac_low_res[] = {\n\t{\n\t\t.name = \"regs\",\n\t\t.flags = IORESOURCE_MEM,\n\t\t.start = AR7_REGS_MAC0,\n\t\t.end = AR7_REGS_MAC0 + 0x7ff,\n\t},\n\t{\n\t\t.name = \"irq\",\n\t\t.flags = IORESOURCE_IRQ,\n\t\t.start = 27,\n\t\t.end = 27,\n\t},\n};\n\nstatic struct resource cpmac_high_res[] = {\n\t{\n\t\t.name = \"regs\",\n\t\t.flags = IORESOURCE_MEM,\n\t\t.start = AR7_REGS_MAC1,\n\t\t.end = AR7_REGS_MAC1 + 0x7ff,\n\t},\n\t{\n\t\t.name = \"irq\",\n\t\t.flags = IORESOURCE_IRQ,\n\t\t.start = 41,\n\t\t.end = 41,\n\t},\n};\n\nstatic struct resource vlynq_low_res[] = {\n\t{\n\t\t.name = \"regs\",\n\t\t.flags = IORESOURCE_MEM,\n\t\t.start = AR7_REGS_VLYNQ0,\n\t\t.end = AR7_REGS_VLYNQ0 + 0xff,\n\t},\n\t{\n\t\t.name = \"irq\",\n\t\t.flags = IORESOURCE_IRQ,\n\t\t.start = 29,\n\t\t.end = 29,\n\t},\n\t{\n\t\t.name = \"mem\",\n\t\t.flags = IORESOURCE_MEM,\n\t\t.start = 0x04000000,\n\t\t.end = 0x04ffffff,\n\t},\n\t{\n\t\t.name = \"devirq\",\n\t\t.flags = IORESOURCE_IRQ,\n\t\t.start = 80,\n\t\t.end = 111,\n\t},\n};\n\nstatic struct resource vlynq_high_res[] = {\n\t{\n\t\t.name = \"regs\",\n\t\t.flags = IORESOURCE_MEM,\n\t\t.start = AR7_REGS_VLYNQ1,\n\t\t.end = AR7_REGS_VLYNQ1 + 0xff,\n\t},\n\t{\n\t\t.name = \"irq\",\n\t\t.flags = IORESOURCE_IRQ,\n\t\t.start = 33,\n\t\t.end = 33,\n\t},\n\t{\n\t\t.name = \"mem\",\n\t\t.flags = IORESOURCE_MEM,\n\t\t.start = 0x0c000000,\n\t\t.end = 0x0cffffff,\n\t},\n\t{\n\t\t.name = \"devirq\",\n\t\t.flags = IORESOURCE_IRQ,\n\t\t.start = 112,\n\t\t.end = 143,\n\t},\n};\n\nstatic struct resource usb_res[] = {\n\t{\n\t\t.name = \"regs\",\n\t\t.flags = IORESOURCE_MEM,\n\t\t.start = AR7_REGS_USB,\n\t\t.end = AR7_REGS_USB + 0xff,\n\t},\n\t{\n\t\t.name = \"irq\",\n\t\t.flags = IORESOURCE_IRQ,\n\t\t.start = 32,\n\t\t.end = 32,\n\t},\n\t{\n\t\t.name = \"mem\",\n\t\t.flags = IORESOURCE_MEM,\n\t\t.start = 0x03400000,\n\t\t.end = 0x034001fff,\n\t},\n};\n\nstatic struct physmap_flash_data physmap_flash_data = {\n\t.width = 2,\n};\n\nstatic struct fixed_phy_status fixed_phy_status __initdata = {\n\t.link = 1,\n\t.speed = 100,\n\t.duplex = 1,\n};\n\nstatic struct plat_cpmac_data cpmac_low_data = {\n\t.reset_bit = 17,\n\t.power_bit = 20,\n\t.phy_mask = 0x80000000,\n};\n\nstatic struct plat_cpmac_data cpmac_high_data = {\n\t.reset_bit = 21,\n\t.power_bit = 22,\n\t.phy_mask = 0x7fffffff,\n};\n\nstatic struct plat_vlynq_data vlynq_low_data = {\n\t.ops.on = vlynq_on,\n\t.ops.off = vlynq_off,\n\t.reset_bit = 20,\n\t.gpio_bit = 18,\n};\n\nstatic struct plat_vlynq_data vlynq_high_data = {\n\t.ops.on = vlynq_on,\n\t.ops.off = vlynq_off,\n\t.reset_bit = 16,\n\t.gpio_bit = 19,\n};\n\nstatic struct platform_device physmap_flash = {\n\t.id = 0,\n\t.name = \"physmap-flash\",\n\t.dev.platform_data = &physmap_flash_data,\n\t.resource = &physmap_flash_resource,\n\t.num_resources = 1,\n};\n\nstatic u64 cpmac_dma_mask = DMA_BIT_MASK(32);\nstatic struct platform_device cpmac_low = {\n\t.id = 0,\n\t.name = \"cpmac\",\n\t.dev = {\n\t\t.dma_mask = &cpmac_dma_mask,\n\t\t.coherent_dma_mask = DMA_BIT_MASK(32),\n\t\t.platform_data = &cpmac_low_data,\n\t},\n\t.resource = cpmac_low_res,\n\t.num_resources = ARRAY_SIZE(cpmac_low_res),\n};\n\nstatic struct platform_device cpmac_high = {\n\t.id = 1,\n\t.name = \"cpmac\",\n\t.dev = {\n\t\t.dma_mask = &cpmac_dma_mask,\n\t\t.coherent_dma_mask = DMA_BIT_MASK(32),\n\t\t.platform_data = &cpmac_high_data,\n\t},\n\t.resource = cpmac_high_res,\n\t.num_resources = ARRAY_SIZE(cpmac_high_res),\n};\n\nstatic struct platform_device vlynq_low = {\n\t.id = 0,\n\t.name = \"vlynq\",\n\t.dev.platform_data = &vlynq_low_data,\n\t.resource = vlynq_low_res,\n\t.num_resources = ARRAY_SIZE(vlynq_low_res),\n};\n\nstatic struct platform_device vlynq_high = {\n\t.id = 1,\n\t.name = \"vlynq\",\n\t.dev.platform_data = &vlynq_high_data,\n\t.resource = vlynq_high_res,\n\t.num_resources = ARRAY_SIZE(vlynq_high_res),\n};\n\n\nstatic struct gpio_led default_leds[] = {\n\t{\n\t\t.name = \"status\",\n\t\t.gpio = 8,\n\t\t.active_low = 1,\n\t},\n};\n\nstatic struct gpio_led dsl502t_leds[] = {\n\t{\n\t\t.name = \"status\",\n\t\t.gpio = 9,\n\t\t.active_low = 1,\n\t},\n\t{\n\t\t.name = \"ethernet\",\n\t\t.gpio = 7,\n\t\t.active_low = 1,\n\t},\n\t{\n\t\t.name = \"usb\",\n\t\t.gpio = 12,\n\t\t.active_low = 1,\n\t},\n};\n\nstatic struct gpio_led dg834g_leds[] = {\n\t{\n\t\t.name = \"ppp\",\n\t\t.gpio = 6,\n\t\t.active_low = 1,\n\t},\n\t{\n\t\t.name = \"status\",\n\t\t.gpio = 7,\n\t\t.active_low = 1,\n\t},\n\t{\n\t\t.name = \"adsl\",\n\t\t.gpio = 8,\n\t\t.active_low = 1,\n\t},\n\t{\n\t\t.name = \"wifi\",\n\t\t.gpio = 12,\n\t\t.active_low = 1,\n\t},\n\t{\n\t\t.name = \"power\",\n\t\t.gpio = 14,\n\t\t.active_low = 1,\n\t\t.default_trigger = \"default-on\",\n\t},\n};\n\nstatic struct gpio_led fb_sl_leds[] = {\n\t{\n\t\t.name = \"1\",\n\t\t.gpio = 7,\n\t},\n\t{\n\t\t.name = \"2\",\n\t\t.gpio = 13,\n\t\t.active_low = 1,\n\t},\n\t{\n\t\t.name = \"3\",\n\t\t.gpio = 10,\n\t\t.active_low = 1,\n\t},\n\t{\n\t\t.name = \"4\",\n\t\t.gpio = 12,\n\t\t.active_low = 1,\n\t},\n\t{\n\t\t.name = \"5\",\n\t\t.gpio = 9,\n\t\t.active_low = 1,\n\t},\n};\n\nstatic struct gpio_led fb_fon_leds[] = {\n\t{\n\t\t.name = \"1\",\n\t\t.gpio = 8,\n\t},\n\t{\n\t\t.name = \"2\",\n\t\t.gpio = 3,\n\t\t.active_low = 1,\n\t},\n\t{\n\t\t.name = \"3\",\n\t\t.gpio = 5,\n\t},\n\t{\n\t\t.name = \"4\",\n\t\t.gpio = 4,\n\t\t.active_low = 1,\n\t},\n\t{\n\t\t.name = \"5\",\n\t\t.gpio = 11,\n\t\t.active_low = 1,\n\t},\n};\n\nstatic struct gpio_led_platform_data ar7_led_data;\n\nstatic struct platform_device ar7_gpio_leds = {\n\t.name = \"leds-gpio\",\n\t.id = -1,\n\t.dev = {\n\t\t.platform_data = &ar7_led_data,\n\t}\n};\n\nstatic struct platform_device ar7_udc = {\n\t.id = -1,\n\t.name = \"ar7_udc\",\n\t.resource = usb_res,\n\t.num_resources = ARRAY_SIZE(usb_res),\n};\n\nstatic struct resource ar7_wdt_res = {\n\t.name = \"regs\",\n\t.start = -1, /* Filled at runtime */\n\t.end = -1, /* Filled at runtime */\n\t.flags = IORESOURCE_MEM,\n};\n\nstatic struct platform_device ar7_wdt = {\n\t.id = -1,\n\t.name = \"ar7_wdt\",\n\t.resource = &ar7_wdt_res,\n\t.num_resources = 1,\n};\n\nstatic inline unsigned char char2hex(char h)\n{\n\tswitch (h) {\n\tcase '0': case '1': case '2': case '3': case '4':\n\tcase '5': case '6': case '7': case '8': case '9':\n\t\treturn h - '0';\n\tcase 'A': case 'B': case 'C': case 'D': case 'E': case 'F':\n\t\treturn h - 'A' + 10;\n\tcase 'a': case 'b': case 'c': case 'd': case 'e': case 'f':\n\t\treturn h - 'a' + 10;\n\tdefault:\n\t\treturn 0;\n\t}\n}\n\nstatic void cpmac_get_mac(int instance, unsigned char *dev_addr)\n{\n\tint i;\n\tchar name[5], default_mac[ETH_ALEN], *mac;\n\n\tmac = NULL;\n\tsprintf(name, \"mac%c\", 'a' + instance);\n\tmac = prom_getenv(name);\n\tif (!mac) {\n\t\tsprintf(name, \"mac%c\", 'a');\n\t\tmac = prom_getenv(name);\n\t}\n\tif (!mac) {\n\t\trandom_ether_addr(default_mac);\n\t\tmac = default_mac;\n\t}\n\tfor (i = 0; i < 6; i++)\n\t\tdev_addr[i] = (char2hex(mac[i * 3]) << 4) +\n\t\t\tchar2hex(mac[i * 3 + 1]);\n}\n\nstatic void __init detect_leds(void)\n{\n\tchar *prid, *usb_prod;\n\n\t/* Default LEDs\t*/\n\tar7_led_data.num_leds = ARRAY_SIZE(default_leds);\n\tar7_led_data.leds = default_leds;\n\n\t/* FIXME: the whole thing is unreliable */\n\tprid = prom_getenv(\"ProductID\");\n\tusb_prod = prom_getenv(\"usb_prod\");\n\n\t/* If we can't get the product id from PROM, use the default LEDs */\n\tif (!prid)\n\t\treturn;\n\n\tif (strstr(prid, \"Fritz_Box_FON\")) {\n\t\tar7_led_data.num_leds = ARRAY_SIZE(fb_fon_leds);\n\t\tar7_led_data.leds = fb_fon_leds;\n\t} else if (strstr(prid, \"Fritz_Box_\")) {\n\t\tar7_led_data.num_leds = ARRAY_SIZE(fb_sl_leds);\n\t\tar7_led_data.leds = fb_sl_leds;\n\t} else if ((!strcmp(prid, \"AR7RD\") || !strcmp(prid, \"AR7DB\"))\n\t\t&& usb_prod != NULL && strstr(usb_prod, \"DSL-502T\")) {\n\t\tar7_led_data.num_leds = ARRAY_SIZE(dsl502t_leds);\n\t\tar7_led_data.leds = dsl502t_leds;\n\t} else if (strstr(prid, \"DG834\")) {\n\t\tar7_led_data.num_leds = ARRAY_SIZE(dg834g_leds);\n\t\tar7_led_data.leds = dg834g_leds;\n\t}\n}\n\nstatic int __init ar7_register_devices(void)\n{\n\tu16 chip_id;\n\tint res;\n\tu32 *bootcr, val;\n#ifdef CONFIG_SERIAL_8250\n\tstatic struct uart_port uart_port[2];\n\n\tmemset(uart_port, 0, sizeof(struct uart_port) * 2);\n\n\tuart_port[0].type = PORT_16550A;\n\tuart_port[0].line = 0;\n\tuart_port[0].irq = AR7_IRQ_UART0;\n\tuart_port[0].uartclk = ar7_bus_freq() / 2;\n\tuart_port[0].iotype = UPIO_MEM32;\n\tuart_port[0].mapbase = AR7_REGS_UART0;\n\tuart_port[0].membase = ioremap(uart_port[0].mapbase, 256);\n\tuart_port[0].regshift = 2;\n\tres = early_serial_setup(&uart_port[0]);\n\tif (res)\n\t\treturn res;\n\n\n\t/* Only TNETD73xx have a second serial port */\n\tif (ar7_has_second_uart()) {\n\t\tuart_port[1].type = PORT_16550A;\n\t\tuart_port[1].line = 1;\n\t\tuart_port[1].irq = AR7_IRQ_UART1;\n\t\tuart_port[1].uartclk = ar7_bus_freq() / 2;\n\t\tuart_port[1].iotype = UPIO_MEM32;\n\t\tuart_port[1].mapbase = UR8_REGS_UART1;\n\t\tuart_port[1].membase = ioremap(uart_port[1].mapbase, 256);\n\t\tuart_port[1].regshift = 2;\n\t\tres = early_serial_setup(&uart_port[1]);\n\t\tif (res)\n\t\t\treturn res;\n\t}\n#endif /* CONFIG_SERIAL_8250 */\n\tres = platform_device_register(&physmap_flash);\n\tif (res)\n\t\treturn res;\n\n\tar7_device_disable(vlynq_low_data.reset_bit);\n\tres = platform_device_register(&vlynq_low);\n\tif (res)\n\t\treturn res;\n\n\tif (ar7_has_high_vlynq()) {\n\t\tar7_device_disable(vlynq_high_data.reset_bit);\n\t\tres = platform_device_register(&vlynq_high);\n\t\tif (res)\n\t\t\treturn res;\n\t}\n\n\tif (ar7_has_high_cpmac()) {\n\t\tres = fixed_phy_add(PHY_POLL, cpmac_high.id, &fixed_phy_status);\n\t\tif (res && res != -ENODEV)\n\t\t\treturn res;\n\t\tcpmac_get_mac(1, cpmac_high_data.dev_addr);\n\t\tres = platform_device_register(&cpmac_high);\n\t\tif (res)\n\t\t\treturn res;\n\t} else {\n\t\tcpmac_low_data.phy_mask = 0xffffffff;\n\t}\n\n\tres = fixed_phy_add(PHY_POLL, cpmac_low.id, &fixed_phy_status);\n\tif (res && res != -ENODEV)\n\t\treturn res;\n\n\tcpmac_get_mac(0, cpmac_low_data.dev_addr);\n\tres = platform_device_register(&cpmac_low);\n\tif (res)\n\t\treturn res;\n\n\tdetect_leds();\n\tres = platform_device_register(&ar7_gpio_leds);\n\tif (res)\n\t\treturn res;\n\n\tres = platform_device_register(&ar7_udc);\n\n\tchip_id = ar7_chip_id();\n\tswitch (chip_id) {\n\tcase AR7_CHIP_7100:\n\tcase AR7_CHIP_7200:\n\t\tar7_wdt_res.start = AR7_REGS_WDT;\n\t\tbreak;\n\tcase AR7_CHIP_7300:\n\t\tar7_wdt_res.start = UR8_REGS_WDT;\n\t\tbreak;\n\tdefault:\n\t\tbreak;\n\t}\n\n\tar7_wdt_res.end = ar7_wdt_res.start + 0x20;\n\n\tbootcr = (u32 *)ioremap_nocache(AR7_REGS_DCL, 4);\n\tval = *bootcr;\n\tiounmap(bootcr);\n\n\t/* Register watchdog only if enabled in hardware */\n\tif (val & AR7_WDT_HW_ENA)\n\t\tres = platform_device_register(&ar7_wdt);\n\n\treturn res;\n}\narch_initcall(ar7_register_devices);\n"}
+{"text": "\n 4.0.0\n NonHTTPProxy\n NonHTTPProxy\n 0.0.1-SNAPSHOT\n \n src\n \n \n src\n \n **/*.java\n \n \n \n \n \n maven-compiler-plugin\n 3.3\n \n 1.8\n 1.8\n \n \n\t \n maven-assembly-plugin\n \n \n \n NonHTTPProxy\n \n \n \n jar-with-dependencies\n \n \n \n \n \n\t \n\t \n\t org.pcap4j\n\t pcap4j-core\n\t [1.0, 2.0)\n\t \t \n\t\n\t org.pcap4j\n\t pcap4j-packetfactory-static\n\t [1.0, 2.0)\n\t\n \t\n \t\torg.hibernate\n \t\thibernate-core\n \t\t5.4.4.Final\n \t\tpom\n \t\n \t\n \t\torg.hibernate\n \t\thibernate-c3p0\n \t\t5.4.4.Final\n \t\n \t\n \t\torg.xerial\n \t\tsqlite-jdbc\n \t\t3.28.0\n \t\n \t\n \t\torg.bouncycastle\n \t\tbcprov-jdk15on\n \t\t1.54\n \t\n \t\n \t\torg.bouncycastle\n \t\tbcpkix-jdk15on\n \t\t1.54\n \t\n \t\n \t\torg.bouncycastle\n \t\tbcprov-ext-jdk15on\n \t\t1.54\n \t\n \t\n \t\tcommons-codec\n \t\tcommons-codec\n \t\t20041127.091804\n \t\n \t\n \t\tcom.github.jiconfont\n \t\tjiconfont-swing\n \t\t1.0.0\n \t\n \t \n com.github.jiconfont\n jiconfont-bundle\n 1.2.1\n \n \t \n \t \tcom.fifesoft\n \t \trsyntaxtextarea\n \t \t2.5.8\n \t \n\n\n \t \n \t \tcom.googlecode.json-simple\n \t \tjson-simple\n \t \t1.1.1\n \t \n \t \n \t \torg.python\n \t \tjython-standalone\n \t \t2.7.0\n \t \n \t \n \t \tnet.portswigger.burp.extender\n \t \tburp-extender-api\n \t \t1.7.13\n \t \n \t \n \t \torg.hibernate.ogm\n \t \thibernate-ogm-neo4j\n \t \t5.0.1.Final\n \t \n\t \n NonHttp Burp Extension\n http://github.com/summitt/\n"}
+{"text": "/*\r\n Copyright 2010 Google Inc.\r\n\r\n Licensed under the Apache License, Version 2.0 (the \"License\");\r\n you may not use this file except in compliance with the License.\r\n You may obtain a copy of the License at\r\n\r\n http://www.apache.org/licenses/LICENSE-2.0\r\n\r\n Unless required by applicable law or agreed to in writing, software\r\n distributed under the License is distributed on an \"AS IS\" BASIS,\r\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r\n See the License for the specific language governing permissions and\r\n limitations under the License.\r\n */\r\n\r\n#ifndef GrContext_DEFINED\r\n#define GrContext_DEFINED\r\n\r\n#include \"GrClip.h\"\r\n#include \"GrTextureCache.h\"\r\n#include \"GrPaint.h\"\r\n#include \"GrPathRenderer.h\"\r\n\r\nclass GrFontCache;\r\nclass GrGpu;\r\nstruct GrGpuStats;\r\nclass GrVertexBufferAllocPool;\r\nclass GrIndexBufferAllocPool;\r\nclass GrInOrderDrawBuffer;\r\n\r\nclass GR_API GrContext : public GrRefCnt {\r\npublic:\r\n /**\r\n * Creates a GrContext from within a 3D context.\r\n */\r\n static GrContext* Create(GrEngine engine,\r\n GrPlatform3DContext context3D);\r\n\r\n /**\r\n * Helper to create a opengl-shader based context\r\n */\r\n static GrContext* CreateGLShaderContext();\r\n\r\n virtual ~GrContext();\r\n\r\n /**\r\n * The GrContext normally assumes that no outsider is setting state\r\n * within the underlying 3D API's context/device/whatever. This call informs\r\n * the context that the state was modified and it should resend. Shouldn't\r\n * be called frequently for good performance.\r\n */\r\n void resetContext();\r\n\r\n /**\r\n * Abandons all gpu resources, assumes 3D API state is unknown. Call this\r\n * if you have lost the associated GPU context, and thus internal texture,\r\n * buffer, etc. references/IDs are now invalid. Should be called even when\r\n * GrContext is no longer going to be used for two reasons:\r\n * 1) ~GrContext will not try to free the objects in the 3D API.\r\n * 2) If you've created GrResources that outlive the GrContext they will\r\n * be marked as invalid (GrResource::isValid()) and won't attempt to\r\n * free their underlying resource in the 3D API.\r\n * Content drawn since the last GrContext::flush() may be lost.\r\n */\r\n void contextLost();\r\n\r\n /**\r\n * Similar to contextLost, but makes no attempt to reset state.\r\n * Use this method when GrContext destruction is pending, but\r\n * the graphics context is destroyed first.\r\n */\r\n void contextDestroyed();\r\n\r\n /**\r\n * Frees gpu created by the context. Can be called to reduce GPU memory\r\n * pressure.\r\n */\r\n void freeGpuResources();\r\n\r\n ///////////////////////////////////////////////////////////////////////////\r\n // Textures\r\n\r\n /**\r\n * Search for an entry with the same Key. If found, \"lock\" it and return it.\r\n * If not found, return null.\r\n */\r\n GrTextureEntry* findAndLockTexture(GrTextureKey*,\r\n const GrSamplerState&);\r\n\r\n\r\n /**\r\n * Create a new entry, based on the specified key and texture, and return\r\n * its \"locked\" entry.\r\n *\r\n * Ownership of the texture is transferred to the Entry, which will unref()\r\n * it when we are purged or deleted.\r\n */\r\n GrTextureEntry* createAndLockTexture(GrTextureKey* key,\r\n const GrSamplerState&,\r\n const GrTextureDesc&,\r\n void* srcData, size_t rowBytes);\r\n\r\n /**\r\n * Returns a texture matching the desc. It's contents are unknown. Subsequent\r\n * requests with the same descriptor are not guaranteed to return the same\r\n * texture. The same texture is guaranteed not be returned again until it is\r\n * unlocked.\r\n *\r\n * Textures created by createAndLockTexture() hide the complications of\r\n * tiling non-power-of-two textures on APIs that don't support this (e.g. \r\n * unextended GLES2). Tiling a npot texture created by lockKeylessTexture on\r\n * such an API will create gaps in the tiling pattern. This includes clamp\r\n * mode. (This may be addressed in a future update.)\r\n */\r\n GrTextureEntry* lockKeylessTexture(const GrTextureDesc& desc);\r\n\r\n /**\r\n * Finds a texture that approximately matches the descriptor. Will be\r\n * at least as large in width and height as desc specifies. If desc\r\n * specifies that texture is a render target then result will be a\r\n * render target. If desc specifies a render target and doesn't set the\r\n * no stencil flag then result will have a stencil. Format and aa level\r\n * will always match.\r\n */\r\n GrTextureEntry* findApproximateKeylessTexture(const GrTextureDesc& desc);\r\n\r\n /**\r\n * When done with an entry, call unlockTexture(entry) on it, which returns\r\n * it to the cache, where it may be purged.\r\n */\r\n void unlockTexture(GrTextureEntry* entry);\r\n\r\n /**\r\n * Creates a texture that is outside the cache. Does not count against\r\n * cache's budget.\r\n */\r\n GrTexture* createUncachedTexture(const GrTextureDesc&,\r\n void* srcData,\r\n size_t rowBytes);\r\n\r\n /**\r\n * Returns true if the specified use of an indexed texture is supported.\r\n */\r\n bool supportsIndex8PixelConfig(const GrSamplerState&, int width, int height);\r\n\r\n /**\r\n * Return the current texture cache limits.\r\n *\r\n * @param maxTextures If non-null, returns maximum number of textures that\r\n * can be held in the cache.\r\n * @param maxTextureBytes If non-null, returns maximum number of bytes of\r\n * texture memory that can be held in the cache.\r\n */\r\n void getTextureCacheLimits(int* maxTextures, size_t* maxTextureBytes) const;\r\n\r\n /**\r\n * Specify the texture cache limits. If the current cache exceeds either\r\n * of these, it will be purged (LRU) to keep the cache within these limits.\r\n *\r\n * @param maxTextures The maximum number of textures that can be held in\r\n * the cache.\r\n * @param maxTextureBytes The maximum number of bytes of texture memory\r\n * that can be held in the cache.\r\n */\r\n void setTextureCacheLimits(int maxTextures, size_t maxTextureBytes);\r\n\r\n /**\r\n * Return the max width or height of a texture supported by the current gpu\r\n */\r\n int getMaxTextureSize() const;\r\n\r\n /**\r\n * Return the max width or height of a render target supported by the \r\n * current gpu\r\n */\r\n int getMaxRenderTargetSize() const;\r\n\r\n ///////////////////////////////////////////////////////////////////////////\r\n // Render targets\r\n\r\n /**\r\n * Sets the render target.\r\n * @param target the render target to set. (should not be NULL.)\r\n */\r\n void setRenderTarget(GrRenderTarget* target);\r\n\r\n /**\r\n * Gets the current render target.\r\n * @return the currently bound render target. Should never be NULL.\r\n */\r\n const GrRenderTarget* getRenderTarget() const;\r\n GrRenderTarget* getRenderTarget();\r\n\r\n ///////////////////////////////////////////////////////////////////////////\r\n // Platform Surfaces\r\n\r\n // GrContext provides an interface for wrapping externally created textures\r\n // and rendertargets in their Gr-equivalents.\r\n\r\n /**\r\n * Wraps an existing 3D API surface in a GrObject. desc.fFlags determines\r\n * the type of object returned. If kIsTexture is set the returned object\r\n * will be a GrTexture*. Otherwise, it will be a GrRenderTarget*. If both \r\n * are set the render target object is accessible by\r\n * GrTexture::asRenderTarget().\r\n *\r\n * GL: if the object is a texture Gr may change its GL texture parameters\r\n * when it is drawn.\r\n *\r\n * @param desc description of the object to create.\r\n * @return either a GrTexture* or GrRenderTarget* depending on desc. NULL\r\n * on failure.\r\n */\r\n GrResource* createPlatformSurface(const GrPlatformSurfaceDesc& desc);\r\n /**\r\n * Reads the current target object (e.g. FBO or IDirect3DSurface9*) and\r\n * viewport state from the underlying 3D API and wraps it in a\r\n * GrRenderTarget. The GrRenderTarget will not attempt to delete/destroy the\r\n * underlying object in its destructor and it is up to caller to guarantee\r\n * that it remains valid while the GrRenderTarget is used.\r\n *\r\n * Will not detect that the render target is also a texture. If you need\r\n * to also use the render target as a GrTexture use createPlatformSurface.\r\n *\r\n * @return the newly created GrRenderTarget\r\n */\r\n GrRenderTarget* createRenderTargetFrom3DApiState();\r\n\r\n ///////////////////////////////////////////////////////////////////////////\r\n // Matrix state\r\n\r\n /**\r\n * Gets the current transformation matrix.\r\n * @return the current matrix.\r\n */\r\n const GrMatrix& getMatrix() const;\r\n\r\n /**\r\n * Sets the transformation matrix.\r\n * @param m the matrix to set.\r\n */\r\n void setMatrix(const GrMatrix& m);\r\n\r\n /**\r\n * Concats the current matrix. The passed matrix is applied before the\r\n * current matrix.\r\n * @param m the matrix to concat.\r\n */\r\n void concatMatrix(const GrMatrix& m) const;\r\n\r\n\r\n ///////////////////////////////////////////////////////////////////////////\r\n // Clip state\r\n /**\r\n * Gets the current clip.\r\n * @return the current clip.\r\n */\r\n const GrClip& getClip() const;\r\n\r\n /**\r\n * Sets the clip.\r\n * @param clip the clip to set.\r\n */\r\n void setClip(const GrClip& clip);\r\n\r\n /**\r\n * Convenience method for setting the clip to a rect.\r\n * @param rect the rect to set as the new clip.\r\n */\r\n void setClip(const GrIRect& rect);\r\n\r\n ///////////////////////////////////////////////////////////////////////////\r\n // Draws\r\n\r\n /**\r\n * Clear the entire or rect of the render target, ignoring any clips.\r\n * @param rect the rect to clear or the whole thing if rect is NULL.\r\n * @param color the color to clear to.\r\n */\r\n void clear(const GrIRect* rect, GrColor color);\r\n\r\n /**\r\n * Draw everywhere (respecting the clip) with the paint.\r\n */\r\n void drawPaint(const GrPaint& paint);\r\n\r\n /**\r\n * Draw the rect using a paint.\r\n * @param paint describes how to color pixels.\r\n * @param strokeWidth If strokeWidth < 0, then the rect is filled, else\r\n * the rect is mitered stroked based on strokeWidth. If\r\n * strokeWidth == 0, then the stroke is always a single\r\n * pixel thick.\r\n * @param matrix Optional matrix applied to the rect. Applied before\r\n * context's matrix or the paint's matrix.\r\n * The rects coords are used to access the paint (through texture matrix)\r\n */\r\n void drawRect(const GrPaint& paint,\r\n const GrRect&,\r\n GrScalar strokeWidth = -1,\r\n const GrMatrix* matrix = NULL);\r\n\r\n /**\r\n * Maps a rect of paint coordinates onto the a rect of destination\r\n * coordinates. Each rect can optionally be transformed. The srcRect\r\n * is stretched over the dstRect. The dstRect is transformed by the\r\n * context's matrix and the srcRect is transformed by the paint's matrix.\r\n * Additional optional matrices can be provided by parameters.\r\n *\r\n * @param paint describes how to color pixels.\r\n * @param dstRect the destination rect to draw.\r\n * @param srcRect rect of paint coordinates to be mapped onto dstRect\r\n * @param dstMatrix Optional matrix to transform dstRect. Applied before\r\n * context's matrix.\r\n * @param srcMatrix Optional matrix to transform srcRect Applied before\r\n * paint's matrix.\r\n */\r\n void drawRectToRect(const GrPaint& paint,\r\n const GrRect& dstRect,\r\n const GrRect& srcRect,\r\n const GrMatrix* dstMatrix = NULL,\r\n const GrMatrix* srcMatrix = NULL);\r\n\r\n /**\r\n * Draws a path.\r\n *\r\n * @param paint describes how to color pixels.\r\n * @param path the path to draw\r\n * @param fill the path filling rule to use.\r\n * @param translate optional additional translation applied to the\r\n * path.\r\n */\r\n void drawPath(const GrPaint& paint, const GrPath& path, GrPathFill fill,\r\n const GrPoint* translate = NULL);\r\n\r\n /**\r\n * Draws vertices with a paint.\r\n *\r\n * @param paint describes how to color pixels.\r\n * @param primitiveType primitives type to draw.\r\n * @param vertexCount number of vertices.\r\n * @param positions array of vertex positions, required.\r\n * @param texCoords optional array of texture coordinates used\r\n * to access the paint.\r\n * @param colors optional array of per-vertex colors, supercedes\r\n * the paint's color field.\r\n * @param indices optional array of indices. If NULL vertices\r\n * are drawn non-indexed.\r\n * @param indexCount if indices is non-null then this is the\r\n * number of indices.\r\n */\r\n void drawVertices(const GrPaint& paint,\r\n GrPrimitiveType primitiveType,\r\n int vertexCount,\r\n const GrPoint positions[],\r\n const GrPoint texs[],\r\n const GrColor colors[],\r\n const uint16_t indices[],\r\n int indexCount);\r\n\r\n /**\r\n * Similar to drawVertices but caller provides objects that convert to Gr\r\n * types. The count of vertices is given by posSrc.\r\n *\r\n * @param paint describes how to color pixels.\r\n * @param primitiveType primitives type to draw.\r\n * @param posSrc Source of vertex positions. Must implement\r\n * int count() const;\r\n * void writeValue(int i, GrPoint* point) const;\r\n * count returns the total number of vertices and\r\n * writeValue writes a vertex position to point.\r\n * @param texSrc optional, pass NULL to not use explicit tex\r\n * coords. If present provides tex coords with\r\n * method:\r\n * void writeValue(int i, GrPoint* point) const;\r\n * @param texSrc optional, pass NULL to not use per-vertex colors\r\n * If present provides colors with method:\r\n * void writeValue(int i, GrColor* point) const;\r\n * @param indices optional, pass NULL for non-indexed drawing. If\r\n * present supplies indices for indexed drawing\r\n * with following methods:\r\n * int count() const;\r\n * void writeValue(int i, uint16_t* point) const;\r\n * count returns the number of indices and\r\n * writeValue supplies each index.\r\n */\r\n template \r\n void drawCustomVertices(const GrPaint& paint,\r\n GrPrimitiveType primitiveType,\r\n const POS_SRC& posSrc,\r\n const TEX_SRC* texCoordSrc,\r\n const COL_SRC* colorSrc,\r\n const IDX_SRC* idxSrc);\r\n /**\r\n * To avoid the problem of having to create a typename for NULL parameters,\r\n * these reduced versions of drawCustomVertices are provided.\r\n */\r\n template \r\n void drawCustomVertices(const GrPaint& paint,\r\n GrPrimitiveType primitiveType,\r\n const POS_SRC& posSrc);\r\n template \r\n void drawCustomVertices(const GrPaint& paint,\r\n GrPrimitiveType primitiveType,\r\n const POS_SRC& posSrc,\r\n const TEX_SRC* texCoordSrc);\r\n template \r\n void drawCustomVertices(const GrPaint& paint,\r\n GrPrimitiveType primitiveType,\r\n const POS_SRC& posSrc,\r\n const TEX_SRC* texCoordSrc,\r\n const COL_SRC* colorSrc);\r\n\r\n ///////////////////////////////////////////////////////////////////////////\r\n // Misc.\r\n\r\n /**\r\n * Flags that affect flush() behavior.\r\n */\r\n enum FlushBits {\r\n /**\r\n * A client may want Gr to bind a GrRenderTarget in the 3D API so that\r\n * it can be rendered to directly. However, Gr lazily sets state. Simply\r\n * calling setRenderTarget() followed by flush() without flags may not\r\n * bind the render target. This flag forces the context to bind the last\r\n * set render target in the 3D API.\r\n */\r\n kForceCurrentRenderTarget_FlushBit = 0x1,\r\n /**\r\n * A client may reach a point where it has partially rendered a frame\r\n * through a GrContext that it knows the user will never see. This flag\r\n * causes the flush to skip submission of deferred content to the 3D API\r\n * during the flush.\r\n */\r\n kDiscard_FlushBit = 0x2,\r\n };\r\n\r\n /**\r\n * Call to ensure all drawing to the context has been issued to the\r\n * underlying 3D API.\r\n * @param flagsBitfield flags that control the flushing behavior. See\r\n * FlushBits.\r\n */\r\n void flush(int flagsBitfield = 0);\r\n \r\n /**\r\n * Reads a rectangle of pixels from a render target.\r\n * @param renderTarget the render target to read from. NULL means the\r\n * current render target.\r\n * @param left left edge of the rectangle to read (inclusive)\r\n * @param top top edge of the rectangle to read (inclusive)\r\n * @param width width of rectangle to read in pixels.\r\n * @param height height of rectangle to read in pixels.\r\n * @param config the pixel config of the destination buffer\r\n * @param buffer memory to read the rectangle into.\r\n *\r\n * @return true if the read succeeded, false if not. The read can fail\r\n * because of a unsupported pixel config or because no render\r\n * target is currently set.\r\n */\r\n bool readRenderTargetPixels(GrRenderTarget* target,\r\n int left, int top, int width, int height,\r\n GrPixelConfig config, void* buffer);\r\n\r\n /**\r\n * Reads a rectangle of pixels from a texture.\r\n * @param texture the render target to read from.\r\n * @param left left edge of the rectangle to read (inclusive)\r\n * @param top top edge of the rectangle to read (inclusive)\r\n * @param width width of rectangle to read in pixels.\r\n * @param height height of rectangle to read in pixels.\r\n * @param config the pixel config of the destination buffer\r\n * @param buffer memory to read the rectangle into.\r\n *\r\n * @return true if the read succeeded, false if not. The read can fail\r\n * because of a unsupported pixel config.\r\n */\r\n bool readTexturePixels(GrTexture* target,\r\n int left, int top, int width, int height,\r\n GrPixelConfig config, void* buffer);\r\n\r\n /**\r\n * Copy the src pixels [buffer, stride, pixelconfig] into the current\r\n * render-target at the specified rectangle.\r\n */\r\n void writePixels(int left, int top, int width, int height,\r\n GrPixelConfig, const void* buffer, size_t stride);\r\n\r\n ///////////////////////////////////////////////////////////////////////////\r\n // Helpers\r\n\r\n class AutoRenderTarget : ::GrNoncopyable {\r\n public:\r\n AutoRenderTarget(GrContext* context, GrRenderTarget* target) {\r\n fContext = NULL;\r\n fPrevTarget = context->getRenderTarget();\r\n if (fPrevTarget != target) {\r\n context->setRenderTarget(target);\r\n fContext = context;\r\n }\r\n }\r\n ~AutoRenderTarget() {\r\n if (fContext) {\r\n fContext->setRenderTarget(fPrevTarget);\r\n }\r\n }\r\n private:\r\n GrContext* fContext;\r\n GrRenderTarget* fPrevTarget;\r\n };\r\n\r\n\r\n ///////////////////////////////////////////////////////////////////////////\r\n // Functions intended for internal use only.\r\n GrGpu* getGpu() { return fGpu; }\r\n GrFontCache* getFontCache() { return fFontCache; }\r\n GrDrawTarget* getTextTarget(const GrPaint& paint);\r\n void flushText();\r\n const GrIndexBuffer* getQuadIndexBuffer() const;\r\n void resetStats();\r\n const GrGpuStats& getStats() const;\r\n void printStats() const;\r\n\r\nprivate:\r\n // used to keep track of when we need to flush the draw buffer\r\n enum DrawCategory {\r\n kBuffered_DrawCategory, // last draw was inserted in draw buffer\r\n kUnbuffered_DrawCategory, // last draw was not inserted in the draw buffer\r\n kText_DrawCategory // text context was last to draw\r\n };\r\n DrawCategory fLastDrawCategory;\r\n\r\n GrGpu* fGpu;\r\n GrTextureCache* fTextureCache;\r\n GrFontCache* fFontCache;\r\n\r\n GrPathRenderer* fCustomPathRenderer;\r\n GrDefaultPathRenderer fDefaultPathRenderer;\r\n\r\n GrVertexBufferAllocPool* fDrawBufferVBAllocPool;\r\n GrIndexBufferAllocPool* fDrawBufferIBAllocPool;\r\n GrInOrderDrawBuffer* fDrawBuffer;\r\n\r\n GrIndexBuffer* fAAFillRectIndexBuffer;\r\n GrIndexBuffer* fAAStrokeRectIndexBuffer;\r\n int fMaxOffscreenAASize;\r\n\r\n GrContext(GrGpu* gpu);\r\n\r\n void fillAARect(GrDrawTarget* target,\r\n const GrPaint& paint,\r\n const GrRect& devRect);\r\n\r\n void strokeAARect(GrDrawTarget* target,\r\n const GrPaint& paint,\r\n const GrRect& devRect,\r\n const GrVec& devStrokeSize);\r\n\r\n inline int aaFillRectIndexCount() const;\r\n GrIndexBuffer* aaFillRectIndexBuffer();\r\n\r\n inline int aaStrokeRectIndexCount() const;\r\n GrIndexBuffer* aaStrokeRectIndexBuffer();\r\n\r\n void setupDrawBuffer();\r\n\r\n void flushDrawBuffer();\r\n\r\n static void SetPaint(const GrPaint& paint, GrDrawTarget* target);\r\n\r\n bool finalizeTextureKey(GrTextureKey*, \r\n const GrSamplerState&,\r\n bool keyless) const;\r\n\r\n GrDrawTarget* prepareToDraw(const GrPaint& paint, DrawCategory drawType);\r\n\r\n void drawClipIntoStencil();\r\n\r\n GrPathRenderer* getPathRenderer(const GrDrawTarget*, const GrPath&, GrPathFill);\r\n\r\n struct OffscreenRecord;\r\n\r\n // determines whether offscreen AA should be applied\r\n bool doOffscreenAA(GrDrawTarget* target, \r\n const GrPaint& paint,\r\n bool isLines) const;\r\n\r\n // attempts to setup offscreen AA. All paint state must be transferred to\r\n // target by the time this is called.\r\n bool prepareForOffscreenAA(GrDrawTarget* target,\r\n bool requireStencil,\r\n const GrIRect& boundRect,\r\n GrPathRenderer* pr,\r\n OffscreenRecord* record);\r\n\r\n // sets up target to draw coverage to the supersampled render target\r\n void setupOffscreenAAPass1(GrDrawTarget* target,\r\n const GrIRect& boundRect,\r\n int tileX, int tileY,\r\n OffscreenRecord* record);\r\n\r\n // sets up target to sample coverage of supersampled render target back\r\n // to the main render target using stage kOffscreenStage.\r\n void doOffscreenAAPass2(GrDrawTarget* target,\r\n const GrPaint& paint,\r\n const GrIRect& boundRect,\r\n int tileX, int tileY,\r\n OffscreenRecord* record);\r\n\r\n // restored the draw target state and releases offscreen target to cache\r\n void cleanupOffscreenAA(GrDrawTarget* target,\r\n GrPathRenderer* pr,\r\n OffscreenRecord* record);\r\n \r\n // computes vertex layout bits based on the paint. If paint expresses\r\n // a texture for a stage, the stage coords will be bound to postitions\r\n // unless hasTexCoords[s]==true in which case stage s's input coords\r\n // are bound to tex coord index s. hasTexCoords == NULL is a shortcut\r\n // for an array where all the values are false.\r\n static int PaintStageVertexLayoutBits(\r\n const GrPaint& paint,\r\n const bool hasTexCoords[GrPaint::kTotalStages]);\r\n \r\n};\r\n\r\n/**\r\n * Save/restore the view-matrix in the context.\r\n */\r\nclass GrAutoMatrix : GrNoncopyable {\r\npublic:\r\n GrAutoMatrix(GrContext* ctx) : fContext(ctx) {\r\n fMatrix = ctx->getMatrix();\r\n }\r\n GrAutoMatrix(GrContext* ctx, const GrMatrix& matrix) : fContext(ctx) {\r\n fMatrix = ctx->getMatrix();\r\n ctx->setMatrix(matrix);\r\n }\r\n ~GrAutoMatrix() {\r\n fContext->setMatrix(fMatrix);\r\n }\r\n\r\nprivate:\r\n GrContext* fContext;\r\n GrMatrix fMatrix;\r\n};\r\n\r\n#endif\r\n\r\n#include \"GrContext_impl.h\"\r\n\r\n"}
+{"text": "/*\n * TextAreaDefaults.java - Encapsulates default values for various settings\n * Copyright (C) 1999 Slava Pestov\n *\n * You may use and modify this package for any purpose. Redistribution is\n * permitted, in both source and binary form, provided that this notice\n * remains intact in all source distributions of this package.\n */\n\npackage processing.app.syntax;\n\nimport java.awt.*;\n\n/**\n * Encapsulates default settings for a text area. This can be passed\n * to the constructor once the necessary fields have been filled out.\n * The advantage of doing this over calling lots of set() methods after\n * creating the text area is that this method is faster.\n */\npublic class TextAreaDefaults {\n public SyntaxDocument document;\n\n public boolean caretVisible;\n public boolean caretBlinks;\n public boolean blockCaret;\n public int electricScroll;\n\n // default/preferred number of rows/cols\n public int cols;\n public int rows;\n\n public SyntaxStyle[] styles;\n public Color caretColor;\n public Color selectionColor;\n public Color lineHighlightColor;\n public boolean lineHighlight;\n public Color bracketHighlightColor;\n public boolean bracketHighlight;\n public Color eolMarkerColor;\n public boolean eolMarkers;\n public boolean paintInvalid;\n\n public Color fgcolor;\n public Color bgcolor;\n}\n"}
+{"text": "\n */\nclass Icon_Picker extends Field {\n\t/**\n\t * Icon_Picker constructor.\n\t *\n\t * @param bool $id\n\t * @param bool $title\n\t * @param array $args\n\t */\n\tpublic function __construct( $id = false, $title = false, $args = array() ) {\n\t\tparent::__construct( 'icon_picker', $id, $title, $args );\n\t}\n\n\t/**\n\t * @param $button\n\t *\n\t * @return $this\n\t */\n\tpublic function add_button( $button ) {\n\t\treturn $this->__set( 'add_button', $button );\n\t}\n\n\t/**\n\t * @param $button\n\t *\n\t * @return $this\n\t */\n\tpublic function remove_button( $button ) {\n\t\treturn $this->__set( 'remove_button', $button );\n\t}\n\n\t/**\n\t * @param bool $show_input\n\t *\n\t * @return $this\n\t */\n\tpublic function show_input( $show_input = true ) {\n\t\treturn $this->__set( 'show_input', $show_input );\n\t}\n\n\t/**\n\t * @return \\WPO\\Fields\\Icon_Picker\n\t */\n\tpublic function hide_input() {\n\t\treturn $this->show_input( false );\n\t}\n\n\t/**\n\t * Default Options :\n\t *\n\t * array(\n\t * 'placement' => 'bottom',\n\t * 'arrow' => true,\n\t * ),\n\t *\n\t * @param array $args\n\t *\n\t * @return $this\n\t */\n\tpublic function icon_tooltip( $args = array() ) {\n\t\treturn $this->__set( 'icon_tooltip', $args );\n\t}\n\n\t/**\n\t * If Set to true then all icon frameworks that are registered with WPOnion will load\n\t * pass a string / array of icon framework slug to load only them.\n\t *\n\t * @param bool|string|array $enabled_icon_frameworks\n\t *\n\t * @return $this\n\t */\n\tpublic function enabled( $enabled_icon_frameworks = true ) {\n\t\treturn $this->__set( 'enabled', $enabled_icon_frameworks );\n\t}\n\n\t/**\n\t * pass a string / array of icon framework slug to disable loading for this field.\n\t *\n\t * @param bool|string|array $disabled_icon_frameworks\n\t *\n\t * @return $this\n\t */\n\tpublic function disabled( $disabled_icon_frameworks = true ) {\n\t\treturn $this->__set( 'disabled', $disabled_icon_frameworks );\n\t}\n\n\t/**\n\t * @param bool $is_group\n\t *\n\t * @return $this\n\t */\n\tpublic function group_icons( $is_group = true ) {\n\t\treturn $this->__set( 'group_icons', $is_group );\n\t}\n}\n"}
+{"text": "/*******************************************************************************\n * Copyright (c) 2015 Low Latency Trading Limited : Author Richard Rose\n * Licensed under the Apache License, Version 2.0 (the \"License\"); you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\thttp://www.apache.org/licenses/LICENSE-2.0\n * Unless required by applicable law or agreed to in writing, software distributed under the License \n * is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and limitations under the License.\n *******************************************************************************/\npackage com.rr.model.generated.internal.events.interfaces;\n\nimport com.rr.core.lang.ReusableString;\n\npublic interface MilleniumLogonReplyWrite extends BaseMillenium, MilleniumLogonReply {\n\n // Getters and Setters\n public void setRejectCode( int val );\n\n public void setPwdExpiryDayCount( byte[] buf, int offset, int len );\n public ReusableString getPwdExpiryDayCountForUpdate();\n\n public void setMsgSeqNum( int val );\n\n public void setPossDupFlag( boolean val );\n\n}\n"}
+{"text": "public class BST>\n\t\textends AbstractTree {\n\tprotected TreeNode root;\n\tprotected int size = 0;\n\n\t/** Create a default binary search tree */\n\tpublic BST() {\n\t}\n\n\t/** Create a binary search tree from an array of objects */\n\tpublic BST(E[] objects) {\n\t\tfor (int i = 0; i < objects.length; i++)\n\t\t\tinsert(objects[i]);\n\t}\n\n\t@Override /** Return true if the element is in the tree */\n\tpublic boolean search(E e) {\n\t\tTreeNode current = root; // Start from the root\n\n\t\twhile (current != null) {\n\t\t\tif (e.compareTo(current.element) < 0) {\n\t\t\t\tcurrent = current.left; // Go left\n\t\t\t}\n\t\t\telse if (e.compareTo(current.element) > 0) {\n\t\t\t\tcurrent = current.right; // Go right\n\t\t\t}\n\t\t\telse // Element matches current.element\n\t\t\t\treturn true; // Element is found\n\t\t}\n\n\t\treturn false; // Element is not in the tree\n\t}\n\n\t@Override /** Insert element e into the binary search tree.\n\t *\tReturn true if the element is inserted successfully. */\n\tpublic boolean insert(E e) {\n\t\tif (root == null)\n\t\t\troot = createNewNode(e); // Create a new root\n\t\telse {\n\t\t\t// Locate the parent node\n\t\t\tTreeNode parent = null;\n\t\t\tTreeNode current = root;\n\t\t\twhile (current != null) {\n\t\t\t\tif (e.compareTo(current.element) < 0) {\n\t\t\t\t\tparent = current;\n\t\t\t\t\tcurrent = current.left;\n\t\t\t\t}\n\t\t\t\telse if (e.compareTo(current.element) > 0) {\n\t\t\t\t\tparent = current;\n\t\t\t\t\tcurrent = current.right;\n\t\t\t\t}\n\t\t\t\telse\n\t\t\t\t\treturn false; // Duplicate node not inserted\n\t\t\t}\n\t\t\t// Create the new node and attach it to the parent\n\t\t\tif (e.compareTo(parent.element) < 0)\n\t\t\t\tparent.left = createNewNode(e);\n\t\t\telse\n\t\t\t\tparent.right = createNewNode(e);\n\t\t}\n\n\t\tsize++;\n\t\treturn true; // Element inserted successfully\n\t}\n\n\tprotected TreeNode createNewNode(E e) {\n\t\treturn new TreeNode<>(e);\n\t}\n\n\t@Override /** Inorder traversal from the root */\n\tpublic void inorder() {\n\t\tinorder(root);\n\t}\n\n\t/** Inorder traversal from a subtree */\n\tprotected void inorder(TreeNode root) {\n\t\tif (root == null) return;\n\t\tinorder(root.left);\n\t\tSystem.out.print(root.element + \" \");\n\t\tinorder(root.right);\n\t}\n\n\t@Override /** Postorder traversal from the root */\n\tpublic void postorder() {\n\t\tpostorder(root);\n\t}\n\n\t/** Postorder traversal from a subtree */\n\tprotected void postorder(TreeNode root) {\n\t\tif (root == null) return;\n\t\tpostorder(root.left);\n\t\tpostorder(root.right);\n\t\tSystem.out.print(root.element + \" \");\n\t}\n\n\t@Override /** Preorder traversal from the root */\n\tpublic void preorder() {\n\t\tpreorder(root);\n\t}\n\n\t/** Preorder traversal from a subtree */\n\tprotected void preorder(TreeNode root) {\n\t\tif (root == null) return;\n\t\tSystem.out.print(root.element + \" \");\n\t\tpreorder(root.left);\n\t\tpreorder(root.right);\n\t}\n\n\t/** This inner class is static, because it does not access\n\t\tany instance members defined in its outer class */\n\tpublic static class TreeNode> {\n\t\tprotected E element;\n\t\tprotected TreeNode left;\n\t\tprotected TreeNode right;\n\n\t\tpublic TreeNode(E e) {\n\t\t\telement = e;\n\t\t}\n\t}\n\n\t@Override /** Get the number of nodes in the tree */\n\tpublic int getSize() {\n\t\treturn size;\n\t}\n\n\t/** Returns the root of the tree */\n\tpublic TreeNode getRoot() {\n\t\treturn root;\n\t}\n\n\t/** Return a path from the root leadting to the specified element */\n\tpublic java.util.ArrayList> path(E e) {\n\t\tjava.util.ArrayList> list = \n\t\t\tnew java.util.ArrayList<>();\n\t\tTreeNode current = root; // Start from the root\n\n\t\twhile (current != null) {\n\t\t\tlist.add(current); // Add the node to the list\n\t\t\tif (e.compareTo(current.element) < 0) {\n\t\t\t\tcurrent = current.left;\n\t\t\t}\n\t\t\telse if (e.compareTo(current.element) > 0) {\n\t\t\t\tcurrent = current.right;\n\t\t\t}\n\t\t\telse \n\t\t\t\tbreak;\n\t\t}\n\n\t\treturn list; // Return an array list of nodes\n\t}\n\n\t@Override /** Delete an element from the binary search tree.\n\t * Return true if the element is deleted successfully.\n\t * Return false if the element is not in the tree. */\n\tpublic boolean delete(E e) {\n\t\t//Locate the node to be deleted and also locate its parent node\n\t\tTreeNode parent = null;\n\t\tTreeNode current = root;\n\t\twhile (current != null) {\n\t\t\tif (e.compareTo(current.element) < 0) {\n\t\t\t\tparent = current;\n\t\t\t\tcurrent = current.left;\n\t\t\t}\n\t\t\telse if (e.compareTo(current.element) > 0) {\n\t\t\t\tparent = current;\n\t\t\t\tcurrent = current.right;\n\t\t\t}\n\t\t\telse\n\t\t\t\tbreak; // Element is in the tree pointed at by current\n\t\t}\n\n\t\tif (current == null)\n\t\t\treturn false; // Element is not in the tree\n\n\t\t// Case 1: current has no left child\n\t\tif (current.left == null) {\n\t\t\t// Connect the parent with the right child of the current node\n\t\t\tif (parent == null) {\n\t\t\t\troot = current.right;\n\t\t\t}\n\t\t\telse {\n\t\t\t\tif (e.compareTo(parent.element) < 0)\n\t\t\t\t\tparent.left = current.right;\n\t\t\t\telse\n\t\t\t\t\tparent.right = current.right;\n\t\t\t}\n\t\t}\n\t\telse {\n\t\t\t// Case 2: The current node has a left child.\n\t\t\t// Locate the rightmost node in the left subtree of \n\t\t\t// the current node an also its parent.\n\t\t\tTreeNode parentOfRightMost = current;\n\t\t\tTreeNode rightMost = current.left;\n\n\t\t\twhile (rightMost.right != null) {\n\t\t\t\tparentOfRightMost = rightMost;\n\t\t\t\trightMost = rightMost.right; // Keep going to the right\n\t\t\t}\n\n\t\t\t// Replace the element in current by the element in rightMost\n\t\t\tcurrent.element = rightMost.element;\n\n\t\t\t// Eliminate rightmost node\n\t\t\tif (parentOfRightMost.right == rightMost)\n\t\t\t\tparentOfRightMost.right = rightMost.left;\n\t\t\telse\n\t\t\t\t// Special case: parentOfRightMost == current\n\t\t\t\tparentOfRightMost.left = rightMost.left;\n\t\t}\n\n\t\tsize--;\n\t\treturn true; // Element deleted successfully\n\t}\n\n\t@Override /** Obtain an iterator. Use inorder. */\n\tpublic java.util.Iterator iterator() {\n\t\treturn new InorderIterator();\n\t}\n\n\t// Inner class InorderIterator\n\tprivate class InorderIterator implements java.util.Iterator {\n\t\t// Store the elements in a list\n\t\tprivate java.util.ArrayList list =\n\t\t\tnew java.util.ArrayList<>();\n\t\tprivate int current = 0; // Point to the current element in list\n\n\t\tpublic InorderIterator() {\n\t\t\tinorder(); // Traverse binary tree and store elements in list\n\t\t}\n\n\t\t/** Inorder traversal from the root */\n\t\tprivate void inorder() {\n\t\t\tinorder(root);\n\t\t}\n\n\t\t/** Inorder traversal from a subtree */\n\t\tprivate void inorder(TreeNode root) {\n\t\t\tif (root == null) return;\n\t\t\tinorder(root.left);\n\t\t\tlist.add(root.element);\n\t\t\tinorder(root.right);\n\t\t}\n\n\t\t@Override /** More elements for traversing? */\n\t\tpublic boolean hasNext() {\n\t\t\tif (current < list.size())\n\t\t\t\treturn true;\n\n\t\t\treturn false;\n\t\t}\n\n\t\t@Override /** Get the current element and move to the next */\n\t\tpublic E next() {\n\t\t\treturn list.get(current++);\n\t\t}\n\n\t\t@Override /** Remove the current element */\n\t\tpublic void remove() {\n\t\t\tdelete(list.get(current)); // Delete the current element\n\t\t\tlist.clear(); // Clear the list\n\t\t\tinorder(); // Rebuild the list\n\t\t}\n\t}\n\n\t/** Remove all elements from the tree */\n\tpublic void clear() {\n\t\troot = null;\n\t\tsize = 0;\n\t}\n\n\t/** Displays the nodes in a breadth-first traversal */\n\tpublic void breadthFirstTraversal() {\n\t\tif (root == null) return;\n\t\tjava.util.Queue> queue = new java.util.LinkedList<>();\n\t\tqueue.add(root);\n\t\twhile (!queue.isEmpty()){\n\t\t\tTreeNode current = queue.element();\n\t\t\tif (current.left != null) {\n\t\t\t\tqueue.add(current.left);\n\t\t\t}\n\t\t\tif (current.right != null) {\n\t\t\t\tqueue.add(current.right);\n\t\t\t}\n\t\t\tSystem.out.print(queue.remove().element + \" \");\n\t\t}\n\t}\n\n\t/** Returns the height of this binary tree */\n\tpublic int height() {\n\t\treturn height(root);\n\t}\n\n\t/** Height from a subtree */\n\tprotected int height(TreeNode root) {\n\t\tif (root == null) return 0;\n\t\treturn 1 + Math.max(height(root.left), height(root.right));\n\t}\n\n\t/** Returns true if the tree is a full binary tree */\n\tpublic boolean isFullBST() {\n\t\treturn size == Math.pow(2, height()) - 1 ? true : false;\n\t}\n}"}
+{"text": "odoo.define(\"web_widget_bokeh_chart\", function(require) {\n \"use strict\";\n\n var fieldRegistry = require(\"web.field_registry\");\n var AbstractField = require(\"web.AbstractField\");\n\n var BokehChartWidget = AbstractField.extend({\n _renderReadonly: function() {\n var val = this.value;\n this.$el.html(val);\n },\n });\n fieldRegistry.add(\"bokeh_chart\", BokehChartWidget);\n return {\n BokehChartWidget: BokehChartWidget,\n };\n});\n"}
+{"text": "## Resizer\n\n* Version 0.0.9\n* Skype: RobinKuiper.eu\n* Discord: Atheos#1095\n* Roll20: https://app.roll20.net/users/1226016/robin\n* Roll20 Thread: https://app.roll20.net/forum/post/6285519/script-resizer/\n* Roll20 Wiki: https://wiki.roll20.net/Script:Resizer\n* Github: https://github.com/RobinKuiper/Roll20APIScripts\n* Reddit: https://www.reddit.com/user/robinkuiper/\n* Patreon: https://patreon.com/robinkuiper\n* Paypal.me: https://www.paypal.me/robinkuiper\n\n---\n\nResizer lets you easily resize graphics and pages with a simple menu.\n\n### Commands\n\n* **!resizer [width] [height]** - Resizes the selected graphic(s).\n* **!resizer page [width] [height] [?pixels]** - Resizes the page (add pixels add the end to resize in pixels instead of units).\n\n* **!resizer** - Shows the Resizer menu (if there are graphics selected it also shows there current sizes).\n* **!resizer page** - Shows the pages current size.\n\n* **!resizer scale [amount] [up/down]** - Scale the entire page (with everything on it) by amount and up or down, eg. `!resizer scale 2 up`.\n* **!resizer fit [?keep_ratio]** - Makes the selected graphic fit the page (handy for maps), add `keep_ratio` to the end to keep the graphics ratio.\n* **!resizer center [?horizontal] [?vertical]** - Center the selected graphic(s), add `h`, `hor` or `horizontal` for horizontal and `v`, `ver` or `vertical` for vertical centering.\n\n* **!resizer help** - Shows the help menu.\n* **!resizer config** - Shows the config menu.\n* **!resizer menu** - Shows a menu to easily resize graphics/pages.\n\n\n\nRoll20 Thread: https://app.roll20.net/forum/post/6285519/script-resizer/"}
+{"text": "\r\n\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n"}
+{"text": "# pylint: disable=missing-docstring\n\nANOTHER = 42\n"}
+{"text": "#version 450\n#extension GL_AMD_gpu_shader_half_float : require\n\nlayout(location = 0) in float16_t v1;\nlayout(location = 1) in f16vec2 v2;\nlayout(location = 2) in f16vec3 v3;\nlayout(location = 3) in f16vec4 v4;\n\nlayout(location = 0) out float o1;\nlayout(location = 1) out vec2 o2;\nlayout(location = 2) out vec3 o3;\nlayout(location = 3) out vec4 o4;\n\n#if 0\n// Doesn't work on glslang yet.\nf16mat2 test_mat2(f16vec2 a, f16vec2 b, f16vec2 c, f16vec2 d)\n{\n\treturn f16mat2(a, b) * f16mat2(c, d);\n}\n\nf16mat3 test_mat3(f16vec3 a, f16vec3 b, f16vec3 c, f16vec3 d, f16vec3 e, f16vec3 f)\n{\n\treturn f16mat3(a, b, c) * f16mat3(d, e, f);\n}\n#endif\n\nvoid test_constants()\n{\n\tfloat16_t a = 1.0hf;\n\tfloat16_t b = 1.5hf;\n\tfloat16_t c = -1.5hf; // Negatives\n\tfloat16_t d = (0.0hf / 0.0hf); // NaN\n\tfloat16_t e = (1.0hf / 0.0hf); // +Inf\n\tfloat16_t f = (-1.0hf / 0.0hf); // -Inf\n\tfloat16_t g = 1014.0hf; // Large.\n\tfloat16_t h = 0.000001hf; // Denormal\n}\n\nfloat16_t test_result()\n{\n\treturn 1.0hf;\n}\n\nvoid test_conversions()\n{\n\tfloat16_t one = test_result();\n\tint a = int(one);\n\tuint b = uint(one);\n\tbool c = bool(one);\n\tfloat d = float(one);\n\tdouble e = double(one);\n\tfloat16_t a2 = float16_t(a);\n\tfloat16_t b2 = float16_t(b);\n\tfloat16_t c2 = float16_t(c);\n\tfloat16_t d2 = float16_t(d);\n\tfloat16_t e2 = float16_t(e);\n}\n\nvoid test_builtins()\n{\n\tf16vec4 res;\n\tres = radians(v4);\n\tres = degrees(v4);\n\tres = sin(v4);\n\tres = cos(v4);\n\tres = tan(v4);\n\tres = asin(v4);\n\tres = atan(v4, v3.xyzz);\n\tres = atan(v4);\n\tres = sinh(v4);\n\tres = cosh(v4);\n\tres = tanh(v4);\n\t//res = asinh(v4);\n\t//res = acosh(v4);\n\t//res = atanh(v4);\n\tres = pow(v4, v4);\n\tres = exp(v4);\n\tres = log(v4);\n\tres = exp2(v4);\n\tres = log2(v4);\n\tres = sqrt(v4);\n\tres = inversesqrt(v4);\n\tres = abs(v4);\n\tres = sign(v4);\n\tres = floor(v4);\n\tres = trunc(v4);\n\tres = round(v4);\n\t//res = roundEven(v4);\n\tres = ceil(v4);\n\tres = fract(v4);\n\tres = mod(v4, v4);\n\tf16vec4 tmp;\n\tres = modf(v4, tmp);\n\tres = min(v4, v4);\n\tres = max(v4, v4);\n\tres = clamp(v4, v4, v4);\n\tres = mix(v4, v4, v4);\n\tres = mix(v4, v4, lessThan(v4, v4));\n\tres = step(v4, v4);\n\tres = smoothstep(v4, v4, v4);\n\n\tbvec4 btmp = isnan(v4);\n\tbtmp = isinf(v4);\n\tres = fma(v4, v4, v4);\n\n\t//ivec4 itmp;\n\t//res = frexp(v4, itmp);\n\t//res = ldexp(res, itmp);\n\n\tuint pack0 = packFloat2x16(v4.xy);\n\tuint pack1 = packFloat2x16(v4.zw);\n\tres = f16vec4(unpackFloat2x16(pack0), unpackFloat2x16(pack1));\n\n\tfloat16_t t0 = length(v4);\n\tt0 = distance(v4, v4);\n\tt0 = dot(v4, v4);\n\tf16vec3 res3 = cross(v3, v3);\n\tres = normalize(v4);\n\tres = faceforward(v4, v4, v4);\n\tres = reflect(v4, v4);\n\tres = refract(v4, v4, v1);\n\n\tbtmp = lessThan(v4, v4);\n\tbtmp = lessThanEqual(v4, v4);\n\tbtmp = greaterThan(v4, v4);\n\tbtmp = greaterThanEqual(v4, v4);\n\tbtmp = equal(v4, v4);\n\tbtmp = notEqual(v4, v4);\n\n\tres = dFdx(v4);\n\tres = dFdy(v4);\n\tres = dFdxFine(v4);\n\tres = dFdyFine(v4);\n\tres = dFdxCoarse(v4);\n\tres = dFdyCoarse(v4);\n\tres = fwidth(v4);\n\tres = fwidthFine(v4);\n\tres = fwidthCoarse(v4);\n\n\t//res = interpolateAtCentroid(v4);\n\t//res = interpolateAtSample(v4, 0);\n\t//res = interpolateAtOffset(v4, f16vec2(0.1hf));\n}\n\nvoid main()\n{\n\t// Basic matrix tests.\n#if 0\n\tf16mat2 m0 = test_mat2(v2, v2, v3.xy, v3.xy);\n\tf16mat3 m1 = test_mat3(v3, v3, v3, v4.xyz, v4.xyz, v4.yzw);\n#endif\n\n\ttest_constants();\n\ttest_conversions();\n\ttest_builtins();\n}\n"}
+{"text": "#!/bin/bash\n\n#\n# event_analyzing_sample.py can cover all type of perf samples including\n# the tracepoints, so no special record requirements, just record what\n# you want to analyze.\n#\nperf record $@\n"}
+{"text": "# Copyright (c) 2016 Microsoft Corporation. All Rights Reserved.\n# Licensed under the MIT License (MIT)\n\n\nfunction Out-RsCatalogItem\n{\n <#\n .SYNOPSIS\n This downloads catalog items from a report server to disk.\n \n .DESCRIPTION\n This downloads catalog items from a report server to disk.\n Currently supported types to download are reports, datasources, datasets and resources.\n \n .PARAMETER RsItem\n Path to catalog item to download.\n \n .PARAMETER Destination\n Folder to download catalog item to.\n \n .PARAMETER ReportServerUri\n Specify the Report Server URL to your SQL Server Reporting Services Instance.\n Use the \"Connect-RsReportServer\" function to set/update a default value.\n \n .PARAMETER Credential\n Specify the credentials to use when connecting to the Report Server.\n Use the \"Connect-RsReportServer\" function to set/update a default value.\n \n .PARAMETER Proxy\n Report server proxy to use.\n Use \"New-RsWebServiceProxy\" to generate a proxy object for reuse.\n Useful when repeatedly having to connect to multiple different Report Server.\n \n .EXAMPLE\n Out-RsCatalogItem -ReportServerUri 'http://localhost/reportserver_sql2012' -RsItem /Report -Destination C:\\reports\n \n Description\n -----------\n Download catalog item 'Report' to folder 'C:\\reports'.\n\n .EXAMPLE\n Get-RsFolderContent -ReportServerUri http://localhost/ReportServer -RsItem '/SQL Server Performance Dashboard' | \n WHERE Name -Like Wait* | \n Out-RsCatalogItem -ReportServerUri http://localhost/ReportServer -Destination c:\\SQLReports\n \n Description\n -----------\n Downloads all catalog items from folder '/SQL Server Performance Dashboard' with a name that starts with 'Wait' to folder 'C:\\SQLReports'. \t\t\t\n #>\n [CmdletBinding()]\n param (\n [Alias('ItemPath', 'Path', 'RsFolder')]\n [Parameter(Mandatory = $True, ValueFromPipeline = $true)]\n [string[]]\n $RsItem,\n \n [ValidateScript({ Test-Path $_ -PathType Container})]\n [Parameter(Mandatory = $True)]\n [string]\n $Destination,\n \n [string]\n $ReportServerUri,\n \n [Alias('ReportServerCredentials')]\n [System.Management.Automation.PSCredential]\n $Credential,\n \n $Proxy\n )\n \n Begin\n {\n $Proxy = New-RsWebServiceProxyHelper -BoundParameters $PSBoundParameters\n \n $DestinationFullPath = Convert-Path $Destination\n }\n \n Process\n {\n #region Processing each path passed to it\n foreach ($item in $RsItem)\n {\n #region Retrieving content from Report Server\n try\n {\n $itemType = $Proxy.GetItemType($item)\n }\n catch\n {\n throw (New-Object System.Exception(\"Failed to retrieve item type of '$item' from proxy: $($_.Exception.Message)\", $_.Exception))\n }\n \n switch ($itemType)\n {\n \"Unknown\"\n {\n throw \"Make sure item exists at $item and item is of type Report, DataSet, DataSource or Resource\"\n }\n \"Resource\"\n {\n $fileName = ($item.Split(\"/\"))[-1]\n }\n default\n {\n $fileName = \"$(($item.Split(\"/\"))[-1])$(Get-FileExtension -TypeName $itemType)\"\n }\n }\n \n Write-Verbose \"Downloading $item...\"\n try\n {\n $bytes = $Proxy.GetItemDefinition($item)\n }\n catch\n {\n throw (New-Object System.Exception(\"Failed to retrieve item definition of '$item' from proxy: $($_.Exception.Message)\", $_.Exception))\n }\n #endregion Retrieving content from Report Server\n \n #region Writing results to file\n Write-Verbose \"Writing $itemType content to $DestinationFullPath\\$fileName...\"\n try\n {\n if ($itemType -eq 'DataSource')\n {\n $content = [System.Text.Encoding]::Unicode.GetString($bytes)\n [System.IO.File]::WriteAllText(\"$DestinationFullPath\\$fileName\", $content)\n }\n else\n {\n [System.IO.File]::WriteAllBytes(\"$DestinationFullPath\\$fileName\", $bytes)\n }\n }\n catch\n {\n throw (New-Object System.IO.IOException(\"Failed to write content to '$DestinationFullPath\\$fileName' : $($_.Exception.Message)\", $_.Exception))\n }\n \n Write-Verbose \"$item was downloaded to $DestinationFullPath\\$fileName successfully!\"\n #endregion Writing results to file\n }\n #endregion Processing each path passed to it\n }\n \n End\n {\n \n }\n}\n"}
+{"text": " /* ==========================================================================\n Main\n ========================================================================== */\n/* Base */\n\n.ic * {\n font-family: \"Avenir Next\", Arial, sans-serif;\n}\n[class^=\"icon-\"] {\n font-family: FontAwesome;\n}\n.btn, .btn-small, .btn-huge, .btn-mini {\n font-family: \"Avenir Next Medium\", Arial, sans-serif;\n}\n@media screen {\n [class*=\"span\"] {\n border: 0px solid rgba(0,0,0,0);\n margin-left: 2.85715%;\n margin-right: -3px; /* Necessary to get rid of inline whitespace */\n padding: 0;\n display: inline-block;\n vertical-align: top;\n }\n [class*=\"span\"]:first-child {\n margin-left: 0;\n }\n .section-nav {\n margin-left: 0;\n }\n}\n.span1 { width: 5.714285714286%; }\n.span2 { width: 14.28571%; }\n.span3 { width: 22.85714%; }\n.span4, .span_side { width: 31.42857%; }\n.span5 { width: 40%; }\n.span6 { width: 48.57142%; }\n.span7 { width: 57.14285%; }\n.span8, .span_main { width: 65.71428%; }\n.span9 { width: 74.28571%; }\n.span10 { width: 82.85714%; }\n.span11 { width: 91.42857%; }\n.span12 { margin-left: 0; width: 100%; }\n\n.idea-home {\n overflow: auto;\n overflow-y:hidden;\n overflow-x:hidden;\n}\n\ninput[type=\"text\"],\ntextarea[type=\"text\"] {\n padding: 0.25em;\n border: 1px solid #75787B; /* Gray */\n -webkit-border-radius: 0;\n -moz-border-radius: 0;\n border-radius: 0;\n margin: 0;\n vertical-align: top;\n}\n\n.selectize-input.input-active,\ninput:focus,\ninput.focus,\ntextarea:focus,\ntextarea.focus {\n border: 1px solid #0072CE; /* Pacific */\n border-radius: 0;\n outline: 1px solid #0072CE; /* Pacific */\n outline-offset: 0;\n -webkit-box-shadow: none;\n box-shadow: none;\n}\n\n.selectize-control.input-error .selectize-input,\ninput.input-error,\ntextarea.input-error {\n border: 1px solid #D12124; /* Red Orange */\n outline: 1px solid #D12124; /* Red Orange */\n}\n\ninput.populated,\ntextarea.populated {\n color: #888;\n}\n\n/* Improve readability when focused and hovered in all browsers: h5bp.com/h */\n.ic a:hover,\n.ic a:active {\n outline: 0;\n}\n\n/* Header */\n.project-header .row {\n margin-bottom: 1.5em;\n}\n.project-header .row p {\n margin: 0;\n}\n.logo a,\n.logo a:hover {\n text-decoration: none;\n}\n\n.project-header .info {\n margin-top: 20px;\n margin-bottom: 10px;\n font: 100%/1.375 Georgia, \"Times New Roman\", serif; /* 16px font size */\n}\n.project-title {\n margin-top: 0;\n position: relative;\n}\n.project-title a {\n color: #0072CE;\n border-bottom: 1px dotted;\n line-height: 1em;\n display: inline-block;\n margin-left: 1em;\n}\n\n.project-title a:hover,\n.project-title a:focus,\n.project-title a:active {\n border-bottom-style: solid;\n}\n.project-title a:before{\n content: \" Back to \";\n right: 100%;\n}\n.project-title:before {\n font-family: FontAwesome, \"Avenir Next Medium\", Arial, sans-serif;\n content: \"\\f053\";\n position: absolute;\n border: none;\n color: #0072CE;\n}\n\n.project-add-idea {\n margin-bottom: 2.5em;\n}\n.project-description {\n color: #000;\n font-size: 187.5%; /* 30px */\n font-weight: 600;\n line-height: 0.88;\n margin-bottom: 0.5em;\n}\n.project-prompt {\n color: #999;\n font-size: 100%; /* 16px */\n font-weight: bold;\n margin-top: 0.5em;\n text-align: left;\n text-transform: uppercase;\n}\n\n/*\n Right and Left Chevron classes with appropriate underlines\n*/\n.chevron-right {\n position: relative;\n}\n.chevron-right:after {\n font-family: FontAwesome, \"Avenir Next Medium\", Arial, sans-serif;\n content: \"\\f054\";\n position: absolute;\n left: 100%;\n top: 0;\n margin-left: .15em;\n border-bottom: none;\n}\n.chevron-left {\n position: relative;\n}\n.chevron-left:before {\n font-family: FontAwesome, \"Avenir Next Medium\", Arial, sans-serif;\n content: \"\\f053\";\n position: absolute;\n right: 100%;\n top: 0;\n margin-right: .15em;\n border-bottom: none;\n}\n\n.search-form input[type=\"text\"],\n.search-form textarea {\n height: 2em;\n width: 80%;\n}\n/* Navigation */\nh2.section a {\n font-family: \"Avenir Next Demi\", Arial, sans-serif;\n text-transform: none;\n font-weight: normal;\n}\nul.section-nav {\n border-bottom: 1px solid #000;\n padding-left: 0;\n margin-top: 0;\n margin-bottom: 0;\n list-style: none;\n overflow: auto;\n overflow-y:hidden;\n overflow-x:hidden;\n}\nul.section-nav li {\n display: inline-block;\n margin-right: 0.5em;\n border-bottom-width: 0;\n}\nul.section-nav li a {\n display: inline-block;\n padding: 0.625em 1em 0.5em;\n background: #e4e2e0;\n color: #000;\n font-family: \"Avenir Next Demi\", Arial, sans-serif;\n font-size: 0.875em;\n text-transform: uppercase;\n letter-spacing: 1px;\n text-decoration: none;\n border-bottom-width: 0;\n}\n\nul.section-nav li a:hover,\nul.section-nav li a:focus {\n background: #bcb6b2;\n}\nul.section-nav li.active a {\n background: #2cb34a;\n color: #FFF;\n}\n\n/* Content */\n.idea-entry {\n border-top: 1px solid #000;\n padding: 20px 20px 20px 0;\n}\n.idea-entry:first-child {\n border-top: 0;\n}\n.no-results {\n padding: 2.5em 0;\n}\n.idea-single .idea-votes {\n width: 6.9%; /* 72 px */\n text-align: center;\n}\n.idea-entry .idea-votes {\n text-align: center;\n}\n.idea-votes .count {\n font-size: 2.125em;\n line-height: 0.3;\n padding-top: 0.475em;\n vertical-align: none;\n}\n.idea-votes .phrase {\n font-size: .875em;\n display: block;\n font-family: \"Avenir Next Demi\", Arial, sans-serif;\n padding-top: 1em;\n text-transform: uppercase;\n}\n.idea-votes .action {\n margin-top: .75em;\n}\n.idea-title {\n padding-right: 1.875em;\n}\n.idea-banner {\n font-size: 1.125em;\n display: inline-block;\n font-family: 'Avenir Next Medium', Arial, sans-serif;\n}\n.idea-banner a {\n font-family: 'Avenir Next Medium', Arial, sans-serif;\n}\n.idea-description {\n font-family: Georgia, \"Times New Roman\", serif;\n margin: 1em 0;\n}\n.idea-footer {\n font-size: 16px;\n}\n.idea-info .suggested {\n color: #63666a;\n margin-left: .5em;\n}\n.idea-info .commented {\n color: #63666a;\n margin-right: .5em;\n}\n\n/* Comments */\n.comments {\n position: relative;\n}\n.comments h4 {\n font-size: 100%;\n font-family: \"Avenir Next Demi\", Arial, sans-serif;\n line-height: 1.66;\n min-height: 1.75em;\n text-transform: uppercase;\n}\n.comment-meta {\n font-size: 16px;\n}\n.comment-form {\n padding: 0 0 2.8em;\n margin: 1.5625em 0 0;\n}\n.comment-form textarea {\n height: 6.25em;\n margin-bottom: 0.5em;\n width: 99%;\n}\n.comment-form form {\n position: relative;\n}\n.comment-form .comment-label {\n color: #666;\n position: absolute;\n left: .25em;\n}\n.comment-form #id_is_anonymous {\n vertical-align: middle;\n}\n.comment-list {\n list-style-type: none;\n margin: 0;\n padding: 0;\n}\n.single-idea-entry {\n width: 90%; /* slightly smaller than span11 due to wide idea-votes */\n}\n.single-idea-entry .body {\n margin-top: 1.5em;\n}\n.single-idea-entry .idea-entry-content h4 {\n font-family: \"Avenir Next Medium\", Arial, sans-serif;\n}\n.single-idea-entry .idea-entry-content .detail {\n margin-top: 1.5em;\n}\n.single-idea-entry .idea-entry-content p {\n margin-top: .5em;\n}\n.single-idea-entry .idea-entry-content .edit-separator {\n padding: 0em .5em;\n}\n.comment-date {\n color: #666;\n font-weight: normal;\n}\n.comment {\n padding: 1em 0 1em;\n border-bottom: 1px solid #ccc;\n}\n\n.comment .comment {\n padding: .5em 0 .5em;\n margin-left: 2.5em;\n border-top: 1px solid #ccc;\n border-bottom: 0;\n}\n\n/* Sidebar */\n\n.sidebar ul {\n list-style-type: square;\n padding-left: 1.5em;\n}\n.ic-add-tags,\n.sidebar-nav {\n margin-bottom: 2.5em;\n}\n.challenge-banner {\n margin: 1.25em 0;\n background-color: #DBEDD4;\n padding: 1.25em;\n}\n.sidebar a,\n#challenge-link a {\n border-bottom-width: 1px;\n}\n\n#date-range {\n margin-top: 20px;\n}\n.challenge-banner #challenge-link {\n margin-top: 1.5em;\n margin-bottom: 0;\n}\n\n.banners {\n margin-bottom: 1.25em;\n}\n.banners .challenge {\n margin: .5em 0;\n}\n.challenge_view_all a{\n position:relative;\n}\n.challenge_view_all a:after {\n content: \"\\f054\";\n font-family: FontAwesome, \"Avenir Next\", Arial, sans-serif;\n margin-left: .25em;\n border: none;\n position: absolute;\n left: 100%;\n top:0;\n}\n.list_current_challenges {\n padding-top: 1.5em;\n}\n.list_past_challenges {\n padding-top: 2.5em;\n}\n.list_current_challenges .current_banners ul {\n list-style: none;\n padding-left: 0;\n}\n.list_past_challenges .past_banners ul {\n list-style: none;\n padding-left: 0;\n}\n.current_banner_list_item {\n padding-bottom: 1.0em;\n}\n.past_banner_list_item {\n padding-bottom:1.0em;\n}\n.voters {\n margin-bottom: 2.5em;\n}\n.tags .tag {\n display: block;\n margin: 0 0.5em 0.75em -0.5em;\n}\n.tags .tag:before {\n position: relative;\n left: -0.75em;\n}\n.tags .tag a {\n font-family: \"Avenir Next Demi\", Arial, sans-serif;\n}\n.sidebar .tags form input[type=\"text\"] {\n width: 11em;\n}\n.ic-add-tags .help-text {\n font-size: 87.5%;\n} .sidebar-nav a {\n font-size: 87.5%; /* 14px */\n}\n\n/* Add View */\n.project-add {\n margin: 1.5em 0 0;\n}\n.project-add form > div {\n margin: 1em 0;\n position: relative;\n}\n.project-add form textarea {\n height: 5.25em;\n max-width: 48.57142%;\n padding-bottom: 1.25em;\n}\n.project-add form textarea#id_text {\n height: 8.25em;\n}\n.project-add label {\n display: block;\n position: relative;\n}\n.project-add input#id_title,\n.project-add select#id_banner,\n.project-add textarea#id_text,\n.project-add textarea#id_summary,\n.project-add input#id_tags,\n.selectize-control {\n width: 48.57142%;\n display: block;\n margin: 0;\n}\n.project-add .textAreaCountMessage {\n width: 48.57142%;\n position: relative;\n}\n.project-add span[id$=\"textcount\"] {\n font-style: italic;\n background-color: #FFF;\n line-height: 1em;\n font-size: 0.875em;\n position: absolute;\n bottom: 2px;\n right: 0.75em;\n margin-right: .25em;\n text-align: right;\n}\n.project-add .banner {\n margin-top: 0;\n}\n.project-add .challenge-checkbox {\n margin-bottom: 0;\n margin-right: .5em;\n}\n.project-add .is_anonymous {\n padding-bottom: 1em;\n}\n.project-add .is_anonymous label,\n.project-add .challenge-checkbox label {\n display: inline-block;\n vertical-align: middle;\n}\n.project-add .is_anonymous input,\n.project-add .challenge-checkbox input {\n display: inline-block;\n vertical-align: middle;\n}\n.project-add select#id_banner {\n visibility: hidden;\n}\n.project-add select#id_banner.active {\n visibility: visible;\n}\n.form-field-footer {\n position: relative;\n}\n.project-add .help_text {\n margin: 0;\n font-style: italic;\n width: 48.57142%;\n font-size: 0.875em;\n visibility: hidden;\n display: block;\n}\n.errorlist {\n list-style: none;\n padding: 0;\n}\n.errorlist li {\n position: absolute;\n top: 0;\n left: 2px;\n margin: 0;\n padding: 0;\n}\n.project-add span#submit-buttons {\n display: block;\n margin-top: 1.375em;\n}\n.project-add span#submit-buttons input {\n vertical-align: middle;\n}\n.project-add #add-idea-btn,\n.project-add .secondary-action {\n margin-top: 1.625em;\n margin-bottom: 2em;\n}\n.idea-hero {\n margin: 0 0 0 0;\n}\n.main-content a {\n border-bottom-width: 1px;\n}\n\n/* Single View */\n.challenge-info p.challenge-entry-content,\n.single-idea-entry .idea-entry-content p {\n font: 100%/1.375 Georgia, \"Times New Roman\", serif; /* 16px font size */\n}\n\n.challenge-info p.challenge-entry-content {\n margin: .5em 0;\n}\n.idea-add,\n.idea-single,\n.idea-banner-single {\n padding-top: 1.5em;\n}\n.idea-single .main-content {\n padding-top: 1.5em;\n}\n.idea-single .comments {\n border-top: 3px solid #f2f2f2;\n margin-top: 2.5em;\n padding-top: 1.5625em;\n}\n\n/* ==========================================================================\n Helper classes\n ========================================================================== */\n\n/* Style help */\n.border-bottom {\n border-bottom: 3px solid #000;\n}\n#work_tag_submit_btn {\n margin-top: .5em;\n}\n\n.btn-voted {\n color: #75787B;\n background-color: #E3E4E5;\n cursor: default;\n}\n.btn-voted:focus{\n outline: none;\n\n}\n\ninput.btn-voted:hover {\n background-color: #919395;\n color: #fff;\n cursor: default;\n}\n\ninput.btn-voted:active, input.btn-voted:focus {\n background-color: #75787b;\n color: #fff;\n cursor: default;\n outline-width: 0;\n}\n\ninput.btn,\ninput.btn:link,\ninput.btn:visited {\n display: inline-block;\n -webkit-box-sizing: border-box;\n -moz-box-sizing: border-box;\n box-sizing: border-box;\n padding: 0.64285714em 1em;\n border: 0;\n border-radius: 0.28571429em;\n margin: 0;\n vertical-align: middle;\n font-family: \"Avenir Next Medium\", Arial, sans-serif;\n font-style: normal;\n font-weight: 500;\n font-size: 0.875em;\n line-height: normal;\n text-decoration: none;\n cursor: pointer;\n -webkit-transition: .1s;\n transition: .1s;\n -webkit-appearance: none;\n}\n.lt-ie9 .btn,\n.lt-ie9 .btn:link,\n.lt-ie9 .btn:visited {\n font-weight: normal !important;\n}\n\n\n.idea-add .alert {\n color: #d14124;\n display: block;\n margin-top: 1.6em;\n text-align: center;\n text-transform: uppercase;\n}\n.idea-add a .alert {\n color: #d14124;\n text-decoration: none;\n}\n.idea-add a:hover .alert,\n.idea-add a:focus .alert {\n border-color: #d14124 !important;\n}\n.idea-add .alert .down {\n background: url(../img/alert-arrow.png) 0 50% no-repeat;\n height: 22px;\n padding: 0.6875em;\n width: 22px;\n}\n.idea-add .alert-none {\n background-color: #f2f2f2;\n border: 3px solid #999;\n box-sizing: border-box;\n color: #999;\n display: block;\n margin: 1.25em 0;\n padding: 0.5em 1em ;\n text-align: center;\n text-transform: uppercase;\n}\n.idea-add .alert-none .down {\n background: url(../img/alert-check.png) 0 50% no-repeat;\n height: 22px;\n padding: 0.6875em;\n width: 22px;\n}\n.idea-add .alert .alert-content,\n.idea-add .alert-none p {\n display: block;\n margin-bottom: 0.25em;\n}\n.result-number {\n font-weight: bold;\n}\n\n/* Profile Styles */\n.profile_images a {\n display: inline-block;\n max-width: 125px;\n margin: 0 5px 10px 0;\n color: #000;\n font-family: \"Avenir Next\", Arial, sans-serif;\n font-size: 1em;\n line-height: 1.25;\n text-decoration: none;\n vertical-align: top;\n border:none;\n}\n.profile_images img {\n margin: 0 5px 10px 0;\n display: block;\n width: 125px;\n margin-bottom: 5px;\n}\n.profile_images a:hover {\n color: #0072CE;\n}\n\n\n /* Image replacement */\n.ir {\n background-color: transparent;\n border: 0;\n overflow: hidden;\n /* IE 6/7 fallback */\n *text-indent: -9999px;\n}\n.ir:before {\n content: \"\";\n display: block;\n width: 0;\n height: 150%;\n}\n\n.add-summary {\n margin-top: 2em;\n width: 65.71428%;\n}\n.add-summary #submit-buttons {\n margin: 2em 0;\n text-align: center;\n}\n.add-summary #submit-buttons a {\n margin-right: 8em;\n}\n\n.summary-text {\n margin: 1em 0;\n}\n.summary-section {\n padding: 1em 0;\n}\n.summary-section-header {\n font-family: \"Avenir Next Medium\", Arial, sans-serif;\n}\n.summary-section-body {\n margin-top: 0.5em;\n}\n\n/* Hide from both screenreaders and browsers: h5bp.com/u */\n.hidden {\n display: none !important;\n visibility: hidden;\n}\n\n/* Hide only visually, but have it available for screenreaders: h5bp.com/v */\n.visuallyhidden {\n border: 0;\n clip: rect(0 0 0 0);\n height: 1px;\n margin: -1px;\n overflow: hidden;\n padding: 0;\n position: absolute;\n width: 1px;\n}\n\n/*\n * Extends the .visuallyhidden class to allow the element to be focusable\n * when navigated to via the keyboard: h5bp.com/p\n */\n.visuallyhidden.focusable:active,\n.visuallyhidden.focusable:focus {\n clip: auto;\n height: auto;\n margin: 0;\n overflow: visible;\n position: static;\n width: auto;\n}\n\n/* Hide visually and from screenreaders, but maintain layout */\n.invisible {\n visibility: hidden;\n}\n\n.challenge-info {\n border-bottom: 1px solid #000;\n padding: 0;\n padding-bottom: 20px;\n}\n.challenge-info #start {\n margin-right: 2.5em;\n}\n\nsection.main-content hr {\n background-color: #000;\n height: 3px;\n border: 0;\n padding: 0;\n}\n\n.idea-votes .btn-vote,\n.idea-votes .btn-voted,\n.idea-votes .btn-voted:hover,\n.idea-votes .btn-voted:active,\n.idea-votes .btn-voted:focus {\n padding: 0.71428571428571em 0;\n width: 4em;\n font-size: 16px;\n outline: none;\n}\n\n/* Selectize */\n.selectize-input {\n border: 1px solid #919395;\n -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.15);\n -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,0.15);\n box-shadow: inset 0 1px 3px rgba(0,0,0,0.15);\n -webkit-transition: border linear .2s,box-shadow linear .2s;\n -moz-transition: border linear .2s,box-shadow linear .2s;\n -ms-transition: border linear .2s,box-shadow linear .2s;\n -o-transition: border linear .2s,box-shadow linear .2s;\n transition: border linear .2s,box-shadow linear .2s;\n border-radius: 0;\n display: block;\n}\n.multi.selectize-control .selectize-input [data-value] {\n background: #FFCE8D;\n -webkit-border-radius: 4px;\n -moz-border-radius: 4px;\n border-radius: 4px;\n border: none;\n box-shadow: none;\n -webkit-box-shadow: none;\n -moz-box-shadow: none;\n text-shadow: none;\n color: #000;\n filter: none;\n font-size: 14px;\n}\n.selectize-input input[type=\"text\"],\n.selectize-control textarea {\n vertical-align: middle;\n font-size: 14px;\n}\n.selectize-control div.option span,\n.selectize-control div.create span {\n margin-left: 0;\n display: inline;\n}\n\n/* Pagination */\n\n.pagination {\n border: solid #75787b;\n border-width: 1px 0;\n margin: 20px 0;\n}\n\n.pagination ul {\n display: block;\n padding-left: 0;\n margin: 0;\n overflow: auto;\n}\n\n.pagination [class^=\"icon-\"] {\n font-size: 0.625em;\n}\n\n.pagination ul > li {\n display: inline;\n}\n\n.pagination ul > li > a,\n.pagination ul > li > span {\n padding: 4px 8px;\n float: left;\n color: #75787b;\n line-height: 20px;\n text-decoration: none;\n border-bottom-width: 0;\n}\n\n.pagination ul > li > a:hover,\n.pagination ul > li > a:focus,\n.pagination ul > li > a:hover > i,\n.pagination ul > li > a:focus > i,\n.pagination ul > .active > a,\n.pagination ul > .active > span {\n color: #101820;\n}\n\n.pagination ul > .active > a,\n.pagination ul > .active > span {\n font-family: \"Avenir Next Demi\", Arial, sans-serif;\n font-weight: bold;\n cursor: default;\n}\n\n.pagination ul > .disabled > span,\n"}
+{"text": "/* -*-c++-*- OpenSceneGraph Cookbook\n * Chapter 4 Recipe 10\n * Author: Wang Rui \n*/\n\n#include \n#include \"JoystickManipulator\"\n\nLPDIRECTINPUT8 g_inputDevice;\nLPDIRECTINPUTDEVICE8 g_joystick;\n\nstatic BOOL CALLBACK EnumJoysticksCallback( const DIDEVICEINSTANCE* didInstance, VOID* )\n{\n HRESULT hr;\n if ( g_inputDevice )\n {\n hr = g_inputDevice->CreateDevice( didInstance->guidInstance, &g_joystick, NULL );\n }\n if ( FAILED(hr) ) return DIENUM_CONTINUE;\n return DIENUM_STOP;\n}\n\nTwoDimManipulator::TwoDimManipulator()\n: _distance(1.0)\n{\n HRESULT hr = DirectInput8Create( GetModuleHandle(NULL), DIRECTINPUT_VERSION, IID_IDirectInput8, (VOID**)&g_inputDevice, NULL );\n if ( FAILED(hr) || !g_inputDevice ) return;\n \n hr = g_inputDevice->EnumDevices( DI8DEVCLASS_GAMECTRL, EnumJoysticksCallback, NULL, DIEDFL_ATTACHEDONLY );\n}\n\nTwoDimManipulator::~TwoDimManipulator()\n{\n if ( g_joystick ) \n {\n g_joystick->Unacquire();\n g_joystick->Release();\n }\n if ( g_inputDevice ) g_inputDevice->Release();\n}\n\nosg::Matrixd TwoDimManipulator::getMatrix() const\n{\n osg::Matrixd matrix;\n matrix.makeTranslate( 0.0f, 0.0f, _distance );\n matrix.postMultTranslate( _center );\n return matrix;\n}\n\nosg::Matrixd TwoDimManipulator::getInverseMatrix() const\n{\n osg::Matrixd matrix;\n matrix.makeTranslate( 0.0f, 0.0f,-_distance );\n matrix.preMultTranslate( -_center );\n return matrix;\n}\n\nvoid TwoDimManipulator::setByMatrix( const osg::Matrixd& matrix )\n{\n setByInverseMatrix( osg::Matrixd::inverse(matrix) );\n}\n\nvoid TwoDimManipulator::setByInverseMatrix( const osg::Matrixd& matrix )\n{\n osg::Vec3d eye, center, up;\n matrix.getLookAt( eye, center, up );\n \n _center = center;\n if ( _node.valid() )\n _distance = abs((_node->getBound().center() - eye).z());\n else\n _distance = abs((eye - center).length());\n}\n\nvoid TwoDimManipulator::init( const osgGA::GUIEventAdapter& ea, osgGA::GUIActionAdapter& us )\n{\n const osgViewer::GraphicsWindowWin32* gw =\n dynamic_cast( ea.getGraphicsContext() );\n if ( gw && g_joystick )\n {\n DIDATAFORMAT format = c_dfDIJoystick2;\n g_joystick->SetDataFormat( &format );\n g_joystick->SetCooperativeLevel( gw->getHWND(), DISCL_EXCLUSIVE|DISCL_FOREGROUND );\n g_joystick->Acquire();\n }\n}\n\nbool TwoDimManipulator::handle( const osgGA::GUIEventAdapter& ea, osgGA::GUIActionAdapter& us )\n{\n if ( g_joystick && ea.getEventType()==osgGA::GUIEventAdapter::FRAME )\n {\n HRESULT hr = g_joystick->Poll();\n if ( FAILED(hr) ) g_joystick->Acquire();\n \n DIJOYSTATE2 state;\n hr = g_joystick->GetDeviceState( sizeof(DIJOYSTATE2), &state );\n if ( FAILED(hr) ) return false;\n \n double dx = 0.0, dy = 0.0;\n if ( state.lX==0x0000 ) dx -= 0.01;\n else if ( state.lX==0xffff ) dx += 0.01;\n \n if ( state.lY==0 ) dy -= 0.01;\n else if ( state.lY==0xffff ) dy += 0.01;\n \n if ( state.rgbButtons[0] )\n performMovementLeftMouseButton( 0.0, dx, dy );\n if ( state.rgbButtons[1] )\n performMovementRightMouseButton( 0.0, dx, dy );\n }\n return false;\n}\n\nvoid TwoDimManipulator::home( double )\n{\n if ( _node.valid() )\n {\n _center = _node->getBound().center();\n _distance = 2.5 * _node->getBound().radius();\n }\n else\n {\n _center.set( osg::Vec3() );\n _distance = 1.0;\n }\n}\n\nbool TwoDimManipulator::performMovementLeftMouseButton(\n const double eventTimeDelta, const double dx, const double dy )\n{\n _center.x() -= 100.0f * dx;\n _center.y() -= 100.0f * dy;\n return false;\n}\n\nbool TwoDimManipulator::performMovementRightMouseButton(\n const double eventTimeDelta, const double dx, const double dy )\n{\n _distance *= (1.0 + dy);\n if ( _distance<1.0 ) _distance = 1.0;\n return false;\n}\n"}
+{"text": ".\n *\n * @link http://librenms.org\n * @copyright 2018 Tony Murray\n * @author Tony Murray \n */\n\nnamespace LibreNMS\\Util;\n\nuse App\\Models\\Device;\nuse App\\Models\\Port;\nuse Auth;\nuse Carbon\\Carbon;\nuse Carbon\\CarbonImmutable;\nuse Illuminate\\Support\\Str;\nuse LibreNMS\\Config;\nuse Symfony\\Component\\HttpFoundation\\ParameterBag;\n\nclass Url\n{\n /**\n * @param Device $device\n * @param string $text\n * @param array $vars\n * @param int $start\n * @param int $end\n * @param int $escape_text\n * @param int $overlib\n * @return string\n */\n public static function deviceLink($device, $text = null, $vars = [], $start = 0, $end = 0, $escape_text = 1, $overlib = 1)\n {\n if (is_null($device)) {\n return '';\n }\n\n if (! $device->canAccess(Auth::user())) {\n return $device->displayName();\n }\n\n if (! $start) {\n $start = Carbon::now()->subDay()->timestamp;\n }\n\n if (! $end) {\n $end = Carbon::now()->timestamp;\n }\n\n if (! $text) {\n $text = $device->displayName();\n }\n\n if ($escape_text) {\n $text = htmlentities($text);\n }\n\n $class = self::deviceLinkDisplayClass($device);\n $graphs = Graph::getOverviewGraphsForDevice($device);\n $url = Url::deviceUrl($device, $vars);\n\n // beginning of overlib box contains large hostname followed by hardware & OS details\n $contents = '
';\n\n return $overlib_content;\n }\n\n /**\n * Generate minigraph image url\n *\n * @param Device $device\n * @param int $start\n * @param int $end\n * @param string $type\n * @param string $legend\n * @param int $width\n * @param int $height\n * @param string $sep\n * @param string $class\n * @param int $absolute_size\n * @return string\n */\n public static function minigraphImage($device, $start, $end, $type, $legend = 'no', $width = 275, $height = 100, $sep = '&', $class = 'minigraph-image', $absolute_size = 0)\n {\n $vars = ['device=' . $device->device_id, \"from=$start\", \"to=$end\", \"width=$width\", \"height=$height\", \"type=$type\", \"legend=$legend\", \"absolute=$absolute_size\"];\n\n return '';\n }\n\n /**\n * @param Device $device\n * @return string\n */\n private static function deviceLinkDisplayClass($device)\n {\n if ($device->disabled) {\n return 'list-device-disabled';\n }\n\n if ($device->ignore) {\n return $device->status ? 'list-device-ignored-up' : 'list-device-ignored';\n }\n\n return $device->status ? 'list-device' : 'list-device-down';\n }\n\n /**\n * Get html class for a port using ifAdminStatus and ifOperStatus\n *\n * @param Port $port\n * @return string\n */\n public static function portLinkDisplayClass($port)\n {\n if ($port->ifAdminStatus == 'down') {\n return 'interface-admindown';\n }\n\n if ($port->ifAdminStatus == 'up' && $port->ifOperStatus != 'up') {\n return 'interface-updown';\n }\n\n return 'interface-upup';\n }\n\n /**\n * Get html class for a sensor\n *\n * @param \\App\\Models\\Sensor $sensor\n * @return string\n */\n public static function sensorLinkDisplayClass($sensor)\n {\n if ($sensor->sensor_current > $sensor->sensor_limit) {\n return 'sensor-high';\n }\n\n if ($sensor->sensor_current < $sensor->sensor_limit_low) {\n return 'sensor-low';\n }\n\n return 'sensor-ok';\n }\n\n /**\n * @param string $os\n * @param string $feature\n * @param string $icon\n * @param string $dir directory to search in (images/os/ or images/logos)\n * @return string\n */\n public static function findOsImage($os, $feature, $icon = null, $dir = 'images/os/')\n {\n $possibilities = [$icon];\n\n if ($os) {\n if ($os == 'linux') {\n // first, prefer the first word of $feature\n $distro = Str::before(strtolower(trim($feature)), ' ');\n $possibilities[] = \"$distro.svg\";\n $possibilities[] = \"$distro.png\";\n\n // second, prefer the first two words of $feature (i.e. 'Red Hat' becomes 'redhat')\n if (strpos($feature, ' ') !== false) {\n $distro = Str::replaceFirst(' ', null, strtolower(trim($feature)));\n $distro = Str::before($distro, ' ');\n $possibilities[] = \"$distro.svg\";\n $possibilities[] = \"$distro.png\";\n }\n }\n $os_icon = Config::getOsSetting($os, 'icon', $os);\n $possibilities[] = \"$os_icon.svg\";\n $possibilities[] = \"$os_icon.png\";\n }\n\n foreach ($possibilities as $file) {\n if (is_file(Config::get('html_dir') . \"/$dir\" . $file)) {\n return $file;\n }\n }\n\n // fallback to the generic icon\n return 'generic.svg';\n }\n\n /**\n * parse a legacy path (one without ? or &)\n *\n * @param string $path\n * @return ParameterBag\n */\n public static function parseLegacyPath($path)\n {\n $parts = array_filter(explode('/', $path), function ($part) {\n return Str::contains($part, '=');\n });\n\n $vars = [];\n foreach ($parts as $part) {\n [$key, $value] = explode('=', $part);\n $vars[$key] = $value;\n }\n\n return new ParameterBag($vars);\n }\n\n private static function escapeBothQuotes($string)\n {\n return str_replace([\"'\", '\"'], \"\\'\", $string);\n }\n}\n"}
+{"text": "# frozen_string_literal: true\n\nrequire \"dry/schema/macros/value\"\n\nmodule Dry\n module Schema\n module Macros\n # Macro used to specify a nested schema\n #\n # @api private\n class Schema < Value\n # @api private\n def call(*args, &block)\n super(*args, &nil) unless args.empty?\n\n if args.size.equal?(1) && (op = args.first).is_a?(Dry::Logic::Operations::Abstract)\n process_operation(op)\n end\n\n if block\n schema = define(*args, &block)\n import_steps(schema)\n trace << schema.to_rule\n end\n\n self\n end\n\n private\n\n # @api private\n def process_operation(op)\n schemas = op.rules.select { |rule| rule.is_a?(Processor) }\n\n hash_schema = hash_type.schema(\n schemas.map(&:schema_dsl).map(&:types).reduce(:merge)\n )\n\n type(hash_schema)\n end\n\n # @api private\n def hash_type\n schema_dsl.resolve_type(:hash)\n end\n\n # @api private\n def define(*args, &block)\n definition = schema_dsl.new(path: schema_dsl.path, &block)\n schema = definition.call\n type_schema =\n if array_type?(parent_type)\n build_array_type(parent_type, definition.type_schema)\n elsif redefined_schema?(args)\n parent_type.schema(definition.types)\n else\n definition.type_schema\n end\n final_type = optional? ? type_schema.optional : type_schema\n\n type(final_type)\n\n if schema.filter_rules?\n schema_dsl[name].filter { hash?.then(schema(schema.filter_schema)) }\n end\n\n schema\n end\n\n # @api private\n def parent_type\n schema_dsl.types[name]\n end\n\n # @api private\n def optional?\n parent_type.optional?\n end\n\n # @api private\n def schema?\n parent_type.respond_to?(:schema)\n end\n\n # @api private\n def redefined_schema?(args)\n schema? && args.first.is_a?(Processor)\n end\n end\n end\n end\nend\n"}
+{"text": "# Contributor Code of Conduct\n\nAs contributors and maintainers of this project, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities.\n\nWe are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, age, or religion.\n\nExamples of unacceptable behavior by participants include the use of sexual language or imagery, derogatory comments or personal attacks, trolling, public or private harassment, insults, or other unprofessional conduct.\n\nProject maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. Project maintainers who do not follow the Code of Conduct may be removed from the project team.\n\nInstances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers.\n\nThis Code of Conduct is adapted from the [Contributor Covenant](http://contributor-covenant.org), version 1.0.0, available at [http://contributor-covenant.org/version/1/0/0/](http://contributor-covenant.org/version/1/0/0/)\n"}
+{"text": "\n \n"}
+{"text": "\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Symfony\\Component\\HttpKernel\\Exception;\n\n/**\n * ConflictHttpException.\n *\n * @author Ben Ramsey \n */\nclass ConflictHttpException extends HttpException\n{\n /**\n * Constructor.\n *\n * @param string $message The internal exception message\n * @param \\Exception $previous The previous exception\n * @param int $code The internal exception code\n */\n public function __construct($message = null, \\Exception $previous = null, $code = 0)\n {\n parent::__construct(409, $message, $previous, array(), $code);\n }\n}\n"}
+{"text": "/* spbcon.f -- translated by f2c (version 20061008).\n You must link the resulting object file with libf2c:\n\ton Microsoft Windows system, link with libf2c.lib;\n\ton Linux or Unix systems, link with .../path/to/libf2c.a -lm\n\tor, if you install libf2c.a in a standard place, with -lf2c -lm\n\t-- in that order, at the end of the command line, as in\n\t\tcc *.o -lf2c -lm\n\tSource for libf2c is in /netlib/f2c/libf2c.zip, e.g.,\n\n\t\thttp://www.netlib.org/f2c/libf2c.zip\n*/\n\n#include \"f2c.h\"\n#include \"blaswrap.h\"\n\n/* Table of constant values */\n\nstatic integer c__1 = 1;\n\n/* Subroutine */ int spbcon_(char *uplo, integer *n, integer *kd, real *ab, \n\tinteger *ldab, real *anorm, real *rcond, real *work, integer *iwork, \n\tinteger *info)\n{\n /* System generated locals */\n integer ab_dim1, ab_offset, i__1;\n real r__1;\n\n /* Local variables */\n integer ix, kase;\n real scale;\n extern logical lsame_(char *, char *);\n integer isave[3];\n extern /* Subroutine */ int srscl_(integer *, real *, real *, integer *);\n logical upper;\n extern /* Subroutine */ int slacn2_(integer *, real *, real *, integer *, \n\t real *, integer *, integer *);\n real scalel;\n extern doublereal slamch_(char *);\n real scaleu;\n extern /* Subroutine */ int xerbla_(char *, integer *);\n extern integer isamax_(integer *, real *, integer *);\n real ainvnm;\n extern /* Subroutine */ int slatbs_(char *, char *, char *, char *, \n\t integer *, integer *, real *, integer *, real *, real *, real *, \n\t integer *);\n char normin[1];\n real smlnum;\n\n\n/* -- LAPACK routine (version 3.2) -- */\n/* Univ. of Tennessee, Univ. of California Berkeley and NAG Ltd.. */\n/* November 2006 */\n\n/* Modified to call SLACN2 in place of SLACON, 7 Feb 03, SJH. */\n\n/* .. Scalar Arguments .. */\n/* .. */\n/* .. Array Arguments .. */\n/* .. */\n\n/* Purpose */\n/* ======= */\n\n/* SPBCON estimates the reciprocal of the condition number (in the */\n/* 1-norm) of a real symmetric positive definite band matrix using the */\n/* Cholesky factorization A = U**T*U or A = L*L**T computed by SPBTRF. */\n\n/* An estimate is obtained for norm(inv(A)), and the reciprocal of the */\n/* condition number is computed as RCOND = 1 / (ANORM * norm(inv(A))). */\n\n/* Arguments */\n/* ========= */\n\n/* UPLO (input) CHARACTER*1 */\n/* = 'U': Upper triangular factor stored in AB; */\n/* = 'L': Lower triangular factor stored in AB. */\n\n/* N (input) INTEGER */\n/* The order of the matrix A. N >= 0. */\n\n/* KD (input) INTEGER */\n/* The number of superdiagonals of the matrix A if UPLO = 'U', */\n/* or the number of subdiagonals if UPLO = 'L'. KD >= 0. */\n\n/* AB (input) REAL array, dimension (LDAB,N) */\n/* The triangular factor U or L from the Cholesky factorization */\n/* A = U**T*U or A = L*L**T of the band matrix A, stored in the */\n/* first KD+1 rows of the array. The j-th column of U or L is */\n/* stored in the j-th column of the array AB as follows: */\n/* if UPLO ='U', AB(kd+1+i-j,j) = U(i,j) for max(1,j-kd)<=i<=j; */\n/* if UPLO ='L', AB(1+i-j,j) = L(i,j) for j<=i<=min(n,j+kd). */\n\n/* LDAB (input) INTEGER */\n/* The leading dimension of the array AB. LDAB >= KD+1. */\n\n/* ANORM (input) REAL */\n/* The 1-norm (or infinity-norm) of the symmetric band matrix A. */\n\n/* RCOND (output) REAL */\n/* The reciprocal of the condition number of the matrix A, */\n/* computed as RCOND = 1/(ANORM * AINVNM), where AINVNM is an */\n/* estimate of the 1-norm of inv(A) computed in this routine. */\n\n/* WORK (workspace) REAL array, dimension (3*N) */\n\n/* IWORK (workspace) INTEGER array, dimension (N) */\n\n/* INFO (output) INTEGER */\n/* = 0: successful exit */\n/* < 0: if INFO = -i, the i-th argument had an illegal value */\n\n/* ===================================================================== */\n\n/* .. Parameters .. */\n/* .. */\n/* .. Local Scalars .. */\n/* .. */\n/* .. Local Arrays .. */\n/* .. */\n/* .. External Functions .. */\n/* .. */\n/* .. External Subroutines .. */\n/* .. */\n/* .. Intrinsic Functions .. */\n/* .. */\n/* .. Executable Statements .. */\n\n/* Test the input parameters. */\n\n /* Parameter adjustments */\n ab_dim1 = *ldab;\n ab_offset = 1 + ab_dim1;\n ab -= ab_offset;\n --work;\n --iwork;\n\n /* Function Body */\n *info = 0;\n upper = lsame_(uplo, \"U\");\n if (! upper && ! lsame_(uplo, \"L\")) {\n\t*info = -1;\n } else if (*n < 0) {\n\t*info = -2;\n } else if (*kd < 0) {\n\t*info = -3;\n } else if (*ldab < *kd + 1) {\n\t*info = -5;\n } else if (*anorm < 0.f) {\n\t*info = -6;\n }\n if (*info != 0) {\n\ti__1 = -(*info);\n\txerbla_(\"SPBCON\", &i__1);\n\treturn 0;\n }\n\n/* Quick return if possible */\n\n *rcond = 0.f;\n if (*n == 0) {\n\t*rcond = 1.f;\n\treturn 0;\n } else if (*anorm == 0.f) {\n\treturn 0;\n }\n\n smlnum = slamch_(\"Safe minimum\");\n\n/* Estimate the 1-norm of the inverse. */\n\n kase = 0;\n *(unsigned char *)normin = 'N';\nL10:\n slacn2_(n, &work[*n + 1], &work[1], &iwork[1], &ainvnm, &kase, isave);\n if (kase != 0) {\n\tif (upper) {\n\n/* Multiply by inv(U'). */\n\n\t slatbs_(\"Upper\", \"Transpose\", \"Non-unit\", normin, n, kd, &ab[\n\t\t ab_offset], ldab, &work[1], &scalel, &work[(*n << 1) + 1], \n\t\t info);\n\t *(unsigned char *)normin = 'Y';\n\n/* Multiply by inv(U). */\n\n\t slatbs_(\"Upper\", \"No transpose\", \"Non-unit\", normin, n, kd, &ab[\n\t\t ab_offset], ldab, &work[1], &scaleu, &work[(*n << 1) + 1], \n\t\t info);\n\t} else {\n\n/* Multiply by inv(L). */\n\n\t slatbs_(\"Lower\", \"No transpose\", \"Non-unit\", normin, n, kd, &ab[\n\t\t ab_offset], ldab, &work[1], &scalel, &work[(*n << 1) + 1], \n\t\t info);\n\t *(unsigned char *)normin = 'Y';\n\n/* Multiply by inv(L'). */\n\n\t slatbs_(\"Lower\", \"Transpose\", \"Non-unit\", normin, n, kd, &ab[\n\t\t ab_offset], ldab, &work[1], &scaleu, &work[(*n << 1) + 1], \n\t\t info);\n\t}\n\n/* Multiply by 1/SCALE if doing so will not cause overflow. */\n\n\tscale = scalel * scaleu;\n\tif (scale != 1.f) {\n\t ix = isamax_(n, &work[1], &c__1);\n\t if (scale < (r__1 = work[ix], dabs(r__1)) * smlnum || scale == \n\t\t 0.f) {\n\t\tgoto L20;\n\t }\n\t srscl_(n, &scale, &work[1], &c__1);\n\t}\n\tgoto L10;\n }\n\n/* Compute the estimate of the reciprocal condition number. */\n\n if (ainvnm != 0.f) {\n\t*rcond = 1.f / ainvnm / *anorm;\n }\n\nL20:\n\n return 0;\n\n/* End of SPBCON */\n\n} /* spbcon_ */\n"}
+{"text": "\n * @fixed by Boris Yurchenko \n */\n\n$PHPMAILER_LANG['authenticate'] = 'Помилка SMTP: помилка авторизації.';\n$PHPMAILER_LANG['connect_host'] = 'Помилка SMTP: не вдається під\\'єднатися до SMTP-серверу.';\n$PHPMAILER_LANG['data_not_accepted'] = 'Помилка SMTP: дані не прийнято.';\n$PHPMAILER_LANG['encoding'] = 'Невідоме кодування: ';\n$PHPMAILER_LANG['execute'] = 'Неможливо виконати команду: ';\n$PHPMAILER_LANG['file_access'] = 'Немає доступу до файлу: ';\n$PHPMAILER_LANG['file_open'] = 'Помилка файлової системи: не вдається відкрити файл: ';\n$PHPMAILER_LANG['from_failed'] = 'Невірна адреса відправника: ';\n$PHPMAILER_LANG['instantiate'] = 'Неможливо запустити функцію mail().';\n$PHPMAILER_LANG['provide_address'] = 'Будь-ласка, введіть хоча б одну email-адресу отримувача.';\n$PHPMAILER_LANG['mailer_not_supported'] = ' - поштовий сервер не підтримується.';\n$PHPMAILER_LANG['recipients_failed'] = 'Помилка SMTP: не вдалося відправлення для таких отримувачів: ';\n$PHPMAILER_LANG['empty_message'] = 'Пусте повідомлення';\n$PHPMAILER_LANG['invalid_address'] = 'Не відправлено через невірний формат email-адреси: ';\n$PHPMAILER_LANG['signing'] = 'Помилка підпису: ';\n$PHPMAILER_LANG['smtp_connect_failed'] = 'Помилка з\\'єднання з SMTP-сервером';\n$PHPMAILER_LANG['smtp_error'] = 'Помилка SMTP-сервера: ';\n$PHPMAILER_LANG['variable_set'] = 'Неможливо встановити або скинути змінну: ';\n$PHPMAILER_LANG['extension_missing'] = 'Розширення відсутнє: ';\n"}
+{"text": "\n\n\n\n\nUses of Class com.google.gwt.core.shared.GWTBridge (GWT Javadoc)\n\n\n\n\n\n\n\n
\n\n\n\n"}
+{"text": "'use strict';\n\nvar debug = require('debug')('cnpmjs.org:controllers:registry:user:update');\nvar ensurePasswordSalt = require('./common').ensurePasswordSalt;\nvar userService = require('../../../services/user');\n\n// logined before update, no need to auth user again\n// { name: 'admin',\n// password: '123123',\n// email: 'fengmk2@gmail.com',\n// _id: 'org.couchdb.user:admin',\n// type: 'user',\n// roles: [],\n// date: '2014-08-05T16:08:22.645Z',\n// _rev: '1-1a18c3d73ba42e863523a399ff3304d8',\n// _cnpm_meta:\n// { id: 14,\n// npm_user: false,\n// custom_user: false,\n// gmt_create: '2014-08-05T15:46:58.000Z',\n// gmt_modified: '2014-08-05T15:46:58.000Z',\n// admin: true,\n// scopes: [ '@cnpm', '@cnpmtest' ] } }\nmodule.exports = function* updateUser(next) {\n var name = this.params.name;\n var rev = this.params.rev;\n if (!name || !rev) {\n return yield next;\n }\n debug('update: %s, rev: %s, user.name: %s', name, rev, this.user.name);\n\n if (name !== this.user.name) {\n // must auth user first\n this.status = 401;\n const error = '[unauthorized] Name is incorrect';\n this.body = {\n error,\n reason: error,\n };\n return;\n }\n\n var body = this.request.body || {};\n var user = {\n name: body.name,\n // salt: body.salt,\n // password_sha: body.password_sha,\n email: body.email,\n ip: this.ip || '0.0.0.0',\n rev: body.rev || body._rev,\n // roles: body.roles || [],\n };\n\n debug('update user %j', body);\n\n ensurePasswordSalt(user, body);\n\n if (!body.password || !user.name || !user.salt || !user.password_sha || !user.email) {\n this.status = 422;\n const error = '[param_error] params missing, name, email or password missing';\n this.body = {\n error,\n reason: error,\n };\n return;\n }\n\n var result = yield userService.update(user);\n if (!result) {\n this.status = 409;\n const error = '[conflict] Document update conflict';\n this.body = {\n error,\n reason: error,\n };\n return;\n }\n\n this.status = 201;\n this.body = {\n ok: true,\n id: 'org.couchdb.user:' + user.name,\n rev: result.rev\n };\n};\n"}
+{"text": "module WebSync\n module Routes\n # Block most XHR (originated from javascript). This stops scripts from doing anything malicious to other documents.\n class XHR < Base\n helpers do\n # Returns the current request path\n #\n # @return [String] the current path\n def path\n request.path_info\n end\n\n # Is the route an asset?\n #\n # @return [Boolean]\n def route_assets?\n request.path_info.match %r{^/assets/}\n end\n\n # Is the route a doc upload?\n #\n # @return [Boolean]\n def route_upload?\n request.post? && path.match(%r{^/#{doc}/upload$})\n end\n\n # Is the route a doc asset?\n #\n # @return [Boolean]\n def route_doc_assets?\n request.get? && path.match(%r{^/#{doc}/assets/})\n end\n\n # Is the route an acceptable API request?\n #\n # @return [Boolean]\n def route_api?\n request.get? && path.match(%r{^/api})\n end\n end\n before do\n # Allow static assets.\n if request.xhr? && !route_assets? && !route_api?\n referer = URI.parse(request.env[\"HTTP_REFERER\"]).path\n bits = referer.split(\"/\")\n doc = bits[1] || ''\n\n # Only allow post \"upload\" and get \"assets/#{asset}\".\n if doc.length < 2 || !(route_upload? || route_assets?)\n halt 403\n end\n end\n end\n end\n end\nend\n"}
+{"text": "//\n// Generated by class-dump 3.5 (64 bit).\n//\n// class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2015 by Steve Nygard.\n//\n\n#import \n\n@class NSMutableDictionary, NSString;\n@protocol OS_dispatch_semaphore;\n\n@interface TVKeyboardHistoryService : NSObject\n{\n NSMutableDictionary *_categories;\n NSObject *_semaphore;\n NSString *_filePath;\n}\n\n+ (id)sharedService;\n- (void).cxx_destruct;\n- (void)_readCategoriesFromDiskAsynchronously;\n- (void)removeItemsInCategory:(id)arg1;\n- (void)addItem:(id)arg1 forCategory:(id)arg2;\n- (void)fetchItemsForCategory:(id)arg1 completionBlock:(CDUnknownBlockType)arg2;\n- (id)init;\n\n@end\n\n"}
+{"text": "var arrayMap = require('./_arrayMap'),\n copyArray = require('./_copyArray'),\n isArray = require('./isArray'),\n isSymbol = require('./isSymbol'),\n stringToPath = require('./_stringToPath'),\n toKey = require('./_toKey');\n\n/**\n * Converts `value` to a property path array.\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Util\n * @param {*} value The value to convert.\n * @returns {Array} Returns the new property path array.\n * @example\n *\n * _.toPath('a.b.c');\n * // => ['a', 'b', 'c']\n *\n * _.toPath('a[0].b.c');\n * // => ['a', '0', 'b', 'c']\n */\nfunction toPath(value) {\n if (isArray(value)) {\n return arrayMap(value, toKey);\n }\n return isSymbol(value) ? [value] : copyArray(stringToPath(value));\n}\n\nmodule.exports = toPath;\n"}
+{"text": "\"\"\"\nDeepSlide\nContains all hyperparameters for the entire repository.\n\nAuthors: Jason Wei, Behnaz Abdollahi, Saeed Hassanpour\n\"\"\"\n\nimport argparse\nfrom pathlib import Path\n\nimport torch\n\nfrom compute_stats import compute_stats\nfrom utils import (get_classes, get_log_csv_name)\n\n# Source: https://stackoverflow.com/questions/12151306/argparse-way-to-include-default-values-in-help\nparser = argparse.ArgumentParser(\n description=\"DeepSlide\",\n formatter_class=argparse.ArgumentDefaultsHelpFormatter)\n\n###########################################\n# USER INPUTS #\n###########################################\n# Input folders for training images.\n# Must contain subfolders of images labelled by class.\n# If your two classes are 'a' and 'n', you must have a/*.jpg with the images in class a and\n# n/*.jpg with the images in class n.\nparser.add_argument(\n \"--all_wsi\",\n type=Path,\n default=Path(\"all_wsi\"),\n help=\"Location of the WSI organized in subfolders by class\")\n# For splitting into validation set.\nparser.add_argument(\"--val_wsi_per_class\",\n type=int,\n default=20,\n help=\"Number of WSI per class to use in validation set\")\n# For splitting into testing set, remaining images used in train.\nparser.add_argument(\"--test_wsi_per_class\",\n type=int,\n default=30,\n help=\"Number of WSI per class to use in test set\")\n# When splitting, do you want to move WSI or copy them?\nparser.add_argument(\n \"--keep_orig_copy\",\n type=bool,\n default=True,\n help=\n \"Whether to move or copy the WSI when splitting into training, validation, and test sets\"\n)\n\n#######################################\n# GENERAL #\n#######################################\n# Number of processes to use.\nparser.add_argument(\"--num_workers\",\n type=int,\n default=8,\n help=\"Number of workers to use for IO\")\n# Default shape for ResNet in PyTorch.\nparser.add_argument(\"--patch_size\",\n type=int,\n default=224,\n help=\"Size of the patches extracted from the WSI\")\n\n##########################################\n# DATA SPLIT #\n##########################################\n# The names of your to-be folders.\nparser.add_argument(\"--wsi_train\",\n type=Path,\n default=Path(\"wsi_train\"),\n help=\"Location to be created to store WSI for training\")\nparser.add_argument(\"--wsi_val\",\n type=Path,\n default=Path(\"wsi_val\"),\n help=\"Location to be created to store WSI for validation\")\nparser.add_argument(\"--wsi_test\",\n type=Path,\n default=Path(\"wsi_test\"),\n help=\"Location to be created to store WSI for testing\")\n\n# Where the CSV file labels will go.\nparser.add_argument(\"--labels_train\",\n type=Path,\n default=Path(\"labels_train.csv\"),\n help=\"Location to store the CSV file labels for training\")\nparser.add_argument(\n \"--labels_val\",\n type=Path,\n default=Path(\"labels_val.csv\"),\n help=\"Location to store the CSV file labels for validation\")\nparser.add_argument(\"--labels_test\",\n type=Path,\n default=Path(\"labels_test.csv\"),\n help=\"Location to store the CSV file labels for testing\")\n\n###############################################################\n# PROCESSING AND PATCH GENERATION #\n###############################################################\n# This is the input for model training, automatically built.\nparser.add_argument(\n \"--train_folder\",\n type=Path,\n default=Path(\"train_folder\"),\n help=\"Location of the automatically built training input folder\")\n\n# Folders of patches by WSI in training set, used for finding training accuracy at WSI level.\nparser.add_argument(\n \"--patches_eval_train\",\n type=Path,\n default=Path(\"patches_eval_train\"),\n help=\n \"Folders of patches by WSI in training set, used for finding training accuracy at WSI level\"\n)\n# Folders of patches by WSI in validation set, used for finding validation accuracy at WSI level.\nparser.add_argument(\n \"--patches_eval_val\",\n type=Path,\n default=Path(\"patches_eval_val\"),\n help=\n \"Folders of patches by WSI in validation set, used for finding validation accuracy at WSI level\"\n)\n# Folders of patches by WSI in test set, used for finding test accuracy at WSI level.\nparser.add_argument(\n \"--patches_eval_test\",\n type=Path,\n default=Path(\"patches_eval_test\"),\n help=\n \"Folders of patches by WSI in testing set, used for finding test accuracy at WSI level\"\n)\n\n# Target number of training patches per class.\nparser.add_argument(\"--num_train_per_class\",\n type=int,\n default=80000,\n help=\"Target number of training samples per class\")\n\n# Only looks for purple images and filters whitespace.\nparser.add_argument(\n \"--type_histopath\",\n type=bool,\n default=True,\n help=\"Only look for purple histopathology images and filter whitespace\")\n\n# Number of purple points for region to be considered purple.\nparser.add_argument(\n \"--purple_threshold\",\n type=int,\n default=100,\n help=\"Number of purple points for region to be considered purple.\")\n\n# Scalar to use for reducing image to check for purple.\nparser.add_argument(\n \"--purple_scale_size\",\n type=int,\n default=15,\n help=\"Scalar to use for reducing image to check for purple.\")\n\n# Sliding window overlap factor (for testing).\n# For generating patches during the training phase, we slide a window to overlap by some factor.\n# Must be an integer. 1 means no overlap, 2 means overlap by 1/2, 3 means overlap by 1/3.\n# Recommend 2 for very high resolution, 3 for medium, and 5 not extremely high resolution images.\nparser.add_argument(\"--slide_overlap\",\n type=int,\n default=3,\n help=\"Sliding window overlap factor for the testing phase\")\n\n# Overlap factor to use when generating validation patches.\nparser.add_argument(\n \"--gen_val_patches_overlap_factor\",\n type=float,\n default=1.5,\n help=\"Overlap factor to use when generating validation patches.\")\n\nparser.add_argument(\"--image_ext\",\n type=str,\n default=\"jpg\",\n help=\"Image extension for saving patches\")\n\n# Produce patches for testing and validation by folder. The code only works\n# for now when testing and validation are split by folder.\nparser.add_argument(\n \"--by_folder\",\n type=bool,\n default=True,\n help=\"Produce patches for testing and validation by folder.\")\n\n#########################################\n# TRANSFORM #\n#########################################\nparser.add_argument(\n \"--color_jitter_brightness\",\n type=float,\n default=0.5,\n help=\n \"Random brightness jitter to use in data augmentation for ColorJitter() transform\"\n)\nparser.add_argument(\n \"--color_jitter_contrast\",\n type=float,\n default=0.5,\n help=\n \"Random contrast jitter to use in data augmentation for ColorJitter() transform\"\n)\nparser.add_argument(\n \"--color_jitter_saturation\",\n type=float,\n default=0.5,\n help=\n \"Random saturation jitter to use in data augmentation for ColorJitter() transform\"\n)\nparser.add_argument(\n \"--color_jitter_hue\",\n type=float,\n default=0.2,\n help=\n \"Random hue jitter to use in data augmentation for ColorJitter() transform\"\n)\n\n########################################\n# TRAINING #\n########################################\n# Model hyperparameters.\nparser.add_argument(\"--num_epochs\",\n type=int,\n default=20,\n help=\"Number of epochs for training\")\n# Choose from [18, 34, 50, 101, 152].\nparser.add_argument(\n \"--num_layers\",\n type=int,\n default=18,\n help=\n \"Number of layers to use in the ResNet model from [18, 34, 50, 101, 152]\")\nparser.add_argument(\"--learning_rate\",\n type=float,\n default=0.001,\n help=\"Learning rate to use for gradient descent\")\nparser.add_argument(\"--batch_size\",\n type=int,\n default=16,\n help=\"Mini-batch size to use for training\")\nparser.add_argument(\"--weight_decay\",\n type=float,\n default=1e-4,\n help=\"Weight decay (L2 penalty) to use in optimizer\")\nparser.add_argument(\"--learning_rate_decay\",\n type=float,\n default=0.85,\n help=\"Learning rate decay amount per epoch\")\nparser.add_argument(\"--resume_checkpoint\",\n type=bool,\n default=False,\n help=\"Resume model from checkpoint file\")\nparser.add_argument(\"--save_interval\",\n type=int,\n default=1,\n help=\"Number of epochs between saving checkpoints\")\n# Where models are saved.\nparser.add_argument(\"--checkpoints_folder\",\n type=Path,\n default=Path(\"checkpoints\"),\n help=\"Directory to save model checkpoints to\")\n\n# Name of checkpoint file to load from.\nparser.add_argument(\n \"--checkpoint_file\",\n type=Path,\n default=Path(\"xyz.pt\"),\n help=\"Checkpoint file to load if resume_checkpoint_path is True\")\n# ImageNet pretrain?\nparser.add_argument(\"--pretrain\",\n type=bool,\n default=False,\n help=\"Use pretrained ResNet weights\")\nparser.add_argument(\"--log_folder\",\n type=Path,\n default=Path(\"logs\"),\n help=\"Directory to save logs to\")\n\n##########################################\n# PREDICTION #\n##########################################\n# Selecting the best model.\n# Automatically select the model with the highest validation accuracy.\nparser.add_argument(\n \"--auto_select\",\n type=bool,\n default=True,\n help=\"Automatically select the model with the highest validation accuracy\")\n# Where to put the training prediction CSV files.\nparser.add_argument(\n \"--preds_train\",\n type=Path,\n default=Path(\"preds_train\"),\n help=\"Directory for outputting training prediction CSV files\")\n# Where to put the validation prediction CSV files.\nparser.add_argument(\n \"--preds_val\",\n type=Path,\n default=Path(\"preds_val\"),\n help=\"Directory for outputting validation prediction CSV files\")\n# Where to put the testing prediction CSV files.\nparser.add_argument(\n \"--preds_test\",\n type=Path,\n default=Path(\"preds_test\"),\n help=\"Directory for outputting testing prediction CSV files\")\n\n##########################################\n# EVALUATION #\n##########################################\n# Folder for outputting WSI predictions based on each threshold.\nparser.add_argument(\n \"--inference_train\",\n type=Path,\n default=Path(\"inference_train\"),\n help=\n \"Folder for outputting WSI training predictions based on each threshold\")\nparser.add_argument(\n \"--inference_val\",\n type=Path,\n default=Path(\"inference_val\"),\n help=\n \"Folder for outputting WSI validation predictions based on each threshold\")\nparser.add_argument(\n \"--inference_test\",\n type=Path,\n default=Path(\"inference_test\"),\n help=\"Folder for outputting WSI testing predictions based on each threshold\"\n)\n\n# For visualization.\nparser.add_argument(\n \"--vis_train\",\n type=Path,\n default=Path(\"vis_train\"),\n help=\"Folder for outputting the WSI training prediction visualizations\")\nparser.add_argument(\n \"--vis_val\",\n type=Path,\n default=Path(\"vis_val\"),\n help=\"Folder for outputting the WSI validation prediction visualizations\")\nparser.add_argument(\n \"--vis_test\",\n type=Path,\n default=Path(\"vis_test\"),\n help=\"Folder for outputting the WSI testing prediction visualizations\")\n\n#######################################################\n# ARGUMENTS FROM ARGPARSE #\n#######################################################\nargs = parser.parse_args()\n\n# Device to use for PyTorch code.\ndevice = torch.device(\"cuda:0\" if torch.cuda.is_available() else \"cpu\")\n\n# Automatically read in the classes.\nclasses = get_classes(folder=args.all_wsi)\nnum_classes = len(classes)\n\n# This is the input for model training, automatically built.\ntrain_patches = args.train_folder.joinpath(\"train\")\nval_patches = args.train_folder.joinpath(\"val\")\n\n# Compute the mean and standard deviation for the given set of WSI for normalization.\npath_mean, path_std = compute_stats(folderpath=args.all_wsi,\n image_ext=args.image_ext)\n\n# Only used is resume_checkpoint is True.\nresume_checkpoint_path = args.checkpoints_folder.joinpath(args.checkpoint_file)\n\n# Named with date and time.\nlog_csv = get_log_csv_name(log_folder=args.log_folder)\n\n# Does nothing if auto_select is True.\neval_model = args.checkpoints_folder.joinpath(args.checkpoint_file)\n\n# Find the best threshold for filtering noise (discard patches with a confidence less than this threshold).\nthreshold_search = (0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9)\n\n# For visualization.\n# This order is the same order as your sorted classes.\ncolors = (\"red\", \"white\", \"blue\", \"green\", \"purple\", \"orange\", \"black\", \"pink\",\n \"yellow\")\n\n# Print the configuration.\n# Source: https://stackoverflow.com/questions/44689546/how-to-print-out-a-dictionary-nicely-in-python/44689627\n# chr(10) and chr(9) are ways of going around the f-string limitation of\n# not allowing the '\\' character inside.\nprint(f\"############### CONFIGURATION ###############\\n\"\n f\"{chr(10).join(f'{k}:{chr(9)}{v}' for k, v in vars(args).items())}\\n\"\n f\"device:\\t{device}\\n\"\n f\"classes:\\t{classes}\\n\"\n f\"num_classes:\\t{num_classes}\\n\"\n f\"train_patches:\\t{train_patches}\\n\"\n f\"val_patches:\\t{val_patches}\\n\"\n f\"path_mean:\\t{path_mean}\\n\"\n f\"path_std:\\t{path_std}\\n\"\n f\"resume_checkpoint_path:\\t{resume_checkpoint_path}\\n\"\n f\"log_csv:\\t{log_csv}\\n\"\n f\"eval_model:\\t{eval_model}\\n\"\n f\"threshold_search:\\t{threshold_search}\\n\"\n f\"colors:\\t{colors}\\n\"\n f\"\\n#####################################################\\n\\n\\n\")\n"}
+{"text": "\n\n\n\n\n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n\n\n"}
+{"text": "# This file is automatically generated by Android Tools.\n# Do not modify this file -- YOUR CHANGES WILL BE ERASED!\n#\n# This file must be checked in Version Control Systems.\n#\n# To customize properties used by the Ant build system use,\n# \"build.properties\", and override values to adapt the script to your\n# project structure.\n\n# Project target.\ntarget=android-8\n"}
+{"text": "/*\n * Copyright (C) 2020 Jakub Kruszona-Zawadzki, Core Technology Sp. z o.o.\n * \n * This file is part of MooseFS.\n * \n * MooseFS is free software; you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, version 2 (only).\n * \n * MooseFS is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU General Public License for more details.\n * \n * You should have received a copy of the GNU General Public License\n * along with MooseFS; if not, write to the Free Software\n * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02111-1301, USA\n * or visit http://www.gnu.org/licenses/gpl-2.0.html\n */\n\n#ifndef _DENTRY_INVALIDATOR_H_\n#define _DENTRY_INVALIDATOR_H_\n\n#include \n\nvoid dinval_add(uint32_t parent,uint8_t nleng,const uint8_t *name,uint32_t inode);\nvoid dinval_remove(uint32_t parent,uint8_t nleng,const uint8_t *name);\nvoid dinval_init(double timeout);\n\n#endif\n"}
+{"text": "[Return To Repository](https://github.com/deathbybandaid/piholeparser/)\n[Return To Main](https://github.com/deathbybandaid/piholeparser/blob/master/RecentRunLogs/Mainlog.md)\n[Go Up One Level](https://github.com/deathbybandaid/piholeparser/blob/master/RecentRunLogs/TopLevelScripts/30-Processing-External-Blacklists.md)\n____________________________________\n# PeterLowes\n## Setting Temporary Parsing Variables\n## Checking For Existing Mirror File\n## Checking For Github Mirror File\n## Checking For Existing Parsed File\n## Checking If Multiple Sources\n## The Source In The File To Download Is\n## Checking For HTTPS\n## Pinging Source To Check Host Availability\n## Checking File Header\n## Determining Host Availability\n## Checking If List Updated Online\n"}
+{"text": "# Controller for the Location model\nclass LocationsController < ContentController\n autocomplete :location, :name\n\n private\n\n def content_param_list\n [\n :universe_id, :user_id, :name, :type_of, :description, #:map,\n :population, :currency, :motto, :language,\n :area, :crops, :located_at, :established_year, :notable_wars,\n :notes, :private_notes, :privacy, :laws, :climate, :founding_story,\n :sports,\n\n # Relations\n #todo might be able to inject/reflect these from :relates concern implementation\n #todo why are capital/largest/notable relationships doubled up here? \n custom_attribute_values: [:name, :value],\n location_leaderships_attributes: [:id, :leader_id, :_destroy],\n capital_cities_relationships_attributes: [:id, :capital_city_id, :_destroy],\n largest_cities_relationships_attributes: [:id, :largest_city_id, :_destroy],\n notable_cities_relationships_attributes: [:id, :notable_city_id, :_destroy],\n location_languageships_attributes: [:id, :language_id, :_destroy],\n location_capital_towns_attributes: [:id, :capital_town_id, :_destroy],\n location_largest_towns_attributes: [:id, :largest_town_id, :_destroy],\n location_notable_towns_attributes: [:id, :notable_town_id, :_destroy],\n location_landmarks_attributes: [:id, :landmark_id, :_destroy]\n ]\n end\nend\n"}
+{"text": "0:01 Hello and welcome to the course Write Pythonic Code Like a Seasoned Developer.\n0:04 My name is Michael Kennedy and we are going to be on this journey together\n0:07 to help you write more readable, more efficient and more natural Python code.\n0:13 So what is Pythonic code anyway?\n0:16 When developers are new to Python, they often hear this phrase Pythonic\n0:20 and they ask what exactly does that mean?\n0:23 In any language, there is a way of doing things naturally\n0:26 and a way that kind of fight the conventions of the language.\n0:30 When you work naturally with the language features and the runtime features,\n0:33 this is called idiomatic code,\n0:35 and in Python when you write idiomatic Python we call this Pythonic code.\n0:40 One of the challenges in Python is it's super easy to get started\n0:43 and kind of learn the basics and start writing programs\n0:46 before you really master the language.\n0:48 And what that often means is people come in from other languages\n0:51 like C++ or Java or something like that,\n0:53 they will take algorithms or code that they have and bring it over to Python\n0:57 and they will just tweak the syntax until it executes in Python,\n1:00 but this often uses the language features of - let's just focus on Java.\n1:04 In Python there is often a more concise, more natural way of doing things,\n1:09 and when you look at code that came over from Java,\n1:11 we'll just take a really simple example-\n1:13 if you have a class and the class has a getValue() and setValue(),\n1:17 because in Java that is typically the way you do encapsulation,\n1:20 and people bring those classes in this code over and migrate it to Python,\n1:24 they might still have this weird getter/setter type of code.\n1:28 And that would look completely bizzare in Python\n1:31 because we have properties for example.\n1:33 So we are going to look at this idea of Pythonic code,\n1:36 now, it's pretty easy to understand but it turns out to be fairly hard to make concrete,\n1:40 you'll see a lot of blog posts and things of people trying to put structure\n1:44 or examples behind this concept of Pythonic code.\n1:48 We are going to go through over 50 examples of things I consider Pythonic\n1:53 and by the end you'll have many examples,\n1:56 patterns and so on to help you have a solid grip on what Pythonic code is.\n2:02 So what is Pythonic code and why does it matter?\n2:05 Well, when you write Pythonic code,\n2:07 you are leveraging the experience of 25 years of many thousands,\n2:10 maybe millions of developers,\n2:12 these guys and girls have worked in this language day in and day out\n2:16 for the last 25 years and they really perfected the way\n2:19 of working with classes, functions, loops, and so on,\n2:23 and when you are new especially,\n2:25 it's very helpful to just study what those folks have done and mimic that.\n2:29 When you write Pythonic code, you are writing code\n2:32 that is specifically tuned to the CPython runtime.\n2:35 The CPython interpreter and the Python language have evolved together,\n2:40 they have grown up together,\n2:42 so the idioms of the Python language are of course matched\n2:44 or paired well with the underlying runtime,\n2:47 so writing Pythonic code is an easy way\n2:50 to write code that the interpreter expects to run.\n2:54 When you write Pythonic code,\n2:56 you are writing code that is easily read and understood by Python developers.\n2:59 A Python developer can look at standard idiomatic Python\n3:03 and just glance at sections and go,\n3:05 \"oh, I see what they are doing here, I see what they are doing there, bam, bam, bam\"\n3:09 and quickly understand it.\n3:10 If instead it's some algorithm that is taken from another language with other idioms,\n3:15 the experienced developer has to read through and try to understand\n3:20 what is happening at a much lower level,\n3:23 and so your code is more readable to experienced developers\n3:27 and even if you are new will become probably more readable to you\n3:30 if you write Pythonic code.\n3:32 One of the super powers of Python is that it is a very readable\n3:36 and simple language without giving up the expressiveness of the language.\n3:40 People coming from other languages that are less simple,\n3:43 less clean and easy to work with\n3:46 will bring those programming practices or those idioms over\n3:49 and they will write code that is not as simple as it could be in Python\n3:53 even though maybe it was a simple as it could be in C.\n3:56 So when you write Pythonic code,\n3:57 you are often writing code that is simpler and cleaner\n4:00 than otherwise would be the case.\n4:02 If you are working on an open source project,\n4:04 it will be easier for other contributors to join in because like I said,\n4:08 it's easier for them to read and understand the code at a glance,\n4:11 and they will more naturally know what you would expect them to write.\n4:14 If you are working on a software team,\n4:16 it's easier to onboard new Python developers into your team\n4:20 if you are writing idiomatic code,\n4:22 because if they already know Python\n4:23 it's much easier for them to grok\n4:26 your large project."}
+{"text": "# Generated by the protocol buffer compiler. DO NOT EDIT!\n# source: data-io-param.proto\n\nimport sys\n_b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1'))\nfrom google.protobuf import descriptor as _descriptor\nfrom google.protobuf import message as _message\nfrom google.protobuf import reflection as _reflection\nfrom google.protobuf import symbol_database as _symbol_database\n# @@protoc_insertion_point(imports)\n\n_sym_db = _symbol_database.Default()\n\n\n\n\nDESCRIPTOR = _descriptor.FileDescriptor(\n name='data-io-param.proto',\n package='com.webank.ai.fate.core.mlmodel.buffer',\n syntax='proto3',\n serialized_options=_b('B\\020DataIOParamProto'),\n serialized_pb=_b('\\n\\x13\\x64\\x61ta-io-param.proto\\x12&com.webank.ai.fate.core.mlmodel.buffer\\\"\\xdc\\x02\\n\\x0cImputerParam\\x12l\\n\\x15missing_replace_value\\x18\\x01 \\x03(\\x0b\\x32M.com.webank.ai.fate.core.mlmodel.buffer.ImputerParam.MissingReplaceValueEntry\\x12h\\n\\x13missing_value_ratio\\x18\\x02 \\x03(\\x0b\\x32K.com.webank.ai.fate.core.mlmodel.buffer.ImputerParam.MissingValueRatioEntry\\x1a:\\n\\x18MissingReplaceValueEntry\\x12\\x0b\\n\\x03key\\x18\\x01 \\x01(\\t\\x12\\r\\n\\x05value\\x18\\x02 \\x01(\\t:\\x02\\x38\\x01\\x1a\\x38\\n\\x16MissingValueRatioEntry\\x12\\x0b\\n\\x03key\\x18\\x01 \\x01(\\t\\x12\\r\\n\\x05value\\x18\\x02 \\x01(\\x01:\\x02\\x38\\x01\\\"\\xdc\\x02\\n\\x0cOutlierParam\\x12l\\n\\x15outlier_replace_value\\x18\\x01 \\x03(\\x0b\\x32M.com.webank.ai.fate.core.mlmodel.buffer.OutlierParam.OutlierReplaceValueEntry\\x12h\\n\\x13outlier_value_ratio\\x18\\x02 \\x03(\\x0b\\x32K.com.webank.ai.fate.core.mlmodel.buffer.OutlierParam.OutlierValueRatioEntry\\x1a:\\n\\x18OutlierReplaceValueEntry\\x12\\x0b\\n\\x03key\\x18\\x01 \\x01(\\t\\x12\\r\\n\\x05value\\x18\\x02 \\x01(\\t:\\x02\\x38\\x01\\x1a\\x38\\n\\x16OutlierValueRatioEntry\\x12\\x0b\\n\\x03key\\x18\\x01 \\x01(\\t\\x12\\r\\n\\x05value\\x18\\x02 \\x01(\\x01:\\x02\\x38\\x01\\\"\\xdd\\x01\\n\\x0b\\x44\\x61taIOParam\\x12\\x0e\\n\\x06header\\x18\\x01 \\x03(\\t\\x12\\x10\\n\\x08sid_name\\x18\\x02 \\x01(\\t\\x12\\x12\\n\\nlabel_name\\x18\\x03 \\x01(\\t\\x12K\\n\\rimputer_param\\x18\\x04 \\x01(\\x0b\\x32\\x34.com.webank.ai.fate.core.mlmodel.buffer.ImputerParam\\x12K\\n\\routlier_param\\x18\\x05 \\x01(\\x0b\\x32\\x34.com.webank.ai.fate.core.mlmodel.buffer.OutlierParamB\\x12\\x42\\x10\\x44\\x61taIOParamProtob\\x06proto3')\n)\n\n\n\n\n_IMPUTERPARAM_MISSINGREPLACEVALUEENTRY = _descriptor.Descriptor(\n name='MissingReplaceValueEntry',\n full_name='com.webank.ai.fate.core.mlmodel.buffer.ImputerParam.MissingReplaceValueEntry',\n filename=None,\n file=DESCRIPTOR,\n containing_type=None,\n fields=[\n _descriptor.FieldDescriptor(\n name='key', full_name='com.webank.ai.fate.core.mlmodel.buffer.ImputerParam.MissingReplaceValueEntry.key', index=0,\n number=1, type=9, cpp_type=9, label=1,\n has_default_value=False, default_value=_b(\"\").decode('utf-8'),\n message_type=None, enum_type=None, containing_type=None,\n is_extension=False, extension_scope=None,\n serialized_options=None, file=DESCRIPTOR),\n _descriptor.FieldDescriptor(\n name='value', full_name='com.webank.ai.fate.core.mlmodel.buffer.ImputerParam.MissingReplaceValueEntry.value', index=1,\n number=2, type=9, cpp_type=9, label=1,\n has_default_value=False, default_value=_b(\"\").decode('utf-8'),\n message_type=None, enum_type=None, containing_type=None,\n is_extension=False, extension_scope=None,\n serialized_options=None, file=DESCRIPTOR),\n ],\n extensions=[\n ],\n nested_types=[],\n enum_types=[\n ],\n serialized_options=_b('8\\001'),\n is_extendable=False,\n syntax='proto3',\n extension_ranges=[],\n oneofs=[\n ],\n serialized_start=296,\n serialized_end=354,\n)\n\n_IMPUTERPARAM_MISSINGVALUERATIOENTRY = _descriptor.Descriptor(\n name='MissingValueRatioEntry',\n full_name='com.webank.ai.fate.core.mlmodel.buffer.ImputerParam.MissingValueRatioEntry',\n filename=None,\n file=DESCRIPTOR,\n containing_type=None,\n fields=[\n _descriptor.FieldDescriptor(\n name='key', full_name='com.webank.ai.fate.core.mlmodel.buffer.ImputerParam.MissingValueRatioEntry.key', index=0,\n number=1, type=9, cpp_type=9, label=1,\n has_default_value=False, default_value=_b(\"\").decode('utf-8'),\n message_type=None, enum_type=None, containing_type=None,\n is_extension=False, extension_scope=None,\n serialized_options=None, file=DESCRIPTOR),\n _descriptor.FieldDescriptor(\n name='value', full_name='com.webank.ai.fate.core.mlmodel.buffer.ImputerParam.MissingValueRatioEntry.value', index=1,\n number=2, type=1, cpp_type=5, label=1,\n has_default_value=False, default_value=float(0),\n message_type=None, enum_type=None, containing_type=None,\n is_extension=False, extension_scope=None,\n serialized_options=None, file=DESCRIPTOR),\n ],\n extensions=[\n ],\n nested_types=[],\n enum_types=[\n ],\n serialized_options=_b('8\\001'),\n is_extendable=False,\n syntax='proto3',\n extension_ranges=[],\n oneofs=[\n ],\n serialized_start=356,\n serialized_end=412,\n)\n\n_IMPUTERPARAM = _descriptor.Descriptor(\n name='ImputerParam',\n full_name='com.webank.ai.fate.core.mlmodel.buffer.ImputerParam',\n filename=None,\n file=DESCRIPTOR,\n containing_type=None,\n fields=[\n _descriptor.FieldDescriptor(\n name='missing_replace_value', full_name='com.webank.ai.fate.core.mlmodel.buffer.ImputerParam.missing_replace_value', index=0,\n number=1, type=11, cpp_type=10, label=3,\n has_default_value=False, default_value=[],\n message_type=None, enum_type=None, containing_type=None,\n is_extension=False, extension_scope=None,\n serialized_options=None, file=DESCRIPTOR),\n _descriptor.FieldDescriptor(\n name='missing_value_ratio', full_name='com.webank.ai.fate.core.mlmodel.buffer.ImputerParam.missing_value_ratio', index=1,\n number=2, type=11, cpp_type=10, label=3,\n has_default_value=False, default_value=[],\n message_type=None, enum_type=None, containing_type=None,\n is_extension=False, extension_scope=None,\n serialized_options=None, file=DESCRIPTOR),\n ],\n extensions=[\n ],\n nested_types=[_IMPUTERPARAM_MISSINGREPLACEVALUEENTRY, _IMPUTERPARAM_MISSINGVALUERATIOENTRY, ],\n enum_types=[\n ],\n serialized_options=None,\n is_extendable=False,\n syntax='proto3',\n extension_ranges=[],\n oneofs=[\n ],\n serialized_start=64,\n serialized_end=412,\n)\n\n\n_OUTLIERPARAM_OUTLIERREPLACEVALUEENTRY = _descriptor.Descriptor(\n name='OutlierReplaceValueEntry',\n full_name='com.webank.ai.fate.core.mlmodel.buffer.OutlierParam.OutlierReplaceValueEntry',\n filename=None,\n file=DESCRIPTOR,\n containing_type=None,\n fields=[\n _descriptor.FieldDescriptor(\n name='key', full_name='com.webank.ai.fate.core.mlmodel.buffer.OutlierParam.OutlierReplaceValueEntry.key', index=0,\n number=1, type=9, cpp_type=9, label=1,\n has_default_value=False, default_value=_b(\"\").decode('utf-8'),\n message_type=None, enum_type=None, containing_type=None,\n is_extension=False, extension_scope=None,\n serialized_options=None, file=DESCRIPTOR),\n _descriptor.FieldDescriptor(\n name='value', full_name='com.webank.ai.fate.core.mlmodel.buffer.OutlierParam.OutlierReplaceValueEntry.value', index=1,\n number=2, type=9, cpp_type=9, label=1,\n has_default_value=False, default_value=_b(\"\").decode('utf-8'),\n message_type=None, enum_type=None, containing_type=None,\n is_extension=False, extension_scope=None,\n serialized_options=None, file=DESCRIPTOR),\n ],\n extensions=[\n ],\n nested_types=[],\n enum_types=[\n ],\n serialized_options=_b('8\\001'),\n is_extendable=False,\n syntax='proto3',\n extension_ranges=[],\n oneofs=[\n ],\n serialized_start=647,\n serialized_end=705,\n)\n\n_OUTLIERPARAM_OUTLIERVALUERATIOENTRY = _descriptor.Descriptor(\n name='OutlierValueRatioEntry',\n full_name='com.webank.ai.fate.core.mlmodel.buffer.OutlierParam.OutlierValueRatioEntry',\n filename=None,\n file=DESCRIPTOR,\n containing_type=None,\n fields=[\n _descriptor.FieldDescriptor(\n name='key', full_name='com.webank.ai.fate.core.mlmodel.buffer.OutlierParam.OutlierValueRatioEntry.key', index=0,\n number=1, type=9, cpp_type=9, label=1,\n has_default_value=False, default_value=_b(\"\").decode('utf-8'),\n message_type=None, enum_type=None, containing_type=None,\n is_extension=False, extension_scope=None,\n serialized_options=None, file=DESCRIPTOR),\n _descriptor.FieldDescriptor(\n name='value', full_name='com.webank.ai.fate.core.mlmodel.buffer.OutlierParam.OutlierValueRatioEntry.value', index=1,\n number=2, type=1, cpp_type=5, label=1,\n has_default_value=False, default_value=float(0),\n message_type=None, enum_type=None, containing_type=None,\n is_extension=False, extension_scope=None,\n serialized_options=None, file=DESCRIPTOR),\n ],\n extensions=[\n ],\n nested_types=[],\n enum_types=[\n ],\n serialized_options=_b('8\\001'),\n is_extendable=False,\n syntax='proto3',\n extension_ranges=[],\n oneofs=[\n ],\n serialized_start=707,\n serialized_end=763,\n)\n\n_OUTLIERPARAM = _descriptor.Descriptor(\n name='OutlierParam',\n full_name='com.webank.ai.fate.core.mlmodel.buffer.OutlierParam',\n filename=None,\n file=DESCRIPTOR,\n containing_type=None,\n fields=[\n _descriptor.FieldDescriptor(\n name='outlier_replace_value', full_name='com.webank.ai.fate.core.mlmodel.buffer.OutlierParam.outlier_replace_value', index=0,\n number=1, type=11, cpp_type=10, label=3,\n has_default_value=False, default_value=[],\n message_type=None, enum_type=None, containing_type=None,\n is_extension=False, extension_scope=None,\n serialized_options=None, file=DESCRIPTOR),\n _descriptor.FieldDescriptor(\n name='outlier_value_ratio', full_name='com.webank.ai.fate.core.mlmodel.buffer.OutlierParam.outlier_value_ratio', index=1,\n number=2, type=11, cpp_type=10, label=3,\n has_default_value=False, default_value=[],\n message_type=None, enum_type=None, containing_type=None,\n is_extension=False, extension_scope=None,\n serialized_options=None, file=DESCRIPTOR),\n ],\n extensions=[\n ],\n nested_types=[_OUTLIERPARAM_OUTLIERREPLACEVALUEENTRY, _OUTLIERPARAM_OUTLIERVALUERATIOENTRY, ],\n enum_types=[\n ],\n serialized_options=None,\n is_extendable=False,\n syntax='proto3',\n extension_ranges=[],\n oneofs=[\n ],\n serialized_start=415,\n serialized_end=763,\n)\n\n\n_DATAIOPARAM = _descriptor.Descriptor(\n name='DataIOParam',\n full_name='com.webank.ai.fate.core.mlmodel.buffer.DataIOParam',\n filename=None,\n file=DESCRIPTOR,\n containing_type=None,\n fields=[\n _descriptor.FieldDescriptor(\n name='header', full_name='com.webank.ai.fate.core.mlmodel.buffer.DataIOParam.header', index=0,\n number=1, type=9, cpp_type=9, label=3,\n has_default_value=False, default_value=[],\n message_type=None, enum_type=None, containing_type=None,\n is_extension=False, extension_scope=None,\n serialized_options=None, file=DESCRIPTOR),\n _descriptor.FieldDescriptor(\n name='sid_name', full_name='com.webank.ai.fate.core.mlmodel.buffer.DataIOParam.sid_name', index=1,\n number=2, type=9, cpp_type=9, label=1,\n has_default_value=False, default_value=_b(\"\").decode('utf-8'),\n message_type=None, enum_type=None, containing_type=None,\n is_extension=False, extension_scope=None,\n serialized_options=None, file=DESCRIPTOR),\n _descriptor.FieldDescriptor(\n name='label_name', full_name='com.webank.ai.fate.core.mlmodel.buffer.DataIOParam.label_name', index=2,\n number=3, type=9, cpp_type=9, label=1,\n has_default_value=False, default_value=_b(\"\").decode('utf-8'),\n message_type=None, enum_type=None, containing_type=None,\n is_extension=False, extension_scope=None,\n serialized_options=None, file=DESCRIPTOR),\n _descriptor.FieldDescriptor(\n name='imputer_param', full_name='com.webank.ai.fate.core.mlmodel.buffer.DataIOParam.imputer_param', index=3,\n number=4, type=11, cpp_type=10, label=1,\n has_default_value=False, default_value=None,\n message_type=None, enum_type=None, containing_type=None,\n is_extension=False, extension_scope=None,\n serialized_options=None, file=DESCRIPTOR),\n _descriptor.FieldDescriptor(\n name='outlier_param', full_name='com.webank.ai.fate.core.mlmodel.buffer.DataIOParam.outlier_param', index=4,\n number=5, type=11, cpp_type=10, label=1,\n has_default_value=False, default_value=None,\n message_type=None, enum_type=None, containing_type=None,\n is_extension=False, extension_scope=None,\n serialized_options=None, file=DESCRIPTOR),\n ],\n extensions=[\n ],\n nested_types=[],\n enum_types=[\n ],\n serialized_options=None,\n is_extendable=False,\n syntax='proto3',\n extension_ranges=[],\n oneofs=[\n ],\n serialized_start=766,\n serialized_end=987,\n)\n\n_IMPUTERPARAM_MISSINGREPLACEVALUEENTRY.containing_type = _IMPUTERPARAM\n_IMPUTERPARAM_MISSINGVALUERATIOENTRY.containing_type = _IMPUTERPARAM\n_IMPUTERPARAM.fields_by_name['missing_replace_value'].message_type = _IMPUTERPARAM_MISSINGREPLACEVALUEENTRY\n_IMPUTERPARAM.fields_by_name['missing_value_ratio'].message_type = _IMPUTERPARAM_MISSINGVALUERATIOENTRY\n_OUTLIERPARAM_OUTLIERREPLACEVALUEENTRY.containing_type = _OUTLIERPARAM\n_OUTLIERPARAM_OUTLIERVALUERATIOENTRY.containing_type = _OUTLIERPARAM\n_OUTLIERPARAM.fields_by_name['outlier_replace_value'].message_type = _OUTLIERPARAM_OUTLIERREPLACEVALUEENTRY\n_OUTLIERPARAM.fields_by_name['outlier_value_ratio'].message_type = _OUTLIERPARAM_OUTLIERVALUERATIOENTRY\n_DATAIOPARAM.fields_by_name['imputer_param'].message_type = _IMPUTERPARAM\n_DATAIOPARAM.fields_by_name['outlier_param'].message_type = _OUTLIERPARAM\nDESCRIPTOR.message_types_by_name['ImputerParam'] = _IMPUTERPARAM\nDESCRIPTOR.message_types_by_name['OutlierParam'] = _OUTLIERPARAM\nDESCRIPTOR.message_types_by_name['DataIOParam'] = _DATAIOPARAM\n_sym_db.RegisterFileDescriptor(DESCRIPTOR)\n\nImputerParam = _reflection.GeneratedProtocolMessageType('ImputerParam', (_message.Message,), dict(\n\n MissingReplaceValueEntry = _reflection.GeneratedProtocolMessageType('MissingReplaceValueEntry', (_message.Message,), dict(\n DESCRIPTOR = _IMPUTERPARAM_MISSINGREPLACEVALUEENTRY,\n __module__ = 'data_io_param_pb2'\n # @@protoc_insertion_point(class_scope:com.webank.ai.fate.core.mlmodel.buffer.ImputerParam.MissingReplaceValueEntry)\n ))\n ,\n\n MissingValueRatioEntry = _reflection.GeneratedProtocolMessageType('MissingValueRatioEntry', (_message.Message,), dict(\n DESCRIPTOR = _IMPUTERPARAM_MISSINGVALUERATIOENTRY,\n __module__ = 'data_io_param_pb2'\n # @@protoc_insertion_point(class_scope:com.webank.ai.fate.core.mlmodel.buffer.ImputerParam.MissingValueRatioEntry)\n ))\n ,\n DESCRIPTOR = _IMPUTERPARAM,\n __module__ = 'data_io_param_pb2'\n # @@protoc_insertion_point(class_scope:com.webank.ai.fate.core.mlmodel.buffer.ImputerParam)\n ))\n_sym_db.RegisterMessage(ImputerParam)\n_sym_db.RegisterMessage(ImputerParam.MissingReplaceValueEntry)\n_sym_db.RegisterMessage(ImputerParam.MissingValueRatioEntry)\n\nOutlierParam = _reflection.GeneratedProtocolMessageType('OutlierParam', (_message.Message,), dict(\n\n OutlierReplaceValueEntry = _reflection.GeneratedProtocolMessageType('OutlierReplaceValueEntry', (_message.Message,), dict(\n DESCRIPTOR = _OUTLIERPARAM_OUTLIERREPLACEVALUEENTRY,\n __module__ = 'data_io_param_pb2'\n # @@protoc_insertion_point(class_scope:com.webank.ai.fate.core.mlmodel.buffer.OutlierParam.OutlierReplaceValueEntry)\n ))\n ,\n\n OutlierValueRatioEntry = _reflection.GeneratedProtocolMessageType('OutlierValueRatioEntry', (_message.Message,), dict(\n DESCRIPTOR = _OUTLIERPARAM_OUTLIERVALUERATIOENTRY,\n __module__ = 'data_io_param_pb2'\n # @@protoc_insertion_point(class_scope:com.webank.ai.fate.core.mlmodel.buffer.OutlierParam.OutlierValueRatioEntry)\n ))\n ,\n DESCRIPTOR = _OUTLIERPARAM,\n __module__ = 'data_io_param_pb2'\n # @@protoc_insertion_point(class_scope:com.webank.ai.fate.core.mlmodel.buffer.OutlierParam)\n ))\n_sym_db.RegisterMessage(OutlierParam)\n_sym_db.RegisterMessage(OutlierParam.OutlierReplaceValueEntry)\n_sym_db.RegisterMessage(OutlierParam.OutlierValueRatioEntry)\n\nDataIOParam = _reflection.GeneratedProtocolMessageType('DataIOParam', (_message.Message,), dict(\n DESCRIPTOR = _DATAIOPARAM,\n __module__ = 'data_io_param_pb2'\n # @@protoc_insertion_point(class_scope:com.webank.ai.fate.core.mlmodel.buffer.DataIOParam)\n ))\n_sym_db.RegisterMessage(DataIOParam)\n\n\nDESCRIPTOR._options = None\n_IMPUTERPARAM_MISSINGREPLACEVALUEENTRY._options = None\n_IMPUTERPARAM_MISSINGVALUERATIOENTRY._options = None\n_OUTLIERPARAM_OUTLIERREPLACEVALUEENTRY._options = None\n_OUTLIERPARAM_OUTLIERVALUERATIOENTRY._options = None\n# @@protoc_insertion_point(module_scope)\n"}
+{"text": "mkdir train\n\nfor i in `ls ./train_data`\ndo\n cat train_data/$i | python get_slot_data.py > train/$i\ndone\n"}
+{"text": "[antoinepairet]: https://github.com/antoinepairet\n[jasonsims]: https://github.com/jasonsims\n[nicjansma]: https://github.com/nicjansma\n[miguelmota]: https://github.com/miguelmota\n[vekexasia]: https://github.com/vekexasia\n[nikuph]: https://github.com/nikuph\n[jonkemp]: https://github.com/jonkemp\n[jscharlach]: https://github.com/jscharlach\n[skimmmer]: https://github.com/skimmmer\n[jksdua]: https://github.com/jksdua\n[DesignByOnyx]: https://github.com/DesignByOnyx\n[anotherjazz]: https://github.com/anotherjazz\n[jeduan]: https://github.com/jeduan\n[kingcody]: https://github.com/kingcody\n[remicastaing]: https://github.com/remicastaing\n\n## 1.3.0 (2015-05-22)\n* development: [@andybrown](https://github.com/astephenb) Supports node-sass 3.0\n\n## 1.2.1 (2015-03-18)\n* enhancement: [@kingcody][kingcody] Supports less 2.0\n* enhancement: [@remicastaing][remicastaing] Allow using import in scss files\n* enhancement: [@kewisch][kewisch] Allow passing options to juice\n\n## 1.2.0 (2015-02-17)\n* enhancement: [@jeduan][jeduan] Migrates back to Juice to support Node.js 0.12\n* enhancement: [@jeduan][jeduan] Uses consolidate.js\n* enhancement: [@gierschv][gierschv] Uses node-sass 2.0\n\n## 1.1.0 (2014-07-05)\n* enhancement: [@DesignByOnyx][DesignByOnyx]: Add support for filename prefix\n* enhancement: [@skimmmer][skimmmer]: Add dust-linkedin template engine\n* enhancement: [@anotherjazz][anotherjazz]: Add emblem template engine\n* development: [@jksdua][jksdua]: Update node-sass version\n\n## 1.0.0 (2014-05-27)\n* bugfix: [@jscharlach][jscharlach]: Fix template scope issues\n* development: [@jasonsims][jasonsims]: Update all project dependencies\n* development: [@jasonsims][jasonsims]: Drop support for node v0.8.x\n* development: [@jonkemp][jonkemp]: Switch to Juice2\n\n## 0.1.8 (2014-04-03)\n* enhancement: [@nikuph][nikuph]: Add support for LESS @import statement\n* development: [@jasonsims][jasonsims]: Add test coverage for LESS @import\n\n## 0.1.7 (2014-03-24)\n* enhancement: [@antoinepairet][antoinepairet]: Add support for `.scss` file extension\n* development: Moved changelog to CHANGELOG.md\n* development: [@jasonsims][jasonsims]: Added [TravisCI][travisci] integration\n[travisci]: https://travis-ci.org/niftylettuce/node-email-templates\n\n## 0.1.6 (2014-03-14)\n* development: [@jasonsims][jasonsims]: Deprecated windows branch and module\n\n## 0.1.5 (2014-03-13)\n* bugfix: [@miguelmota][miguelmota]: Batch templateName issue\n\n## 0.1.4 (2014-03-10)\n* bugfix: Misc bugfixes to main\n* development: [@jasonsims][jasonsims]: Abstracted templateManager\n* development: [@jasonsims][jasonsims]: Added integration tests\n* development: [@jasonsims][jasonsims]: Added unit tests\n\n## 0.1.3 (2014-03-03)\n* enhancement: [@jasonsims][jasonsims]: Added support for various CSS pre-processors\n\n## 0.1.2 (2014-02-22)\n* enhancement: [@jasonsims][jasonsims]: Added support for multiple HTML template engines\n\n## 0.1.1 (2013-12-14)\n* bugfix: Long path issue for Windows\n\n## 0.1.0 (2013-04-16)\n* bugfix: Batch documentation issue\n\n## 0.0.9\n* bugfix: Juice dependency issue\n\n## 0.0.8 (2013-03-03)\n* enhancement: Minor updates\n\n## 0.0.7\n* enhancement: [@nicjansma][nicjansma]: Added support for ejs's include directive\n\n## 0.0.6 (2012-11-01)\n* bugfix: [@vekexasia][vekexasia]: Fixed batch problem (...has no method slice)\n\n## 0.0.5 (2012-09-12)\n* enhancement: Added support for an optional zlib compression type. You can\n now return compressed html/text buffer for db storage\n\n ```javascript\n template('newsletter', locals, 'deflateRaw', function(err, html, text) {\n // The `html` and `text` are buffers compressed using zlib.deflateRaw\n // \n // **NOTE**: You could also pass 'deflate' or 'gzip' if necessary, and it works with batch rendering as well\n })\n ```\n\n## 0.0.4\n* enhancement: Removed requirement for style.css and text.ejs files with\n compatibility in node v0.6.x to v0.8.x. It now utilizes path.exists instead\n of fs.exists respectively.\n"}
+{"text": "/*\r\n * Licensed to the Apache Software Foundation (ASF) under one or more\r\n * contributor license agreements. See the NOTICE file distributed with\r\n * this work for additional information regarding copyright ownership.\r\n * The ASF licenses this file to You under the Apache License, Version 2.0\r\n * (the \"License\"); you may not use this file except in compliance with\r\n * the License. You may obtain a copy of the License at\r\n *\r\n * http://www.apache.org/licenses/LICENSE-2.0\r\n *\r\n * Unless required by applicable law or agreed to in writing, software\r\n * distributed under the License is distributed on an \"AS IS\" BASIS,\r\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r\n * See the License for the specific language governing permissions and\r\n * limitations under the License.\r\n */\r\npackage org.apache.wicket.markup.html.form;\r\n\r\nimport static org.junit.jupiter.api.Assertions.assertEquals;\r\n\r\nimport org.apache.wicket.util.tester.WicketTestCase;\r\nimport org.junit.jupiter.api.Test;\r\n\r\n/**\r\n */\r\nclass FormMultiPartTest extends WicketTestCase\r\n{\r\n\r\n\t@Test\r\n\tvoid multipartHard()\r\n\t{\r\n\t\tMultiPartFormPage page = new MultiPartFormPage();\r\n\r\n\t\tpage.form.setMultiPart(true);\r\n\t\ttester.startPage(page);\r\n\r\n\t\tassertEquals(0, page.asked);\r\n\r\n\t\tassertEquals(true, page.form.isMultiPart());\r\n\t}\r\n\r\n\t@Test\r\n\tvoid multipartHint()\r\n\t{\r\n\t\tMultiPartFormPage page = new MultiPartFormPage();\r\n\r\n\t\tpage.multiPart = false;\r\n\t\ttester.startPage(page);\r\n\t\tassertEquals(1, page.asked);\r\n\t\tassertEquals(false, page.form.isMultiPart());\r\n\r\n\t\tpage.multiPart = true;\r\n\t\ttester.newFormTester(\"form\").submit(page.button1);\r\n\t\tassertEquals(2, page.asked);\r\n\t\tassertEquals(true, page.form.isMultiPart());\r\n\r\n\t\tpage.multiPart = false;\r\n\t\ttester.newFormTester(\"form\").submit(page.button1);\r\n\t\tassertEquals(3, page.asked);\r\n\t\tassertEquals(false, page.form.isMultiPart());\r\n\t}\r\n\r\n\t@Test\r\n\tvoid multipartHintAjax()\r\n\t{\r\n\t\tMultiPartFormPage page = new MultiPartFormPage();\r\n\r\n\t\tpage.multiPart = false;\r\n\t\ttester.startPage(page);\r\n\t\tassertEquals(1, page.asked);\r\n\t\tassertEquals(false, page.form.isMultiPart());\r\n\r\n\t\tpage.multiPart = true;\r\n\t\ttester.executeAjaxEvent(page.button1, \"click\");\r\n\t\tassertEquals(2, page.asked);\r\n\t\tassertEquals(true, page.form.isMultiPart());\r\n\r\n\t\tpage.multiPart = false;\r\n\t\ttester.executeAjaxEvent(page.button1, \"click\");\r\n\t\tassertEquals(3, page.asked);\r\n\t\tassertEquals(false, page.form.isMultiPart());\r\n\t}\r\n}\r\n"}
+{"text": "/*\nCopyright 2018 The Kubernetes Authors.\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n*/\n\npackage v1alpha1\n\nimport (\n\tmetav1 \"k8s.io/apimachinery/pkg/apis/meta/v1\"\n\t\"k8s.io/apimachinery/pkg/runtime\"\n\t\"k8s.io/apimachinery/pkg/runtime/schema\"\n)\n\n// GroupName is the group name use in this package\nconst GroupName = \"auditregistration.k8s.io\"\n\n// SchemeGroupVersion is group version used to register these objects\nvar SchemeGroupVersion = schema.GroupVersion{Group: GroupName, Version: \"v1alpha1\"}\n\n// Resource takes an unqualified resource and returns a Group qualified GroupResource\nfunc Resource(resource string) schema.GroupResource {\n\treturn SchemeGroupVersion.WithResource(resource).GroupResource()\n}\n\nvar (\n\tSchemeBuilder runtime.SchemeBuilder\n\tlocalSchemeBuilder = &SchemeBuilder\n\tAddToScheme = localSchemeBuilder.AddToScheme\n)\n\nfunc init() {\n\t// We only register manually written functions here. The registration of the\n\t// generated functions takes place in the generated files. The separation\n\t// makes the code compile even when the generated files are missing.\n\tlocalSchemeBuilder.Register(addKnownTypes)\n}\n\nfunc addKnownTypes(scheme *runtime.Scheme) error {\n\tscheme.AddKnownTypes(SchemeGroupVersion,\n\t\t&AuditSink{},\n\t\t&AuditSinkList{},\n\t)\n\tmetav1.AddToGroupVersion(scheme, SchemeGroupVersion)\n\treturn nil\n}\n"}
+{"text": "# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).\n\nfrom . import models\n"}
+{"text": "# Shr\n\nSimple, clean, customizable sharing buttons.\n\n[Donate to support Shr](#donate) - [Checkout the demo](https://shr.one)\n\n[](https://shr.one)\n\n## Why?\n\nThe default share buttons used by the social networks are not only ugly to look at (sorry, they just are) but they usually depend on iframes, are slow and generally heavy. That led to me creating shr (short for share).\n\n## Features\n\n- **Accessible** - built using progressive enhancement\n- **Lightweight** - just 3KB minified and gzipped\n- **Customisable** - make the buttons and count look how you want with the markup you want\n- **Semantic** - uses the _right_ elements. There's no ``s as buttons type hacks\n- **Fast** - uses local storage to cache results to keep things fast\n- **No dependencies** - written in \"vanilla\" ES6 JavaScript\n\n## Changelog\n\nCheck out [the changelog](changelog.md)\n\n## Setup\n\nTo set up Shr, you first must include the JavaScript lib and optionally the CSS and SVG sprite if you want icons on your buttons.\n\n### 1. HTML\n\nHere's an example for a Facebook button, see [HTML section](#HTML) below for other examples.\n\n```html\n\n \n Share\n\n```\n\nThis markup assumes you're using the SVG sprite (which is optional) and the default CSS. If you're not using either of these then you can omit the `shr__*` classNames completely and the `
\n
\nThe default maximum weight for this track is 1, so unless\nthe setting is changed in the track controls, SNPs that map to multiple genomic \nlocations will be omitted from display. When a SNP's flanking sequences \nmap to multiple locations in the reference genome, it calls into question \nwhether there is true variation at those sites, or whether the sequences\nat those sites are merely highly similar but not identical.\n
\n\n\n"}
+{"text": "// Code generated by smithy-go-codegen DO NOT EDIT.\n\npackage iot1clickprojects\n\nimport (\n\t\"context\"\n\tawsmiddleware \"github.com/aws/aws-sdk-go-v2/aws/middleware\"\n\t\"github.com/aws/aws-sdk-go-v2/aws/retry\"\n\t\"github.com/aws/aws-sdk-go-v2/aws/signer/v4\"\n\t\"github.com/aws/aws-sdk-go-v2/service/iot1clickprojects/types\"\n\tsmithy \"github.com/awslabs/smithy-go\"\n\t\"github.com/awslabs/smithy-go/middleware\"\n\tsmithyhttp \"github.com/awslabs/smithy-go/transport/http\"\n)\n\n// Returns an object describing a project.\nfunc (c *Client) DescribeProject(ctx context.Context, params *DescribeProjectInput, optFns ...func(*Options)) (*DescribeProjectOutput, error) {\n\tstack := middleware.NewStack(\"DescribeProject\", smithyhttp.NewStackRequest)\n\toptions := c.options.Copy()\n\tfor _, fn := range optFns {\n\t\tfn(&options)\n\t}\n\taddawsRestjson1_serdeOpDescribeProjectMiddlewares(stack)\n\tawsmiddleware.AddRequestInvocationIDMiddleware(stack)\n\tsmithyhttp.AddContentLengthMiddleware(stack)\n\tAddResolveEndpointMiddleware(stack, options)\n\tv4.AddComputePayloadSHA256Middleware(stack)\n\tretry.AddRetryMiddlewares(stack, options)\n\taddHTTPSignerV4Middleware(stack, options)\n\tawsmiddleware.AddAttemptClockSkewMiddleware(stack)\n\taddClientUserAgent(stack)\n\tsmithyhttp.AddErrorCloseResponseBodyMiddleware(stack)\n\tsmithyhttp.AddCloseResponseBodyMiddleware(stack)\n\taddOpDescribeProjectValidationMiddleware(stack)\n\tstack.Initialize.Add(newServiceMetadataMiddleware_opDescribeProject(options.Region), middleware.Before)\n\taddRequestIDRetrieverMiddleware(stack)\n\taddResponseErrorMiddleware(stack)\n\n\tfor _, fn := range options.APIOptions {\n\t\tif err := fn(stack); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t}\n\thandler := middleware.DecorateHandler(smithyhttp.NewClientHandler(options.HTTPClient), stack)\n\tresult, metadata, err := handler.Handle(ctx, params)\n\tif err != nil {\n\t\treturn nil, &smithy.OperationError{\n\t\t\tServiceID: ServiceID,\n\t\t\tOperationName: \"DescribeProject\",\n\t\t\tErr: err,\n\t\t}\n\t}\n\tout := result.(*DescribeProjectOutput)\n\tout.ResultMetadata = metadata\n\treturn out, nil\n}\n\ntype DescribeProjectInput struct {\n\t// The name of the project to be described.\n\tProjectName *string\n}\n\ntype DescribeProjectOutput struct {\n\t// An object describing the project.\n\tProject *types.ProjectDescription\n\n\t// Metadata pertaining to the operation's result.\n\tResultMetadata middleware.Metadata\n}\n\nfunc addawsRestjson1_serdeOpDescribeProjectMiddlewares(stack *middleware.Stack) {\n\tstack.Serialize.Add(&awsRestjson1_serializeOpDescribeProject{}, middleware.After)\n\tstack.Deserialize.Add(&awsRestjson1_deserializeOpDescribeProject{}, middleware.After)\n}\n\nfunc newServiceMetadataMiddleware_opDescribeProject(region string) awsmiddleware.RegisterServiceMetadata {\n\treturn awsmiddleware.RegisterServiceMetadata{\n\t\tRegion: region,\n\t\tServiceID: ServiceID,\n\t\tSigningName: \"iot1click\",\n\t\tOperationName: \"DescribeProject\",\n\t}\n}\n"}
+{"text": "module.exports = {\n 'add': require('./add'),\n 'ceil': require('./ceil'),\n 'divide': require('./divide'),\n 'floor': require('./floor'),\n 'max': require('./max'),\n 'maxBy': require('./maxBy'),\n 'mean': require('./mean'),\n 'meanBy': require('./meanBy'),\n 'min': require('./min'),\n 'minBy': require('./minBy'),\n 'multiply': require('./multiply'),\n 'round': require('./round'),\n 'subtract': require('./subtract'),\n 'sum': require('./sum'),\n 'sumBy': require('./sumBy')\n};\n"}
+{"text": "#\n# Makefile for the Linux Journalling Flash File System v2 (JFFS2)\n#\n#\n\nobj-$(CONFIG_JFFS2_FS) += jffs2.o\n\njffs2-y\t:= compr.o dir.o file.o ioctl.o nodelist.o malloc.o\njffs2-y\t+= read.o nodemgmt.o readinode.o write.o scan.o gc.o\njffs2-y\t+= symlink.o build.o erase.o background.o fs.o writev.o\njffs2-y\t+= super.o debug.o\n\njffs2-$(CONFIG_JFFS2_FS_WRITEBUFFER)\t+= wbuf.o\njffs2-$(CONFIG_JFFS2_FS_XATTR)\t\t+= xattr.o xattr_trusted.o xattr_user.o\njffs2-$(CONFIG_JFFS2_FS_SECURITY)\t+= security.o\njffs2-$(CONFIG_JFFS2_FS_POSIX_ACL)\t+= acl.o\njffs2-$(CONFIG_JFFS2_RUBIN)\t+= compr_rubin.o\njffs2-$(CONFIG_JFFS2_RTIME)\t+= compr_rtime.o\njffs2-$(CONFIG_JFFS2_ZLIB)\t+= compr_zlib.o\njffs2-$(CONFIG_JFFS2_LZO)\t+= compr_lzo.o\njffs2-$(CONFIG_JFFS2_SUMMARY) += summary.o\n"}
+{"text": "{\n \"frameworks\": {\n \"dnx451\": { }\n },\n \"dependencies\": {\n \"Contentful.NET\": \"0.0.5-Alpha\"\n }\n}\n"}
+{"text": "module Wukong\n module Streamer\n #\n # Roll up all records from a given key into a single list.\n #\n class ListReducer < Wukong::Streamer::AccumulatingReducer\n attr_accessor :values\n\n # start with an empty list\n def start! *args\n @values = []\n end\n\n # aggregate all records.\n # note that this accumulates the full *record* -- key, value, everything.\n def accumulate *record\n @values << record\n end\n\n # emit the key and all records, tab-separated\n #\n # you will almost certainly want to override this method to do something\n # interesting with the values (or override accumulate to gather scalar\n # values)\n #\n def finalize\n yield [key, @values.to_flat.join(\";\")].flatten\n end\n end\n end\nend\n"}
+{"text": "define([\n 'jquery',\n 'underscore',\n 'backbone'\n], function($, _, Backbone) {\n 'use strict';\n var ServerModel = Backbone.Model.extend({\n defaults: {\n 'id': null,\n 'name': null,\n 'status': null,\n 'uptime': null,\n 'users_online': null,\n 'devices_online': null,\n 'user_count': null,\n 'network': null,\n 'network_wg': null,\n 'groups': null,\n 'bind_address': null,\n 'port': null,\n 'port_wg': null,\n 'protocol': null,\n 'dh_param_bits': null,\n 'ipv6': null,\n 'ipv6_firewall': null,\n 'network_mode': null,\n 'network_start': null,\n 'network_end': null,\n 'restrict_routes': null,\n 'wg': null,\n 'multi_device': null,\n 'dns_servers': null,\n 'search_domain': null,\n 'otp_auth': null,\n 'cipher': null,\n 'hash': null,\n 'block_outside_dns': null,\n 'jumbo_frames': null,\n 'lzo_compression': null,\n 'inter_client': null,\n 'ping_interval': null,\n 'ping_timeout': null,\n 'link_ping_interval': null,\n 'link_ping_timeout': null,\n 'inactive_timeout': null,\n 'session_timeout': null,\n 'allowed_devices': null,\n 'max_clients': null,\n 'max_devices': null,\n 'replica_count': null,\n 'vxlan': null,\n 'dns_mapping': null,\n 'debug': null,\n 'pre_connect_msg': null,\n 'mss_fix': null\n },\n url: function() {\n var url = '/server';\n\n if (this.get('id')) {\n url += '/' + this.get('id');\n\n if (this.get('operation')) {\n url += '/operation/' + this.get('operation');\n }\n }\n\n return url;\n }\n });\n\n return ServerModel;\n});\n"}
+{"text": "---\nlayout: \"svg_wrapper\"\ntitle: \"Inheritance Graph for UTF16\"\ntypename: \"UTF16\"\n---\n\n"}
+{"text": "\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Symfony\\Component\\Mime\\Encoder;\n\n/**\n * @author Fabien Potencier \n *\n * @experimental in 4.3\n */\nfinal class EightBitContentEncoder implements ContentEncoderInterface\n{\n public function encodeByteStream($stream, int $maxLineLength = 0): iterable\n {\n while (!feof($stream)) {\n yield fread($stream, 16372);\n }\n }\n\n public function getName(): string\n {\n return '8bit';\n }\n\n public function encodeString(string $string, ?string $charset = 'utf-8', int $firstLineOffset = 0, int $maxLineLength = 0): string\n {\n return $string;\n }\n}\n"}
+{"text": "[\n {\n \"github_username\": \"luisalima\",\n \"name\": \"Luisa Lima\",\n \"link_text\": null,\n \"link_url\": null,\n \"avatar_url\": null,\n \"bio\": \"I started working with Ruby 6 years ago and immediately fell in <3 with its elegance and expressiveness. However, one of the things that (still) appeals to me the most is the incredibly savvy, creative and welcoming community behind it. I'm grateful for the opportunity to be a part of it via this amazing project!\"\n },\n {\n \"github_username\": \"lastgabs\",\n \"name\": \"Gabi Stefanini\",\n \"link_text\": null,\n \"link_url\": null,\n \"avatar_url\": null,\n \"bio\": \"I'm a production engineer/dev ops who has been working with Ruby applications for the last 2 years and I love it <3\"\n }\n]\n"}
+{"text": "package pdf\n\nimport (\n\t\"fmt\"\n\t\"math\"\n\t\"strings\"\n\n\t\"github.com/tdewolff/canvas\"\n\t\"github.com/tdewolff/minify/v2\"\n)\n\nconst ptPerMm = 72 / 25.4\n\n////////////////////////////////////////////////////////////////\n\nfunc float64sEqual(a, b []float64) bool {\n\tif len(a) != len(b) {\n\t\treturn false\n\t}\n\tfor i, f := range a {\n\t\tif f != b[i] {\n\t\t\treturn false\n\t\t}\n\t}\n\treturn true\n}\n\ntype dec float64\n\nfunc (f dec) String() string {\n\ts := fmt.Sprintf(\"%.*f\", canvas.Precision, f)\n\ts = string(minify.Decimal([]byte(s), canvas.Precision))\n\tif dec(math.MaxInt32) < f || f < dec(math.MinInt32) {\n\t\tif i := strings.IndexByte(s, '.'); i == -1 {\n\t\t\ts += \".0\"\n\t\t}\n\t}\n\treturn s\n}\n"}
+{"text": "'use strict';\n/*jshint asi: true */\n\n\nvar debug //= true;\nvar test = debug ? function () {} : require('tap').test\nvar test_ = !debug ? function () {} : require('tap').test\n\nvar wire = require('../../lib/wire')\nvar findexquire = require('../../lib/findexquire')\n// process.env.REPLPAD_DEBUG = true;\n\nvar sourcemap = require('escodegen/node_modules/source-map')\n\ntest('\\nwhen I findexquire escodegen', function (t) {\n t.plan(4)\n var req = findexquire(__filename, true)\n var escodegen = req('escodegen')\n\n var locs = findexquire.find(escodegen.generate);\n t.equal(locs.length, 0, 'does not find escodegen.generate right away')\n\n wire.on('findex-first-pass', onfirstpass);\n wire.on('findex-second-pass', onsecondpass);\n\n function onfirstpass() {\n var generateLocs = findexquire.find(escodegen.generate);\n var consumerLocs = findexquire.find(sourcemap.SourceMapConsumer);\n\n t.equal(generateLocs.length, 1, 'finds escodegen.generate after first pass')\n t.notOk(consumerLocs, 'does not find sourcemap.SourceMapConsumer yet')\n }\n\n function onsecondpass () {\n var consumerLocs = findexquire.find(sourcemap.SourceMapConsumer);\n t.equal(consumerLocs.length, 1, 'finds sourcemap.SourceMapConsumer after second pass')\n }\n})\n\ntest('\\nfindexquire resolve', function (t) {\n var cardinal = findexquire(__filename).resolve('cardinal');\n t.equal(cardinal, require.resolve('cardinal'), 'correctly resolves installed module')\n\n var repreprep = findexquire(__filename).resolve('../../repreprep');\n t.equal(repreprep, require.resolve('../../repreprep'), 'correclty resolves relative module')\n\n t.end(); \n})\n"}
+{"text": "\n\nwiderface\n47--Matador_Bullfighter_47_Matador_Bullfighter_matadorbullfighting_47_719.jpg\n\nwider face Database\nPASCAL VOC2007\nflickr\n-1\n\n\nyanyu\nyanyu\n\n\n1024\n681\n3\n\n0\n\nface\nUnspecified\n1\n0\n\n466\n124\n552\n238\n\n\n495.562\n178.344\n530.781\n174.75\n523.594\n189.844\n507.781\n215.0\n532.938\n212.125\n0\n0.88\n\n1\n\n\n"}
+{"text": "\n* @copyright 2016 Microsoft Corporation\n* @license https://opensource.org/licenses/MIT MIT License\n* @version GIT: 0.1.0\n* @link https://graph.microsoft.io/\n*/\nnamespace Microsoft\\Graph\\Model;\n\n/**\n* Calendar class\n*\n* @category Model\n* @package Microsoft.Graph\n* @author Caitlin Bales \n* @copyright 2016 Microsoft Corporation\n* @license https://opensource.org/licenses/MIT MIT License\n* @version Release: 0.1.0\n* @link https://graph.microsoft.io/\n*/\nclass Calendar\n{\n /**\n * The array of properties available\n * to the model\n *\n * @var array(string => string)\n */\n private $_propDict;\n /**\n * Construct a new Calendar\n *\n * @param array $propDict A list of properties to set\n */\n function __construct($propDict = array())\n {\n $this->_propDict = $propDict;\n }\n\n /**\n * Gets the property dictionary of the Calendar\n *\n * @return array The list of properties\n */\n public function getProperties()\n {\n return $this->_propDict;\n }\n\n /**\n * Gets the name\n *\n * @return string The name\n */\n public function getName()\n {\n if (array_key_exists(\"name\", $this->_propDict)) {\n return $this->_propDict[\"name\"];\n } else {\n return null;\n }\n }\n\n /**\n * Sets the name\n *\n * @param string $val The name\n *\n * @return null\n */\n public function setName($val)\n {\n $this->propDict[\"name\"] = $val;\n }\n\n /**\n * Gets the color\n *\n * @return CalendarColor The color\n */\n public function getColor()\n {\n if (array_key_exists(\"color\", $this->_propDict)) {\n if (is_a($this->_propDict[\"color\"], 'CalendarColor')) {\n return $this->_propDict[\"color\"];\n } else {\n $this->_propDict[\"color\"] = new CalendarColor($this->_propDict[\"color\"]);\n return $this->_propDict[\"color\"];\n }\n }\n return null;\n }\n\n /**\n * Sets the color\n *\n * @param string $val The color\n *\n * @return null\n */\n public function setColor($val)\n {\n $this->propDict[\"color\"] = $val;\n }\n\n /**\n * Gets the changeKey\n *\n * @return string The changeKey\n */\n public function getChangeKey()\n {\n if (array_key_exists(\"changeKey\", $this->_propDict)) {\n return $this->_propDict[\"changeKey\"];\n } else {\n return null;\n }\n }\n\n /**\n * Sets the changeKey\n *\n * @param string $val The changeKey\n *\n * @return null\n */\n public function setChangeKey($val)\n {\n $this->propDict[\"changeKey\"] = $val;\n }\n\n /** \n * Gets the events\n *\n * @return EventsCollectionPage The events\n */\n public function getEvents()\n {\n if (array_key_exists(\"events\", $this->_propDict)) {\n return EventsCollectionPage($this->_propDict[\"events\"]);\n } else {\n return null;\n }\n }\n\n\n /** \n * Gets the calendarView\n *\n * @return CalendarViewCollectionPage The calendarView\n */\n public function getCalendarView()\n {\n if (array_key_exists(\"calendarView\", $this->_propDict)) {\n return CalendarViewCollectionPage($this->_propDict[\"calendarView\"]);\n } else {\n return null;\n }\n }\n\n\n /** \n * Gets the singleValueExtendedProperties\n *\n * @return SingleValueExtendedPropertiesCollectionPage The singleValueExtendedProperties\n */\n public function getSingleValueExtendedProperties()\n {\n if (array_key_exists(\"singleValueExtendedProperties\", $this->_propDict)) {\n return SingleValueExtendedPropertiesCollectionPage($this->_propDict[\"singleValueExtendedProperties\"]);\n } else {\n return null;\n }\n }\n\n\n /** \n * Gets the multiValueExtendedProperties\n *\n * @return MultiValueExtendedPropertiesCollectionPage The multiValueExtendedProperties\n */\n public function getMultiValueExtendedProperties()\n {\n if (array_key_exists(\"multiValueExtendedProperties\", $this->_propDict)) {\n return MultiValueExtendedPropertiesCollectionPage($this->_propDict[\"multiValueExtendedProperties\"]);\n } else {\n return null;\n }\n }\n\n}\n"}
+{"text": "// Copyright 2014 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage triegen\n\n// This file defines Compacter and its implementations.\n\nimport \"io\"\n\n// A Compacter generates an alternative, more space-efficient way to store a\n// trie value block. A trie value block holds all possible values for the last\n// byte of a UTF-8 encoded rune. Excluding ASCII characters, a trie value block\n// always has 64 values, as a UTF-8 encoding ends with a byte in [0x80, 0xC0).\ntype Compacter interface {\n\t// Size returns whether the Compacter could encode the given block as well\n\t// as its size in case it can. len(v) is always 64.\n\tSize(v []uint64) (sz int, ok bool)\n\n\t// Store stores the block using the Compacter's compression method.\n\t// It returns a handle with which the block can be retrieved.\n\t// len(v) is always 64.\n\tStore(v []uint64) uint32\n\n\t// Print writes the data structures associated to the given store to w.\n\tPrint(w io.Writer) error\n\n\t// Handler returns the name of a function that gets called during trie\n\t// lookup for blocks generated by the Compacter. The function should be of\n\t// the form func (n uint32, b byte) uint64, where n is the index returned by\n\t// the Compacter's Store method and b is the last byte of the UTF-8\n\t// encoding, where 0x80 <= b < 0xC0, for which to do the lookup in the\n\t// block.\n\tHandler() string\n}\n\n// simpleCompacter is the default Compacter used by builder. It implements a\n// normal trie block.\ntype simpleCompacter builder\n\nfunc (b *simpleCompacter) Size([]uint64) (sz int, ok bool) {\n\treturn blockSize * b.ValueSize, true\n}\n\nfunc (b *simpleCompacter) Store(v []uint64) uint32 {\n\th := uint32(len(b.ValueBlocks) - blockOffset)\n\tb.ValueBlocks = append(b.ValueBlocks, v)\n\treturn h\n}\n\nfunc (b *simpleCompacter) Print(io.Writer) error {\n\t// Structures are printed in print.go.\n\treturn nil\n}\n\nfunc (b *simpleCompacter) Handler() string {\n\tpanic(\"Handler should be special-cased for this Compacter\")\n}\n"}
+{"text": "# Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserved.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\"\"\"BERT fine-tuning in Paddle Dygraph Mode.\"\"\"\n\nfrom __future__ import absolute_import\nfrom __future__ import division\nfrom __future__ import print_function\n\nimport os\nimport six\nimport sys\nif six.PY2:\n reload(sys)\n sys.setdefaultencoding('utf8')\nimport ast\nimport time\nimport argparse\nimport numpy as np\nimport multiprocessing\nimport paddle\nimport paddle.fluid as fluid\nfrom paddle.fluid.dygraph import to_variable, Layer, Linear\nfrom paddle.fluid.dygraph.base import to_variable\nfrom .reader.cls import *\nfrom .model.bert import BertModelLayer\nfrom .optimization import Optimizer\nfrom .utils.init import init_from_static_model\nfrom paddleslim.teachers.bert import BERTClassifier\n\n__all__ = [\"AdaBERTClassifier\"]\n\n\nclass AdaBERTClassifier(Layer):\n def __init__(self,\n num_labels,\n n_layer=8,\n emb_size=768,\n hidden_size=768,\n gamma=0.8,\n beta=4,\n task_name='mnli',\n conv_type=\"conv_bn\",\n search_layer=False,\n teacher_model=None,\n data_dir=None,\n use_fixed_gumbel=False,\n gumbel_alphas=None,\n fix_emb=False,\n t=5.0):\n super(AdaBERTClassifier, self).__init__()\n self._n_layer = n_layer\n self._num_labels = num_labels\n self._emb_size = emb_size\n self._hidden_size = hidden_size\n self._gamma = gamma\n self._beta = beta\n self._conv_type = conv_type\n self._search_layer = search_layer\n self._teacher_model = teacher_model\n self._data_dir = data_dir\n self.use_fixed_gumbel = use_fixed_gumbel\n\n self.T = t\n print(\n \"----------------------load teacher model and test----------------------------------------\"\n )\n self.teacher = BERTClassifier(\n num_labels, task_name=task_name, model_path=self._teacher_model)\n # global setting, will be overwritten when training(about 1% acc loss)\n self.teacher.eval()\n self.teacher.test(self._data_dir)\n print(\n \"----------------------finish load teacher model and test----------------------------------------\"\n )\n self.student = BertModelLayer(\n num_labels=num_labels,\n n_layer=self._n_layer,\n emb_size=self._emb_size,\n hidden_size=self._hidden_size,\n conv_type=self._conv_type,\n search_layer=self._search_layer,\n use_fixed_gumbel=self.use_fixed_gumbel,\n gumbel_alphas=gumbel_alphas)\n\n fix_emb = False\n for s_emb, t_emb in zip(self.student.emb_names(),\n self.teacher.emb_names()):\n t_emb.stop_gradient = True\n if fix_emb:\n s_emb.stop_gradient = True\n print(\n \"Assigning embedding[{}] from teacher to embedding[{}] in student.\".\n format(t_emb.name, s_emb.name))\n fluid.layers.assign(input=t_emb, output=s_emb)\n print(\n \"Assigned embedding[{}] from teacher to embedding[{}] in student.\".\n format(t_emb.name, s_emb.name))\n\n def forward(self, data_ids, epoch):\n return self.student(data_ids, epoch)\n\n def arch_parameters(self):\n return self.student.arch_parameters()\n\n def loss(self, data_ids, epoch):\n labels = data_ids[4]\n\n s_logits = self.student(data_ids, epoch)\n\n t_enc_outputs, t_logits, t_losses, t_accs, _ = self.teacher(data_ids)\n\n #define kd loss\n kd_weights = []\n for i in range(len(s_logits)):\n j = int(np.ceil(i * (float(len(t_logits)) / len(s_logits))))\n kd_weights.append(t_losses[j].numpy())\n\n kd_weights = np.array(kd_weights)\n kd_weights = np.squeeze(kd_weights)\n kd_weights = to_variable(kd_weights)\n kd_weights = fluid.layers.softmax(-kd_weights)\n\n kd_losses = []\n for i in range(len(s_logits)):\n j = int(np.ceil(i * (float(len(t_logits)) / len(s_logits))))\n t_logit = t_logits[j]\n s_logit = s_logits[i]\n t_logit.stop_gradient = True\n t_probs = fluid.layers.softmax(t_logit) # P_j^T\n s_probs = fluid.layers.softmax(s_logit / self.T) #P_j^S\n #kd_loss = -t_probs * fluid.layers.log(s_probs)\n kd_loss = fluid.layers.cross_entropy(\n input=s_probs, label=t_probs, soft_label=True)\n kd_loss = fluid.layers.reduce_mean(kd_loss)\n kd_loss = fluid.layers.scale(kd_loss, scale=kd_weights[i])\n kd_losses.append(kd_loss)\n kd_loss = fluid.layers.sum(kd_losses)\n\n losses = []\n for logit in s_logits:\n ce_loss, probs = fluid.layers.softmax_with_cross_entropy(\n logits=logit, label=labels, return_softmax=True)\n loss = fluid.layers.mean(x=ce_loss)\n losses.append(loss)\n\n num_seqs = fluid.layers.create_tensor(dtype='int64')\n accuracy = fluid.layers.accuracy(\n input=probs, label=labels, total=num_seqs)\n ce_loss = fluid.layers.sum(losses)\n\n total_loss = (1 - self._gamma) * ce_loss + self._gamma * kd_loss\n\n return total_loss, accuracy, ce_loss, kd_loss, s_logits\n"}
+{"text": "import numpy as np\r\nimport h5py\r\nimport os\r\n\r\nbu_rcnn_dir = '/data4/tingjia/wt/budata/coco_cor2_all_bu'\r\n#box_dir = '/data4/tingjia/wt/budata/cocobu_box'\r\nbu_list = os.listdir(bu_rcnn_dir)\r\n\r\nfor image in bu_list:\r\n feature = np.load(os.path.join(bu_rcnn_dir, image))\r\n #bbox = np.load(os.path.join(box_dir, image))\r\n image_id = image[:-4]\r\n\r\n with h5py.File('/data4/tingjia/wt/budata/coco_cor2_all_bu.hdf5', 'a') as f:\r\n\r\n image_id_h5py = f.create_group(image_id)\r\n image_id_h5py.create_dataset(\"feature\", data=feature)\r\n #image_id_h5py.create_dataset(\"bbox\", data=bbox)\r\n\r\n"}
+{"text": "#pragma once \n#include \nnamespace Kvasir {\n//UART1\n namespace Uart1Rbr{ ///;\n ///The UART1 Receiver Buffer Register contains the oldest received byte in the UART1 RX FIFO.\n constexpr Register::FieldLocation rbr{}; \n ///Reserved, the value read from a reserved bit is not defined.\n constexpr Register::FieldLocation reserved{}; \n }\n namespace Uart1Thr{ ///;\n ///Writing to the UART1 Transmit Holding Register causes the data to be stored in the UART1 transmit FIFO. The byte will be sent when it reaches the bottom of the FIFO and the transmitter is available.\n constexpr Register::FieldLocation thr{}; \n ///Reserved. Read value is undefined, only zero should be written.\n constexpr Register::FieldLocation reserved{}; \n }\n namespace Uart1Dll{ ///;\n ///The UART1 Divisor Latch LSB Register, along with the U1DLM register, determines the baud rate of the UART1.\n constexpr Register::FieldLocation dllsb{}; \n ///Reserved. Read value is undefined, only zero should be written.\n constexpr Register::FieldLocation reserved{}; \n }\n namespace Uart1Dlm{ ///;\n ///The UART1 Divisor Latch MSB Register, along with the U1DLL register, determines the baud rate of the UART1.\n constexpr Register::FieldLocation dlmsb{}; \n ///Reserved. Read value is undefined, only zero should be written.\n constexpr Register::FieldLocation reserved{}; \n }\n namespace Uart1Ier{ ///;\n ///RBR Interrupt Enable. Enables the Receive Data Available interrupt for UART1. It also controls the Character Receive Time-out interrupt.\n enum class RbrieVal {\n disableTheRdaInte=0x00000000, /// rbrie{}; \n namespace RbrieValC{\n constexpr Register::FieldValue disableTheRdaInte{};\n constexpr Register::FieldValue enableTheRdaInter{};\n }\n ///THRE Interrupt Enable. Enables the THRE interrupt for UART1. The status of this interrupt can be read from LSR[5].\n enum class ThreieVal {\n disableTheThreInt=0x00000000, /// threie{}; \n namespace ThreieValC{\n constexpr Register::FieldValue disableTheThreInt{};\n constexpr Register::FieldValue enableTheThreInte{};\n }\n ///RX Line Interrupt Enable. Enables the UART1 RX line status interrupts. The status of this interrupt can be read from LSR[4:1].\n enum class RxieVal {\n disableTheRxLine=0x00000000, /// rxie{}; \n namespace RxieValC{\n constexpr Register::FieldValue disableTheRxLine{};\n constexpr Register::FieldValue enableTheRxLineS{};\n }\n ///Modem Status Interrupt Enable. Enables the modem interrupt. The status of this interrupt can be read from MSR[3:0].\n enum class MsieVal {\n disableTheModemIn=0x00000000, /// msie{}; \n namespace MsieValC{\n constexpr Register::FieldValue disableTheModemIn{};\n constexpr Register::FieldValue enableTheModemInt{};\n }\n ///Reserved, user software should not write ones to reserved bits. The value read from a reserved bit is not defined.\n constexpr Register::FieldLocation reserved{}; \n ///CTS Interrupt Enable. If auto-cts mode is enabled this bit enables/disables the modem status interrupt generation on a CTS1 signal transition. If auto-cts mode is disabled a CTS1 transition will generate an interrupt if Modem Status Interrupt Enable (IER[3]) is set. In normal operation a CTS1 signal transition will generate a Modem Status Interrupt unless the interrupt has been disabled by clearing the IER[3] bit in the IER register. In auto-cts mode a transition on the CTS1 bit will trigger an interrupt only if both the IER[3] and IER[7] bits are set.\n enum class CtsieVal {\n disableTheCtsInte=0x00000000, /// ctsie{}; \n namespace CtsieValC{\n constexpr Register::FieldValue disableTheCtsInte{};\n constexpr Register::FieldValue enableTheCtsInter{};\n }\n ///Enables the end of auto-baud interrupt.\n enum class AbeoieVal {\n disableEndOfAuto=0x00000000, /// abeoie{}; \n namespace AbeoieValC{\n constexpr Register::FieldValue disableEndOfAuto{};\n constexpr Register::FieldValue enableEndOfAutoB{};\n }\n ///Enables the auto-baud time-out interrupt.\n enum class AbtoieVal {\n disableAutoBaudTi=0x00000000, /// abtoie{}; \n namespace AbtoieValC{\n constexpr Register::FieldValue disableAutoBaudTi{};\n constexpr Register::FieldValue enableAutoBaudTim{};\n }\n ///Reserved, user software should not write ones to reserved bits. The value read from a reserved bit is not defined.\n constexpr Register::FieldLocation reserved{}; \n }\n namespace Uart1Iir{ ///;\n ///Interrupt status. Note that IIR[0] is active low. The pending interrupt can be determined by evaluating IIR[3:1].\n enum class IntstatusVal {\n atLeastOneInterru=0x00000000, /// intstatus{}; \n namespace IntstatusValC{\n constexpr Register::FieldValue atLeastOneInterru{};\n constexpr Register::FieldValue noInterruptIsPend{};\n }\n ///Interrupt identification. IER[3:1] identifies an interrupt corresponding to the UART1 Rx or TX FIFO. All other combinations of IER[3:1] not listed below are reserved (100,101,111).\n enum class IntidVal {\n rls=0x00000003, ///<1 - Receive Line Status (RLS).\n rda=0x00000002, ///<2a - Receive Data Available (RDA).\n cti=0x00000006, ///<2b - Character Time-out Indicator (CTI).\n thre=0x00000001, ///<3 - THRE Interrupt.\n modem=0x00000000, ///<4 - Modem Interrupt.\n };\n constexpr Register::FieldLocation intid{}; \n namespace IntidValC{\n constexpr Register::FieldValue rls{};\n constexpr Register::FieldValue rda{};\n constexpr Register::FieldValue cti{};\n constexpr Register::FieldValue thre{};\n constexpr Register::FieldValue modem{};\n }\n ///Reserved, user software should not write ones to reserved bits. The value read from a reserved bit is not defined.\n constexpr Register::FieldLocation reserved{}; \n ///Copies of FCR[0].\n constexpr Register::FieldLocation fifoenable{}; \n ///End of auto-baud interrupt. True if auto-baud has finished successfully and interrupt is enabled.\n constexpr Register::FieldLocation abeoint{}; \n ///Auto-baud time-out interrupt. True if auto-baud has timed out and interrupt is enabled.\n constexpr Register::FieldLocation abtoint{}; \n ///Reserved, the value read from a reserved bit is not defined.\n constexpr Register::FieldLocation reserved{}; \n }\n namespace Uart1Fcr{ ///;\n ///FIFO enable.\n enum class FifoenVal {\n mustNotBeUsedIn=0x00000000, /// fifoen{}; \n namespace FifoenValC{\n constexpr Register::FieldValue mustNotBeUsedIn{};\n constexpr Register::FieldValue activeHighEnableF{};\n }\n ///RX FIFO Reset.\n enum class RxfiforesVal {\n noImpactOnEither=0x00000000, /// rxfifores{}; \n namespace RxfiforesValC{\n constexpr Register::FieldValue noImpactOnEither{};\n constexpr Register::FieldValue writingALogic1To{};\n }\n ///TX FIFO Reset.\n enum class TxfiforesVal {\n noImpactOnEither=0x00000000, /// txfifores{}; \n namespace TxfiforesValC{\n constexpr Register::FieldValue noImpactOnEither{};\n constexpr Register::FieldValue writingALogic1To{};\n }\n ///DMA Mode Select. When the FIFO enable bit (bit 0 of this register) is set, this bit selects the DMA mode. See Section 36.6.6.1.\n constexpr Register::FieldLocation dmamode{}; \n ///Reserved, user software should not write ones to reserved bits. The value read from a reserved bit is not defined.\n constexpr Register::FieldLocation reserved{}; \n ///RX Trigger Level. These two bits determine how many receiver UART1 FIFO characters must be written before an interrupt is activated.\n enum class RxtriglvlVal {\n triggerLevel01C=0x00000000, /// rxtriglvl{}; \n namespace RxtriglvlValC{\n constexpr Register::FieldValue triggerLevel01C{};\n constexpr Register::FieldValue triggerLevel14C{};\n constexpr Register::FieldValue triggerLevel28C{};\n constexpr Register::FieldValue triggerLevel314{};\n }\n ///Reserved, user software should not write ones to reserved bits.\n constexpr Register::FieldLocation reserved{}; \n }\n namespace Uart1Lcr{ ///;\n ///Word Length Select.\n enum class WlsVal {\n v5BitCharacterLeng=0x00000000, ///<5-bit character length.\n v6BitCharacterLeng=0x00000001, ///<6-bit character length.\n v7BitCharacterLeng=0x00000002, ///<7-bit character length.\n v8BitCharacterLeng=0x00000003, ///<8-bit character length.\n };\n constexpr Register::FieldLocation wls{}; \n namespace WlsValC{\n constexpr Register::FieldValue v5BitCharacterLeng{};\n constexpr Register::FieldValue v6BitCharacterLeng{};\n constexpr Register::FieldValue v7BitCharacterLeng{};\n constexpr Register::FieldValue v8BitCharacterLeng{};\n }\n ///Stop Bit Select.\n enum class SbsVal {\n v1StopBit=0x00000000, ///<1 stop bit.\n v2StopBits15If=0x00000001, ///<2 stop bits (1.5 if LCR[1:0]=00).\n };\n constexpr Register::FieldLocation sbs{}; \n namespace SbsValC{\n constexpr Register::FieldValue v1StopBit{};\n constexpr Register::FieldValue v2StopBits15If{};\n }\n ///Parity Enable.\n enum class PeVal {\n disableParityGener=0x00000000, /// pe{}; \n namespace PeValC{\n constexpr Register::FieldValue disableParityGener{};\n constexpr Register::FieldValue enableParityGenera{};\n }\n ///Parity Select.\n enum class PsVal {\n oddParityNumberO=0x00000000, /// ps{}; \n namespace PsValC{\n constexpr Register::FieldValue oddParityNumberO{};\n constexpr Register::FieldValue evenParityNumber{};\n constexpr Register::FieldValue forced1stickPar{};\n constexpr Register::FieldValue forced0stickPar{};\n }\n ///Break Control.\n enum class BcVal {\n disableBreakTransm=0x00000000, /// bc{}; \n namespace BcValC{\n constexpr Register::FieldValue disableBreakTransm{};\n constexpr Register::FieldValue enableBreakTransmi{};\n }\n ///Divisor Latch Access Bit (DLAB)\n enum class DlabVal {\n disableAccessToDi=0x00000000, /// dlab{}; \n namespace DlabValC{\n constexpr Register::FieldValue disableAccessToDi{};\n constexpr Register::FieldValue enableAccessToDiv{};\n }\n ///Reserved, user software should not write ones to reserved bits. The value read from a reserved bit is not defined.\n constexpr Register::FieldLocation reserved{}; \n }\n namespace Uart1Mcr{ ///;\n ///DTR Control. Source for modem output pin, DTR. This bit reads as 0 when modem loopback mode is active.\n constexpr Register::FieldLocation dtrctrl{}; \n ///RTS Control. Source for modem output pin RTS. This bit reads as 0 when modem loopback mode is active.\n constexpr Register::FieldLocation rtsctrl{}; \n ///Reserved, user software should not write ones to reserved bits. The value read from a reserved bit is not defined.\n constexpr Register::FieldLocation reserved{}; \n ///Loopback Mode Select. The modem loopback mode provides a mechanism to perform diagnostic loopback testing. Serial data from the transmitter is connected internally to serial input of the receiver. Input pin, RXD1, has no effect on loopback and output pin, TXD1 is held in marking state. The 4 modem inputs (CTS, DSR, RI and DCD) are disconnected externally. Externally, the modem outputs (RTS, DTR) are set inactive. Internally, the 4 modem outputs are connected to the 4 modem inputs. As a result of these connections, the upper 4 bits of the MSR will be driven by the lower 4 bits of the MCR rather than the 4 modem inputs in normal mode. This permits modem status interrupts to be generated in loopback mode by writing the lower 4 bits of MCR.\n enum class LmsVal {\n disableModemLoopba=0x00000000, /// lms{}; \n namespace LmsValC{\n constexpr Register::FieldValue disableModemLoopba{};\n constexpr Register::FieldValue enableModemLoopbac{};\n }\n ///Reserved, user software should not write ones to reserved bits. The value read from a reserved bit is not defined.\n constexpr Register::FieldLocation reserved{}; \n ///RTS enable.\n enum class RtsenVal {\n disableAutoRtsFlo=0x00000000, /// rtsen{}; \n namespace RtsenValC{\n constexpr Register::FieldValue disableAutoRtsFlo{};\n constexpr Register::FieldValue enableAutoRtsFlow{};\n }\n ///CTS enable.\n enum class CtsenVal {\n disableAutoCtsFlo=0x00000000, /// ctsen{}; \n namespace CtsenValC{\n constexpr Register::FieldValue disableAutoCtsFlo{};\n constexpr Register::FieldValue enableAutoCtsFlow{};\n }\n ///Reserved, user software should not write ones to reserved bits. The value read from a reserved bit is not defined.\n constexpr Register::FieldLocation reserved{}; \n }\n namespace Uart1Lsr{ ///;\n ///Receiver Data Ready. LSR[0] is set when the RBR holds an unread character and is cleared when the UART1 RBR FIFO is empty.\n enum class RdrVal {\n empty=0x00000000, /// rdr{}; \n namespace RdrValC{\n constexpr Register::FieldValue empty{};\n constexpr Register::FieldValue notempty{};\n }\n ///Overrun Error. The overrun error condition is set as soon as it occurs. An LSR read clears LSR[1]. LSR[1] is set when UART1 RSR has a new character assembled and the UART1 RBR FIFO is full. In this case, the UART1 RBR FIFO will not be overwritten and the character in the UART1 RSR will be lost.\n enum class OeVal {\n inactive=0x00000000, /// oe{}; \n namespace OeValC{\n constexpr Register::FieldValue inactive{};\n constexpr Register::FieldValue active{};\n }\n ///Parity Error. When the parity bit of a received character is in the wrong state, a parity error occurs. An LSR read clears LSR[2]. Time of parity error detection is dependent on FCR[0]. Note: A parity error is associated with the character at the top of the UART1 RBR FIFO.\n enum class PeVal {\n inactive=0x00000000, /// pe{}; \n namespace PeValC{\n constexpr Register::FieldValue inactive{};\n constexpr Register::FieldValue active{};\n }\n ///Framing Error. When the stop bit of a received character is a logic 0, a framing error occurs. An LSR read clears LSR[3]. The time of the framing error detection is dependent on FCR0. Upon detection of a framing error, the RX will attempt to resynchronize to the data and assume that the bad stop bit is actually an early start bit. However, it cannot be assumed that the next received byte will be correct even if there is no Framing Error. Note: A framing error is associated with the character at the top of the UART1 RBR FIFO.\n enum class FeVal {\n inactive=0x00000000, /// fe{}; \n namespace FeValC{\n constexpr Register::FieldValue inactive{};\n constexpr Register::FieldValue active{};\n }\n ///Break Interrupt. When RXD1 is held in the spacing state (all zeroes) for one full character transmission (start, data, parity, stop), a break interrupt occurs. Once the break condition has been detected, the receiver goes idle until RXD1 goes to marking state (all ones). An LSR read clears this status bit. The time of break detection is dependent on FCR[0]. Note: The break interrupt is associated with the character at the top of the UART1 RBR FIFO.\n enum class BiVal {\n inactive=0x00000000, /// bi{}; \n namespace BiValC{\n constexpr Register::FieldValue inactive{};\n constexpr Register::FieldValue active{};\n }\n ///Transmitter Holding Register Empty. THRE is set immediately upon detection of an empty UART1 THR and is cleared on a THR write.\n enum class ThreVal {\n valid=0x00000000, /// thre{}; \n namespace ThreValC{\n constexpr Register::FieldValue valid{};\n constexpr Register::FieldValue thrIsEmpty{};\n }\n ///Transmitter Empty. TEMT is set when both THR and TSR are empty; TEMT is cleared when either the TSR or the THR contain valid data.\n enum class TemtVal {\n valid=0x00000000, /// temt{}; \n namespace TemtValC{\n constexpr Register::FieldValue valid{};\n constexpr Register::FieldValue empty{};\n }\n ///Error in RX FIFO. LSR[7] is set when a character with a RX error such as framing error, parity error or break interrupt, is loaded into the RBR. This bit is cleared when the LSR register is read and there are no subsequent errors in the UART1 FIFO.\n enum class RxfeVal {\n noerror=0x00000000, /// rxfe{}; \n namespace RxfeValC{\n constexpr Register::FieldValue noerror{};\n constexpr Register::FieldValue errors{};\n }\n ///Reserved, the value read from a reserved bit is not defined.\n constexpr Register::FieldLocation reserved{}; \n }\n namespace Uart1Msr{ ///;\n ///Delta CTS. Set upon state change of input CTS. Cleared on an MSR read.\n enum class DctsVal {\n noChangeDetectedO=0x00000000, /// dcts{}; \n namespace DctsValC{\n constexpr Register::FieldValue noChangeDetectedO{};\n constexpr Register::FieldValue stateChangeDetecte{};\n }\n ///Delta DSR. Set upon state change of input DSR. Cleared on an MSR read.\n enum class DdsrVal {\n noChangeDetectedO=0x00000000, /// ddsr{}; \n namespace DdsrValC{\n constexpr Register::FieldValue noChangeDetectedO{};\n constexpr Register::FieldValue stateChangeDetecte{};\n }\n ///Trailing Edge RI. Set upon low to high transition of input RI. Cleared on an MSR read.\n enum class TeriVal {\n noChangeDetectedO=0x00000000, /// teri{}; \n namespace TeriValC{\n constexpr Register::FieldValue noChangeDetectedO{};\n constexpr Register::FieldValue lowToHighTransiti{};\n }\n ///Delta DCD. Set upon state change of input DCD. Cleared on an MSR read.\n enum class DdcdVal {\n noChangeDetectedO=0x00000000, /// ddcd{}; \n namespace DdcdValC{\n constexpr Register::FieldValue noChangeDetectedO{};\n constexpr Register::FieldValue stateChangeDetecte{};\n }\n ///Clear To Send State. Complement of input signal CTS. This bit is connected to MCR[1] in modem loopback mode.\n constexpr Register::FieldLocation cts{}; \n ///Data Set Ready State. Complement of input signal DSR. This bit is connected to MCR[0] in modem loopback mode.\n constexpr Register::FieldLocation dsr{}; \n ///Ring Indicator State. Complement of input RI. This bit is connected to MCR[2] in modem loopback mode.\n constexpr Register::FieldLocation ri{}; \n ///Data Carrier Detect State. Complement of input DCD. This bit is connected to MCR[3] in modem loopback mode.\n constexpr Register::FieldLocation dcd{}; \n ///Reserved, the value read from a reserved bit is not defined.\n constexpr Register::FieldLocation reserved{}; \n }\n namespace Uart1Scr{ ///;\n ///A readable, writable byte.\n constexpr Register::FieldLocation pad{}; \n ///Reserved. Read value is undefined, only zero should be written.\n constexpr Register::FieldLocation reserved{}; \n }\n namespace Uart1Acr{ ///;\n ///Auto-baud start bit. This bit is automatically cleared after auto-baud completion.\n enum class StartVal {\n stop=0x00000000, /// start{}; \n namespace StartValC{\n constexpr Register::FieldValue stop{};\n constexpr Register::FieldValue start{};\n }\n ///Auto-baud mode select bit.\n enum class ModeVal {\n mode0=0x00000000, /// mode{}; \n namespace ModeValC{\n constexpr Register::FieldValue mode0{};\n constexpr Register::FieldValue mode1{};\n }\n ///Auto-baud restart bit.\n enum class AutorestartVal {\n noRestart=0x00000000, /// autorestart{}; \n namespace AutorestartValC{\n constexpr Register::FieldValue noRestart{};\n constexpr Register::FieldValue restartInCaseOfT{};\n }\n ///Reserved, user software should not write ones to reserved bits. The value read from a reserved bit is not defined.\n constexpr Register::FieldLocation reserved{}; \n ///End of auto-baud interrupt clear bit (write-only).\n enum class AbeointclrVal {\n writingA0HasNoI=0x00000000, /// abeointclr{}; \n namespace AbeointclrValC{\n constexpr Register::FieldValue writingA0HasNoI{};\n constexpr Register::FieldValue writingA1WillCle{};\n }\n ///Auto-baud time-out interrupt clear bit (write-only).\n enum class AbtointclrVal {\n writingA0HasNoI=0x00000000, /// abtointclr{}; \n namespace AbtointclrValC{\n constexpr Register::FieldValue writingA0HasNoI{};\n constexpr Register::FieldValue writingA1WillCle{};\n }\n ///Reserved, user software should not write ones to reserved bits. The value read from a reserved bit is not defined.\n constexpr Register::FieldLocation reserved{}; \n }\n namespace Uart1Fdr{ ///;\n ///Baud rate generation pre-scaler divisor value. If this field is 0, fractional baud rate generator will not impact the UART1 baud rate.\n constexpr Register::FieldLocation divaddval{}; \n ///Baud rate pre-scaler multiplier value. This field must be greater or equal 1 for UART1 to operate properly, regardless of whether the fractional baud rate generator is used or not.\n constexpr Register::FieldLocation mulval{}; \n ///Reserved. Read value is undefined, only zero should be written.\n constexpr Register::FieldLocation reserved{}; \n }\n namespace Uart1Ter{ ///;\n ///Reserved. Read value is undefined, only zero should be written.\n constexpr Register::FieldLocation reserved{}; \n ///When this bit is 1, as it is after a Reset, data written to the THR is output on the TXD pin as soon as any preceding data has been sent. If this bit cleared to 0 while a character is being sent, the transmission of that character is completed, but no further characters are sent until this bit is set again. In other words, a 0 in this bit blocks the transfer of characters from the THR or TX FIFO into the transmit shift register. Software can clear this bit when it detects that the a hardware-handshaking TX-permit signal (CTS) has gone false, or with software handshaking, when it receives an XOFF character (DC3). Software can set this bit again when it detects that the TX-permit signal has gone true, or when it receives an XON (DC1) character.\n constexpr Register::FieldLocation txen{}; \n ///Reserved. Read value is undefined, only zero should be written.\n constexpr Register::FieldLocation reserved{}; \n }\n namespace Uart1Rs485ctrl{ ///;\n ///RS-485/EIA-485 Normal Multidrop Mode (NMM) mode select.\n enum class NmmenVal {\n disabled=0x00000000, /// nmmen{}; \n namespace NmmenValC{\n constexpr Register::FieldValue disabled{};\n constexpr Register::FieldValue enabledInThisMod{};\n }\n ///Receive enable.\n enum class RxdisVal {\n enabled=0x00000000, /// rxdis{}; \n namespace RxdisValC{\n constexpr Register::FieldValue enabled{};\n constexpr Register::FieldValue disabled{};\n }\n ///Auto Address Detect (AAD) enable.\n enum class AadenVal {\n disabled=0x00000000, /// aaden{}; \n namespace AadenValC{\n constexpr Register::FieldValue disabled{};\n constexpr Register::FieldValue enabled{};\n }\n ///Direction control.\n enum class SelVal {\n rtsIfDirectionCo=0x00000000, /// sel{}; \n namespace SelValC{\n constexpr Register::FieldValue rtsIfDirectionCo{};\n constexpr Register::FieldValue dtrIfDirectionCo{};\n }\n ///Direction control enable.\n enum class DctrlVal {\n disableAutoDirecti=0x00000000, /// dctrl{}; \n namespace DctrlValC{\n constexpr Register::FieldValue disableAutoDirecti{};\n constexpr Register::FieldValue enableAutoDirectio{};\n }\n ///Polarity. This bit reverses the polarity of the direction control signal on the RTS (or DTR) pin.\n enum class OinvVal {\n lowTheDirectionC=0x00000000, /// oinv{}; \n namespace OinvValC{\n constexpr Register::FieldValue lowTheDirectionC{};\n constexpr Register::FieldValue highTheDirection{};\n }\n ///Reserved, user software should not write ones to reserved bits. The value read from a reserved bit is not defined.\n constexpr Register::FieldLocation reserved{}; \n }\n namespace Uart1Rs485adrmatch{ ///;\n ///Contains the address match value.\n constexpr Register::FieldLocation adrmatch{}; \n ///Reserved. Read value is undefined, only zero should be written.\n constexpr Register::FieldLocation reserved{}; \n }\n namespace Uart1Rs485dly{ ///;\n ///Contains the direction control (RTS or DTR) delay value. This register works in conjunction with an 8-bit counter.\n constexpr Register::FieldLocation dly{}; \n ///Reserved. Read value is undefined, only zero should be written.\n constexpr Register::FieldLocation reserved{}; \n }\n}\n"}
+{"text": "\n\n\n\n\nThe API for client-side HTTP authentication against a server,\ncommonly referred to as HttpAuth.\n\n\n\n"}
+{"text": "/*\n * Copyright (C) 2016 The Android Open Source Project\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\npackage com.android.server.wm;\n\nimport static android.app.WindowConfiguration.ACTIVITY_TYPE_STANDARD;\nimport static android.app.WindowConfiguration.WINDOWING_MODE_FULLSCREEN;\nimport static android.view.WindowManager.LayoutParams.TYPE_APPLICATION_STARTING;\nimport static android.view.WindowManager.LayoutParams.TYPE_BASE_APPLICATION;\nimport static android.view.WindowManager.TRANSIT_ACTIVITY_CLOSE;\nimport static android.view.WindowManager.TRANSIT_ACTIVITY_OPEN;\nimport static android.view.WindowManager.TRANSIT_CRASHING_ACTIVITY_CLOSE;\nimport static android.view.WindowManager.TRANSIT_KEYGUARD_GOING_AWAY;\nimport static android.view.WindowManager.TRANSIT_KEYGUARD_UNOCCLUDE;\n\nimport static androidx.test.platform.app.InstrumentationRegistry.getInstrumentation;\n\nimport static com.android.dx.mockito.inline.extended.ExtendedMockito.doNothing;\nimport static com.android.dx.mockito.inline.extended.ExtendedMockito.doReturn;\n\nimport static org.junit.Assert.assertEquals;\nimport static org.junit.Assert.assertFalse;\nimport static org.junit.Assert.assertNull;\nimport static org.junit.Assert.assertTrue;\nimport static org.mockito.ArgumentMatchers.any;\n\nimport android.os.IBinder;\nimport android.os.RemoteException;\nimport android.platform.test.annotations.Presubmit;\nimport android.view.Display;\nimport android.view.IRemoteAnimationFinishedCallback;\nimport android.view.IRemoteAnimationRunner;\nimport android.view.RemoteAnimationAdapter;\nimport android.view.RemoteAnimationTarget;\nimport android.view.WindowManager;\n\nimport androidx.test.filters.FlakyTest;\nimport androidx.test.filters.SmallTest;\n\nimport org.junit.Before;\nimport org.junit.Test;\nimport org.junit.runner.RunWith;\n\n/**\n * Test class for {@link AppTransition}.\n *\n * Build/Install/Run:\n * atest WmTests:AppTransitionTests\n */\n@SmallTest\n@Presubmit\n@RunWith(WindowTestRunner.class)\npublic class AppTransitionTests extends WindowTestsBase {\n private DisplayContent mDc;\n\n @Before\n public void setUp() throws Exception {\n doNothing().when(mWm.mRoot).performSurfacePlacement();\n mDc = mWm.getDefaultDisplayContentLocked();\n }\n\n @Test\n public void testKeyguardOverride() {\n mWm.prepareAppTransition(TRANSIT_ACTIVITY_OPEN, false /* alwaysKeepCurrent */);\n mWm.prepareAppTransition(TRANSIT_KEYGUARD_GOING_AWAY, false /* alwaysKeepCurrent */);\n assertEquals(TRANSIT_KEYGUARD_GOING_AWAY, mDc.mAppTransition.getAppTransition());\n }\n\n @Test\n public void testKeyguardKeep() {\n mWm.prepareAppTransition(TRANSIT_KEYGUARD_GOING_AWAY, false /* alwaysKeepCurrent */);\n mWm.prepareAppTransition(TRANSIT_ACTIVITY_OPEN, false /* alwaysKeepCurrent */);\n assertEquals(TRANSIT_KEYGUARD_GOING_AWAY, mDc.mAppTransition.getAppTransition());\n }\n\n @Test\n public void testForceOverride() {\n mWm.prepareAppTransition(TRANSIT_KEYGUARD_UNOCCLUDE, false /* alwaysKeepCurrent */);\n mDc.prepareAppTransition(TRANSIT_ACTIVITY_OPEN,\n false /* alwaysKeepCurrent */, 0 /* flags */, true /* forceOverride */);\n assertEquals(TRANSIT_ACTIVITY_OPEN, mDc.mAppTransition.getAppTransition());\n }\n\n @Test\n public void testCrashing() {\n mWm.prepareAppTransition(TRANSIT_ACTIVITY_OPEN, false /* alwaysKeepCurrent */);\n mWm.prepareAppTransition(TRANSIT_CRASHING_ACTIVITY_CLOSE, false /* alwaysKeepCurrent */);\n assertEquals(TRANSIT_CRASHING_ACTIVITY_CLOSE, mDc.mAppTransition.getAppTransition());\n }\n\n @Test\n public void testKeepKeyguard_withCrashing() {\n mWm.prepareAppTransition(TRANSIT_KEYGUARD_GOING_AWAY, false /* alwaysKeepCurrent */);\n mWm.prepareAppTransition(TRANSIT_CRASHING_ACTIVITY_CLOSE, false /* alwaysKeepCurrent */);\n assertEquals(TRANSIT_KEYGUARD_GOING_AWAY, mDc.mAppTransition.getAppTransition());\n }\n\n @Test\n public void testAppTransitionStateForMultiDisplay() {\n // Create 2 displays & presume both display the state is ON for ready to display & animate.\n final DisplayContent dc1 = createNewDisplay(Display.STATE_ON);\n final DisplayContent dc2 = createNewDisplay(Display.STATE_ON);\n\n // Create 2 app window tokens to represent 2 activity window.\n final ActivityRecord activity1 = createTestActivityRecord(dc1,\n WINDOWING_MODE_FULLSCREEN, ACTIVITY_TYPE_STANDARD);\n final ActivityRecord activity2 = createTestActivityRecord(dc2,\n WINDOWING_MODE_FULLSCREEN, ACTIVITY_TYPE_STANDARD);\n\n activity1.allDrawn = true;\n activity1.startingDisplayed = true;\n activity1.startingMoved = true;\n\n // Simulate activity resume / finish flows to prepare app transition & set visibility,\n // make sure transition is set as expected for each display.\n dc1.prepareAppTransition(TRANSIT_ACTIVITY_OPEN,\n false /* alwaysKeepCurrent */, 0 /* flags */, false /* forceOverride */);\n assertEquals(TRANSIT_ACTIVITY_OPEN, dc1.mAppTransition.getAppTransition());\n dc2.prepareAppTransition(TRANSIT_ACTIVITY_CLOSE,\n false /* alwaysKeepCurrent */, 0 /* flags */, false /* forceOverride */);\n assertEquals(TRANSIT_ACTIVITY_CLOSE, dc2.mAppTransition.getAppTransition());\n // One activity window is visible for resuming & the other activity window is invisible\n // for finishing in different display.\n activity1.setVisibility(true, false);\n activity2.setVisibility(false, false);\n\n // Make sure each display is in animating stage.\n assertTrue(dc1.mOpeningApps.size() > 0);\n assertTrue(dc2.mClosingApps.size() > 0);\n assertTrue(dc1.isAppTransitioning());\n assertTrue(dc2.isAppTransitioning());\n }\n\n @Test\n public void testCleanAppTransitionWhenTaskStackReparent() {\n // Create 2 displays & presume both display the state is ON for ready to display & animate.\n final DisplayContent dc1 = createNewDisplay(Display.STATE_ON);\n final DisplayContent dc2 = createNewDisplay(Display.STATE_ON);\n\n final ActivityStack stack1 = createTaskStackOnDisplay(dc1);\n final Task task1 = createTaskInStack(stack1, 0 /* userId */);\n final ActivityRecord activity1 =\n WindowTestUtils.createTestActivityRecord(dc1);\n task1.addChild(activity1, 0);\n\n // Simulate same app is during opening / closing transition set stage.\n dc1.mClosingApps.add(activity1);\n assertTrue(dc1.mClosingApps.size() > 0);\n\n dc1.prepareAppTransition(TRANSIT_ACTIVITY_OPEN,\n false /* alwaysKeepCurrent */, 0 /* flags */, false /* forceOverride */);\n assertEquals(TRANSIT_ACTIVITY_OPEN, dc1.mAppTransition.getAppTransition());\n assertTrue(dc1.mAppTransition.isTransitionSet());\n\n dc1.mOpeningApps.add(activity1);\n assertTrue(dc1.mOpeningApps.size() > 0);\n\n // Move stack to another display.\n stack1.reparent(dc2.getDefaultTaskDisplayArea(), true);\n\n // Verify if token are cleared from both pending transition list in former display.\n assertFalse(dc1.mOpeningApps.contains(activity1));\n assertFalse(dc1.mOpeningApps.contains(activity1));\n }\n\n @Test\n public void testLoadAnimationSafely() {\n DisplayContent dc = createNewDisplay(Display.STATE_ON);\n assertNull(dc.mAppTransition.loadAnimationSafely(\n getInstrumentation().getTargetContext(), -1));\n }\n\n @Test\n public void testCancelRemoteAnimationWhenFreeze() {\n final DisplayContent dc = createNewDisplay(Display.STATE_ON);\n doReturn(false).when(dc).onDescendantOrientationChanged(any(), any());\n final WindowState exitingAppWindow = createWindow(null /* parent */, TYPE_BASE_APPLICATION,\n dc, \"exiting app\");\n final ActivityRecord exitingActivity= exitingAppWindow.mActivityRecord;\n // Wait until everything in animation handler get executed to prevent the exiting window\n // from being removed during WindowSurfacePlacer Traversal.\n waitUntilHandlersIdle();\n\n // Set a remote animator.\n final TestRemoteAnimationRunner runner = new TestRemoteAnimationRunner();\n final RemoteAnimationAdapter adapter = new RemoteAnimationAdapter(\n runner, 100, 50, true /* changeNeedsSnapshot */);\n // RemoteAnimationController will tracking RemoteAnimationAdapter's caller with calling pid.\n adapter.setCallingPidUid(123, 456);\n\n // Simulate activity finish flows to prepare app transition & set visibility,\n // make sure transition is set as expected.\n dc.prepareAppTransition(TRANSIT_ACTIVITY_CLOSE,\n false /* alwaysKeepCurrent */, 0 /* flags */, false /* forceOverride */);\n assertEquals(TRANSIT_ACTIVITY_CLOSE, dc.mAppTransition.getAppTransition());\n dc.mAppTransition.overridePendingAppTransitionRemote(adapter);\n exitingActivity.setVisibility(false, false);\n assertTrue(dc.mClosingApps.size() > 0);\n\n // Make sure window is in animating stage before freeze, and cancel after freeze.\n assertTrue(dc.isAppTransitioning());\n assertFalse(runner.mCancelled);\n dc.mAppTransition.freeze();\n assertFalse(dc.isAppTransitioning());\n assertTrue(runner.mCancelled);\n }\n\n @Test\n public void testGetAnimationStyleResId() {\n // Verify getAnimationStyleResId will return as LayoutParams.windowAnimations when without\n // specifying window type.\n final WindowManager.LayoutParams attrs = new WindowManager.LayoutParams();\n attrs.windowAnimations = 0x12345678;\n assertEquals(attrs.windowAnimations, mDc.mAppTransition.getAnimationStyleResId(attrs));\n\n // Verify getAnimationStyleResId will return system resource Id when the window type is\n // starting window.\n attrs.type = TYPE_APPLICATION_STARTING;\n assertEquals(mDc.mAppTransition.getDefaultWindowAnimationStyleResId(),\n mDc.mAppTransition.getAnimationStyleResId(attrs));\n }\n\n private class TestRemoteAnimationRunner implements IRemoteAnimationRunner {\n boolean mCancelled = false;\n @Override\n public void onAnimationStart(RemoteAnimationTarget[] apps,\n RemoteAnimationTarget[] wallpapers,\n IRemoteAnimationFinishedCallback finishedCallback) throws RemoteException {\n }\n\n @Override\n public void onAnimationCancelled() {\n mCancelled = true;\n }\n\n @Override\n public IBinder asBinder() {\n return null;\n }\n }\n}\n"}
+{"text": ". \"$OSPL_HOME/bin/checkconf\"\n\nSPLICE_HOST=sparc.solaris10_studio12-debug\nSPLICE_TARGET=sparc.solaris10_studio12-debug\nexport SPLICE_HOST SPLICE_TARGET\n\nERRS=0\n\nbinutils_native_check || ERRS=1\nsun_cc_studio12_check || ERRS=1\nmake_check || ERRS=1\ngawk_check || ERRS=1\nbison_check || ERRS=1\nflex_check || ERRS=1\njavac_check || ERRS=1\ngmcs_check || ERRS=1\ntao_check || ERRS=1\njacorb_check || ERRS=1\ngsoap_check || ERRS=1\ndoxygen_check || ERRS=1\nprotoc_check || ERRS=1\nc99_check || ERRS=1\nmaven_check_inner || ERRS=1\nkey_value_store_check || ERRS=1\n\nSPLICE_HOST_FULL=solaris10_studio12.${STUDIO_VERSION}-debug\nSPLICE_TARGET_FULL=$SPLICE_HOST_FULL\nexport SPLICE_HOST_FULL SPLICE_TARGET_FULL\n\nif [ -z \"$REPORT\" ]\nthen\n if [ \"$ERRS\" = \"0\" ]\n then\n echo Configuration OK\n CONFIGURATION=OK\n else\n echo Configuration Invalid\n CONFIGURATION=INVALID\n fi\n export CONFIGURATION\n cleanup_checks\nfi\n"}
+{"text": "###########################################################\n# Items\n###########################################################\n\nitem.woot.die.mesh.name=Mesh Die\nitem.woot.die.plate.name=Plate Die\nitem.woot.die.core.name=Core Die\nitem.woot.die.shard.name=Shard Die\n\nitem.woot.factorycore.heart.name=Heart Core\nitem.woot.factorycore.controller.name=Controller Core\nitem.woot.factorycore.t1_upgrade.name=Tier I Upgrade Core\nitem.woot.factorycore.t2_upgrade.name=Tier II Upgrade Core\nitem.woot.factorycore.t3_upgrade.name=Tier III Upgrade Core\nitem.woot.factorycore.power.name=Power Core\nitem.woot.factorycore.cap.name=Cap Core\n\nitem.woot.factorybase.name=Factory Base\nitem.woot.prism.name=Prism\n\nitem.woot.stygianironingot.name=Stygian Iron Ingot\nitem.woot.stygianironplate.name=Stygian Iron Plate\nitem.woot.stygianirondust.name=Stygian Iron Dust\nitem.woot.soulsanddust.name=Soul Dust\n\nitem.woot.endershard.name=Ender Shard\nitem.woot.shard.diamond.name=Diamond Shard\nitem.woot.shard.emerald.name=Emerald Shard\nitem.woot.shard.quartz.name=Quartz Shard\nitem.woot.shard.netherstar.name=Nether Star Shard\nitem.woot.xpshard.name=XP Shard (16XP)\n\nitem.woot.shard.tier_ii.name=Tier II Shard\nitem.woot.shard.tier_iii.name=Tier III Shard\nitem.woot.shard.tier_iv.name=Tier IV Shard\n\nitem.woot.yahhammer.name=Ya Hammer\nitem.woot.builder.name=The Intern\n\nitem.woot.fakemanual.name=Readme\n\n###########################################################\n# Blocks\n###########################################################\n\ntile.woot.soulstone.name=Soul Stone\ntile.woot.stygianiron.name=Stygian Iron Block\ntile.woot.stygianironore.name=Stygian Iron Ore\ntile.woot.anvil.name=Stygian Iron Anvil\ntile.woot.layout.name=Factory Layout\n\ntile.woot.factory.name=Factory Heart\ntile.woot.controller.name=Factory Controller\ntile.woot.importer.name=Factory Importer\ntile.woot.exporter.name=Factory Exporter\n\ntile.woot.structure.block_1.name=Factory Flesh Casing\ntile.woot.structure.block_2.name=Factory Bone Casing\ntile.woot.structure.block_3.name=Factory Blaze Casing\ntile.woot.structure.block_4.name=Factory Ender Casing\ntile.woot.structure.block_5.name=Factory Nether Casing\ntile.woot.structure.block_upgrade.name=Factory Upgrade Base\n\ntile.woot.structure.tier_i_cap.name=Factory Tier I Cap\ntile.woot.structure.tier_ii_cap.name=Factory Tier II Cap\ntile.woot.structure.tier_iii_cap.name=Factory Tier III Cap\ntile.woot.structure.tier_iv_cap.name=Factory Tier IV Cap\n\ntile.woot.cell.tier_i.name=Basic Power Cell\ntile.woot.cell.tier_ii.name=Advanced Power Cell\ntile.woot.cell.tier_iii.name=Premium Power Cell\n\ntile.woot.upgrade.xp_i.name=XP I Upgrade\ntile.woot.upgrade.xp_ii.name=XP II Upgrade\ntile.woot.upgrade.xp_iii.name=XP III Upgrade\ntile.woot.upgrade.rate_i.name=Rate I Upgrade\ntile.woot.upgrade.rate_ii.name=Rate II Upgrade\ntile.woot.upgrade.rate_iii.name=Rate III Upgrade\ntile.woot.upgrade.looting_i.name=Looting I Upgrade\ntile.woot.upgrade.looting_ii.name=Looting II Upgrade\ntile.woot.upgrade.looting_iii.name=Looting III Upgrade\ntile.woot.upgrade.mass_i.name=Mass I Upgrade\ntile.woot.upgrade.mass_ii.name=Mass II Upgrade\ntile.woot.upgrade.mass_iii.name=Mass III Upgrade\ntile.woot.upgrade.decapitate_i.name=Decapitate I Upgrade\ntile.woot.upgrade.decapitate_ii.name=Decapitate II Upgrade\ntile.woot.upgrade.decapitate_iii.name=Decapitate III Upgrade\ntile.woot.upgradeb.efficiency_i.name=Efficiency I Upgrade\ntile.woot.upgradeb.efficiency_ii.name=Efficiency II Upgrade\ntile.woot.upgradeb.efficiency_iii.name=Efficiency III Upgrade\ntile.woot.upgradeb.bm_le_tank_i.name=Blood Magic Life Essence Tank I Upgrade\ntile.woot.upgradeb.bm_le_tank_ii.name=Blood Magic Life Essence Tank II Upgrade\ntile.woot.upgradeb.bm_le_tank_iii.name=Blood Magic Life Essence Tank III Upgrade\ntile.woot.upgradeb.bm_le_altar_i.name=Blood Magic Life Essence Altar I Upgrade\ntile.woot.upgradeb.bm_le_altar_ii.name=Blood Magic Life Essence Altar II Upgrade\ntile.woot.upgradeb.bm_le_altar_iii.name=Blood Magic Life Essence Altar III Upgrade\ntile.woot.upgradeb.ec_blood_i.name=EvilCraft Blood Tank I Upgrade\ntile.woot.upgradeb.ec_blood_ii.name=EvilCraft Blood Tank II Upgrade\ntile.woot.upgradeb.ec_blood_iii.name=EvilCraft Blood Tank III Upgrade\ntile.woot.upgradeb.bm_crystal_i.name=Blood Magic Crystal I Upgrade\ntile.woot.upgradeb.bm_crystal_ii.name=Blood Magic Crystal II Upgrade\ntile.woot.upgradeb.bm_crystal_iii.name=Blood Magic Crystal III Upgrade\n\n###########################################################\n# Tabs\n###########################################################\nitemGroup.woot=Woot\n\n###########################################################\n# Tooltips\n###########################################################\ninfo.woot.xpshard.0=Use to gain experience\ninfo.woot.xpshard.1=Use while sneaking to use the full stack\n\ninfo.woot.fakemanual.0=Install Guide-API for access to the manual\ninfo.woot.fakemanual.1=Item is called Woot Guide\n\ninfo.woot.endershard.0=Hit mob with shard to capture\ninfo.woot.endershard.1=Kill mobs to fully program\ninfo.woot.endershard.2=Shard must be in your hotbar\ninfo.woot.endershard.3=Can be cleared in a crafting table\ninfo.woot.endershard.a.0=[Unprogrammed]\ninfo.woot.endershard.a.1=[Fully Programmed]\ninfo.woot.endershard.b.0=%s [Kills %d/%d]\ninfo.woot.endershard.b.1=%s [Fully programmed]\n\ninfo.woot.tier=Tier %s\n\ninfo.woot.heart.unformed=Factory not formed\ninfo.woot.heart.progress=Progress: %d%% (%s)\ninfo.woot.heart.recipe=Spawning %s * %d\ninfo.woot.heart.cost=Power %dRF @ %dRF/tick for %d ticks\ninfo.woot.heart.ingredients=Ingredients Per Mob: %d * %s\n\ninfo.woot.guide.rclick=Right-click to change tiers\ninfo.woot.guide.srclick=Sneak Right-click to change levels\n\ninfo.woot.intern.0=Use on the Factory Heart\ninfo.woot.intern.1=I/O blocks and controller must be placed manually\n\ninfo.woot.structure.block_1=Red guide block\ninfo.woot.structure.block_2=Gray guide block\ninfo.woot.structure.block_3=Orange guide block\ninfo.woot.structure.block_4=Green guide block\ninfo.woot.structure.block_5=White guide block\ninfo.woot.structure.block_upgrade=Purple guide block\ninfo.woot.structure.tier_i_cap=Light Gray guide block\ninfo.woot.structure.tier_ii_cap=Yellow guide block\ninfo.woot.structure.tier_iii_cap=Cyan guide block\ninfo.woot.structure.tier_iv_cap=Lime guide block\n\ninfo.woot.hammer.mode.validate_t1=Validate Tier I\ninfo.woot.hammer.mode.validate_t1.desc=Checks that the structure and controller are valid for Tier I\ninfo.woot.hammer.mode.validate_t2=Validate Tier II\ninfo.woot.hammer.mode.validate_t2.desc=Checks that the structure and controller are valid for Tier II\ninfo.woot.hammer.mode.validate_t3=Validate Tier III\ninfo.woot.hammer.mode.validate_t3.desc=Validate Tier 3 desc\ninfo.woot.hammer.mode.validate_t3.desc=Checks that the structure and controller are valid for Tier III\ninfo.woot.hammer.mode.validate_t4=Validate Tier IV\ninfo.woot.hammer.mode.validate_t4.desc=Checks that the structure and controller are valid for Tier IV\ninfo.woot.hammer.mode.validate_import=Validate imports\ninfo.woot.hammer.mode.validate_import.desc=Checks that tanks and inventories and valid import blocks\ninfo.woot.hammer.mode.validate_export=Validate exports\ninfo.woot.hammer.mode.validate_export.desc=Checks that tanks and inventories and valid export blocks\n\n###########################################################\n# Enchantments\n###########################################################\nenchant.woot.headhunter=Headhunter\nenchantment.woot.headhunter.desc=Mobs may drop their head when killed.\n\n###########################################################\n# Chat\n###########################################################\nchat.woot.endershard.failure=Cannot capture mob\nchat.woot.endershard.success=Captured mob\nchat.woot.anvil.nomagma=Anvil must be sitting on a Magma Block\nchat.woot.anvil.emptyshard=Unprogrammed Ender Shard\nchat.woot.anvil.invalid=No matching recipe\nchat.woot.validate.power=Found Power Cell at %d,%d,%d\nchat.woot.validate.nopower=No Power Cell\nchat.woot.validate.importer=Found Importer at %d,%d,%d\nchat.woot.validate.noimporter=No Importer\nchat.woot.validate.exporter=Found Exporter at %d,%d,%d\nchat.woot.validate.noexporter=No Exporter\nchat.woot.validate.missing=Expected %s at %d,%d,%d found nothing\nchat.woot.validate.incorrect=Expected %s at %d,%d,%d found %s\nchat.woot.validate.validating=Validating factory for %s\nchat.woot.validate.inputs=Validating connected inputs\nchat.woot.validate.outputs=Validating connected outputs\nchat.woot.validate.nocontroller=Expected controller at %d,%d,%d\nchat.woot.validate.invalidmob=Controller contains a blacklisted or unknown mob\nchat.woot.validate.invalidtier=Controller needs higher tier of factory\nchat.woot.validate.ok=Found valid %s factory\n\n###########################################################\n# Commands\n###########################################################\ncommands.woot.dev.debug.usage=Use /woot dev debug {[!]event|show|list}.\ncommands.woot.dev.power.usage=Use /woot dev power .\n\ncommands.woot.dump.loot.usage=Not implemented\ncommands.woot.dump.mobs.usage=Use /woot dump mobs\ncommands.woot.dump.tartarus.usage=Use /woot dump tartarus\ncommands.woot.dump.learning.usage=Use /woot dump learning\ncommands.woot.dump.policy.usage=Use /woot dump policy {int|ext} \n\ncommands.woot.flush.usage=Use /woot flush {all|}\n\ncommands.woot.dump.structure.usage=Use /woot dump structure\n\ncommands.woot.give.usage=Use /woot give \ncommands.woot.give.unknownentity=Entity not on EntityList\n\ncommands.woot.invalidmob=Invalid mob name\n\n# BloodMagic\nritual.woot.ritualLifeEssenceTank=Ritual of the Sanguine Urn\nritual.woot.ritualLifeEssenceAltar=Ritual of the Mechanical Altar\nritual.woot.ritualClonedSoul=Ritual of the Cloned Soul\n\n# User Interface Upgrades\nui.woot.mass.desc=Mass %d: %dRF/tick, %d mobs\nui.woot.decapitate.desc=Decapitate %d: %dRF/tick, %d%% chance\nui.woot.looting.desc=Looting %d: %dRF/tick\nui.woot.rate.desc=Rate %d: %dRF/tick, %d%% time decrease\nui.woot.efficiency.desc=Efficiency %d: %dRF/tick, %d power decrease\nui.woot.xp.desc=XP %d: %dRF/tick, %d%% generation\nui.woot.ec_blood.desc=EvilCraft Blood %d: %dRF/tick, %d mBperHP\nui.woot.bm_le_tank.desc=Blood Magic Tank %d: %dRF/tick, %d sacrifice runes\nui.woot.bm_le_altar.desc=Blood Magic Altar %d: %dRF/tick, %d%% sacrifice\nui.woot.bm_crystal.desc=Blood Magic Crystal %d: %dRF/tick %d%% mob health\n"}
+{"text": "/**\n * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\n * SPDX-License-Identifier: Apache-2.0.\n */\n\n#pragma once\n#include \n#include \n#include \n#include \n#include \n\nnamespace Aws\n{\nnamespace Utils\n{\nnamespace Json\n{\n class JsonValue;\n class JsonView;\n} // namespace Json\n} // namespace Utils\nnamespace MediaLive\n{\nnamespace Model\n{\n\n /**\n * Audio Selector Settings
\n\n# Introduction\n* Duration: \n\t* 4+ Hours\n* Prerequisites: \n\t* [003 Smart Contracts 1](./3_smart_contract_1/README.md)\n* Infrastructure Requirements:\n\t* (Required) Whiteboard or Projector\n\t* (Required) High-Speed Internet Connection\n* Instructor Prework:\n\t* (Required) Workshop content review\n\t* (Required) Eventnet setup\n* Student Prework:\n\t* (Recommended) General Understanding of blockchain fundamentals\n\t* (Recommended) Familiarization with Amazon Web Services(or other CSP)\n* Workshop Materials List:\n\t* None\n\n## Outline\nThis document outlines the complete technical execution of a hackathon from setup to finish. The goal is to provide a step-by-step procedure to significantly improve the experience of both the team running the hackathon and the participants.\n\n## Setup\n * Definition of duration and awards\n * Event-net deployment\n## Running the Hackathon\n * Average audience knowledge level\n * Running workshops\n * Clearly communicating information\n * Team formation and project planning\n * Review of projects by Instructors\n * Distribution of Gas for deployment\n * Project review\n\n"}
+{"text": "#\n# Automatically generated make config: don't edit\n# Linux kernel version: 2.6.29-rc7-s6\n# Tue Mar 10 11:09:26 2009\n#\n# CONFIG_FRAME_POINTER is not set\nCONFIG_ZONE_DMA=y\nCONFIG_XTENSA=y\nCONFIG_RWSEM_XCHGADD_ALGORITHM=y\nCONFIG_GENERIC_FIND_NEXT_BIT=y\nCONFIG_GENERIC_HWEIGHT=y\nCONFIG_GENERIC_HARDIRQS=y\nCONFIG_GENERIC_GPIO=y\n# CONFIG_ARCH_HAS_ILOG2_U32 is not set\n# CONFIG_ARCH_HAS_ILOG2_U64 is not set\nCONFIG_NO_IOPORT=y\nCONFIG_HZ=100\nCONFIG_GENERIC_TIME=y\nCONFIG_DEFCONFIG_LIST=\"/lib/modules/$UNAME_RELEASE/.config\"\n\n#\n# General setup\n#\nCONFIG_EXPERIMENTAL=y\nCONFIG_BROKEN_ON_SMP=y\nCONFIG_LOCK_KERNEL=y\nCONFIG_INIT_ENV_ARG_LIMIT=32\nCONFIG_LOCALVERSION=\"\"\nCONFIG_LOCALVERSION_AUTO=y\nCONFIG_SYSVIPC=y\nCONFIG_SYSVIPC_SYSCTL=y\n# CONFIG_POSIX_MQUEUE is not set\n# CONFIG_BSD_PROCESS_ACCT is not set\n# CONFIG_TASKSTATS is not set\n# CONFIG_AUDIT is not set\n\n#\n# RCU Subsystem\n#\n# CONFIG_CLASSIC_RCU is not set\n# CONFIG_TREE_RCU is not set\nCONFIG_PREEMPT_RCU=y\n# CONFIG_RCU_TRACE is not set\n# CONFIG_TREE_RCU_TRACE is not set\n# CONFIG_PREEMPT_RCU_TRACE is not set\nCONFIG_IKCONFIG=y\nCONFIG_IKCONFIG_PROC=y\nCONFIG_LOG_BUF_SHIFT=16\n# CONFIG_GROUP_SCHED is not set\n# CONFIG_CGROUPS is not set\n# CONFIG_SYSFS_DEPRECATED_V2 is not set\n# CONFIG_RELAY is not set\n# CONFIG_NAMESPACES is not set\nCONFIG_BLK_DEV_INITRD=y\nCONFIG_INITRAMFS_SOURCE=\"\"\nCONFIG_CC_OPTIMIZE_FOR_SIZE=y\nCONFIG_SYSCTL=y\nCONFIG_EMBEDDED=y\nCONFIG_SYSCTL_SYSCALL=y\nCONFIG_KALLSYMS=y\n# CONFIG_KALLSYMS_ALL is not set\n# CONFIG_KALLSYMS_EXTRA_PASS is not set\n# CONFIG_HOTPLUG is not set\nCONFIG_PRINTK=y\nCONFIG_BUG=y\nCONFIG_ELF_CORE=y\n# CONFIG_COMPAT_BRK is not set\nCONFIG_BASE_FULL=y\nCONFIG_FUTEX=y\nCONFIG_ANON_INODES=y\nCONFIG_EPOLL=y\nCONFIG_SIGNALFD=y\nCONFIG_TIMERFD=y\nCONFIG_EVENTFD=y\nCONFIG_AIO=y\nCONFIG_VM_EVENT_COUNTERS=y\nCONFIG_SLAB=y\n# CONFIG_SLUB is not set\n# CONFIG_SLOB is not set\n# CONFIG_PROFILING is not set\n# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set\nCONFIG_SLABINFO=y\nCONFIG_RT_MUTEXES=y\nCONFIG_BASE_SMALL=0\n# CONFIG_MODULES is not set\nCONFIG_BLOCK=y\n# CONFIG_LBD is not set\n# CONFIG_BLK_DEV_IO_TRACE is not set\n# CONFIG_BLK_DEV_BSG is not set\n# CONFIG_BLK_DEV_INTEGRITY is not set\n\n#\n# IO Schedulers\n#\nCONFIG_IOSCHED_NOOP=y\n# CONFIG_IOSCHED_AS is not set\n# CONFIG_IOSCHED_DEADLINE is not set\nCONFIG_IOSCHED_CFQ=y\n# CONFIG_DEFAULT_AS is not set\n# CONFIG_DEFAULT_DEADLINE is not set\nCONFIG_DEFAULT_CFQ=y\n# CONFIG_DEFAULT_NOOP is not set\nCONFIG_DEFAULT_IOSCHED=\"cfq\"\n# CONFIG_FREEZER is not set\n# CONFIG_MMU is not set\nCONFIG_VARIANT_IRQ_SWITCH=y\n\n#\n# Processor type and features\n#\n# CONFIG_XTENSA_VARIANT_FSF is not set\n# CONFIG_XTENSA_VARIANT_DC232B is not set\nCONFIG_XTENSA_VARIANT_S6000=y\n# CONFIG_XTENSA_UNALIGNED_USER is not set\nCONFIG_PREEMPT=y\n# CONFIG_MATH_EMULATION is not set\n# CONFIG_HIGHMEM is not set\nCONFIG_XTENSA_CALIBRATE_CCOUNT=y\nCONFIG_SERIAL_CONSOLE=y\n# CONFIG_XTENSA_ISS_NETWORK is not set\n\n#\n# Bus options\n#\n# CONFIG_PCI is not set\n# CONFIG_ARCH_SUPPORTS_MSI is not set\n\n#\n# Platform options\n#\n# CONFIG_XTENSA_PLATFORM_ISS is not set\n# CONFIG_XTENSA_PLATFORM_XT2000 is not set\nCONFIG_XTENSA_PLATFORM_S6105=y\nCONFIG_GENERIC_CALIBRATE_DELAY=y\nCONFIG_CMDLINE_BOOL=y\nCONFIG_CMDLINE=\"console=ttyS1,38400 debug bootmem_debug loglevel=7\"\nCONFIG_SELECT_MEMORY_MODEL=y\nCONFIG_FLATMEM_MANUAL=y\n# CONFIG_DISCONTIGMEM_MANUAL is not set\n# CONFIG_SPARSEMEM_MANUAL is not set\nCONFIG_FLATMEM=y\nCONFIG_FLAT_NODE_MEM_MAP=y\nCONFIG_PAGEFLAGS_EXTENDED=y\nCONFIG_SPLIT_PTLOCK_CPUS=4\n# CONFIG_PHYS_ADDR_T_64BIT is not set\nCONFIG_ZONE_DMA_FLAG=1\nCONFIG_VIRT_TO_BUS=y\n\n#\n# Executable file formats\n#\nCONFIG_KCORE_ELF=y\nCONFIG_BINFMT_FLAT=y\n# CONFIG_BINFMT_ZFLAT is not set\n# CONFIG_BINFMT_SHARED_FLAT is not set\n# CONFIG_HAVE_AOUT is not set\n# CONFIG_BINFMT_MISC is not set\nCONFIG_NET=y\n\n#\n# Networking options\n#\nCONFIG_COMPAT_NET_DEV_OPS=y\nCONFIG_PACKET=y\n# CONFIG_PACKET_MMAP is not set\nCONFIG_UNIX=y\n# CONFIG_NET_KEY is not set\nCONFIG_INET=y\n# CONFIG_IP_MULTICAST is not set\n# CONFIG_IP_ADVANCED_ROUTER is not set\nCONFIG_IP_FIB_HASH=y\n# CONFIG_IP_PNP is not set\n# CONFIG_NET_IPIP is not set\n# CONFIG_NET_IPGRE is not set\n# CONFIG_ARPD is not set\n# CONFIG_SYN_COOKIES is not set\n# CONFIG_INET_AH is not set\n# CONFIG_INET_ESP is not set\n# CONFIG_INET_IPCOMP is not set\n# CONFIG_INET_XFRM_TUNNEL is not set\n# CONFIG_INET_TUNNEL is not set\n# CONFIG_INET_XFRM_MODE_TRANSPORT is not set\n# CONFIG_INET_XFRM_MODE_TUNNEL is not set\n# CONFIG_INET_XFRM_MODE_BEET is not set\n# CONFIG_INET_LRO is not set\n# CONFIG_INET_DIAG is not set\n# CONFIG_TCP_CONG_ADVANCED is not set\nCONFIG_TCP_CONG_CUBIC=y\nCONFIG_DEFAULT_TCP_CONG=\"cubic\"\n# CONFIG_TCP_MD5SIG is not set\n# CONFIG_IPV6 is not set\n# CONFIG_NETWORK_SECMARK is not set\n# CONFIG_NETFILTER is not set\n# CONFIG_IP_DCCP is not set\n# CONFIG_IP_SCTP is not set\n# CONFIG_TIPC is not set\n# CONFIG_ATM is not set\n# CONFIG_BRIDGE is not set\n# CONFIG_NET_DSA is not set\n# CONFIG_VLAN_8021Q is not set\n# CONFIG_DECNET is not set\n# CONFIG_LLC2 is not set\n# CONFIG_IPX is not set\n# CONFIG_ATALK is not set\n# CONFIG_X25 is not set\n# CONFIG_LAPB is not set\n# CONFIG_ECONET is not set\n# CONFIG_WAN_ROUTER is not set\n# CONFIG_NET_SCHED is not set\n# CONFIG_DCB is not set\n\n#\n# Network testing\n#\n# CONFIG_NET_PKTGEN is not set\n# CONFIG_HAMRADIO is not set\n# CONFIG_CAN is not set\n# CONFIG_IRDA is not set\n# CONFIG_BT is not set\n# CONFIG_AF_RXRPC is not set\n# CONFIG_PHONET is not set\n# CONFIG_WIRELESS is not set\n# CONFIG_WIMAX is not set\n# CONFIG_RFKILL is not set\n# CONFIG_NET_9P is not set\n\n#\n# Device Drivers\n#\n\n#\n# Generic Driver Options\n#\nCONFIG_STANDALONE=y\nCONFIG_PREVENT_FIRMWARE_BUILD=y\n# CONFIG_DEBUG_DRIVER is not set\n# CONFIG_DEBUG_DEVRES is not set\n# CONFIG_SYS_HYPERVISOR is not set\n# CONFIG_CONNECTOR is not set\n# CONFIG_MTD is not set\n# CONFIG_PARPORT is not set\nCONFIG_BLK_DEV=y\n# CONFIG_BLK_DEV_COW_COMMON is not set\n# CONFIG_BLK_DEV_LOOP is not set\n# CONFIG_BLK_DEV_NBD is not set\nCONFIG_BLK_DEV_RAM=y\nCONFIG_BLK_DEV_RAM_COUNT=16\nCONFIG_BLK_DEV_RAM_SIZE=4096\n# CONFIG_BLK_DEV_XIP is not set\n# CONFIG_CDROM_PKTCDVD is not set\n# CONFIG_ATA_OVER_ETH is not set\n# CONFIG_BLK_DEV_HD is not set\n# CONFIG_MISC_DEVICES is not set\nCONFIG_HAVE_IDE=y\n# CONFIG_IDE is not set\n\n#\n# SCSI device support\n#\n# CONFIG_RAID_ATTRS is not set\n# CONFIG_SCSI is not set\n# CONFIG_SCSI_DMA is not set\n# CONFIG_SCSI_NETLINK is not set\n# CONFIG_ATA is not set\n# CONFIG_MD is not set\nCONFIG_NETDEVICES=y\n# CONFIG_DUMMY is not set\n# CONFIG_BONDING is not set\n# CONFIG_MACVLAN is not set\n# CONFIG_EQUALIZER is not set\n# CONFIG_TUN is not set\n# CONFIG_VETH is not set\nCONFIG_PHYLIB=y\n\n#\n# MII PHY device drivers\n#\n# CONFIG_MARVELL_PHY is not set\n# CONFIG_DAVICOM_PHY is not set\n# CONFIG_QSEMI_PHY is not set\n# CONFIG_LXT_PHY is not set\n# CONFIG_CICADA_PHY is not set\n# CONFIG_VITESSE_PHY is not set\nCONFIG_SMSC_PHY=y\n# CONFIG_BROADCOM_PHY is not set\n# CONFIG_ICPLUS_PHY is not set\n# CONFIG_REALTEK_PHY is not set\n# CONFIG_NATIONAL_PHY is not set\n# CONFIG_STE10XP is not set\n# CONFIG_LSI_ET1011C_PHY is not set\n# CONFIG_FIXED_PHY is not set\n# CONFIG_MDIO_BITBANG is not set\n# CONFIG_NET_ETHERNET is not set\nCONFIG_NETDEV_1000=y\nCONFIG_S6GMAC=y\n# CONFIG_NETDEV_10000 is not set\n\n#\n# Wireless LAN\n#\n# CONFIG_WLAN_PRE80211 is not set\n# CONFIG_WLAN_80211 is not set\n# CONFIG_IWLWIFI_LEDS is not set\n\n#\n# Enable WiMAX (Networking options) to see the WiMAX drivers\n#\n# CONFIG_WAN is not set\n# CONFIG_PPP is not set\n# CONFIG_SLIP is not set\n# CONFIG_NETCONSOLE is not set\n# CONFIG_NETPOLL is not set\n# CONFIG_NET_POLL_CONTROLLER is not set\n# CONFIG_ISDN is not set\n# CONFIG_PHONE is not set\n\n#\n# Input device support\n#\n# CONFIG_INPUT is not set\n\n#\n# Hardware I/O ports\n#\n# CONFIG_SERIO is not set\n# CONFIG_GAMEPORT is not set\n\n#\n# Character devices\n#\n# CONFIG_VT is not set\n# CONFIG_DEVKMEM is not set\n# CONFIG_SERIAL_NONSTANDARD is not set\n\n#\n# Serial drivers\n#\nCONFIG_SERIAL_8250=y\nCONFIG_SERIAL_8250_CONSOLE=y\nCONFIG_SERIAL_8250_NR_UARTS=2\nCONFIG_SERIAL_8250_RUNTIME_UARTS=2\n# CONFIG_SERIAL_8250_EXTENDED is not set\n\n#\n# Non-8250 serial port support\n#\nCONFIG_SERIAL_CORE=y\nCONFIG_SERIAL_CORE_CONSOLE=y\nCONFIG_UNIX98_PTYS=y\n# CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set\n# CONFIG_LEGACY_PTYS is not set\n# CONFIG_IPMI_HANDLER is not set\n# CONFIG_HW_RANDOM is not set\n# CONFIG_R3964 is not set\n# CONFIG_RAW_DRIVER is not set\n# CONFIG_TCG_TPM is not set\n# CONFIG_I2C is not set\n# CONFIG_SPI is not set\nCONFIG_ARCH_REQUIRE_GPIOLIB=y\nCONFIG_GPIOLIB=y\n# CONFIG_DEBUG_GPIO is not set\n# CONFIG_GPIO_SYSFS is not set\n\n#\n# Memory mapped GPIO expanders:\n#\n\n#\n# I2C GPIO expanders:\n#\n\n#\n# PCI GPIO expanders:\n#\n\n#\n# SPI GPIO expanders:\n#\n# CONFIG_W1 is not set\n# CONFIG_POWER_SUPPLY is not set\n# CONFIG_HWMON is not set\n# CONFIG_THERMAL is not set\n# CONFIG_THERMAL_HWMON is not set\n# CONFIG_WATCHDOG is not set\nCONFIG_SSB_POSSIBLE=y\n\n#\n# Sonics Silicon Backplane\n#\n# CONFIG_SSB is not set\n\n#\n# Multifunction device drivers\n#\n# CONFIG_MFD_CORE is not set\n# CONFIG_MFD_SM501 is not set\n# CONFIG_HTC_PASIC3 is not set\n# CONFIG_MFD_TMIO is not set\n# CONFIG_REGULATOR is not set\n\n#\n# Multimedia devices\n#\n\n#\n# Multimedia core support\n#\n# CONFIG_VIDEO_DEV is not set\n# CONFIG_DVB_CORE is not set\n# CONFIG_VIDEO_MEDIA is not set\n\n#\n# Multimedia drivers\n#\n# CONFIG_DAB is not set\n\n#\n# Graphics support\n#\n# CONFIG_VGASTATE is not set\n# CONFIG_VIDEO_OUTPUT_CONTROL is not set\n# CONFIG_FB is not set\n# CONFIG_BACKLIGHT_LCD_SUPPORT is not set\n\n#\n# Display device support\n#\n# CONFIG_DISPLAY_SUPPORT is not set\n# CONFIG_SOUND is not set\n# CONFIG_USB_SUPPORT is not set\n# CONFIG_MMC is not set\n# CONFIG_MEMSTICK is not set\n# CONFIG_NEW_LEDS is not set\n# CONFIG_ACCESSIBILITY is not set\nCONFIG_RTC_LIB=y\nCONFIG_RTC_CLASS=y\nCONFIG_RTC_HCTOSYS=y\nCONFIG_RTC_HCTOSYS_DEVICE=\"rtc0\"\n# CONFIG_RTC_DEBUG is not set\n\n#\n# RTC interfaces\n#\n# CONFIG_RTC_INTF_SYSFS is not set\n# CONFIG_RTC_INTF_PROC is not set\n# CONFIG_RTC_INTF_DEV is not set\n# CONFIG_RTC_DRV_TEST is not set\n\n#\n# I2C RTC drivers\n#\n# CONFIG_RTC_DRV_DS1307 is not set\n# CONFIG_RTC_DRV_DS1374 is not set\n# CONFIG_RTC_DRV_DS1672 is not set\n# CONFIG_RTC_DRV_MAX6900 is not set\n# CONFIG_RTC_DRV_RS5C372 is not set\n# CONFIG_RTC_DRV_ISL1208 is not set\n# CONFIG_RTC_DRV_X1205 is not set\n# CONFIG_RTC_DRV_PCF8563 is not set\n# CONFIG_RTC_DRV_PCF8583 is not set\nCONFIG_RTC_DRV_M41T80=y\n# CONFIG_RTC_DRV_M41T80_WDT is not set\n# CONFIG_RTC_DRV_S35390A is not set\n# CONFIG_RTC_DRV_FM3130 is not set\n# CONFIG_RTC_DRV_RX8581 is not set\n\n#\n# SPI RTC drivers\n#\n\n#\n# Platform RTC drivers\n#\n# CONFIG_RTC_DRV_DS1286 is not set\n# CONFIG_RTC_DRV_DS1511 is not set\n# CONFIG_RTC_DRV_DS1553 is not set\n# CONFIG_RTC_DRV_DS1742 is not set\n# CONFIG_RTC_DRV_STK17TA8 is not set\n# CONFIG_RTC_DRV_M48T86 is not set\n# CONFIG_RTC_DRV_M48T35 is not set\n# CONFIG_RTC_DRV_M48T59 is not set\n# CONFIG_RTC_DRV_BQ4802 is not set\n# CONFIG_RTC_DRV_V3020 is not set\n\n#\n# on-CPU RTC drivers\n#\n# CONFIG_DMADEVICES is not set\n# CONFIG_UIO is not set\n# CONFIG_STAGING is not set\n\n#\n# File systems\n#\n# CONFIG_EXT2_FS is not set\n# CONFIG_EXT3_FS is not set\n# CONFIG_EXT4_FS is not set\n# CONFIG_REISERFS_FS is not set\n# CONFIG_JFS_FS is not set\n# CONFIG_FS_POSIX_ACL is not set\nCONFIG_FILE_LOCKING=y\n# CONFIG_XFS_FS is not set\n# CONFIG_OCFS2_FS is not set\n# CONFIG_BTRFS_FS is not set\n# CONFIG_DNOTIFY is not set\n# CONFIG_INOTIFY is not set\n# CONFIG_QUOTA is not set\n# CONFIG_AUTOFS_FS is not set\n# CONFIG_AUTOFS4_FS is not set\n# CONFIG_FUSE_FS is not set\n\n#\n# CD-ROM/DVD Filesystems\n#\n# CONFIG_ISO9660_FS is not set\n# CONFIG_UDF_FS is not set\n\n#\n# DOS/FAT/NT Filesystems\n#\n# CONFIG_MSDOS_FS is not set\n# CONFIG_VFAT_FS is not set\n# CONFIG_NTFS_FS is not set\n\n#\n# Pseudo filesystems\n#\nCONFIG_PROC_FS=y\nCONFIG_PROC_SYSCTL=y\nCONFIG_SYSFS=y\n# CONFIG_TMPFS is not set\n# CONFIG_HUGETLB_PAGE is not set\n# CONFIG_CONFIGFS_FS is not set\n# CONFIG_MISC_FILESYSTEMS is not set\n# CONFIG_NETWORK_FILESYSTEMS is not set\n\n#\n# Partition Types\n#\n# CONFIG_PARTITION_ADVANCED is not set\nCONFIG_MSDOS_PARTITION=y\n# CONFIG_NLS is not set\n# CONFIG_DLM is not set\n\n#\n# Xtensa initrd options\n#\n# CONFIG_EMBEDDED_RAMDISK is not set\n\n#\n# Kernel hacking\n#\nCONFIG_PRINTK_TIME=y\n# CONFIG_ENABLE_WARN_DEPRECATED is not set\n# CONFIG_ENABLE_MUST_CHECK is not set\nCONFIG_FRAME_WARN=1024\n# CONFIG_MAGIC_SYSRQ is not set\n# CONFIG_UNUSED_SYMBOLS is not set\n# CONFIG_DEBUG_FS is not set\n# CONFIG_HEADERS_CHECK is not set\nCONFIG_DEBUG_KERNEL=y\nCONFIG_DEBUG_SHIRQ=y\nCONFIG_DETECT_SOFTLOCKUP=y\n# CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set\nCONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0\n# CONFIG_SCHED_DEBUG is not set\n# CONFIG_SCHEDSTATS is not set\n# CONFIG_TIMER_STATS is not set\n# CONFIG_DEBUG_OBJECTS is not set\n# CONFIG_DEBUG_SLAB is not set\n# CONFIG_DEBUG_RT_MUTEXES is not set\n# CONFIG_RT_MUTEX_TESTER is not set\nCONFIG_DEBUG_SPINLOCK=y\nCONFIG_DEBUG_MUTEXES=y\nCONFIG_DEBUG_SPINLOCK_SLEEP=y\n# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set\n# CONFIG_DEBUG_KOBJECT is not set\n# CONFIG_DEBUG_INFO is not set\n# CONFIG_DEBUG_VM is not set\nCONFIG_DEBUG_NOMMU_REGIONS=y\n# CONFIG_DEBUG_WRITECOUNT is not set\n# CONFIG_DEBUG_MEMORY_INIT is not set\n# CONFIG_DEBUG_LIST is not set\n# CONFIG_DEBUG_SG is not set\n# CONFIG_DEBUG_NOTIFIERS is not set\n# CONFIG_BOOT_PRINTK_DELAY is not set\n# CONFIG_RCU_TORTURE_TEST is not set\n# CONFIG_BACKTRACE_SELF_TEST is not set\n# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set\n# CONFIG_FAULT_INJECTION is not set\n# CONFIG_SYSCTL_SYSCALL_CHECK is not set\n\n#\n# Tracers\n#\n# CONFIG_PREEMPT_TRACER is not set\n# CONFIG_SCHED_TRACER is not set\n# CONFIG_CONTEXT_SWITCH_TRACER is not set\n# CONFIG_BOOT_TRACER is not set\n# CONFIG_TRACE_BRANCH_PROFILING is not set\n# CONFIG_DYNAMIC_PRINTK_DEBUG is not set\n# CONFIG_SAMPLES is not set\n\n#\n# Security options\n#\n# CONFIG_KEYS is not set\n# CONFIG_SECURITY is not set\n# CONFIG_SECURITYFS is not set\n# CONFIG_SECURITY_FILE_CAPABILITIES is not set\n# CONFIG_CRYPTO is not set\n\n#\n# Library routines\n#\nCONFIG_GENERIC_FIND_LAST_BIT=y\n# CONFIG_CRC_CCITT is not set\n# CONFIG_CRC16 is not set\n# CONFIG_CRC_T10DIF is not set\n# CONFIG_CRC_ITU_T is not set\n# CONFIG_CRC32 is not set\n# CONFIG_CRC7 is not set\n# CONFIG_LIBCRC32C is not set\nCONFIG_PLIST=y\nCONFIG_HAS_IOMEM=y\nCONFIG_HAS_DMA=y\n"}
+{"text": "---\nid: 5900f4231000cf542c50ff35\nchallengeType: 5\ntitle: 'Problem 182: RSA encryption'\nvideoUrl: ''\nlocaleTitle: 'Problema 182: Criptografia RSA'\n---\n\n## Description\n A criptografia RSA é baseada no seguinte procedimento: Gere dois primos distintos p e q.Compute n = pq e φ = (p-1) (q-1). Encontre um inteiro e, 1
Instruções
Testes
tests: - text: <code>euler182()</code> should return 399788195976. testString: 'assert.strictEqual(euler182(), 399788195976, "<code>euler182()</code> should return 399788195976.");'
Semente do Desafio
function euler182() { // Good luck! return true; } euler182();
Solução
// solution required
\n\n## Instructions\n\n\n\n## Tests\n\n\n```yml\ntests:\n - text: euler182() deve retornar 399788195976.\n testString: 'assert.strictEqual(euler182(), 399788195976, \"euler182() should return 399788195976.\");'\n\n```\n\n\n\n## Challenge Seed\n\n\n
\n\n```js\nfunction euler182() {\n // Good luck!\n return true;\n}\n\neuler182();\n\n```\n\n
\n\n\n\n\n\n## Solution\n\n\n```js\n// solution required\n```\n\n"}
+{"text": "/**\n * @enum EResult\n */\nmodule.exports = {\n\t\"Invalid\": 0,\n\t\"OK\": 1,\n\t\"Fail\": 2,\n\t\"NoConnection\": 3,\n\t\"InvalidPassword\": 5,\n\t\"LoggedInElsewhere\": 6,\n\t\"InvalidProtocolVer\": 7,\n\t\"InvalidParam\": 8,\n\t\"FileNotFound\": 9,\n\t\"Busy\": 10,\n\t\"InvalidState\": 11,\n\t\"InvalidName\": 12,\n\t\"InvalidEmail\": 13,\n\t\"DuplicateName\": 14,\n\t\"AccessDenied\": 15,\n\t\"Timeout\": 16,\n\t\"Banned\": 17,\n\t\"AccountNotFound\": 18,\n\t\"InvalidSteamID\": 19,\n\t\"ServiceUnavailable\": 20,\n\t\"NotLoggedOn\": 21,\n\t\"Pending\": 22,\n\t\"EncryptionFailure\": 23,\n\t\"InsufficientPrivilege\": 24,\n\t\"LimitExceeded\": 25,\n\t\"Revoked\": 26,\n\t\"Expired\": 27,\n\t\"AlreadyRedeemed\": 28,\n\t\"DuplicateRequest\": 29,\n\t\"AlreadyOwned\": 30,\n\t\"IPNotFound\": 31,\n\t\"PersistFailed\": 32,\n\t\"LockingFailed\": 33,\n\t\"LogonSessionReplaced\": 34,\n\t\"ConnectFailed\": 35,\n\t\"HandshakeFailed\": 36,\n\t\"IOFailure\": 37,\n\t\"RemoteDisconnect\": 38,\n\t\"ShoppingCartNotFound\": 39,\n\t\"Blocked\": 40,\n\t\"Ignored\": 41,\n\t\"NoMatch\": 42,\n\t\"AccountDisabled\": 43,\n\t\"ServiceReadOnly\": 44,\n\t\"AccountNotFeatured\": 45,\n\t\"AdministratorOK\": 46,\n\t\"ContentVersion\": 47,\n\t\"TryAnotherCM\": 48,\n\t\"PasswordRequiredToKickSession\": 49,\n\t\"AlreadyLoggedInElsewhere\": 50,\n\t\"Suspended\": 51,\n\t\"Cancelled\": 52,\n\t\"DataCorruption\": 53,\n\t\"DiskFull\": 54,\n\t\"RemoteCallFailed\": 55,\n\t\"PasswordNotSet\": 56, // removed \"renamed to PasswordUnset\"\n\t\"PasswordUnset\": 56,\n\t\"ExternalAccountUnlinked\": 57,\n\t\"PSNTicketInvalid\": 58,\n\t\"ExternalAccountAlreadyLinked\": 59,\n\t\"RemoteFileConflict\": 60,\n\t\"IllegalPassword\": 61,\n\t\"SameAsPreviousValue\": 62,\n\t\"AccountLogonDenied\": 63,\n\t\"CannotUseOldPassword\": 64,\n\t\"InvalidLoginAuthCode\": 65,\n\t\"AccountLogonDeniedNoMailSent\": 66, // removed \"renamed to AccountLogonDeniedNoMail\"\n\t\"AccountLogonDeniedNoMail\": 66,\n\t\"HardwareNotCapableOfIPT\": 67,\n\t\"IPTInitError\": 68,\n\t\"ParentalControlRestricted\": 69,\n\t\"FacebookQueryError\": 70,\n\t\"ExpiredLoginAuthCode\": 71,\n\t\"IPLoginRestrictionFailed\": 72,\n\t\"AccountLocked\": 73, // removed \"renamed to AccountLockedDown\"\n\t\"AccountLockedDown\": 73,\n\t\"AccountLogonDeniedVerifiedEmailRequired\": 74,\n\t\"NoMatchingURL\": 75,\n\t\"BadResponse\": 76,\n\t\"RequirePasswordReEntry\": 77,\n\t\"ValueOutOfRange\": 78,\n\t\"UnexpectedError\": 79,\n\t\"Disabled\": 80,\n\t\"InvalidCEGSubmission\": 81,\n\t\"RestrictedDevice\": 82,\n\t\"RegionLocked\": 83,\n\t\"RateLimitExceeded\": 84,\n\t\"AccountLogonDeniedNeedTwoFactorCode\": 85, // removed \"renamed to AccountLoginDeniedNeedTwoFactor\"\n\t\"AccountLoginDeniedNeedTwoFactor\": 85,\n\t\"ItemOrEntryHasBeenDeleted\": 86, // removed \"renamed to ItemDeleted\"\n\t\"ItemDeleted\": 86,\n\t\"AccountLoginDeniedThrottle\": 87,\n\t\"TwoFactorCodeMismatch\": 88,\n\t\"TwoFactorActivationCodeMismatch\": 89,\n\t\"AccountAssociatedToMultiplePlayers\": 90, // removed \"renamed to AccountAssociatedToMultiplePartners\"\n\t\"AccountAssociatedToMultiplePartners\": 90,\n\t\"NotModified\": 91,\n\t\"NoMobileDeviceAvailable\": 92, // removed \"renamed to NoMobileDevice\"\n\t\"NoMobileDevice\": 92,\n\t\"TimeIsOutOfSync\": 93, // removed \"renamed to TimeNotSynced\"\n\t\"TimeNotSynced\": 93,\n\t\"SMSCodeFailed\": 94,\n\t\"TooManyAccountsAccessThisResource\": 95, // removed \"renamed to AccountLimitExceeded\"\n\t\"AccountLimitExceeded\": 95,\n\t\"AccountActivityLimitExceeded\": 96,\n\t\"PhoneActivityLimitExceeded\": 97,\n\t\"RefundToWallet\": 98,\n\t\"EmailSendFailure\": 99,\n\t\"NotSettled\": 100,\n\t\"NeedCaptcha\": 101,\n\t\"GSLTDenied\": 102,\n\t\"GSOwnerDenied\": 103,\n\t\"InvalidItemType\": 104,\n\t\"IPBanned\": 105,\n\t\"GSLTExpired\": 106,\n\t\"InsufficientFunds\": 107,\n\t\"TooManyPending\": 108,\n\t\"NoSiteLicensesFound\": 109,\n\t\"WGNetworkSendExceeded\": 110,\n\t\"AccountNotFriends\": 111,\n\t\"LimitedUserAccount\": 112,\n\t\"CantRemoveItem\": 113,\n\t\"AccountHasBeenDeleted\": 114,\n\t\"AccountHasAnExistingUserCancelledLicense\": 115,\n\t\"DeniedDueToCommunityCooldown\": 116,\n\n\t// Value-to-name mapping for convenience\n\t\"0\": \"Invalid\",\n\t\"1\": \"OK\",\n\t\"2\": \"Fail\",\n\t\"3\": \"NoConnection\",\n\t\"5\": \"InvalidPassword\",\n\t\"6\": \"LoggedInElsewhere\",\n\t\"7\": \"InvalidProtocolVer\",\n\t\"8\": \"InvalidParam\",\n\t\"9\": \"FileNotFound\",\n\t\"10\": \"Busy\",\n\t\"11\": \"InvalidState\",\n\t\"12\": \"InvalidName\",\n\t\"13\": \"InvalidEmail\",\n\t\"14\": \"DuplicateName\",\n\t\"15\": \"AccessDenied\",\n\t\"16\": \"Timeout\",\n\t\"17\": \"Banned\",\n\t\"18\": \"AccountNotFound\",\n\t\"19\": \"InvalidSteamID\",\n\t\"20\": \"ServiceUnavailable\",\n\t\"21\": \"NotLoggedOn\",\n\t\"22\": \"Pending\",\n\t\"23\": \"EncryptionFailure\",\n\t\"24\": \"InsufficientPrivilege\",\n\t\"25\": \"LimitExceeded\",\n\t\"26\": \"Revoked\",\n\t\"27\": \"Expired\",\n\t\"28\": \"AlreadyRedeemed\",\n\t\"29\": \"DuplicateRequest\",\n\t\"30\": \"AlreadyOwned\",\n\t\"31\": \"IPNotFound\",\n\t\"32\": \"PersistFailed\",\n\t\"33\": \"LockingFailed\",\n\t\"34\": \"LogonSessionReplaced\",\n\t\"35\": \"ConnectFailed\",\n\t\"36\": \"HandshakeFailed\",\n\t\"37\": \"IOFailure\",\n\t\"38\": \"RemoteDisconnect\",\n\t\"39\": \"ShoppingCartNotFound\",\n\t\"40\": \"Blocked\",\n\t\"41\": \"Ignored\",\n\t\"42\": \"NoMatch\",\n\t\"43\": \"AccountDisabled\",\n\t\"44\": \"ServiceReadOnly\",\n\t\"45\": \"AccountNotFeatured\",\n\t\"46\": \"AdministratorOK\",\n\t\"47\": \"ContentVersion\",\n\t\"48\": \"TryAnotherCM\",\n\t\"49\": \"PasswordRequiredToKickSession\",\n\t\"50\": \"AlreadyLoggedInElsewhere\",\n\t\"51\": \"Suspended\",\n\t\"52\": \"Cancelled\",\n\t\"53\": \"DataCorruption\",\n\t\"54\": \"DiskFull\",\n\t\"55\": \"RemoteCallFailed\",\n\t\"56\": \"PasswordUnset\",\n\t\"57\": \"ExternalAccountUnlinked\",\n\t\"58\": \"PSNTicketInvalid\",\n\t\"59\": \"ExternalAccountAlreadyLinked\",\n\t\"60\": \"RemoteFileConflict\",\n\t\"61\": \"IllegalPassword\",\n\t\"62\": \"SameAsPreviousValue\",\n\t\"63\": \"AccountLogonDenied\",\n\t\"64\": \"CannotUseOldPassword\",\n\t\"65\": \"InvalidLoginAuthCode\",\n\t\"66\": \"AccountLogonDeniedNoMail\",\n\t\"67\": \"HardwareNotCapableOfIPT\",\n\t\"68\": \"IPTInitError\",\n\t\"69\": \"ParentalControlRestricted\",\n\t\"70\": \"FacebookQueryError\",\n\t\"71\": \"ExpiredLoginAuthCode\",\n\t\"72\": \"IPLoginRestrictionFailed\",\n\t\"73\": \"AccountLockedDown\",\n\t\"74\": \"AccountLogonDeniedVerifiedEmailRequired\",\n\t\"75\": \"NoMatchingURL\",\n\t\"76\": \"BadResponse\",\n\t\"77\": \"RequirePasswordReEntry\",\n\t\"78\": \"ValueOutOfRange\",\n\t\"79\": \"UnexpectedError\",\n\t\"80\": \"Disabled\",\n\t\"81\": \"InvalidCEGSubmission\",\n\t\"82\": \"RestrictedDevice\",\n\t\"83\": \"RegionLocked\",\n\t\"84\": \"RateLimitExceeded\",\n\t\"85\": \"AccountLoginDeniedNeedTwoFactor\",\n\t\"86\": \"ItemDeleted\",\n\t\"87\": \"AccountLoginDeniedThrottle\",\n\t\"88\": \"TwoFactorCodeMismatch\",\n\t\"89\": \"TwoFactorActivationCodeMismatch\",\n\t\"90\": \"AccountAssociatedToMultiplePartners\",\n\t\"91\": \"NotModified\",\n\t\"92\": \"NoMobileDevice\",\n\t\"93\": \"TimeNotSynced\",\n\t\"94\": \"SMSCodeFailed\",\n\t\"95\": \"AccountLimitExceeded\",\n\t\"96\": \"AccountActivityLimitExceeded\",\n\t\"97\": \"PhoneActivityLimitExceeded\",\n\t\"98\": \"RefundToWallet\",\n\t\"99\": \"EmailSendFailure\",\n\t\"100\": \"NotSettled\",\n\t\"101\": \"NeedCaptcha\",\n\t\"102\": \"GSLTDenied\",\n\t\"103\": \"GSOwnerDenied\",\n\t\"104\": \"InvalidItemType\",\n\t\"105\": \"IPBanned\",\n\t\"106\": \"GSLTExpired\",\n\t\"107\": \"InsufficientFunds\",\n\t\"108\": \"TooManyPending\",\n\t\"109\": \"NoSiteLicensesFound\",\n\t\"110\": \"WGNetworkSendExceeded\",\n\t\"111\": \"AccountNotFriends\",\n\t\"112\": \"LimitedUserAccount\",\n\t\"113\": \"CantRemoveItem\",\n\t\"114\": \"AccountHasBeenDeleted\",\n\t\"115\": \"AccountHasAnExistingUserCancelledLicense\",\n\t\"116\": \"DeniedDueToCommunityCooldown\",\n};\n"}
+{"text": "package com.yun.flogger.test;\n\nimport com.cyfonly.flogger.FLogger;\nimport com.cyfonly.flogger.constants.Constant;\n\npublic class FloggerTest {\n\t\n\tpublic static void main(String[] args) {\n\t\t//获取单例\n\t\tFLogger logger = FLogger.getInstance();\n\t\t//简便api,只需指定内容\n\t\tlogger.info(\"Here is your message...\");\n\t\t//指定日志级别和内容,文件名自动映射\n\t\tlogger.writeLog(Constant.INFO, \"Here is your customized level message...\");\n\t\t//指定日志输出文件名、日志级别和内容\n\t\tlogger.writeLog(\"error\", Constant.ERROR, \"Here is your customized log file and level message...\");\n\t}\n\n}\n"}
+{"text": "//===- llvm/unittests/tools/llvm-cfi-verify/FileAnalysis.cpp --------------===//\n//\n// The LLVM Compiler Infrastructure\n//\n// This file is distributed under the University of Illinois Open Source\n// License. See LICENSE.TXT for details.\n//\n//===----------------------------------------------------------------------===//\n\n#include \"../tools/llvm-cfi-verify/lib/FileAnalysis.h\"\n#include \"../tools/llvm-cfi-verify/lib/GraphBuilder.h\"\n#include \"gmock/gmock.h\"\n#include \"gtest/gtest.h\"\n\n#include \"llvm/BinaryFormat/ELF.h\"\n#include \"llvm/MC/MCAsmInfo.h\"\n#include \"llvm/MC/MCContext.h\"\n#include \"llvm/MC/MCDisassembler/MCDisassembler.h\"\n#include \"llvm/MC/MCInst.h\"\n#include \"llvm/MC/MCInstPrinter.h\"\n#include \"llvm/MC/MCInstrAnalysis.h\"\n#include \"llvm/MC/MCInstrDesc.h\"\n#include \"llvm/MC/MCInstrInfo.h\"\n#include \"llvm/MC/MCObjectFileInfo.h\"\n#include \"llvm/MC/MCRegisterInfo.h\"\n#include \"llvm/MC/MCSubtargetInfo.h\"\n#include \"llvm/Object/Binary.h\"\n#include \"llvm/Object/COFF.h\"\n#include \"llvm/Object/ELFObjectFile.h\"\n#include \"llvm/Object/ObjectFile.h\"\n#include \"llvm/Support/Casting.h\"\n#include \"llvm/Support/CommandLine.h\"\n#include \"llvm/Support/Error.h\"\n#include \"llvm/Support/MemoryBuffer.h\"\n#include \"llvm/Support/TargetRegistry.h\"\n#include \"llvm/Support/TargetSelect.h\"\n#include \"llvm/Support/raw_ostream.h\"\n\n#include \n\nusing Instr = ::llvm::cfi_verify::FileAnalysis::Instr;\nusing ::testing::Eq;\nusing ::testing::Field;\n\nnamespace llvm {\nnamespace cfi_verify {\nnamespace {\nclass ELFTestFileAnalysis : public FileAnalysis {\npublic:\n ELFTestFileAnalysis(StringRef Trip)\n : FileAnalysis(Triple(Trip), SubtargetFeatures()) {}\n\n // Expose this method publicly for testing.\n void parseSectionContents(ArrayRef SectionBytes,\n uint64_t SectionAddress) {\n FileAnalysis::parseSectionContents(SectionBytes, SectionAddress);\n }\n\n Error initialiseDisassemblyMembers() {\n return FileAnalysis::initialiseDisassemblyMembers();\n }\n};\n\nclass BasicFileAnalysisTest : public ::testing::Test {\npublic:\n BasicFileAnalysisTest(StringRef Trip) : Analysis(Trip) {}\nprotected:\n virtual void SetUp() {\n IgnoreDWARFFlag = true;\n SuccessfullyInitialised = true;\n if (auto Err = Analysis.initialiseDisassemblyMembers()) {\n handleAllErrors(std::move(Err), [&](const UnsupportedDisassembly &E) {\n SuccessfullyInitialised = false;\n outs()\n << \"Note: CFIVerifyTests are disabled due to lack of support \"\n \"on this build.\\n\";\n });\n }\n }\n\n bool SuccessfullyInitialised;\n ELFTestFileAnalysis Analysis;\n};\n\nclass BasicX86FileAnalysisTest : public BasicFileAnalysisTest {\npublic:\n BasicX86FileAnalysisTest() : BasicFileAnalysisTest(\"x86_64--\") {}\n};\n\nclass BasicAArch64FileAnalysisTest : public BasicFileAnalysisTest {\npublic:\n BasicAArch64FileAnalysisTest() : BasicFileAnalysisTest(\"aarch64--\") {}\n};\n\nTEST_F(BasicX86FileAnalysisTest, BasicDisassemblyTraversalTest) {\n if (!SuccessfullyInitialised)\n return;\n Analysis.parseSectionContents(\n {\n 0x90, // 0: nop\n 0xb0, 0x00, // 1: mov $0x0, %al\n 0x48, 0x89, 0xe5, // 3: mov %rsp, %rbp\n 0x48, 0x83, 0xec, 0x18, // 6: sub $0x18, %rsp\n 0x48, 0xbe, 0xc4, 0x07, 0x40,\n 0x00, 0x00, 0x00, 0x00, 0x00, // 10: movabs $0x4007c4, %rsi\n 0x2f, // 20: (bad)\n 0x41, 0x0e, // 21: rex.B (bad)\n 0x62, 0x72, 0x65, 0x61, 0x6b, // 23: (bad) {%k1}\n },\n 0xDEADBEEF);\n\n EXPECT_EQ(nullptr, Analysis.getInstruction(0x0));\n EXPECT_EQ(nullptr, Analysis.getInstruction(0x1000));\n\n // 0xDEADBEEF: nop\n const auto *InstrMeta = Analysis.getInstruction(0xDEADBEEF);\n EXPECT_NE(nullptr, InstrMeta);\n EXPECT_EQ(0xDEADBEEF, InstrMeta->VMAddress);\n EXPECT_EQ(1u, InstrMeta->InstructionSize);\n EXPECT_TRUE(InstrMeta->Valid);\n\n const auto *NextInstrMeta = Analysis.getNextInstructionSequential(*InstrMeta);\n EXPECT_EQ(nullptr, Analysis.getPrevInstructionSequential(*InstrMeta));\n const auto *PrevInstrMeta = InstrMeta;\n\n // 0xDEADBEEF + 1: mov $0x0, %al\n InstrMeta = Analysis.getInstruction(0xDEADBEEF + 1);\n EXPECT_NE(nullptr, InstrMeta);\n EXPECT_EQ(NextInstrMeta, InstrMeta);\n EXPECT_EQ(0xDEADBEEF + 1, InstrMeta->VMAddress);\n EXPECT_EQ(2u, InstrMeta->InstructionSize);\n EXPECT_TRUE(InstrMeta->Valid);\n\n NextInstrMeta = Analysis.getNextInstructionSequential(*InstrMeta);\n EXPECT_EQ(PrevInstrMeta, Analysis.getPrevInstructionSequential(*InstrMeta));\n PrevInstrMeta = InstrMeta;\n\n // 0xDEADBEEF + 3: mov %rsp, %rbp\n InstrMeta = Analysis.getInstruction(0xDEADBEEF + 3);\n EXPECT_NE(nullptr, InstrMeta);\n EXPECT_EQ(NextInstrMeta, InstrMeta);\n EXPECT_EQ(0xDEADBEEF + 3, InstrMeta->VMAddress);\n EXPECT_EQ(3u, InstrMeta->InstructionSize);\n EXPECT_TRUE(InstrMeta->Valid);\n\n NextInstrMeta = Analysis.getNextInstructionSequential(*InstrMeta);\n EXPECT_EQ(PrevInstrMeta, Analysis.getPrevInstructionSequential(*InstrMeta));\n PrevInstrMeta = InstrMeta;\n\n // 0xDEADBEEF + 6: sub $0x18, %rsp\n InstrMeta = Analysis.getInstruction(0xDEADBEEF + 6);\n EXPECT_NE(nullptr, InstrMeta);\n EXPECT_EQ(NextInstrMeta, InstrMeta);\n EXPECT_EQ(0xDEADBEEF + 6, InstrMeta->VMAddress);\n EXPECT_EQ(4u, InstrMeta->InstructionSize);\n EXPECT_TRUE(InstrMeta->Valid);\n\n NextInstrMeta = Analysis.getNextInstructionSequential(*InstrMeta);\n EXPECT_EQ(PrevInstrMeta, Analysis.getPrevInstructionSequential(*InstrMeta));\n PrevInstrMeta = InstrMeta;\n\n // 0xDEADBEEF + 10: movabs $0x4007c4, %rsi\n InstrMeta = Analysis.getInstruction(0xDEADBEEF + 10);\n EXPECT_NE(nullptr, InstrMeta);\n EXPECT_EQ(NextInstrMeta, InstrMeta);\n EXPECT_EQ(0xDEADBEEF + 10, InstrMeta->VMAddress);\n EXPECT_EQ(10u, InstrMeta->InstructionSize);\n EXPECT_TRUE(InstrMeta->Valid);\n\n EXPECT_EQ(nullptr, Analysis.getNextInstructionSequential(*InstrMeta));\n EXPECT_EQ(PrevInstrMeta, Analysis.getPrevInstructionSequential(*InstrMeta));\n PrevInstrMeta = InstrMeta;\n\n // 0xDEADBEEF + 20: (bad)\n InstrMeta = Analysis.getInstruction(0xDEADBEEF + 20);\n EXPECT_NE(nullptr, InstrMeta);\n EXPECT_EQ(0xDEADBEEF + 20, InstrMeta->VMAddress);\n EXPECT_EQ(1u, InstrMeta->InstructionSize);\n EXPECT_FALSE(InstrMeta->Valid);\n\n EXPECT_EQ(nullptr, Analysis.getNextInstructionSequential(*InstrMeta));\n EXPECT_EQ(PrevInstrMeta, Analysis.getPrevInstructionSequential(*InstrMeta));\n\n // 0xDEADBEEF + 21: rex.B (bad)\n InstrMeta = Analysis.getInstruction(0xDEADBEEF + 21);\n EXPECT_NE(nullptr, InstrMeta);\n EXPECT_EQ(0xDEADBEEF + 21, InstrMeta->VMAddress);\n EXPECT_EQ(2u, InstrMeta->InstructionSize);\n EXPECT_FALSE(InstrMeta->Valid);\n\n EXPECT_EQ(nullptr, Analysis.getNextInstructionSequential(*InstrMeta));\n EXPECT_EQ(nullptr, Analysis.getPrevInstructionSequential(*InstrMeta));\n\n // 0xDEADBEEF + 6: (bad) {%k1}\n InstrMeta = Analysis.getInstruction(0xDEADBEEF + 23);\n EXPECT_NE(nullptr, InstrMeta);\n EXPECT_EQ(0xDEADBEEF + 23, InstrMeta->VMAddress);\n EXPECT_EQ(5u, InstrMeta->InstructionSize);\n EXPECT_FALSE(InstrMeta->Valid);\n\n EXPECT_EQ(nullptr, Analysis.getNextInstructionSequential(*InstrMeta));\n EXPECT_EQ(nullptr, Analysis.getPrevInstructionSequential(*InstrMeta));\n}\n\nTEST_F(BasicX86FileAnalysisTest, PrevAndNextFromBadInst) {\n if (!SuccessfullyInitialised)\n return;\n Analysis.parseSectionContents(\n {\n 0x90, // 0: nop\n 0x2f, // 1: (bad)\n 0x90 // 2: nop\n },\n 0xDEADBEEF);\n const auto &BadInstrMeta = Analysis.getInstructionOrDie(0xDEADBEEF + 1);\n const auto *GoodInstrMeta =\n Analysis.getPrevInstructionSequential(BadInstrMeta);\n EXPECT_NE(nullptr, GoodInstrMeta);\n EXPECT_EQ(0xDEADBEEF, GoodInstrMeta->VMAddress);\n EXPECT_EQ(1u, GoodInstrMeta->InstructionSize);\n\n GoodInstrMeta = Analysis.getNextInstructionSequential(BadInstrMeta);\n EXPECT_NE(nullptr, GoodInstrMeta);\n EXPECT_EQ(0xDEADBEEF + 2, GoodInstrMeta->VMAddress);\n EXPECT_EQ(1u, GoodInstrMeta->InstructionSize);\n}\n\nTEST_F(BasicX86FileAnalysisTest, CFITrapTest) {\n if (!SuccessfullyInitialised)\n return;\n Analysis.parseSectionContents(\n {\n 0x90, // 0: nop\n 0xb0, 0x00, // 1: mov $0x0, %al\n 0x48, 0x89, 0xe5, // 3: mov %rsp, %rbp\n 0x48, 0x83, 0xec, 0x18, // 6: sub $0x18, %rsp\n 0x48, 0xbe, 0xc4, 0x07, 0x40,\n 0x00, 0x00, 0x00, 0x00, 0x00, // 10: movabs $0x4007c4, %rsi\n 0x2f, // 20: (bad)\n 0x41, 0x0e, // 21: rex.B (bad)\n 0x62, 0x72, 0x65, 0x61, 0x6b, // 23: (bad) {%k1}\n 0x0f, 0x0b // 28: ud2\n },\n 0xDEADBEEF);\n\n EXPECT_FALSE(Analysis.isCFITrap(Analysis.getInstructionOrDie(0xDEADBEEF)));\n EXPECT_FALSE(\n Analysis.isCFITrap(Analysis.getInstructionOrDie(0xDEADBEEF + 3)));\n EXPECT_FALSE(\n Analysis.isCFITrap(Analysis.getInstructionOrDie(0xDEADBEEF + 6)));\n EXPECT_FALSE(\n Analysis.isCFITrap(Analysis.getInstructionOrDie(0xDEADBEEF + 10)));\n EXPECT_FALSE(\n Analysis.isCFITrap(Analysis.getInstructionOrDie(0xDEADBEEF + 20)));\n EXPECT_FALSE(\n Analysis.isCFITrap(Analysis.getInstructionOrDie(0xDEADBEEF + 21)));\n EXPECT_FALSE(\n Analysis.isCFITrap(Analysis.getInstructionOrDie(0xDEADBEEF + 23)));\n EXPECT_TRUE(\n Analysis.isCFITrap(Analysis.getInstructionOrDie(0xDEADBEEF + 28)));\n}\n\nTEST_F(BasicX86FileAnalysisTest, FallThroughTest) {\n if (!SuccessfullyInitialised)\n return;\n Analysis.parseSectionContents(\n {\n 0x90, // 0: nop\n 0xb0, 0x00, // 1: mov $0x0, %al\n 0x2f, // 3: (bad)\n 0x0f, 0x0b, // 4: ud2\n 0xff, 0x20, // 6: jmpq *(%rax)\n 0xeb, 0x00, // 8: jmp +0\n 0xe8, 0x45, 0xfe, 0xff, 0xff, // 10: callq [some loc]\n 0xff, 0x10, // 15: callq *(rax)\n 0x75, 0x00, // 17: jne +0\n 0xc3, // 19: retq\n },\n 0xDEADBEEF);\n\n EXPECT_TRUE(\n Analysis.canFallThrough(Analysis.getInstructionOrDie(0xDEADBEEF)));\n EXPECT_TRUE(\n Analysis.canFallThrough(Analysis.getInstructionOrDie(0xDEADBEEF + 1)));\n EXPECT_FALSE(\n Analysis.canFallThrough(Analysis.getInstructionOrDie(0xDEADBEEF + 3)));\n EXPECT_FALSE(\n Analysis.canFallThrough(Analysis.getInstructionOrDie(0xDEADBEEF + 4)));\n EXPECT_FALSE(\n Analysis.canFallThrough(Analysis.getInstructionOrDie(0xDEADBEEF + 6)));\n EXPECT_FALSE(\n Analysis.canFallThrough(Analysis.getInstructionOrDie(0xDEADBEEF + 8)));\n EXPECT_FALSE(\n Analysis.canFallThrough(Analysis.getInstructionOrDie(0xDEADBEEF + 10)));\n EXPECT_FALSE(\n Analysis.canFallThrough(Analysis.getInstructionOrDie(0xDEADBEEF + 15)));\n EXPECT_TRUE(\n Analysis.canFallThrough(Analysis.getInstructionOrDie(0xDEADBEEF + 17)));\n EXPECT_FALSE(\n Analysis.canFallThrough(Analysis.getInstructionOrDie(0xDEADBEEF + 19)));\n}\n\nTEST_F(BasicX86FileAnalysisTest, DefiniteNextInstructionTest) {\n if (!SuccessfullyInitialised)\n return;\n Analysis.parseSectionContents(\n {\n 0x90, // 0: nop\n 0xb0, 0x00, // 1: mov $0x0, %al\n 0x2f, // 3: (bad)\n 0x0f, 0x0b, // 4: ud2\n 0xff, 0x20, // 6: jmpq *(%rax)\n 0xeb, 0x00, // 8: jmp 10 [+0]\n 0xeb, 0x05, // 10: jmp 17 [+5]\n 0xe8, 0x00, 0x00, 0x00, 0x00, // 12: callq 17 [+0]\n 0xe8, 0x78, 0x56, 0x34, 0x12, // 17: callq 0x1234569f [+0x12345678]\n 0xe8, 0x04, 0x00, 0x00, 0x00, // 22: callq 31 [+4]\n 0xff, 0x10, // 27: callq *(rax)\n 0x75, 0x00, // 29: jne 31 [+0]\n 0x75, 0xe0, // 31: jne 1 [-32]\n 0xc3, // 33: retq\n 0xeb, 0xdd, // 34: jmp 1 [-35]\n 0xeb, 0xdd, // 36: jmp 3 [-35]\n 0xeb, 0xdc, // 38: jmp 4 [-36]\n },\n 0xDEADBEEF);\n\n const auto *Current = Analysis.getInstruction(0xDEADBEEF);\n const auto *Next = Analysis.getDefiniteNextInstruction(*Current);\n EXPECT_NE(nullptr, Next);\n EXPECT_EQ(0xDEADBEEF + 1, Next->VMAddress);\n\n Current = Analysis.getInstruction(0xDEADBEEF + 1);\n EXPECT_EQ(nullptr, Analysis.getDefiniteNextInstruction(*Current));\n\n Current = Analysis.getInstruction(0xDEADBEEF + 3);\n EXPECT_EQ(nullptr, Analysis.getDefiniteNextInstruction(*Current));\n\n Current = Analysis.getInstruction(0xDEADBEEF + 4);\n EXPECT_EQ(nullptr, Analysis.getDefiniteNextInstruction(*Current));\n\n Current = Analysis.getInstruction(0xDEADBEEF + 6);\n EXPECT_EQ(nullptr, Analysis.getDefiniteNextInstruction(*Current));\n\n Current = Analysis.getInstruction(0xDEADBEEF + 8);\n Next = Analysis.getDefiniteNextInstruction(*Current);\n EXPECT_NE(nullptr, Next);\n EXPECT_EQ(0xDEADBEEF + 10, Next->VMAddress);\n\n Current = Analysis.getInstruction(0xDEADBEEF + 10);\n Next = Analysis.getDefiniteNextInstruction(*Current);\n EXPECT_NE(nullptr, Next);\n EXPECT_EQ(0xDEADBEEF + 17, Next->VMAddress);\n\n Current = Analysis.getInstruction(0xDEADBEEF + 12);\n Next = Analysis.getDefiniteNextInstruction(*Current);\n EXPECT_NE(nullptr, Next);\n EXPECT_EQ(0xDEADBEEF + 17, Next->VMAddress);\n\n Current = Analysis.getInstruction(0xDEADBEEF + 17);\n // Note, definite next instruction address is out of range and should fail.\n EXPECT_EQ(nullptr, Analysis.getDefiniteNextInstruction(*Current));\n Next = Analysis.getDefiniteNextInstruction(*Current);\n\n Current = Analysis.getInstruction(0xDEADBEEF + 22);\n Next = Analysis.getDefiniteNextInstruction(*Current);\n EXPECT_NE(nullptr, Next);\n EXPECT_EQ(0xDEADBEEF + 31, Next->VMAddress);\n\n Current = Analysis.getInstruction(0xDEADBEEF + 27);\n EXPECT_EQ(nullptr, Analysis.getDefiniteNextInstruction(*Current));\n Current = Analysis.getInstruction(0xDEADBEEF + 29);\n EXPECT_EQ(nullptr, Analysis.getDefiniteNextInstruction(*Current));\n Current = Analysis.getInstruction(0xDEADBEEF + 31);\n EXPECT_EQ(nullptr, Analysis.getDefiniteNextInstruction(*Current));\n Current = Analysis.getInstruction(0xDEADBEEF + 33);\n EXPECT_EQ(nullptr, Analysis.getDefiniteNextInstruction(*Current));\n\n Current = Analysis.getInstruction(0xDEADBEEF + 34);\n Next = Analysis.getDefiniteNextInstruction(*Current);\n EXPECT_NE(nullptr, Next);\n EXPECT_EQ(0xDEADBEEF + 1, Next->VMAddress);\n\n Current = Analysis.getInstruction(0xDEADBEEF + 36);\n EXPECT_EQ(nullptr, Analysis.getDefiniteNextInstruction(*Current));\n\n Current = Analysis.getInstruction(0xDEADBEEF + 38);\n Next = Analysis.getDefiniteNextInstruction(*Current);\n EXPECT_NE(nullptr, Next);\n EXPECT_EQ(0xDEADBEEF + 4, Next->VMAddress);\n}\n\nTEST_F(BasicX86FileAnalysisTest, ControlFlowXRefsTest) {\n if (!SuccessfullyInitialised)\n return;\n Analysis.parseSectionContents(\n {\n 0x90, // 0: nop\n 0xb0, 0x00, // 1: mov $0x0, %al\n 0x2f, // 3: (bad)\n 0x0f, 0x0b, // 4: ud2\n 0xff, 0x20, // 6: jmpq *(%rax)\n 0xeb, 0x00, // 8: jmp 10 [+0]\n 0xeb, 0x05, // 10: jmp 17 [+5]\n 0xe8, 0x00, 0x00, 0x00, 0x00, // 12: callq 17 [+0]\n 0xe8, 0x78, 0x56, 0x34, 0x12, // 17: callq 0x1234569f [+0x12345678]\n 0xe8, 0x04, 0x00, 0x00, 0x00, // 22: callq 31 [+4]\n 0xff, 0x10, // 27: callq *(rax)\n 0x75, 0x00, // 29: jne 31 [+0]\n 0x75, 0xe0, // 31: jne 1 [-32]\n 0xc3, // 33: retq\n 0xeb, 0xdd, // 34: jmp 1 [-35]\n 0xeb, 0xdd, // 36: jmp 3 [-35]\n 0xeb, 0xdc, // 38: jmp 4 [-36]\n },\n 0xDEADBEEF);\n const auto *InstrMetaPtr = &Analysis.getInstructionOrDie(0xDEADBEEF);\n std::set XRefs =\n Analysis.getDirectControlFlowXRefs(*InstrMetaPtr);\n EXPECT_TRUE(XRefs.empty());\n\n InstrMetaPtr = &Analysis.getInstructionOrDie(0xDEADBEEF + 1);\n XRefs = Analysis.getDirectControlFlowXRefs(*InstrMetaPtr);\n EXPECT_THAT(XRefs, UnorderedElementsAre(\n Field(&Instr::VMAddress, Eq(0xDEADBEEF)),\n Field(&Instr::VMAddress, Eq(0xDEADBEEF + 31)),\n Field(&Instr::VMAddress, Eq(0xDEADBEEF + 34))));\n\n InstrMetaPtr = &Analysis.getInstructionOrDie(0xDEADBEEF + 3);\n XRefs = Analysis.getDirectControlFlowXRefs(*InstrMetaPtr);\n EXPECT_THAT(XRefs, UnorderedElementsAre(\n Field(&Instr::VMAddress, Eq(0xDEADBEEF + 1)),\n Field(&Instr::VMAddress, Eq(0xDEADBEEF + 36))));\n\n InstrMetaPtr = &Analysis.getInstructionOrDie(0xDEADBEEF + 4);\n XRefs = Analysis.getDirectControlFlowXRefs(*InstrMetaPtr);\n EXPECT_THAT(XRefs, UnorderedElementsAre(\n Field(&Instr::VMAddress, Eq(0xDEADBEEF + 38))));\n\n InstrMetaPtr = &Analysis.getInstructionOrDie(0xDEADBEEF + 6);\n EXPECT_TRUE(Analysis.getDirectControlFlowXRefs(*InstrMetaPtr).empty());\n\n InstrMetaPtr = &Analysis.getInstructionOrDie(0xDEADBEEF + 8);\n XRefs = Analysis.getDirectControlFlowXRefs(*InstrMetaPtr);\n EXPECT_TRUE(Analysis.getDirectControlFlowXRefs(*InstrMetaPtr).empty());\n\n InstrMetaPtr = &Analysis.getInstructionOrDie(0xDEADBEEF + 10);\n XRefs = Analysis.getDirectControlFlowXRefs(*InstrMetaPtr);\n EXPECT_THAT(XRefs, UnorderedElementsAre(\n Field(&Instr::VMAddress, Eq(0xDEADBEEF + 8))));\n\n InstrMetaPtr = &Analysis.getInstructionOrDie(0xDEADBEEF + 12);\n XRefs = Analysis.getDirectControlFlowXRefs(*InstrMetaPtr);\n EXPECT_TRUE(Analysis.getDirectControlFlowXRefs(*InstrMetaPtr).empty());\n\n InstrMetaPtr = &Analysis.getInstructionOrDie(0xDEADBEEF + 17);\n XRefs = Analysis.getDirectControlFlowXRefs(*InstrMetaPtr);\n EXPECT_THAT(XRefs, UnorderedElementsAre(\n Field(&Instr::VMAddress, Eq(0xDEADBEEF + 10)),\n Field(&Instr::VMAddress, Eq(0xDEADBEEF + 12))));\n\n InstrMetaPtr = &Analysis.getInstructionOrDie(0xDEADBEEF + 22);\n XRefs = Analysis.getDirectControlFlowXRefs(*InstrMetaPtr);\n EXPECT_TRUE(Analysis.getDirectControlFlowXRefs(*InstrMetaPtr).empty());\n\n InstrMetaPtr = &Analysis.getInstructionOrDie(0xDEADBEEF + 27);\n XRefs = Analysis.getDirectControlFlowXRefs(*InstrMetaPtr);\n EXPECT_TRUE(Analysis.getDirectControlFlowXRefs(*InstrMetaPtr).empty());\n\n InstrMetaPtr = &Analysis.getInstructionOrDie(0xDEADBEEF + 29);\n XRefs = Analysis.getDirectControlFlowXRefs(*InstrMetaPtr);\n EXPECT_TRUE(Analysis.getDirectControlFlowXRefs(*InstrMetaPtr).empty());\n\n InstrMetaPtr = &Analysis.getInstructionOrDie(0xDEADBEEF + 31);\n XRefs = Analysis.getDirectControlFlowXRefs(*InstrMetaPtr);\n EXPECT_THAT(XRefs, UnorderedElementsAre(\n Field(&Instr::VMAddress, Eq(0xDEADBEEF + 22)),\n Field(&Instr::VMAddress, Eq(0xDEADBEEF + 29))));\n\n InstrMetaPtr = &Analysis.getInstructionOrDie(0xDEADBEEF + 33);\n XRefs = Analysis.getDirectControlFlowXRefs(*InstrMetaPtr);\n EXPECT_THAT(XRefs, UnorderedElementsAre(\n Field(&Instr::VMAddress, Eq(0xDEADBEEF + 31))));\n\n InstrMetaPtr = &Analysis.getInstructionOrDie(0xDEADBEEF + 34);\n XRefs = Analysis.getDirectControlFlowXRefs(*InstrMetaPtr);\n EXPECT_TRUE(Analysis.getDirectControlFlowXRefs(*InstrMetaPtr).empty());\n\n InstrMetaPtr = &Analysis.getInstructionOrDie(0xDEADBEEF + 36);\n XRefs = Analysis.getDirectControlFlowXRefs(*InstrMetaPtr);\n EXPECT_TRUE(Analysis.getDirectControlFlowXRefs(*InstrMetaPtr).empty());\n\n InstrMetaPtr = &Analysis.getInstructionOrDie(0xDEADBEEF + 38);\n XRefs = Analysis.getDirectControlFlowXRefs(*InstrMetaPtr);\n EXPECT_TRUE(Analysis.getDirectControlFlowXRefs(*InstrMetaPtr).empty());\n}\n\nTEST_F(BasicX86FileAnalysisTest, CFIProtectionInvalidTargets) {\n if (!SuccessfullyInitialised)\n return;\n Analysis.parseSectionContents(\n {\n 0x90, // 0: nop\n 0x0f, 0x0b, // 1: ud2\n 0x75, 0x00, // 3: jne 5 [+0]\n },\n 0xDEADBEEF);\n GraphResult Result = GraphBuilder::buildFlowGraph(Analysis, 0xDEADBEEF);\n EXPECT_EQ(CFIProtectionStatus::FAIL_NOT_INDIRECT_CF,\n Analysis.validateCFIProtection(Result));\n Result = GraphBuilder::buildFlowGraph(Analysis, 0xDEADBEEF + 1);\n EXPECT_EQ(CFIProtectionStatus::FAIL_NOT_INDIRECT_CF,\n Analysis.validateCFIProtection(Result));\n Result = GraphBuilder::buildFlowGraph(Analysis, 0xDEADBEEF + 3);\n EXPECT_EQ(CFIProtectionStatus::FAIL_NOT_INDIRECT_CF,\n Analysis.validateCFIProtection(Result));\n Result = GraphBuilder::buildFlowGraph(Analysis, 0x12345678);\n EXPECT_EQ(CFIProtectionStatus::FAIL_INVALID_INSTRUCTION,\n Analysis.validateCFIProtection(Result));\n}\n\nTEST_F(BasicX86FileAnalysisTest, CFIProtectionBasicFallthroughToUd2) {\n if (!SuccessfullyInitialised)\n return;\n Analysis.parseSectionContents(\n {\n 0x75, 0x02, // 0: jne 4 [+2]\n 0x0f, 0x0b, // 2: ud2\n 0xff, 0x10, // 4: callq *(%rax)\n },\n 0xDEADBEEF);\n GraphResult Result = GraphBuilder::buildFlowGraph(Analysis, 0xDEADBEEF + 4);\n EXPECT_EQ(CFIProtectionStatus::PROTECTED,\n Analysis.validateCFIProtection(Result));\n}\n\nTEST_F(BasicX86FileAnalysisTest, CFIProtectionBasicJumpToUd2) {\n if (!SuccessfullyInitialised)\n return;\n Analysis.parseSectionContents(\n {\n 0x75, 0x02, // 0: jne 4 [+2]\n 0xff, 0x10, // 2: callq *(%rax)\n 0x0f, 0x0b, // 4: ud2\n },\n 0xDEADBEEF);\n GraphResult Result = GraphBuilder::buildFlowGraph(Analysis, 0xDEADBEEF + 2);\n EXPECT_EQ(CFIProtectionStatus::PROTECTED,\n Analysis.validateCFIProtection(Result));\n}\n\nTEST_F(BasicX86FileAnalysisTest, CFIProtectionDualPathUd2) {\n if (!SuccessfullyInitialised)\n return;\n Analysis.parseSectionContents(\n {\n 0x75, 0x03, // 0: jne 5 [+3]\n 0x90, // 2: nop\n 0xff, 0x10, // 3: callq *(%rax)\n 0x0f, 0x0b, // 5: ud2\n 0x75, 0xf9, // 7: jne 2 [-7]\n 0x0f, 0x0b, // 9: ud2\n },\n 0xDEADBEEF);\n GraphResult Result = GraphBuilder::buildFlowGraph(Analysis, 0xDEADBEEF + 3);\n EXPECT_EQ(CFIProtectionStatus::PROTECTED,\n Analysis.validateCFIProtection(Result));\n}\n\nTEST_F(BasicX86FileAnalysisTest, CFIProtectionDualPathSingleUd2) {\n if (!SuccessfullyInitialised)\n return;\n Analysis.parseSectionContents(\n {\n 0x75, 0x05, // 0: jne 7 [+5]\n 0x90, // 2: nop\n 0xff, 0x10, // 3: callq *(%rax)\n 0x75, 0xfb, // 5: jne 2 [-5]\n 0x0f, 0x0b, // 7: ud2\n },\n 0xDEADBEEF);\n GraphResult Result = GraphBuilder::buildFlowGraph(Analysis, 0xDEADBEEF + 3);\n EXPECT_EQ(CFIProtectionStatus::PROTECTED,\n Analysis.validateCFIProtection(Result));\n}\n\nTEST_F(BasicX86FileAnalysisTest, CFIProtectionDualFailLimitUpwards) {\n if (!SuccessfullyInitialised)\n return;\n Analysis.parseSectionContents(\n {\n 0x75, 0x06, // 0: jne 8 [+6]\n 0x90, // 2: nop\n 0x90, // 3: nop\n 0x90, // 4: nop\n 0x90, // 5: nop\n 0xff, 0x10, // 6: callq *(%rax)\n 0x0f, 0x0b, // 8: ud2\n },\n 0xDEADBEEF);\n uint64_t PrevSearchLengthForConditionalBranch =\n SearchLengthForConditionalBranch;\n SearchLengthForConditionalBranch = 2;\n\n GraphResult Result = GraphBuilder::buildFlowGraph(Analysis, 0xDEADBEEF + 6);\n EXPECT_EQ(CFIProtectionStatus::FAIL_ORPHANS,\n Analysis.validateCFIProtection(Result));\n\n SearchLengthForConditionalBranch = PrevSearchLengthForConditionalBranch;\n}\n\nTEST_F(BasicX86FileAnalysisTest, CFIProtectionDualFailLimitDownwards) {\n if (!SuccessfullyInitialised)\n return;\n Analysis.parseSectionContents(\n {\n 0x75, 0x02, // 0: jne 4 [+2]\n 0xff, 0x10, // 2: callq *(%rax)\n 0x90, // 4: nop\n 0x90, // 5: nop\n 0x90, // 6: nop\n 0x90, // 7: nop\n 0x0f, 0x0b, // 8: ud2\n },\n 0xDEADBEEF);\n uint64_t PrevSearchLengthForUndef = SearchLengthForUndef;\n SearchLengthForUndef = 2;\n\n GraphResult Result = GraphBuilder::buildFlowGraph(Analysis, 0xDEADBEEF + 2);\n EXPECT_EQ(CFIProtectionStatus::FAIL_BAD_CONDITIONAL_BRANCH,\n Analysis.validateCFIProtection(Result));\n\n SearchLengthForUndef = PrevSearchLengthForUndef;\n}\n\nTEST_F(BasicX86FileAnalysisTest, CFIProtectionGoodAndBadPaths) {\n if (!SuccessfullyInitialised)\n return;\n Analysis.parseSectionContents(\n {\n 0xeb, 0x02, // 0: jmp 4 [+2]\n 0x75, 0x02, // 2: jne 6 [+2]\n 0xff, 0x10, // 4: callq *(%rax)\n 0x0f, 0x0b, // 6: ud2\n },\n 0xDEADBEEF);\n GraphResult Result = GraphBuilder::buildFlowGraph(Analysis, 0xDEADBEEF + 4);\n EXPECT_EQ(CFIProtectionStatus::FAIL_ORPHANS,\n Analysis.validateCFIProtection(Result));\n}\n\nTEST_F(BasicX86FileAnalysisTest, CFIProtectionWithUnconditionalJumpInFallthrough) {\n if (!SuccessfullyInitialised)\n return;\n Analysis.parseSectionContents(\n {\n 0x75, 0x04, // 0: jne 6 [+4]\n 0xeb, 0x00, // 2: jmp 4 [+0]\n 0xff, 0x10, // 4: callq *(%rax)\n 0x0f, 0x0b, // 6: ud2\n },\n 0xDEADBEEF);\n GraphResult Result = GraphBuilder::buildFlowGraph(Analysis, 0xDEADBEEF + 4);\n EXPECT_EQ(CFIProtectionStatus::PROTECTED,\n Analysis.validateCFIProtection(Result));\n}\n\nTEST_F(BasicX86FileAnalysisTest, CFIProtectionComplexExample) {\n if (!SuccessfullyInitialised)\n return;\n // See unittests/GraphBuilder.cpp::BuildFlowGraphComplexExample for this\n // graph.\n Analysis.parseSectionContents(\n {\n 0x75, 0x12, // 0: jne 20 [+18]\n 0xeb, 0x03, // 2: jmp 7 [+3]\n 0x75, 0x10, // 4: jne 22 [+16]\n 0x90, // 6: nop\n 0x90, // 7: nop\n 0x90, // 8: nop\n 0xff, 0x10, // 9: callq *(%rax)\n 0xeb, 0xfc, // 11: jmp 9 [-4]\n 0x75, 0xfa, // 13: jne 9 [-6]\n 0xe8, 0x78, 0x56, 0x34, 0x12, // 15: callq OUTOFBOUNDS [+0x12345678]\n 0x90, // 20: nop\n 0x90, // 21: nop\n 0x0f, 0x0b, // 22: ud2\n },\n 0xDEADBEEF);\n uint64_t PrevSearchLengthForUndef = SearchLengthForUndef;\n SearchLengthForUndef = 5;\n GraphResult Result = GraphBuilder::buildFlowGraph(Analysis, 0xDEADBEEF + 9);\n EXPECT_EQ(CFIProtectionStatus::FAIL_ORPHANS,\n Analysis.validateCFIProtection(Result));\n SearchLengthForUndef = PrevSearchLengthForUndef;\n}\n\nTEST_F(BasicX86FileAnalysisTest, UndefSearchLengthOneTest) {\n Analysis.parseSectionContents(\n {\n 0x77, 0x0d, // 0x688118: ja 0x688127 [+12]\n 0x48, 0x89, 0xdf, // 0x68811a: mov %rbx, %rdi\n 0xff, 0xd0, // 0x68811d: callq *%rax\n 0x48, 0x89, 0xdf, // 0x68811f: mov %rbx, %rdi\n 0xe8, 0x09, 0x00, 0x00, 0x00, // 0x688122: callq 0x688130\n 0x0f, 0x0b, // 0x688127: ud2\n },\n 0x688118);\n uint64_t PrevSearchLengthForUndef = SearchLengthForUndef;\n SearchLengthForUndef = 1;\n GraphResult Result = GraphBuilder::buildFlowGraph(Analysis, 0x68811d);\n EXPECT_EQ(CFIProtectionStatus::PROTECTED,\n Analysis.validateCFIProtection(Result));\n SearchLengthForUndef = PrevSearchLengthForUndef;\n}\n\nTEST_F(BasicX86FileAnalysisTest, UndefSearchLengthOneTestFarAway) {\n Analysis.parseSectionContents(\n {\n 0x74, 0x73, // 0x7759eb: je 0x775a60\n 0xe9, 0x1c, 0x04, 0x00, 0x00, 0x00, // 0x7759ed: jmpq 0x775e0e\n },\n 0x7759eb);\n\n Analysis.parseSectionContents(\n {\n 0x0f, 0x85, 0xb2, 0x03, 0x00, 0x00, // 0x775a56: jne 0x775e0e\n 0x48, 0x83, 0xc3, 0xf4, // 0x775a5c: add $0xfffffffffffffff4,%rbx\n 0x48, 0x8b, 0x7c, 0x24, 0x10, // 0x775a60: mov 0x10(%rsp),%rdi\n 0x48, 0x89, 0xde, // 0x775a65: mov %rbx,%rsi\n 0xff, 0xd1, // 0x775a68: callq *%rcx\n },\n 0x775a56);\n\n Analysis.parseSectionContents(\n {\n 0x0f, 0x0b, // 0x775e0e: ud2\n },\n 0x775e0e);\n uint64_t PrevSearchLengthForUndef = SearchLengthForUndef;\n SearchLengthForUndef = 1;\n GraphResult Result = GraphBuilder::buildFlowGraph(Analysis, 0x775a68);\n EXPECT_EQ(CFIProtectionStatus::FAIL_BAD_CONDITIONAL_BRANCH,\n Analysis.validateCFIProtection(Result));\n SearchLengthForUndef = 2;\n Result = GraphBuilder::buildFlowGraph(Analysis, 0x775a68);\n EXPECT_EQ(CFIProtectionStatus::PROTECTED,\n Analysis.validateCFIProtection(Result));\n SearchLengthForUndef = 3;\n Result = GraphBuilder::buildFlowGraph(Analysis, 0x775a68);\n EXPECT_EQ(CFIProtectionStatus::PROTECTED,\n Analysis.validateCFIProtection(Result));\n SearchLengthForUndef = PrevSearchLengthForUndef;\n}\n\nTEST_F(BasicX86FileAnalysisTest, CFIProtectionClobberSinglePathExplicit) {\n if (!SuccessfullyInitialised)\n return;\n Analysis.parseSectionContents(\n {\n 0x75, 0x02, // 0: jne 4 [+2]\n 0x0f, 0x0b, // 2: ud2\n 0x48, 0x05, 0x00, 0x00, 0x00, 0x00, // 4: add $0x0, %rax\n 0xff, 0x10, // 10: callq *(%rax)\n },\n 0xDEADBEEF);\n GraphResult Result = GraphBuilder::buildFlowGraph(Analysis, 0xDEADBEEF + 10);\n EXPECT_EQ(CFIProtectionStatus::FAIL_REGISTER_CLOBBERED,\n Analysis.validateCFIProtection(Result));\n}\n\nTEST_F(BasicX86FileAnalysisTest, CFIProtectionClobberSinglePathExplicit2) {\n if (!SuccessfullyInitialised)\n return;\n Analysis.parseSectionContents(\n {\n 0x75, 0x02, // 0: jne 4 [+2]\n 0x0f, 0x0b, // 2: ud2\n 0x48, 0x83, 0xc0, 0x00, // 4: add $0x0, %rax\n 0xff, 0x10, // 8: callq *(%rax)\n },\n 0xDEADBEEF);\n GraphResult Result = GraphBuilder::buildFlowGraph(Analysis, 0xDEADBEEF + 8);\n EXPECT_EQ(CFIProtectionStatus::FAIL_REGISTER_CLOBBERED,\n Analysis.validateCFIProtection(Result));\n}\n\nTEST_F(BasicX86FileAnalysisTest, CFIProtectionClobberSinglePathImplicit) {\n if (!SuccessfullyInitialised)\n return;\n Analysis.parseSectionContents(\n {\n 0x75, 0x02, // 0: jne 4 [+2]\n 0x0f, 0x0b, // 2: ud2\n 0x05, 0x00, 0x00, 0x00, 0x00, // 4: add $0x0, %eax\n 0xff, 0x10, // 9: callq *(%rax)\n },\n 0xDEADBEEF);\n GraphResult Result = GraphBuilder::buildFlowGraph(Analysis, 0xDEADBEEF + 9);\n EXPECT_EQ(CFIProtectionStatus::FAIL_REGISTER_CLOBBERED,\n Analysis.validateCFIProtection(Result));\n}\n\nTEST_F(BasicX86FileAnalysisTest, CFIProtectionClobberDualPathImplicit) {\n if (!SuccessfullyInitialised)\n return;\n Analysis.parseSectionContents(\n {\n 0x75, 0x04, // 0: jne 6 [+4]\n 0x0f, 0x31, // 2: rdtsc (note: affects eax)\n 0xff, 0x10, // 4: callq *(%rax)\n 0x0f, 0x0b, // 6: ud2\n 0x75, 0xf9, // 8: jne 2 [-7]\n 0x0f, 0x0b, // 10: ud2\n },\n 0xDEADBEEF);\n GraphResult Result = GraphBuilder::buildFlowGraph(Analysis, 0xDEADBEEF + 4);\n EXPECT_EQ(CFIProtectionStatus::FAIL_REGISTER_CLOBBERED,\n Analysis.validateCFIProtection(Result));\n}\n\nTEST_F(BasicAArch64FileAnalysisTest, AArch64BasicUnprotected) {\n if (!SuccessfullyInitialised)\n return;\n Analysis.parseSectionContents(\n {\n 0x00, 0x01, 0x3f, 0xd6, // 0: blr x8\n },\n 0xDEADBEEF);\n GraphResult Result = GraphBuilder::buildFlowGraph(Analysis, 0xDEADBEEF);\n EXPECT_EQ(CFIProtectionStatus::FAIL_ORPHANS,\n Analysis.validateCFIProtection(Result));\n}\n\nTEST_F(BasicAArch64FileAnalysisTest, AArch64BasicProtected) {\n if (!SuccessfullyInitialised)\n return;\n Analysis.parseSectionContents(\n {\n 0x49, 0x00, 0x00, 0x54, // 0: b.ls 8\n 0x20, 0x00, 0x20, 0xd4, // 4: brk #0x1\n 0x00, 0x01, 0x3f, 0xd6, // 8: blr x8\n },\n 0xDEADBEEF);\n GraphResult Result = GraphBuilder::buildFlowGraph(Analysis, 0xDEADBEEF + 8);\n EXPECT_EQ(CFIProtectionStatus::PROTECTED,\n Analysis.validateCFIProtection(Result));\n}\n\nTEST_F(BasicAArch64FileAnalysisTest, AArch64ClobberBasic) {\n if (!SuccessfullyInitialised)\n return;\n Analysis.parseSectionContents(\n {\n 0x49, 0x00, 0x00, 0x54, // 0: b.ls 8\n 0x20, 0x00, 0x20, 0xd4, // 4: brk #0x1\n 0x08, 0x05, 0x00, 0x91, // 8: add x8, x8, #1\n 0x00, 0x01, 0x3f, 0xd6, // 12: blr x8\n },\n 0xDEADBEEF);\n GraphResult Result = GraphBuilder::buildFlowGraph(Analysis, 0xDEADBEEF + 12);\n EXPECT_EQ(CFIProtectionStatus::FAIL_REGISTER_CLOBBERED,\n Analysis.validateCFIProtection(Result));\n}\n\nTEST_F(BasicAArch64FileAnalysisTest, AArch64ClobberOneLoad) {\n if (!SuccessfullyInitialised)\n return;\n Analysis.parseSectionContents(\n {\n 0x49, 0x00, 0x00, 0x54, // 0: b.ls 8\n 0x20, 0x00, 0x20, 0xd4, // 4: brk #0x1\n 0x21, 0x09, 0x40, 0xf9, // 8: ldr x1, [x9,#16]\n 0x20, 0x00, 0x1f, 0xd6, // 12: br x1\n },\n 0xDEADBEEF);\n GraphResult Result = GraphBuilder::buildFlowGraph(Analysis, 0xDEADBEEF + 12);\n EXPECT_EQ(CFIProtectionStatus::PROTECTED,\n Analysis.validateCFIProtection(Result));\n}\n\nTEST_F(BasicAArch64FileAnalysisTest, AArch64ClobberLoadAddGood) {\n if (!SuccessfullyInitialised)\n return;\n Analysis.parseSectionContents(\n {\n 0x49, 0x00, 0x00, 0x54, // 0: b.ls 8\n 0x20, 0x00, 0x20, 0xd4, // 4: brk #0x1\n 0x21, 0x04, 0x00, 0x91, // 8: add x1, x1, #1\n 0x21, 0x09, 0x40, 0xf9, // 12: ldr x1, [x9,#16]\n 0x20, 0x00, 0x1f, 0xd6, // 16: br x1\n },\n 0xDEADBEEF);\n GraphResult Result = GraphBuilder::buildFlowGraph(Analysis, 0xDEADBEEF + 16);\n EXPECT_EQ(CFIProtectionStatus::PROTECTED,\n Analysis.validateCFIProtection(Result));\n}\n\nTEST_F(BasicAArch64FileAnalysisTest, AArch64ClobberLoadAddBad) {\n if (!SuccessfullyInitialised)\n return;\n Analysis.parseSectionContents(\n {\n 0x49, 0x00, 0x00, 0x54, // 0: b.ls 8\n 0x20, 0x00, 0x20, 0xd4, // 4: brk #0x1\n 0x21, 0x09, 0x40, 0xf9, // 8: ldr x1, [x9,#16]\n 0x21, 0x04, 0x00, 0x91, // 12: add x1, x1, #1\n 0x20, 0x00, 0x1f, 0xd6, // 16: br x1\n },\n 0xDEADBEEF);\n GraphResult Result = GraphBuilder::buildFlowGraph(Analysis, 0xDEADBEEF + 16);\n EXPECT_EQ(CFIProtectionStatus::FAIL_REGISTER_CLOBBERED,\n Analysis.validateCFIProtection(Result));\n}\n\nTEST_F(BasicAArch64FileAnalysisTest, AArch64ClobberLoadAddBad2) {\n if (!SuccessfullyInitialised)\n return;\n Analysis.parseSectionContents(\n {\n 0x49, 0x00, 0x00, 0x54, // 0: b.ls 8\n 0x20, 0x00, 0x20, 0xd4, // 4: brk #0x1\n 0x29, 0x04, 0x00, 0x91, // 16: add x9, x1, #1\n 0x21, 0x09, 0x40, 0xf9, // 12: ldr x1, [x9,#16]\n 0x20, 0x00, 0x1f, 0xd6, // 16: br x1\n },\n 0xDEADBEEF);\n GraphResult Result = GraphBuilder::buildFlowGraph(Analysis, 0xDEADBEEF + 16);\n EXPECT_EQ(CFIProtectionStatus::FAIL_REGISTER_CLOBBERED,\n Analysis.validateCFIProtection(Result));\n}\n\nTEST_F(BasicAArch64FileAnalysisTest, AArch64ClobberTwoLoads) {\n if (!SuccessfullyInitialised)\n return;\n Analysis.parseSectionContents(\n {\n 0x49, 0x00, 0x00, 0x54, // 0: b.ls 8\n 0x20, 0x00, 0x20, 0xd4, // 4: brk #0x1\n 0x21, 0x09, 0x40, 0xf9, // 8: ldr x1, [x9,#16]\n 0x21, 0x08, 0x40, 0xf9, // 12: ldr x1, [x1,#16]\n 0x20, 0x00, 0x1f, 0xd6, // 16: br x1\n },\n 0xDEADBEEF);\n GraphResult Result = GraphBuilder::buildFlowGraph(Analysis, 0xDEADBEEF + 16);\n EXPECT_EQ(CFIProtectionStatus::FAIL_REGISTER_CLOBBERED,\n Analysis.validateCFIProtection(Result));\n}\n\nTEST_F(BasicAArch64FileAnalysisTest, AArch64ClobberUnrelatedSecondLoad) {\n if (!SuccessfullyInitialised)\n return;\n Analysis.parseSectionContents(\n {\n 0x49, 0x00, 0x00, 0x54, // 0: b.ls 8\n 0x20, 0x00, 0x20, 0xd4, // 4: brk #0x1\n 0x21, 0x09, 0x40, 0xf9, // 8: ldr x1, [x9,#16]\n 0x21, 0x09, 0x40, 0xf9, // 12: ldr x1, [x9,#16]\n 0x20, 0x00, 0x1f, 0xd6, // 16: br x1\n },\n 0xDEADBEEF);\n GraphResult Result = GraphBuilder::buildFlowGraph(Analysis, 0xDEADBEEF + 16);\n EXPECT_EQ(CFIProtectionStatus::PROTECTED,\n Analysis.validateCFIProtection(Result));\n}\n\nTEST_F(BasicAArch64FileAnalysisTest, AArch64ClobberUnrelatedLoads) {\n if (!SuccessfullyInitialised)\n return;\n Analysis.parseSectionContents(\n {\n 0x49, 0x00, 0x00, 0x54, // 0: b.ls 8\n 0x20, 0x00, 0x20, 0xd4, // 4: brk #0x1\n 0x22, 0x09, 0x40, 0xf9, // 8: ldr x2, [x9,#16]\n 0x22, 0x08, 0x40, 0xf9, // 12: ldr x2, [x1,#16]\n 0x20, 0x00, 0x1f, 0xd6, // 16: br x1\n },\n 0xDEADBEEF);\n GraphResult Result = GraphBuilder::buildFlowGraph(Analysis, 0xDEADBEEF + 16);\n EXPECT_EQ(CFIProtectionStatus::PROTECTED,\n Analysis.validateCFIProtection(Result));\n}\n\nTEST_F(BasicAArch64FileAnalysisTest, AArch64GoodAndBadPaths) {\n if (!SuccessfullyInitialised)\n return;\n Analysis.parseSectionContents(\n {\n 0x03, 0x00, 0x00, 0x14, // 0: b 12\n 0x49, 0x00, 0x00, 0x54, // 4: b.ls 8\n 0x20, 0x00, 0x20, 0xd4, // 8: brk #0x1\n 0x20, 0x00, 0x1f, 0xd6, // 12: br x1\n },\n 0xDEADBEEF);\n GraphResult Result = GraphBuilder::buildFlowGraph(Analysis, 0xDEADBEEF + 12);\n EXPECT_EQ(CFIProtectionStatus::FAIL_ORPHANS,\n Analysis.validateCFIProtection(Result));\n}\n\nTEST_F(BasicAArch64FileAnalysisTest, AArch64TwoPaths) {\n if (!SuccessfullyInitialised)\n return;\n Analysis.parseSectionContents(\n {\n 0xc9, 0x00, 0x00, 0x54, // 0: b.ls 24\n 0x21, 0x08, 0x40, 0xf9, // 4: ldr x1, [x1,#16]\n 0x03, 0x00, 0x00, 0x14, // 8: b 12\n 0x69, 0x00, 0x00, 0x54, // 12: b.ls 12\n 0x21, 0x08, 0x40, 0xf9, // 16: ldr x1, [x1,#16]\n 0x20, 0x00, 0x1f, 0xd6, // 20: br x1\n 0x20, 0x00, 0x20, 0xd4, // 24: brk #0x1\n },\n 0xDEADBEEF);\n GraphResult Result = GraphBuilder::buildFlowGraph(Analysis, 0xDEADBEEF + 20);\n EXPECT_EQ(CFIProtectionStatus::PROTECTED,\n Analysis.validateCFIProtection(Result));\n}\n\nTEST_F(BasicAArch64FileAnalysisTest, AArch64TwoPathsBadLoad1) {\n if (!SuccessfullyInitialised)\n return;\n Analysis.parseSectionContents(\n {\n 0xe9, 0x00, 0x00, 0x54, // 0: b.ls 28\n 0x21, 0x08, 0x40, 0xf9, // 4: ldr x1, [x1,#16]\n 0x21, 0x08, 0x40, 0xf9, // 8: ldr x1, [x1,#16]\n 0x03, 0x00, 0x00, 0x14, // 12: b 12\n 0x69, 0x00, 0x00, 0x54, // 16: b.ls 12\n 0x21, 0x08, 0x40, 0xf9, // 20: ldr x1, [x1,#16]\n 0x20, 0x00, 0x1f, 0xd6, // 24: br x1\n 0x20, 0x00, 0x20, 0xd4, // 28: brk #0x1\n },\n 0xDEADBEEF);\n GraphResult Result = GraphBuilder::buildFlowGraph(Analysis, 0xDEADBEEF + 24);\n EXPECT_EQ(CFIProtectionStatus::FAIL_REGISTER_CLOBBERED,\n Analysis.validateCFIProtection(Result));\n}\n\nTEST_F(BasicAArch64FileAnalysisTest, AArch64TwoPathsBadLoad2) {\n if (!SuccessfullyInitialised)\n return;\n Analysis.parseSectionContents(\n {\n 0xe9, 0x00, 0x00, 0x54, // 0: b.ls 28\n 0x21, 0x08, 0x40, 0xf9, // 4: ldr x1, [x1,#16]\n 0x03, 0x00, 0x00, 0x14, // 8: b 12\n 0x89, 0x00, 0x00, 0x54, // 12: b.ls 16\n 0x21, 0x08, 0x40, 0xf9, // 16: ldr x1, [x1,#16]\n 0x21, 0x08, 0x40, 0xf9, // 20: ldr x1, [x1,#16]\n 0x20, 0x00, 0x1f, 0xd6, // 24: br x1\n 0x20, 0x00, 0x20, 0xd4, // 28: brk #0x1\n },\n 0xDEADBEEF);\n GraphResult Result = GraphBuilder::buildFlowGraph(Analysis, 0xDEADBEEF + 24);\n EXPECT_EQ(CFIProtectionStatus::FAIL_REGISTER_CLOBBERED,\n Analysis.validateCFIProtection(Result));\n}\n\n} // anonymous namespace\n} // end namespace cfi_verify\n} // end namespace llvm\n\nint main(int argc, char **argv) {\n ::testing::InitGoogleTest(&argc, argv);\n llvm::cl::ParseCommandLineOptions(argc, argv);\n\n llvm::InitializeAllTargetInfos();\n llvm::InitializeAllTargetMCs();\n llvm::InitializeAllAsmParsers();\n llvm::InitializeAllDisassemblers();\n\n return RUN_ALL_TESTS();\n}\n"}
+{"text": "/* Copyright 2016 The TensorFlow Authors. All Rights Reserved.\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n==============================================================================*/\n\n#include \"tensorflow/core/kernels/cast_op_impl.h\"\n\nnamespace tensorflow {\n\ntypedef Eigen::ThreadPoolDevice CPUDevice;\ntypedef Eigen::GpuDevice GPUDevice;\n\nstd::function\nGetCpuCastFromHalf(DataType dst_dtype) {\n CURRY_TYPES3(CAST_CASE, CPUDevice, Eigen::half);\n return nullptr;\n}\n\n#if GOOGLE_CUDA\nstd::function\nGetGpuCastFromHalf(DataType dst_dtype) {\n CURRY_TYPES3(CAST_CASE, GPUDevice, Eigen::half);\n return nullptr;\n}\n#endif // GOOGLE_CUDA\n\n} // namespace tensorflow\n"}
+{"text": "package sarama\n\nimport (\n\t\"encoding/binary\"\n\t\"fmt\"\n\t\"hash/crc32\"\n)\n\ntype crcPolynomial int8\n\nconst (\n\tcrcIEEE crcPolynomial = iota\n\tcrcCastagnoli\n)\n\nvar castagnoliTable = crc32.MakeTable(crc32.Castagnoli)\n\n// crc32Field implements the pushEncoder and pushDecoder interfaces for calculating CRC32s.\ntype crc32Field struct {\n\tstartOffset int\n\tpolynomial crcPolynomial\n}\n\nfunc (c *crc32Field) saveOffset(in int) {\n\tc.startOffset = in\n}\n\nfunc (c *crc32Field) reserveLength() int {\n\treturn 4\n}\n\nfunc newCRC32Field(polynomial crcPolynomial) *crc32Field {\n\treturn &crc32Field{polynomial: polynomial}\n}\n\nfunc (c *crc32Field) run(curOffset int, buf []byte) error {\n\tcrc, err := c.crc(curOffset, buf)\n\tif err != nil {\n\t\treturn err\n\t}\n\tbinary.BigEndian.PutUint32(buf[c.startOffset:], crc)\n\treturn nil\n}\n\nfunc (c *crc32Field) check(curOffset int, buf []byte) error {\n\tcrc, err := c.crc(curOffset, buf)\n\tif err != nil {\n\t\treturn err\n\t}\n\n\texpected := binary.BigEndian.Uint32(buf[c.startOffset:])\n\tif crc != expected {\n\t\treturn PacketDecodingError{fmt.Sprintf(\"CRC didn't match expected %#x got %#x\", expected, crc)}\n\t}\n\n\treturn nil\n}\nfunc (c *crc32Field) crc(curOffset int, buf []byte) (uint32, error) {\n\tvar tab *crc32.Table\n\tswitch c.polynomial {\n\tcase crcIEEE:\n\t\ttab = crc32.IEEETable\n\tcase crcCastagnoli:\n\t\ttab = castagnoliTable\n\tdefault:\n\t\treturn 0, PacketDecodingError{\"invalid CRC type\"}\n\t}\n\treturn crc32.Checksum(buf[c.startOffset+4:curOffset], tab), nil\n}\n"}
+{"text": "// This file will only be included to the build if neither\n// easyjson_nounsafe nor appengine build tag is set. See README notes\n// for more details.\n\n//+build !easyjson_nounsafe\n//+build !appengine\n\npackage jlexer\n\nimport (\n\t\"reflect\"\n\t\"unsafe\"\n)\n\n// bytesToStr creates a string pointing at the slice to avoid copying.\n//\n// Warning: the string returned by the function should be used with care, as the whole input data\n// chunk may be either blocked from being freed by GC because of a single string or the buffer.Data\n// may be garbage-collected even when the string exists.\nfunc bytesToStr(data []byte) string {\n\th := (*reflect.SliceHeader)(unsafe.Pointer(&data))\n\tshdr := reflect.StringHeader{Data: h.Data, Len: h.Len}\n\treturn *(*string)(unsafe.Pointer(&shdr))\n}\n"}
+{"text": "/*\n * Copyright 2020 ThoughtWorks, Inc.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.thoughtworks.go.apiv4.configrepos.representers\n\nimport com.thoughtworks.go.apiv4.configrepos.ConfigRepoWithResult\nimport com.thoughtworks.go.config.PartialConfigParseResult\nimport com.thoughtworks.go.config.materials.mercurial.HgMaterialConfig\nimport com.thoughtworks.go.config.remote.ConfigRepoConfig\nimport com.thoughtworks.go.config.rules.Allow\nimport com.thoughtworks.go.domain.config.Configuration\nimport com.thoughtworks.go.domain.materials.Modification\nimport com.thoughtworks.go.helper.ModificationsMother\nimport com.thoughtworks.go.spark.Routes\nimport org.junit.jupiter.api.Test\n\nimport static com.thoughtworks.go.api.base.JsonOutputWriter.jsonDate\nimport static com.thoughtworks.go.api.base.JsonUtils.toObjectString\nimport static com.thoughtworks.go.helper.MaterialConfigsMother.hg\nimport static net.javacrumbs.jsonunit.fluent.JsonFluentAssert.assertThatJson\n\nclass ConfigRepoWithResultRepresenterTest {\n private static final String TEST_PLUGIN_ID = \"test.configrepo.plugin\"\n private static final String TEST_REPO_URL = \"https://fakeurl.com\"\n\n @Test\n void toJSON() {\n String id = \"foo\"\n ConfigRepoWithResult result = repo(id)\n\n String json = toObjectString({ w ->\n ConfigRepoWithResultRepresenter.toJSON(w, result)\n })\n\n String self = \"http://test.host/go${Routes.ConfigRepos.id(id)}\"\n String find = \"http://test.host/go${Routes.ConfigRepos.find()}\"\n\n assertThatJson(json).isEqualTo([\n _links : [\n self: [href: self],\n doc : [href: Routes.ConfigRepos.DOC],\n find: [href: find],\n ],\n\n id : id,\n plugin_id : TEST_PLUGIN_ID,\n material : [\n type : \"hg\",\n attributes: [\n name : null,\n url : TEST_REPO_URL,\n auto_update: true\n ]\n ],\n configuration : [\n [key: \"foo\", value: \"bar\"],\n [key: \"baz\", value: \"quu\"]\n ],\n \"rules\" : [\n [\n \"directive\": \"allow\",\n \"action\" : \"refer\",\n \"type\" : \"*\",\n \"resource\" : \"*\"\n ]\n ],\n material_update_in_progress: false,\n parse_info : [\n error : \"Boom!\",\n good_modification : null,\n latest_parsed_modification: [\n \"username\" : \"lgao\",\n \"email_address\": \"foo@bar.com\",\n \"revision\" : \"foo-123\",\n \"comment\" : \"Fixing the not checked in files\",\n \"modified_time\": jsonDate(result.result().latestParsedModification.modifiedTime)\n ]\n ]\n ])\n }\n\n static ConfigRepoWithResult repo(String id) {\n Modification modification = ModificationsMother.oneModifiedFile(\"${id}-123\")\n Exception exception = new Exception(\"Boom!\")\n\n PartialConfigParseResult expectedParseResult = PartialConfigParseResult.parseFailed(modification, exception)\n\n Configuration c = new Configuration()\n c.addNewConfigurationWithValue(\"foo\", \"bar\", false)\n c.addNewConfigurationWithValue(\"baz\", \"quu\", false)\n\n HgMaterialConfig materialConfig = hg(TEST_REPO_URL, \"\")\n ConfigRepoConfig repo = ConfigRepoConfig.createConfigRepoConfig(materialConfig, TEST_PLUGIN_ID, id)\n repo.setConfiguration(c)\n repo.getRules().add(new Allow(\"refer\", \"*\", \"*\"))\n\n return new ConfigRepoWithResult(repo, expectedParseResult, false)\n }\n}\n"}
+{"text": "#ifdef __OBJC__\n#import \n#else\n#ifndef FOUNDATION_EXPORT\n#if defined(__cplusplus)\n#define FOUNDATION_EXPORT extern \"C\"\n#else\n#define FOUNDATION_EXPORT extern\n#endif\n#endif\n#endif\n\n"}
+{"text": "/*\n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements. See the NOTICE file distributed with\n * this work for additional information regarding copyright ownership.\n * The ASF licenses this file to You under the Apache License, Version 2.0\n * (the \"License\"); you may not use this file except in compliance with\n * the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\npackage org.apache.mahout.cf.taste.hadoop.item;\n\nimport java.io.IOException;\n\nimport org.apache.hadoop.io.IntWritable;\nimport org.apache.hadoop.mapreduce.Mapper;\nimport org.apache.mahout.math.VarIntWritable;\nimport org.apache.mahout.math.Vector;\nimport org.apache.mahout.math.VectorWritable;\n\n/**\n * maps a row of the similarity matrix to a {@link VectorOrPrefWritable}\n * \n * actually a column from that matrix has to be used but as the similarity matrix is symmetric, \n * we can use a row instead of having to transpose it\n */\npublic final class SimilarityMatrixRowWrapperMapper extends\n Mapper {\n\n private final VarIntWritable index = new VarIntWritable();\n private final VectorOrPrefWritable vectorOrPref = new VectorOrPrefWritable();\n\n @Override\n protected void map(IntWritable key,\n VectorWritable value,\n Context context) throws IOException, InterruptedException {\n Vector similarityMatrixRow = value.get();\n /* remove self similarity */\n similarityMatrixRow.set(key.get(), Double.NaN);\n\n index.set(key.get());\n vectorOrPref.set(similarityMatrixRow);\n\n context.write(index, vectorOrPref);\n }\n\n}\n"}
+{"text": "/*\n Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.\n For licensing, see LICENSE.md or http://ckeditor.com/license\n */\nCKEDITOR.plugins.setLang(\"specialchar\", \"no\", {\n euro: \"Eurosymbol\",\n lsquo: \"Venstre enkelt anførselstegn\",\n rsquo: \"Høyre enkelt anførselstegn\",\n ldquo: \"Venstre dobbelt anførselstegn\",\n rdquo: \"Høyre anførsesltegn\",\n ndash: \"Kort tankestrek\",\n mdash: \"Lang tankestrek\",\n iexcl: \"Omvendt utropstegn\",\n cent: \"Centsymbol\",\n pound: \"Pundsymbol\",\n curren: \"Valutategn\",\n yen: \"Yensymbol\",\n brvbar: \"Brutt loddrett strek\",\n sect: \"Paragraftegn\",\n uml: \"Tøddel\",\n copy: \"Copyrighttegn\",\n ordf: \"Feminin ordensindikator\",\n laquo: \"Venstre anførselstegn\",\n not: \"Negasjonstegn\",\n reg: \"Registrert varemerke-tegn\",\n macr: \"Makron\",\n deg: \"Gradsymbol\",\n sup2: \"Hevet totall\",\n sup3: \"Hevet tretall\",\n acute: \"Akutt aksent\",\n micro: \"Mikrosymbol\",\n para: \"Avsnittstegn\",\n middot: \"Midtstilt prikk\",\n cedil: \"Cedille\",\n sup1: \"Hevet ettall\",\n ordm: \"Maskulin ordensindikator\",\n raquo: \"Høyre anførselstegn\",\n frac14: \"Fjerdedelsbrøk\",\n frac12: \"Halvbrøk\",\n frac34: \"Tre fjerdedelers brøk\",\n iquest: \"Omvendt spørsmålstegn\",\n Agrave: \"Stor A med grav aksent\",\n Aacute: \"Stor A med akutt aksent\",\n Acirc: \"Stor A med cirkumfleks\",\n Atilde: \"Stor A med tilde\",\n Auml: \"Stor A med tøddel\",\n Aring: \"Stor Å\",\n AElig: \"Stor Æ\",\n Ccedil: \"Stor C med cedille\",\n Egrave: \"Stor E med grav aksent\",\n Eacute: \"Stor E med akutt aksent\",\n Ecirc: \"Stor E med cirkumfleks\",\n Euml: \"Stor E med tøddel\",\n Igrave: \"Stor I med grav aksent\",\n Iacute: \"Stor I med akutt aksent\",\n Icirc: \"Stor I med cirkumfleks\",\n Iuml: \"Stor I med tøddel\",\n ETH: \"Stor Edd/stungen D\",\n Ntilde: \"Stor N med tilde\",\n Ograve: \"Stor O med grav aksent\",\n Oacute: \"Stor O med akutt aksent\",\n Ocirc: \"Stor O med cirkumfleks\",\n Otilde: \"Stor O med tilde\",\n Ouml: \"Stor O med tøddel\",\n times: \"Multiplikasjonstegn\",\n Oslash: \"Stor Ø\",\n Ugrave: \"Stor U med grav aksent\",\n Uacute: \"Stor U med akutt aksent\",\n Ucirc: \"Stor U med cirkumfleks\",\n Uuml: \"Stor U med tøddel\",\n Yacute: \"Stor Y med akutt aksent\",\n THORN: \"Stor Thorn\",\n szlig: \"Liten dobbelt-s/Eszett\",\n agrave: \"Liten a med grav aksent\",\n aacute: \"Liten a med akutt aksent\",\n acirc: \"Liten a med cirkumfleks\",\n atilde: \"Liten a med tilde\",\n auml: \"Liten a med tøddel\",\n aring: \"Liten å\",\n aelig: \"Liten æ\",\n ccedil: \"Liten c med cedille\",\n egrave: \"Liten e med grav aksent\",\n eacute: \"Liten e med akutt aksent\",\n ecirc: \"Liten e med cirkumfleks\",\n euml: \"Liten e med tøddel\",\n igrave: \"Liten i med grav aksent\",\n iacute: \"Liten i med akutt aksent\",\n icirc: \"Liten i med cirkumfleks\",\n iuml: \"Liten i med tøddel\",\n eth: \"Liten edd/stungen d\",\n ntilde: \"Liten n med tilde\",\n ograve: \"Liten o med grav aksent\",\n oacute: \"Liten o med akutt aksent\",\n ocirc: \"Liten o med cirkumfleks\",\n otilde: \"Liten o med tilde\",\n ouml: \"Liten o med tøddel\",\n divide: \"Divisjonstegn\",\n oslash: \"Liten ø\",\n ugrave: \"Liten u med grav aksent\",\n uacute: \"Liten u med akutt aksent\",\n ucirc: \"Liten u med cirkumfleks\",\n uuml: \"Liten u med tøddel\",\n yacute: \"Liten y med akutt aksent\",\n thorn: \"Liten thorn\",\n yuml: \"Liten y med tøddel\",\n OElig: \"Stor ligatur av O og E\",\n oelig: \"Liten ligatur av o og e\",\n 372: \"Stor W med cirkumfleks\",\n 374: \"Stor Y med cirkumfleks\",\n 373: \"Liten w med cirkumfleks\",\n 375: \"Liten y med cirkumfleks\",\n sbquo: \"Enkelt lavt 9-anførselstegn\",\n 8219: \"Enkelt høyt reversert 9-anførselstegn\",\n bdquo: \"Dobbelt lavt 9-anførselstegn\",\n hellip: \"Ellipse\",\n trade: \"Varemerkesymbol\",\n 9658: \"Svart høyrevendt peker\",\n bull: \"Tykk interpunkt\",\n rarr: \"Høyrevendt pil\",\n rArr: \"Dobbel høyrevendt pil\",\n hArr: \"Dobbel venstrevendt pil\",\n diams: \"Svart ruter\",\n asymp: \"Omtrent likhetstegn\"\n});"}
+{"text": "#ifndef MIXED_DELEGATE_UNIQUE_TAGS\n#define MIXED_DELEGATE_UNIQUE_TAGS\n\nenum enum_mixed_delegate_unique_tags\n{\n mdut_no_unique_tag = 0x00, // in this case you can have c2084 compile error\n mdut_login_operation_cb_tag,\n account_operation_cb_tag,\n suggest_nicks_cb_tag,\n account_profiles_cb_tag,\n found_emails_cb_tag,\n store_operation_cb_tag\n}; // enum enum_mixed_delegate_unique_tags\n\n#endif //#ifndef MIXED_DELEGATE_UNIQUE_TAGS\n"}
+{"text": "function varargout = gui_est_mvarConnectivity(varargin)\n%\n% GUI_EST_MVARCONNECTIVITY M-file for gui_est_mvarConnectivity.fig\n% GUI_EST_MVARCONNECTIVITY, by itself, creates a new GUI_EST_MVARCONNECTIVITY or raises the existing\n% singleton*.\n%\n% H = GUI_EST_MVARCONNECTIVITY returns the handle to a new GUI_EST_MVARCONNECTIVITY or the handle to\n% the existing singleton*.\n%\n% GUI_EST_MVARCONNECTIVITY('CALLBACK',hObject,eventData,handles,...) calls the local\n% function named CALLBACK in GUI_EST_MVARCONNECTIVITY.M with the given input arguments.\n%\n% GUI_EST_MVARCONNECTIVITY('Property','Value',...) creates a new GUI_EST_MVARCONNECTIVITY or raises the\n% existing singleton*. Starting from the left, property value pairs are\n% applied to the GUI before gui_est_mvarConnectivity_OpeningFcn gets called. An\n% unrecognized property name or invalid value makes property application\n% stop. All inputs are passed to gui_est_mvarConnectivity_OpeningFcn via varargin.\n%\n% *See GUI Options on GUIDE's Tools menu. Choose \"GUI allows only one\n% instance to run (singleton)\".\n%\n% See also: GUIDE, GUIDATA, GUIHANDLES\n\n% Edit the above text to modify the response to help gui_est_mvarConnectivity\n\n% Last Modified by GUIDE v2.5 10-Jun-2012 20:55:51\n\n% Begin initialization code - DO NOT EDIT\ngui_Singleton = 1;\ngui_State = struct('gui_Name', mfilename, ...\n 'gui_Singleton', gui_Singleton, ...\n 'gui_OpeningFcn', @gui_est_mvarConnectivity_OpeningFcn, ...\n 'gui_OutputFcn', @gui_est_mvarConnectivity_OutputFcn, ...\n 'gui_LayoutFcn', [] , ...\n 'gui_Callback', []);\nif nargin && ischar(varargin{1})\n gui_State.gui_Callback = str2func(varargin{1});\nend\n\nif nargout\n [varargout{1:nargout}] = gui_mainfcn(gui_State, varargin{:});\nelse\n gui_mainfcn(gui_State, varargin{:});\nend\n% End initialization code - DO NOT EDIT\n\n\n% --- Executes just before gui_est_mvarConnectivity is made visible.\nfunction gui_est_mvarConnectivity_OpeningFcn(hObject, eventdata, handles, varargin)\n% This function has no output args, see OutputFcn.\n% hObject handle to figure\n% eventdata reserved - to be defined in a future version of MATLAB\n% handles structure with handles and user data (see GUIDATA)\n% varargin command line arguments to gui_est_mvarConnectivity (see VARARGIN)\n\nset(hObject,'name','Calculate Connectivity Measures');\n\nhandles.output = hObject;\n\n% set default termination behavior\nhandles.ExitButtonClicked = 'Cancel';\n\n% extract some data from command-line input\nif isempty(varargin)\n error('You must pass ALLEEG to gui_est_mvarConnectivity');\nend\n\n% Extract input parameters/data and store\nhandles.ud.ALLEEG = varargin{1};\nvarargin(1) = [];\n\n% set default EEGLAB background and text colors\n%-----------------------------------------------\ntry, icadefs;\ncatch,\n GUIBACKCOLOR = [.8 .8 .8];\n GUIPOPBUTTONCOLOR = [.8 .8 .8];\n GUITEXTCOLOR = [0 0 0];\nend;\n\nallhandlers = hObject;\n\nhh = findobj(allhandlers,'style', 'text');\n%set(hh, 'BackgroundColor', get(hObject, 'color'), 'horizontalalignment', 'left');\nset(hh, 'Backgroundcolor', GUIBACKCOLOR);\nset(hh, 'foregroundcolor', GUITEXTCOLOR);\nset(hObject, 'color',GUIBACKCOLOR );\n% set(hh, 'horizontalalignment', g.horizontalalignment);\n\nhh = findobj(allhandlers, 'style', 'edit');\nset(hh, 'BackgroundColor', [1 1 1]); %, 'horizontalalignment', 'right');\n\nhh =findobj(allhandlers, 'parent', hObject, 'style', 'pushbutton');\nif ~strcmpi(computer, 'MAC') && ~strcmpi(computer, 'MACI') % this puts the wrong background on macs\n set(hh, 'backgroundcolor', GUIPOPBUTTONCOLOR);\n set(hh, 'foregroundcolor', GUITEXTCOLOR);\nend;\nhh =findobj(allhandlers, 'parent', hObject, 'style', 'popupmenu');\nset(hh, 'backgroundcolor', GUIPOPBUTTONCOLOR);\nset(hh, 'foregroundcolor', GUITEXTCOLOR);\nhh =findobj(allhandlers, 'parent', hObject, 'style', 'checkbox');\nset(hh, 'backgroundcolor', GUIBACKCOLOR);\nset(hh, 'foregroundcolor', GUITEXTCOLOR);\nhh =findobj(allhandlers, 'parent', hObject, 'style', 'listbox');\nset(hh, 'backgroundcolor', GUIPOPBUTTONCOLOR);\nset(hh, 'foregroundcolor', GUITEXTCOLOR);\nhh =findobj(allhandlers, 'parent', hObject, 'style', 'radio');\nset(hh, 'foregroundcolor', GUITEXTCOLOR);\nset(hh, 'backgroundcolor', GUIPOPBUTTONCOLOR);\nset(hObject, 'visible', 'on');\n\nset(handles.pnlPropertyGrid,'backgroundcolor', GUIBACKCOLOR);\nset(handles.pnlPropertyGrid,'foregroundcolor', GUITEXTCOLOR);\n%-----------------------------------------------\n\ndrawnow\n\n% render the PropertyGrid in the correct panel\nhandles.PropertyGridHandle = arg_guipanel( ...\n handles.pnlPropertyGrid, ...\n 'Function',@est_mvarConnectivity, ...\n 'Parameters',[{'EEG',handles.ud.ALLEEG(1), 'MODEL',handles.ud.ALLEEG(1).CAT.MODEL}, varargin]);\n\n% Update handles structure\nguidata(hObject, handles);\n\n% Wait for user to click OK, Cancel or close figure\nuiwait(handles.gui_est_mvarConnectivity);\n\n\n% --- Outputs from this function are returned to the command line.\nfunction varargout = gui_est_mvarConnectivity_OutputFcn(hObject, eventdata, handles)\n% varargout cell array for returning output args (see VARARGOUT);\n% hObject handle to figure\n% eventdata reserved - to be defined in a future version of MATLAB\n% handles structure with handles and user data (see GUIDATA)\n\nif isempty(handles)\n % user closed the figure\n varargout = {[] hObject};\nelseif strcmpi(handles.ExitButtonClicked,'OK')\n % user clicked OK\n % get PropertySpecification\n varargout = {handles.PropertyGridHandle handles.output};\nelse\n % user clicked cancel\n varargout = {[] handles.output};\nend\n\ntry, close(hObject);\ncatch; end\n\n\nfunction cmdCancel_Callback(hObject, eventdata, handles)\n\nhandles.ExitButtonClicked = 'Cancel';\nguidata(hObject,handles);\nuiresume(handles.gui_est_mvarConnectivity);\n\n\nfunction cmdOK_Callback(hObject, eventdata, handles)\n\nhandles.ExitButtonClicked ='OK';\nguidata(hObject,handles);\n\n% check parameter validity and return\nuiresume(handles.gui_est_mvarConnectivity);\n\nfunction cmdHelp_Callback(hObject, eventdata, handles)\n% generate help text\ndoc('est_mvarConnectivity');\n\n% --- Executes when gui_est_mvarConnectivity is resized.\nfunction gui_est_mvarConnectivity_ResizeFcn(hObject, eventdata, handles)\n% hObject handle to gui_est_mvarConnectivity (see GCBO)\n% eventdata reserved - to be defined in a future version of MATLAB\n% handles structure with handles and user data (see GUIDATA)\n"}
+{"text": "/*\n * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n/**\n * An example Giraph program to be debugged using Graft's exception capturing\n * functionality.\n */\npackage org.apache.giraph.debugger.examples.exceptiondebug;\n"}
+{"text": "\n// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-\n\n#ifndef __javax_swing_plaf_basic_BasicTextPaneUI__\n#define __javax_swing_plaf_basic_BasicTextPaneUI__\n\n#pragma interface\n\n#include \nextern \"Java\"\n{\n namespace javax\n {\n namespace swing\n {\n class JComponent;\n namespace plaf\n {\n class ComponentUI;\n namespace basic\n {\n class BasicTextPaneUI;\n }\n }\n }\n }\n}\n\nclass javax::swing::plaf::basic::BasicTextPaneUI : public ::javax::swing::plaf::basic::BasicEditorPaneUI\n{\n\npublic:\n BasicTextPaneUI();\n static ::javax::swing::plaf::ComponentUI * createUI(::javax::swing::JComponent *);\npublic: // actually protected\n virtual ::java::lang::String * getPropertyPrefix();\npublic:\n virtual void installUI(::javax::swing::JComponent *);\n static ::java::lang::Class class$;\n};\n\n#endif // __javax_swing_plaf_basic_BasicTextPaneUI__\n"}
+{"text": "//\n// NSObject+Swizzle.swift\n// Pods\n//\n// Created by sergdort on 5/11/16.\n//\n//\n\nimport Foundation\nimport ObjectiveC\n\nextension NSObject {\n class func swizzleMethodForSelector(originalSelector: Selector,\n withMethodForSelector swizzledSelector: Selector) {\n let originalMethod = class_getInstanceMethod(self, originalSelector)\n let swizzledMethod = class_getInstanceMethod(self, swizzledSelector)\n \n let didAddMethod = class_addMethod(self, originalSelector, method_getImplementation(swizzledMethod), method_getTypeEncoding(swizzledMethod))\n \n if didAddMethod {\n class_replaceMethod(self, swizzledSelector, method_getImplementation(originalMethod), method_getTypeEncoding(originalMethod))\n } else {\n method_exchangeImplementations(originalMethod, swizzledMethod)\n }\n }\n}"}
+{"text": "# Neil Gershenfeld 7/12/15\n\nimport fab\nfrom fab.types import Shape\n\ntitle('Slice (XY)')\n\ndef slice_xy(shape,z):\n return Shape(('mXYf%g' % z) + shape.math,\n shape.bounds.xmin,shape.bounds.ymin,\n shape.bounds.xmax,shape.bounds.ymax)\n\ninput('shape',fab.types.Shape)\ninput('z',float,0)\n\noutput('slice',slice_xy(shape,z))\n\n"}
+{"text": "\n\n\n\t\n\n"}
+{"text": "DEFINED_PHASES=configure install prepare test\nDEPEND=x11-libs/libICE x11-libs/libSM x11-libs/libX11 bidi? ( dev-libs/fribidi ) brltty? ( app-accessibility/brltty ) cairo? ( x11-libs/cairo[X(+)] ) canna? ( app-i18n/canna ) fbcon? ( media-fonts/unifont ) fcitx? ( app-i18n/fcitx ) freewnn? ( app-i18n/freewnn ) gtk? ( gtk2? ( x11-libs/gtk+:2 ) !gtk2? ( x11-libs/gtk+:3 ) ) harfbuzz? ( media-libs/harfbuzz[truetype(+)] ) ibus? ( app-i18n/ibus ) libssh2? ( net-libs/libssh2 ) m17n-lib? ( dev-libs/m17n-lib ) nls? ( virtual/libintl ) regis? ( || ( media-libs/sdl-ttf media-libs/sdl2-ttf ) ) scim? ( app-i18n/scim ) skk? ( || ( virtual/skkserv app-i18n/skk-jisyo ) ) uim? ( app-i18n/uim ) utempter? ( sys-libs/libutempter ) wayland? ( dev-libs/wayland ) xft? ( x11-libs/libXft ) virtual/pkgconfig nls? ( sys-devel/gettext )\nDESCRIPTION=A multi-lingual terminal emulator\nEAPI=7\nHOMEPAGE=http://mlterm.sourceforge.net/\nIUSE=bidi brltty cairo canna debug fbcon fcitx freewnn gtk gtk2 harfbuzz ibus libssh2 m17n-lib nls regis scim skk static-libs uim utempter wayland xft\nKEYWORDS=~amd64 ~ppc ~ppc64 ~x86\nLICENSE=BSD\nRDEPEND=x11-libs/libICE x11-libs/libSM x11-libs/libX11 bidi? ( dev-libs/fribidi ) brltty? ( app-accessibility/brltty ) cairo? ( x11-libs/cairo[X(+)] ) canna? ( app-i18n/canna ) fbcon? ( media-fonts/unifont ) fcitx? ( app-i18n/fcitx ) freewnn? ( app-i18n/freewnn ) gtk? ( gtk2? ( x11-libs/gtk+:2 ) !gtk2? ( x11-libs/gtk+:3 ) ) harfbuzz? ( media-libs/harfbuzz[truetype(+)] ) ibus? ( app-i18n/ibus ) libssh2? ( net-libs/libssh2 ) m17n-lib? ( dev-libs/m17n-lib ) nls? ( virtual/libintl ) regis? ( || ( media-libs/sdl-ttf media-libs/sdl2-ttf ) ) scim? ( app-i18n/scim ) skk? ( || ( virtual/skkserv app-i18n/skk-jisyo ) ) uim? ( app-i18n/uim ) utempter? ( sys-libs/libutempter ) wayland? ( dev-libs/wayland ) xft? ( x11-libs/libXft )\nREQUIRED_USE=gtk2? ( gtk )\nSLOT=0\nSRC_URI=mirror://sourceforge/mlterm/mlterm-3.9.0.tar.gz\n_eclasses_=desktop\t7fd20552ce4cc97e8acb132a499a7dd8\n_md5_=a9a06340c387864cfabc52a4e42812b1\n"}
+{"text": "/*\r\n * rectangle filling function\r\n * Copyright (c) 2003 Michael Niedermayer \r\n *\r\n * This file is part of FFmpeg.\r\n *\r\n * FFmpeg is free software; you can redistribute it and/or\r\n * modify it under the terms of the GNU Lesser General Public\r\n * License as published by the Free Software Foundation; either\r\n * version 2.1 of the License, or (at your option) any later version.\r\n *\r\n * FFmpeg is distributed in the hope that it will be useful,\r\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\r\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\r\n * Lesser General Public License for more details.\r\n *\r\n * You should have received a copy of the GNU Lesser General Public\r\n * License along with FFmpeg; if not, write to the Free Software\r\n * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\r\n */\r\n\r\n/**\r\n * @file rectangle.h\r\n * useful rectangle filling function\r\n * @author Michael Niedermayer \r\n */\r\n\r\n#ifndef AVCODEC_RECTANGLE_H\r\n#define AVCODEC_RECTANGLE_H\r\n\r\n#include \r\n#include \"config.h\"\r\n#include \"libavutil/common.h\"\r\n#include \"dsputil.h\"\r\n\r\n/**\r\n * fill a rectangle.\r\n * @param h height of the rectangle, should be a constant\r\n * @param w width of the rectangle, should be a constant\r\n * @param size the size of val (1 or 4), should be a constant\r\n */\r\nstatic av_always_inline void fill_rectangle(void *vp, int w, int h, int stride, uint32_t val, int size){\r\n uint8_t *p= (uint8_t*)vp;\r\n assert(size==1 || size==4);\r\n assert(w<=4);\r\n\r\n w *= size;\r\n stride *= size;\r\n\r\n assert((((long)vp)&(FFMIN(w, STRIDE_ALIGN)-1)) == 0);\r\n assert((stride&(w-1))==0);\r\n if(w==2){\r\n const uint16_t v= size==4 ? val : val*0x0101;\r\n *(uint16_t*)(p + 0*stride)= v;\r\n if(h==1) return;\r\n *(uint16_t*)(p + 1*stride)= v;\r\n if(h==2) return;\r\n *(uint16_t*)(p + 2*stride)= v;\r\n *(uint16_t*)(p + 3*stride)= v;\r\n }else if(w==4){\r\n const uint32_t v= size==4 ? val : val*0x01010101;\r\n *(uint32_t*)(p + 0*stride)= v;\r\n if(h==1) return;\r\n *(uint32_t*)(p + 1*stride)= v;\r\n if(h==2) return;\r\n *(uint32_t*)(p + 2*stride)= v;\r\n *(uint32_t*)(p + 3*stride)= v;\r\n }else if(w==8){\r\n //gcc can't optimize 64bit math on x86_32\r\n#if HAVE_FAST_64BIT\r\n const uint64_t v= val*0x0100000001ULL;\r\n *(uint64_t*)(p + 0*stride)= v;\r\n if(h==1) return;\r\n *(uint64_t*)(p + 1*stride)= v;\r\n if(h==2) return;\r\n *(uint64_t*)(p + 2*stride)= v;\r\n *(uint64_t*)(p + 3*stride)= v;\r\n }else if(w==16){\r\n const uint64_t v= val*0x0100000001ULL;\r\n *(uint64_t*)(p + 0+0*stride)= v;\r\n *(uint64_t*)(p + 8+0*stride)= v;\r\n *(uint64_t*)(p + 0+1*stride)= v;\r\n *(uint64_t*)(p + 8+1*stride)= v;\r\n if(h==2) return;\r\n *(uint64_t*)(p + 0+2*stride)= v;\r\n *(uint64_t*)(p + 8+2*stride)= v;\r\n *(uint64_t*)(p + 0+3*stride)= v;\r\n *(uint64_t*)(p + 8+3*stride)= v;\r\n#else\r\n *(uint32_t*)(p + 0+0*stride)= val;\r\n *(uint32_t*)(p + 4+0*stride)= val;\r\n if(h==1) return;\r\n *(uint32_t*)(p + 0+1*stride)= val;\r\n *(uint32_t*)(p + 4+1*stride)= val;\r\n if(h==2) return;\r\n *(uint32_t*)(p + 0+2*stride)= val;\r\n *(uint32_t*)(p + 4+2*stride)= val;\r\n *(uint32_t*)(p + 0+3*stride)= val;\r\n *(uint32_t*)(p + 4+3*stride)= val;\r\n }else if(w==16){\r\n *(uint32_t*)(p + 0+0*stride)= val;\r\n *(uint32_t*)(p + 4+0*stride)= val;\r\n *(uint32_t*)(p + 8+0*stride)= val;\r\n *(uint32_t*)(p +12+0*stride)= val;\r\n *(uint32_t*)(p + 0+1*stride)= val;\r\n *(uint32_t*)(p + 4+1*stride)= val;\r\n *(uint32_t*)(p + 8+1*stride)= val;\r\n *(uint32_t*)(p +12+1*stride)= val;\r\n if(h==2) return;\r\n *(uint32_t*)(p + 0+2*stride)= val;\r\n *(uint32_t*)(p + 4+2*stride)= val;\r\n *(uint32_t*)(p + 8+2*stride)= val;\r\n *(uint32_t*)(p +12+2*stride)= val;\r\n *(uint32_t*)(p + 0+3*stride)= val;\r\n *(uint32_t*)(p + 4+3*stride)= val;\r\n *(uint32_t*)(p + 8+3*stride)= val;\r\n *(uint32_t*)(p +12+3*stride)= val;\r\n#endif\r\n }else\r\n assert(0);\r\n assert(h==4);\r\n}\r\n\r\n#endif /* AVCODEC_RECTANGLE_H */\r\n"}
+{"text": "/****************************************************************\n * Licensed to the Apache Software Foundation (ASF) under one *\n * or more contributor license agreements. See the NOTICE file *\n * distributed with this work for additional information *\n * regarding copyright ownership. The ASF licenses this file *\n * to you under the Apache License, Version 2.0 (the *\n * \"License\"); you may not use this file except in compliance *\n * with the License. You may obtain a copy of the License at *\n * *\n * http://www.apache.org/licenses/LICENSE-2.0 *\n * *\n * Unless required by applicable law or agreed to in writing, *\n * software distributed under the License is distributed on an *\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY *\n * KIND, either express or implied. See the License for the *\n * specific language governing permissions and limitations *\n * under the License. *\n ****************************************************************/\npackage org.apache.james.core.quota;\n\npublic class QuotaSizeUsageTest implements QuotaUsageValueTest {\n @Override\n public QuotaSizeUsage usageInstance(long value) {\n return QuotaSizeUsage.size(value);\n }\n\n @Override\n public QuotaSizeLimit limitInstance(long value) {\n return QuotaSizeLimit.size(value);\n }\n\n @Override\n public QuotaSizeLimit unlimited() {\n return QuotaSizeLimit.unlimited();\n }\n}\n"}
+{"text": "import React from 'react';\nimport PT from 'prop-types';\nimport './LoaderStyle.scss';\n\nfunction Loader({\n type,\n}) {\n const className = `Loader${type ? ` Loader_${type}` : ''}`;\n\n return (\n
\n
\n \n
\n
\n );\n}\n\nLoader.defaultProps = {\n type: '',\n};\n\nLoader.propTypes = {\n type: PT.oneOf(['small', '']),\n};\n\nexport default Loader;\n"}
+{"text": "{\n \"word\": \"Select\",\n \"definitions\": [\n \"Carefully choose as being the best or most suitable.\",\n \"(in terms of evolution) determine whether (a characteristic or organism) will survive.\",\n \"Mark (an option or section of text) on an electronic interface for a particular operation.\"\n ],\n \"parts-of-speech\": \"Verb\"\n}"}
+{"text": "export { relative, resolve } from \"https://deno.land/std@v0.65.0/path/mod.ts\";\nexport { readJson } from \"https://deno.land/std@v0.65.0/fs/read_json.ts\";\nexport {\n assert,\n assertArrayContains,\n assertEquals,\n} from \"https://deno.land/std@v0.65.0/testing/asserts.ts\";\n\nimport Denomander from \"https://deno.land/x/denomander@0.6.3/mod.ts\";\n\nexport { Denomander };\n"}
+{"text": "(* Modified by TrustInSoft *)\n\n(**************************************************************************)\n(* *)\n(* This file is part of Frama-C. *)\n(* *)\n(* Copyright (C) 2007-2015 *)\n(* CEA (Commissariat à l'énergie atomique et aux énergies *)\n(* alternatives) *)\n(* *)\n(* you can redistribute it and/or modify it under the terms of the GNU *)\n(* Lesser General Public License as published by the Free Software *)\n(* Foundation, version 2.1. *)\n(* *)\n(* It is distributed in the hope that it will be useful, *)\n(* but WITHOUT ANY WARRANTY; without even the implied warranty of *)\n(* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *)\n(* GNU Lesser General Public License for more details. *)\n(* *)\n(* See the GNU Lesser General Public License version 2.1 *)\n(* for more details (enclosed in the file licenses/LGPLv2.1). *)\n(* *)\n(**************************************************************************)\n\ntype k =\n | Behavior\n | Enum\n | Field\n | Formal_var\n | Function\n | Global_var\n | Label\n | Literal_string\n | Local_var\n | Logic_var\n | Predicate\n | Type\n \nlet name_of_kind = function\n | Behavior -> \"behavior\"\n | Enum -> \"enum\"\n | Field -> \"field\"\n | Formal_var -> \"formal variable\"\n | Function -> \"function\"\n | Global_var -> \"global variable\"\n | Label -> \"label\"\n | Literal_string -> \"literal string\"\n | Local_var -> \"local variable\"\n | Logic_var -> \"logic variable\"\n | Predicate -> \"predicate\"\n | Type -> \"type\"\n\nlet prefix = function\n | Behavior -> \"B\"\n | Enum -> \"E\"\n | Field -> \"M\"\n | Formal_var -> \"f\"\n | Function -> \"F\"\n | Global_var -> \"G\"\n | Label -> \"L\"\n | Literal_string -> \"LS\"\n | Local_var -> \"V\"\n | Logic_var -> \"LV\"\n | Predicate -> \"P\"\n | Type -> \"T\"\n\ninclude Datatype.Make_with_collections\n(struct\n type t = k\n let name = \"Obfuscator.kind\"\n let reprs = [ Global_var ]\n let hash (k:k) = Hashtbl.hash k\n let equal (k1:k) k2 = k1 = k2\n let compare (k1:k) k2 = Pervasives.compare k1 k2\n let varname _ = \"k\"\n let internal_pretty_code = Datatype.undefined\n let copy = Datatype.identity\n let structural_descr = Structural_descr.t_abstract\n let rehash = Datatype.identity\n let mem_project = Datatype.never_any_project\n let pretty fmt k = Format.fprintf fmt \"%s\" (name_of_kind k)\n end)\n\n(*\nLocal Variables:\ncompile-command: \"make -C ../../..\"\nEnd:\n*)\n"}
+{"text": "/*\n * Copyright 2020 the original author or authors.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\npackage io.spring.taskapp.configuration;\n\nimport org.springframework.boot.context.properties.ConfigurationProperties;\n\n/**\n * Establishes the properties for this application.\n *\n * @author Glenn Renfro\n */\n@ConfigurationProperties(\"taskapp\")\npublic class TaskAppProperties {\n\tprivate String exitMessage;\n\n\tpublic String getExitMessage() {\n\t\treturn exitMessage;\n\t}\n\n\tpublic void setExitMessage(String exitMessage) {\n\t\tthis.exitMessage = exitMessage;\n\t}\n}\n"}
+{"text": "import Component from '@glimmer/component';\nimport { NachoTableCustomColumnConfig, INachoTableConfigs } from '@nacho-ui/table/types/nacho-table';\nimport { Dictionary } from 'lodash';\nimport { DataModelEntityInstance } from '@datahub/data-models/constants/entity';\nimport { getDatasetUrnParts } from '@datahub/data-models/entity/dataset/utils/urn';\nimport { DatasetPlatform } from '@datahub/metadata-types/constants/entity/dataset/platform';\n\n/**\n * Attributes supplied via the Nacho Table Row component\n * @interface IHealthHealthFactorActionArgs\n */\ninterface IHealthHealthFactorActionArgs {\n // Expected row level information for the Health validation\n rowData?: Com.Linkedin.Common.HealthValidation;\n // NachoTable configuration options for the row label\n labelConfig?: NachoTableCustomColumnConfig;\n // Modified table configuration options passed in to each row from Nacho Table\n tableConfigs?: INachoTableConfigs & {\n options?: { entity: DataModelEntityInstance; wikiLink: string };\n };\n}\n\n/**\n * Validator CTA attributes to be passed down to the Validator record in a HealthFactorAction\n * @interface IHealthValidatorCta\n */\ninterface IHealthValidatorCta {\n // CTA text to be shown in the button\n text: string;\n // Flag indicating that this CTA is an external wiki link\n isWiki?: boolean;\n}\n\n/**\n * Handles CTA button for each row in the Health Factors table\n * @export\n * @class HealthHealthFactorAction\n * @extends {Component}\n */\nexport default class HealthHealthFactorAction extends Component {\n /**\n * Specifies the control name for tracking action interactions (clicks) based on the current\n * validator\n * @readonly\n */\n get controlName(): string {\n const validator = this.args.rowData?.validator || '';\n const controlNames: Dictionary = {\n Ownership: 'DataHubHealthScoreFactorsActionViewOwnership',\n Description: 'DataHubHealthScoreFactorsActionViewDescription'\n };\n\n return controlNames[validator];\n }\n\n /**\n * Provides the CTA text for the available validators for Health metadata\n * @readonly\n */\n get cta(): IHealthValidatorCta | undefined {\n const validator = this.args.rowData?.validator || '';\n const knownValidatorCtas: Dictionary = {\n Ownership: { text: 'View Owners', isWiki: this.validatorHasExternalAction },\n Description: { text: 'See Details in Wiki', isWiki: true }\n };\n\n return knownValidatorCtas[validator];\n }\n\n /**\n * Determines if the cta for the related validator is a link to the external resource\n * Temporary implementation, will be derived from a config endpoint that responds with\n * a shape similar to:\n * {\n * [validator]: {\n * text: String;\n * link?: String;\n * inPageRedirectComponentName?: enum /string\n * }\n * }\n * @TODO: META-11944 Integrate Health Validator config endpoint\n * @readonly\n */\n get validatorHasExternalAction(): boolean {\n const entity = this.args.tableConfigs?.options?.entity;\n\n if (entity) {\n // Attempt to parse the urn for a platform to check if it matches the expected platform\n // for external action or if the related entity is a metric entity\n const { platform } = getDatasetUrnParts(entity.urn);\n let isExternal = entity.displayName === 'metrics';\n\n if (platform) {\n // Short circuit if already truthy\n isExternal = isExternal || platform === DatasetPlatform.UMP;\n }\n\n return isExternal;\n }\n\n return false;\n }\n}\n"}
+{"text": "/* \n * \n * Confidential Information of Telekinesys Research Limited (t/a Havok). Not for disclosure or distribution without Havok's\n * prior written consent. This software contains code, techniques and know-how which is confidential and proprietary to Havok.\n * Level 2 and Level 3 source code contains trade secrets of Havok. Havok Software (C) Copyright 1999-2010 Telekinesys Research Limited t/a Havok. All Rights Reserved. Use of this software is subject to the terms of an end user license agreement.\n * \n */\n\n#ifndef HK_DYNAMICS2_CHAIN_DATA_H\n#define HK_DYNAMICS2_CHAIN_DATA_H\n\n#include \n#include \n#include \n\nextern const class hkClass hkpConstraintChainDataClass;\n\n\t/// Base class for constraint-chain data's.\n\t/// See hkpConstraintChainInstance for more information.\nclass hkpConstraintChainData : public hkpConstraintData\n{\n\tpublic:\n\tHK_DECLARE_CLASS_ALLOCATOR(HK_MEMORY_CLASS_BASE);\n\t\tHK_DECLARE_REFLECTION();\n\n\t\t\t/// Default constructor.\n\t\tinline hkpConstraintChainData() {}\n\n\t\t\t/// Returns number of stored ConstraintInfos. hkConstraintChainInstances that use this data may\n\t\t\t/// have up to (getNumConstraintInfos() + 1) bodies. When their number is lesser, the ConstraintInfos at the\n\t\t\t/// end of the list are ignored.\n\t\tvirtual int getNumConstraintInfos() = 0;\n\n\t\t\t/// Serialization constructor\n\t\thkpConstraintChainData(hkFinishLoadedObjectFlag f) : hkpConstraintData(f) {}\n\n};\n\n\n\n\n#endif // HK_DYNAMICS2_CHAIN_DATA_H\n\n/*\n* Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20101115)\n* \n* Confidential Information of Havok. (C) Copyright 1999-2010\n* Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok\n* Logo, and the Havok buzzsaw logo are trademarks of Havok. Title, ownership\n* rights, and intellectual property rights in the Havok software remain in\n* Havok and/or its suppliers.\n* \n* Use of this software for evaluation purposes is subject to and indicates\n* acceptance of the End User licence Agreement for this product. A copy of\n* the license is included with this software and is also available at www.havok.com/tryhavok.\n* \n*/\n"}
+{"text": "/*\n Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.\n For licensing, see LICENSE.md or http://ckeditor.com/license\n*/\nCKEDITOR.plugins.setLang(\"devtools\",\"et\",{title:\"Elemendi andmed\",dialogName:\"Dialoogiakna nimi\",tabName:\"Saki nimi\",elementId:\"Elemendi ID\",elementType:\"Elemendi liik\"});"}
+{"text": "/*\n * Copyright (c) 2010, 2018 Oracle and/or its affiliates. All rights reserved.\n *\n * This program and the accompanying materials are made available under the\n * terms of the Eclipse Public License v. 2.0, which is available at\n * http://www.eclipse.org/legal/epl-2.0.\n *\n * This Source Code may also be made available under the following Secondary\n * Licenses when the conditions for such availability set forth in the\n * Eclipse Public License v. 2.0 are satisfied: GNU General Public License,\n * version 2 with the GNU Classpath Exception, which is available at\n * https://www.gnu.org/software/classpath/license.html.\n *\n * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0\n */\n\npackage org.glassfish.tests.embedded.jsftest;\n\nimport org.junit.Assert;\nimport org.junit.Test;\n\nimport javax.net.ssl.HttpsURLConnection;\nimport javax.net.ssl.SSLContext;\nimport javax.net.ssl.TrustManager;\nimport javax.net.ssl.X509TrustManager;\nimport java.io.BufferedReader;\nimport java.io.InputStreamReader;\nimport java.net.HttpURLConnection;\nimport java.net.URL;\nimport java.security.SecureRandom;\nimport java.security.cert.X509Certificate;\n\npublic class JSFTest {\n\n @Test\n public void testWeb() throws Exception {\n\n disableCertValidation();\n\n goGet(\"http://localhost:8080/test/JSFTestServlet\", \"Created viewRoot\");\n \n // test non secure access.\n goGet(\"http://localhost:8080/test\", \"BHAVANI\", \"SHANKAR\", \"Mr. X\");\n\n // test secure access.\n goGet(\"https://localhost:8181/test\", \"BHAVANI\", \"SHANKAR\", \"Mr. X\");\n }\n\n private static void goGet(String url, String... match) throws Exception {\n try {\n\n URL servlet = new URL(url);\n HttpURLConnection uc = (HttpURLConnection) servlet.openConnection();\n System.out.println(\"\\nURLConnection = \" + uc + \" : \");\n if (uc.getResponseCode() != 200) {\n throw new Exception(\"Servlet did not return 200 OK response code\");\n }\n\n BufferedReader in = new BufferedReader(new InputStreamReader(\n uc.getInputStream()));\n String line = null;\n boolean[] found = new boolean[match.length];\n\n int count = 0;\n while ((line = in.readLine()) != null) {\n System.out.println(line);\n for (String m : match) {\n int index = line.indexOf(m);\n if (index != -1 && count < match.length) {\n found[count++] = true;\n System.out.println(\"Found [\" + m + \"] in the response, index = \" + count);\n break;\n }\n }\n }\n\n for (boolean f : found) {\n Assert.assertTrue(f);\n }\n System.out.println(\"\\n***** SUCCESS **** Found all matches in the response.*****\\n\");\n in.close();\n } catch (Exception e) {\n e.printStackTrace();\n throw e;\n }\n }\n\n public static void disableCertValidation() {\n // Create a trust manager that does not validate certificate chains\n TrustManager[] trustAllCerts = new TrustManager[]{new X509TrustManager() {\n public X509Certificate[] getAcceptedIssuers() {\n return null;\n }\n\n public void checkClientTrusted(X509Certificate[] certs, String authType) {\n return;\n }\n\n public void checkServerTrusted(X509Certificate[] certs, String authType) {\n return;\n }\n }};\n\n try {\n SSLContext sc = SSLContext.getInstance(\"TLS\");\n sc.init(null, trustAllCerts, new SecureRandom());\n HttpsURLConnection.setDefaultSSLSocketFactory(sc.getSocketFactory());\n } catch (Exception e) {\n return;\n }\n }\n\n\n}\n"}
+{"text": "// Copyright (c) 2018 Baidu, Inc. All Rights Reserved.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\n\n#ifndef DMKIT_FILE_WATCHER_H\n#define DMKIT_FILE_WATCHER_H\n\n#include \n#include \n#include \n#include \n#include \n\nnamespace dmkit {\n\n// Callback function when file changed\ntypedef int (*FileChangeCallback)(void* param);\n\nstruct FileStatus {\n std::string file_path;\n std::string last_modified_time;\n FileChangeCallback callback;\n void* param;\n bool level_trigger;\n};\n\n// A file watcher singleton implemention\nclass FileWatcher {\npublic:\n static FileWatcher& get_instance();\n\n int register_file(const std::string file_path,\n FileChangeCallback cb,\n void* param,\n bool level_trigger=false);\n\n int unregister_file(const std::string file_path);\n\n // Do not need copy constructor and assignment operator for a singleton class\n FileWatcher(FileWatcher const&) = delete;\n void operator=(FileWatcher const&) = delete;\nprivate:\n FileWatcher();\n virtual ~FileWatcher();\n\n void watcher_thread_func();\n\n std::mutex _mutex;\n std::atomic _is_running;\n std::thread _watcher_thread;\n std::unordered_map