diff --git "a/cache_100_200_1000_512/test/the_pile_github.jsonl" "b/cache_100_200_1000_512/test/the_pile_github.jsonl"
deleted file mode 100644--- "a/cache_100_200_1000_512/test/the_pile_github.jsonl"
+++ /dev/null
@@ -1,1000 +0,0 @@
-"/**\n * Copyright 2016 Netflix, 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 org.openrewrite.java.tree\n\nimport org.junit.jupiter.api.Assertions.assertEquals\nimport org.junit.jupiter.api.Test\nimport org.openrewrite.java.JavaParser\n\nopen class TypeParameterAndWildcardTest : JavaParser() {\n private val bc = listOf(\"public interface B {}\", \"public interface C {}\")\n\n @Test\n fun annotatedTypeParametersOnWildcardBounds() {\n val aSource = \"\"\"\n import java.util.List;\n public class A {\n List extends @NotNull B> checks;\n }\n \"\"\".trimIndent()\n\n val a = parse(aSource, \"public class B {}\")\n\n assertEquals(aSource, a.print())\n }\n\n @Test\n fun annotatedTypeParametersOnReturnTypeExpression() {\n val aSource = \"\"\"\n import java.util.List;\n public class A {\n public List<\n @NotNull(groups = Prioritized.P1.class)\n @javax.validation.Valid\n B> foo() {\n return null;\n }\n }\n \"\"\".trimIndent()\n\n val a = parse(aSource, \"public class B {}\")\n\n assertEquals(aSource, a.print())\n }\n\n @Test\n fun extendsAndSuper() {\n val a"
-"import locale\nimport os\nimport platform\nimport random\nimport sys\n\n# yes, bringing in openssl is completely necessary for proper operation of trumpscript\nimport ssl\n\nfrom trumpscript.constants import ERROR_CODES\n\nclass Utils:\n class SystemException(Exception):\n def __init__(self, msg_code) -> Exception:\n \"\"\"\n Get the error from the error code and throw Exception\n :param msg_code: the code for the error\n :return: The new Exception\n \"\"\"\n if msg_code in ERROR_CODES:\n raise Exception(random.choice(ERROR_CODES[msg_code]))\n else:\n raise Exception(random.choice(ERROR_CODES['default']))\n\n @staticmethod\n def verify_system(wall) -> None:\n \"\"\"\n Verifies that this system is Trump-approved, throwing\n a SystemException otherwise\n :return:\n \"\"\"\n Utils.no_wimps()\n Utils.no_pc()\n Utils.boycott_apple()\n Utils.no_commies_mexicans_or_kenyans(wall)\n Utils.no_commie_network()\n\n @staticmethod\n def warn(str, *args) -> None:\n \"\"\"\n Prints a warning to stderr with the specified format args\n :return:\n \"\"\"\n print('WARNING: ' + (str % args), file=sys.stderr)\n\n @staticmethod\n def no_wimps() -> None:\n \"\"\"\n Make sure we're not executing as root, because America is strong\n :return:\n \"\"\"\n if os.name != 'nt' and os.geteuid() == 0:\n raise Utils.SystemException('root')\n\n @staticmethod\n def no_pc() -> None:\n \"\"\"\n Make sure the currently-running OS is not Windows, because we're not PC\n :return:\n \"\"\"\n if os.name == 'nt':\n raise Utils.SystemException('os');\n\n @staticmethod\n def boycott_apple() -> None:\n \"\"\"\n Boycott all Apple products until such time as Apple gives cellphone\n info to authorities regarding radical Islamic terrorist couple from"
-"# sigmund\n\nQuick and dirty signatures for Objects.\n\nThis is like a much faster `deepEquals` comparison, which returns a\nstring key suitable for caches and the like.\n\n## Usage\n\n```javascript\nfunction doSomething (someObj) {\n var key = sigmund(someObj, maxDepth) // max depth defaults to 10\n var cached = cache.get(key)\n if (cached) return cached\n\n var result = expensiveCalculation(someObj)\n cache.set(key, result)\n return result\n}\n```\n\nThe resulting key will be as unique and reproducible as calling\n`JSON.stringify` or `util.inspect` on the object, but is much faster.\nIn order to achieve this speed, some differences are glossed over.\nFor example, the object `{0:'foo'}` will be treated identically to the\narray `['foo']`.\n\nAlso, just as there is no way to summon the soul from the scribblings\nof a cocaine-addled psychoanalyst, there is no way to revive the object\nfrom the signature string that sigmund gives you. In fact, it's\nbarely even readable.\n\nAs with `util.inspect` and `JSON.stringify`, larger objects will\nproduce larger signature strings.\n\nBecause sigmund is a bit less strict than the more thorough\nalternatives, the strings will be shorter, and also there is a\nslightly higher chance for collisions. For example, these objects\nhave the same signature:\n\n var obj1 = {a:'b',c:/def/,g:['h','i',{j:'',k:'l'}]}\n var"
-"/*\n * Copyright (c) 2002-2020 \"Neo4j,\"\n * Neo4j Sweden AB [http://neo4j.com]\n *\n * This file is part of Neo4j.\n *\n * Neo4j 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 * 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, see .\n */\npackage org.neo4j.exceptions;\n\nimport java.util.Optional;\n\nimport org.neo4j.kernel.api.exceptions.Status;\n\nimport static java.lang.System.lineSeparator;\n\n@SuppressWarnings( \"OptionalUsedAsFieldOrParameterType\" )\npublic class SyntaxException extends Neo4jException\n{\n private final Optional offset;\n private final String query;\n\n public SyntaxException( String message, String query, Optional offset, Throwable cause )\n {\n super( message, cause );\n this.offset = offset;\n this.query = query;\n }\n\n public SyntaxException( String message, String query, int offset )\n {\n this( message, query, Optional.of( offset ), null );\n }\n\n public"
-"package scala.collection.parallel.benchmarks.parallel_array\n\n\n\n\nobject CountList extends Companion {\n def benchName = \"count-list\";\n def apply(sz: Int, parallelism: Int, what: String) = new CountList(sz, parallelism, what)\n override def comparisons = List(\"jsr\")\n override def defaultSize = 1000\n \n val listCreator = (i: Int) => (0 until (i % 50 + 50)).toList\n val pred = (lst: List[Int]) => check(lst)\n val predjsr = new extra166y.Ops.Predicate[List[Int]] {\n def op(lst: List[Int]) = check(lst)\n }\n \n def check(lst: List[Int]) = lst.foldLeft(0)((sum, n) => sum + n * n) % 2 == 0\n}\n\nclass CountList(sz: Int, p: Int, what: String)\nextends Resettable(sz, p, what, CountList.listCreator, new Array[Any](_), classOf[List[Int]]) {\n def companion = CountList\n override def repetitionsPerRun = 250\n \n def runpar = pa.count(CountList.pred)\n def runseq = sequentialCount(CountList.pred, sz)\n def runjsr = jsrarr.withFilter(CountList.predjsr).size\n def comparisonMap = collection.Map(\"jsr\" -> runjsr _)\n}"
-"/*\n * Copyright 2010 Red Hat Inc.\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 in\n * 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 COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR\n * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,\n * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\n * OTHER DEALINGS IN THE SOFTWARE.\n *\n * Authors: Ben Skeggs\n */\n\n#include \"drmP.h\"\n#include \"nouveau_drv.h\"\n#include \"nouveau_dma.h\"\n#include"
-"/*\n * SatisfiedPresent.java\n * This file is part of JaCoP.\n *
\n * JaCoP is a Java Constraint Programming solver.\n *
\n * Copyright (C) 2000-2008 Krzysztof Kuchcinski and Radoslaw Szymanek\n *
\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero 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 * 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 Affero General Public License for more details.\n *
\n * Notwithstanding any other provision of this License, the copyright\n * owners of this work supplement the terms of this License with terms\n * prohibiting misrepresentation of the origin of this work and requiring\n * that modified versions of this work be marked in reasonable ways as\n * different from the original version. This supplement of the license\n * terms is in accordance with Section 7 of GNU Affero General Public\n * License version"
-"/**\r\n * Copyright (C) 2001-2020 by RapidMiner and the contributors\r\n * \r\n * Complete list of developers available at our web site:\r\n * \r\n * http://rapidminer.com\r\n * \r\n * This program is free software: you can redistribute it and/or modify it under the terms of the\r\n * GNU Affero General Public License as published by the Free Software Foundation, either version 3\r\n * of the License, or (at your option) any later version.\r\n * \r\n * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without\r\n * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\r\n * Affero General Public License for more details.\r\n * \r\n * You should have received a copy of the GNU Affero General Public License along with this program.\r\n * If not, see http://www.gnu.org/licenses/.\r\n*/\r\npackage com.rapidminer.gui.tools;\r\n\r\nimport java.awt.BorderLayout;\r\nimport java.awt.Component;\r\n\r\nimport javax.swing.JPanel;\r\nimport javax.swing.JTree;\r\nimport javax.swing.tree.DefaultTreeCellRenderer;\r\nimport javax.swing.tree.TreeCellRenderer;\r\nimport javax.swing.tree.TreePath;\r\n\r\n\r\n/**\r\n * This is the combined renderer for the check tree.\r\n * \r\n * @author Santhosh Kumar, Ingo Mierswa 16:58:56 ingomierswa Exp $\r\n */\r\npublic class ExtendedCheckTreeCellRenderer extends JPanel implements TreeCellRenderer {\r\n\r\n\tprivate static final long serialVersionUID = -2532264318689978630L;\r\n\r\n\tprivate ExtendedCheckTreeSelectionModel selectionModel;\r\n\r\n\tprivate TreeCellRenderer delegate;\r\n\r\n\tprivate ExtendedTriStateCheckBox"
-";;; json-tests.el --- Test suite for json.el -*- lexical-binding:t -*-\n\n;; Copyright (C) 2015-2020 Free Software Foundation, Inc.\n\n;; Author: Dmitry Gutov \n\n;; This file is part of GNU Emacs.\n\n;; GNU Emacs 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;; GNU Emacs 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 GNU Emacs. If not, see .\n\n;;; Code:\n\n(require 'ert)\n(require 'json)\n(require 'map)\n(require 'seq)\n\n(eval-when-compile\n (require 'cl-lib))\n\n(defmacro json-tests--with-temp-buffer (content &rest body)\n \"Create a temporary buffer with CONTENT and evaluate BODY there.\nPoint is moved to beginning of the buffer.\"\n (declare (debug t) (indent 1))\n `(with-temp-buffer\n (insert ,content)\n (goto-char (point-min))\n ,@body))\n\n;;; Utilities\n\n(ert-deftest test-json-alist-p ()\n (should (json-alist-p '()))\n (should (json-alist-p '((()))))\n (should (json-alist-p"
-"/*\n\n Broadcom B43 wireless driver\n IEEE 802.11n PHY and radio device data tables\n\n Copyright (c) 2008 Michael Buesch \n Copyright (c) 2010 Rafa\u0142 Mi\u0142ecki \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; see the file COPYING. If not, write to\n the Free Software Foundation, Inc., 51 Franklin Steet, Fifth Floor,\n Boston, MA 02110-1301, USA.\n\n*/\n\n#include \"b43.h\"\n#include \"radio_2055.h\"\n#include \"phy_common.h\"\n\nstruct b2055_inittab_entry {\n\t/* Value to write if we use the 5GHz band. */\n\tu16 ghz5;\n\t/* Value to write if we use the 2.4GHz band. */\n\tu16 ghz2;\n\t/* Flags */\n\tu8 flags;\n#define B2055_INITTAB_ENTRY_OK\t0x01\n#define B2055_INITTAB_UPLOAD\t0x02\n};\n#define UPLOAD\t\t.flags = B2055_INITTAB_ENTRY_OK | B2055_INITTAB_UPLOAD\n#define NOUPLOAD\t.flags"
-"/*\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 */\npackage org.apache.pig.backend.hadoop.executionengine.mapReduceLayer;\n\nimport org.apache.hadoop.mapreduce.Job;\nimport org.apache.pig.classification.InterfaceAudience;\nimport org.apache.pig.classification.InterfaceStability;\n\nimport java.io.IOException;\n\n/**\n * Interface to implement when you want to use a custom approach to estimating\n * the number of reducers for a job.\n *\n * @see InputSizeReducerEstimator\n */\n@InterfaceAudience.Public\n@InterfaceStability.Evolving\npublic interface PigReducerEstimator {\n\n static final String BYTES_PER_REDUCER_PARAM = \"pig.exec.reducers.bytes.per.reducer\";\n static final String MAX_REDUCER_COUNT_PARAM = \"pig.exec.reducers.max\";\n\n static final long DEFAULT_BYTES_PER_REDUCER = 1000 * 1000 * 1000;\n static final int DEFAULT_MAX_REDUCER_COUNT_PARAM ="
-"package org.codehaus.plexus.util;\n\n/*\n * Copyright The Codehaus Foundation.\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\n/**\n * Provides Base64 encoding and decoding as defined by RFC 2045.\n *
\n * This class implements section 6.8. Base64 Content-Transfer-Encoding from RFC 2045 Multipurpose\n * Internet Mail Extensions (MIME) Part One: Format of Internet Message Bodies by Freed and Borenstein.\n *
\n * The {@value} character limit does not count the trailing CRLF, but counts all"
-"/*\n * Copyright 2012-2019 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 * https://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.springframework.boot.autoconfigure.jms.activemq;\n\nimport org.apache.activemq.ActiveMQConnectionFactory;\n\n/**\n * Callback interface that can be implemented by beans wishing to customize the\n * {@link ActiveMQConnectionFactory} whilst retaining default auto-configuration.\n *\n * @author Stephane Nicoll\n * @since 1.5.5\n */\n@FunctionalInterface\npublic interface ActiveMQConnectionFactoryCustomizer {\n\n\t/**\n\t * Customize the {@link ActiveMQConnectionFactory}.\n\t * @param factory the factory to customize\n\t */\n\tvoid customize(ActiveMQConnectionFactory factory);\n\n}"
-"/*\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 java.lang;\n\n\n/**\n * The abstract superclass of the classes which represent numeric base types\n * (that is {@link Byte}, {@link Short}, {@link Integer}, {@link Long},\n * {@link Float}, and {@link Double}.\n */\npublic abstract class Number implements java.io.Serializable {\n\n private static final long serialVersionUID = -8742448824652078965L;\n\n /**\n * Empty default constructor.\n */\n public Number() {\n }\n\n /**\n * Returns this object's value as a byte. Might involve rounding and/or\n * truncating"
-"\n// Copyright Aleksey Gurtovoy 2000-2004\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\n// *Preprocessed* version of the main \"set.hpp\" header\n// -- DO NOT modify by hand!\n\nnamespace boost { namespace mpl {\n\ntemplate<\n typename T0 = na, typename T1 = na, typename T2 = na, typename T3 = na\n , typename T4 = na, typename T5 = na, typename T6 = na, typename T7 = na\n , typename T8 = na, typename T9 = na, typename T10 = na, typename T11 = na\n , typename T12 = na, typename T13 = na, typename T14 = na\n , typename T15 = na, typename T16 = na, typename T17 = na\n , typename T18 = na, typename T19 = na\n >\nstruct set;\n\ntemplate<\n \n >\nstruct set<\n na, na, na, na, na, na, na, na, na, na, na, na, na, na, na, na, na\n , na, na, na\n >\n : set0< >\n{\n typedef set0< >::type type;\n};\n\ntemplate<\n typename T0\n >\nstruct set<\n T0, na, na, na, na, na, na, na, na, na, na, na, na, na, na, na, na\n , na, na, na\n >\n :"
-"// run\n\n// Copyright 2009 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\n// Test interfaces and methods.\n\npackage main\n\ntype S struct {\n\ta,b\tint;\n}\n\ntype I1 interface {\n\tf\t()int;\n}\n\ntype I2 interface {\n\tg() int;\n\tf() int;\n}\n\nfunc (this *S) f()int {\n\treturn this.a;\n}\n\nfunc (this *S) g()int {\n\treturn this.b;\n}\n\nfunc\nmain() {\n\tvar i1 I1;\n\tvar i2 I2;\n\tvar g *S;\n\n\ts := new(S);\n\ts.a = 5;\n\ts.b = 6;\n\n\t// call structure\n\tif s.f() != 5 { panic(11); }\n\tif s.g() != 6 { panic(12); }\n\n\ti1 = s;\t\t// convert S to I1\n\ti2 = i1.(I2);\t// convert I1 to I2\n\n\t// call interface\n\tif i1.f() != 5 { panic(21); }\n\tif i2.f() != 5 { panic(22); }\n\tif i2.g() != 6 { panic(23); }\n\n\tg = i1.(*S);\t\t// convert I1 to S\n\tif g != s { panic(31); }\n\n\tg = i2.(*S);\t\t// convert I2 to S\n\tif g != s { panic(32); }\n}"
-"/*\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\t\"k8s.io/api/extensions/v1beta1\"\n\t\"k8s.io/apimachinery/pkg/api/meta\"\n\t\"k8s.io/apimachinery/pkg/runtime/schema\"\n)\n\n// The ScaleExpansion interface allows manually adding extra methods to the ScaleInterface.\ntype ScaleExpansion interface {\n\tGet(kind string, name string) (*v1beta1.Scale, error)\n\tUpdate(kind string, scale *v1beta1.Scale) (*v1beta1.Scale, error)\n}\n\n// Get takes the reference to scale subresource and returns the subresource or error, if one occurs.\nfunc (c *scales) Get(kind string, name string) (result *v1beta1.Scale, err error) {\n\tresult = &v1beta1.Scale{}\n\n\t// TODO this method needs to take a proper unambiguous kind\n\tfullyQualifiedKind := schema.GroupVersionKind{Kind: kind}\n\tresource, _ := meta.UnsafeGuessKindToResource(fullyQualifiedKind)\n\n\terr = c.client.Get().\n\t\tNamespace(c.ns).\n\t\tResource(resource.Resource).\n\t\tName(name).\n\t\tSubResource(\"scale\").\n\t\tDo().\n\t\tInto(result)\n\treturn\n}\n\nfunc (c *scales) Update(kind string, scale *v1beta1.Scale) (result *v1beta1.Scale, err error) {\n\tresult = &v1beta1.Scale{}\n\n\t//"
-"/*\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.sshd.common;\n\nimport java.io.IOException;\n\nimport org.apache.sshd.common.future.CloseFuture;\nimport org.apache.sshd.common.util.Buffer;\n\n/**\n * See RFC 4253 [SSH-TRANS] and the SSH_MSG_SERVICE_REQUEST packet. Examples include ssh-userauth\n * and ssh-connection but developers are also free to implement their own custom service.\n *\n * @author Apache MINA SSHD Project\n */\npublic interface Service extends Closeable {\n\n Session getSession();\n\n // TODO: this is specific to clients\n void start();\n\n /**\n * Service the request.\n * @param buffer\n *"
-"# Microsoft Developer Studio Project File - Name=\"image_test\" - Package Owner=<4>\n# Microsoft Developer Studio Generated Build File, Format Version 6.00\n# ** DO NOT EDIT **\n\n# TARGTYPE \"Win32 (x86) Console Application\" 0x0103\n\nCFG=image_test - Win32 Debug\n!MESSAGE This is not a valid makefile. To build this project using NMAKE,\n!MESSAGE use the Export Makefile command and run\n!MESSAGE \n!MESSAGE NMAKE /f \"image_test.mak\".\n!MESSAGE \n!MESSAGE You can specify a configuration when running NMAKE\n!MESSAGE by defining the macro CFG on the command line. For example:\n!MESSAGE \n!MESSAGE NMAKE /f \"image_test.mak\" CFG=\"image_test - Win32 Debug\"\n!MESSAGE \n!MESSAGE Possible choices for configuration are:\n!MESSAGE \n!MESSAGE \"image_test - Win32 Release\" (based on \"Win32 (x86) Console Application\")\n!MESSAGE \"image_test - Win32 Debug\" (based on \"Win32 (x86) Console Application\")\n!MESSAGE \n\n# Begin Project\n# PROP AllowPerConfigDependencies 0\n# PROP Scc_ProjName \"\"\n# PROP Scc_LocalPath \"\"\nCPP=cl.exe\nRSC=rc.exe\n\n!IF \"$(CFG)\" == \"image_test - Win32 Release\"\n\n# PROP BASE Use_MFC 0\n# PROP BASE Use_Debug_Libraries 0\n# PROP BASE Output_Dir \"Release\"\n# PROP BASE Intermediate_Dir \"Release\"\n# PROP BASE Target_Dir \"\"\n# PROP Use_MFC 0\n# PROP Use_Debug_Libraries 0\n# PROP Output_Dir \"Release\"\n# PROP Intermediate_Dir \"Release\"\n# PROP Target_Dir \"\"\n# ADD BASE CPP /nologo"
-"/*\n * Copyright (C) 2007 The Guava 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 com.google.common.collect;\n\nimport static com.google.common.base.Preconditions.checkNotNull;\nimport com.google.common.annotations.GwtCompatible;\nimport java.io.Serializable;\nimport java.util.Iterator;\nimport javax.annotation.Nullable;\n\n/** An ordering that uses the reverse of a given order. */\n\n\n@GwtCompatible(serializable = true)\nfinal class ReverseOrdering extends Ordering\n implements Serializable {\n final Ordering super T> forwardOrder;\n\n ReverseOrdering(Ordering super T> forwardOrder) {\n this.forwardOrder = checkNotNull(forwardOrder);\n }\n\n @Override\n public int compare(T a, T b) {\n return forwardOrder.compare(b, a);\n }\n\n @SuppressWarnings(\"unchecked\") // how to explain?\n @Override\n public Ordering reverse() {\n return (Ordering) forwardOrder;\n }\n\n // Override the min/max methods to \"hoist\" delegation outside loops\n\n @Override\n public E min(E a, E b) {\n return"
-"// Copyright 2009 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\n// +build amd64,openbsd\n\npackage unix\n\nfunc setTimespec(sec, nsec int64) Timespec {\n\treturn Timespec{Sec: sec, Nsec: nsec}\n}\n\nfunc setTimeval(sec, usec int64) Timeval {\n\treturn Timeval{Sec: sec, Usec: usec}\n}\n\nfunc SetKevent(k *Kevent_t, fd, mode, flags int) {\n\tk.Ident = uint64(fd)\n\tk.Filter = int16(mode)\n\tk.Flags = uint16(flags)\n}\n\nfunc (iov *Iovec) SetLen(length int) {\n\tiov.Len = uint64(length)\n}\n\nfunc (msghdr *Msghdr) SetControllen(length int) {\n\tmsghdr.Controllen = uint32(length)\n}\n\nfunc (cmsg *Cmsghdr) SetLen(length int) {\n\tcmsg.Len = uint32(length)\n}"
-"/*\n * This file is part of Cleanflight.\n *\n * Cleanflight 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 * Cleanflight 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 Cleanflight. If not, see .\n */\n\n#pragma once\n\n#include \n#include \n\nstruct rxConfig_s;\nstruct rxRuntimeConfig_s;\nvoid v202Nrf24Init(const struct rxConfig_s *rxConfig, struct rxRuntimeConfig_s *rxRuntimeConfig);\nvoid v202Nrf24SetRcDataFromPayload(uint16_t *rcData, const uint8_t *payload);\nrx_spi_received_e v202Nrf24DataReceived(uint8_t *payload);"
-"// Copyright \u00a9 2015 Steve Francia .\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// 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 mem\n\nimport \"sort\"\n\ntype DirMap map[string]*FileData\n\nfunc (m DirMap) Len() int { return len(m) }\nfunc (m DirMap) Add(f *FileData) { m[f.name] = f }\nfunc (m DirMap) Remove(f *FileData) { delete(m, f.name) }\nfunc (m DirMap) Files() (files []*FileData) {\n\tfor _, f := range m {\n\t\tfiles = append(files, f)\n\t}\n\tsort.Sort(filesSorter(files))\n\treturn files\n}\n\n// implement sort.Interface for []*FileData\ntype filesSorter []*FileData\n\nfunc (s filesSorter) Len() int { return len(s) }\nfunc (s filesSorter) Swap(i, j int) { s[i], s[j] = s[j], s[i] }\nfunc (s filesSorter) Less(i, j int) bool { return s[i].name < s[j].name }\n\nfunc (m DirMap)"
-"fileFormatVersion: 2\nguid: 1e1efdc3f4fd1794fa5af8513d9d0a2c\ntimeCreated: 1486792784\nlicenseType: Pro\nTextureImporter:\n fileIDToRecycleName: {}\n serializedVersion: 2\n mipmaps:\n mipMapMode: 0\n enableMipMap: 1\n linearTexture: 0\n correctGamma: 0\n fadeOut: 0\n borderMipMap: 0\n mipMapFadeDistanceStart: 1\n mipMapFadeDistanceEnd: 3\n bumpmap:\n convertToNormalMap: 0\n externalNormalMap: 0\n heightScale: 0.25\n normalMapFilter: 0\n isReadable: 0\n grayScaleToAlpha: 0\n generateCubemap: 0\n cubemapConvolution: 0\n cubemapConvolutionSteps: 7\n cubemapConvolutionExponent: 1.5\n seamlessCubemap: 0\n textureFormat: -1\n maxTextureSize: 2048\n textureSettings:\n filterMode: -1\n aniso: -1\n mipBias: -1\n wrapMode: -1\n nPOTScale: 1\n lightmap: 0\n rGBM: 0\n compressionQuality: 50\n allowsAlphaSplitting: 0\n spriteMode: 0\n spriteExtrude: 1\n spriteMeshType: 1\n alignment: 0\n spritePivot: {x: 0.5, y: 0.5}\n spriteBorder: {x: 0, y: 0, z: 0, w: 0}\n spritePixelsToUnits: 100\n alphaIsTransparency: 0\n textureType: -1\n buildTargetSettings: []\n spriteSheet:\n sprites: []\n outline: []\n spritePackingTag: \n userData: \n assetBundleName: \n assetBundleVariant:"
-"/* cpufreq-bench CPUFreq microbenchmark\n *\n * Copyright (C) 2008 Christian Kornacker \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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n */\n\n#include \n#include \n#include \n#include \n#include \n#include \n\n#include \"config.h\"\n#include \"system.h\"\n#include \"benchmark.h\"\n\nstatic struct option long_options[] = {\n\t{\"output\",\t1,\t0,\t'o'},\n\t{\"sleep\",\t1,\t0,\t's'},\n\t{\"load\",\t1,\t0,\t'l'},\n\t{\"verbose\",\t0,\t0,\t'v'},\n\t{\"cpu\",\t\t1,\t0,\t'c'},\n\t{\"governor\",\t1,\t0,\t'g'},\n\t{\"prio\",\t1,\t0,\t'p'},\n\t{\"file\",\t1,\t0,\t'f'},\n\t{\"cycles\",\t1,\t0,"
-"// Copyright (c) Microsoft Corporation.\r\n// Licensed under the MIT License.\r\n\r\nusing System;\r\nusing System.Collections.Generic;\r\nusing System.Diagnostics.ContractsLight;\r\nusing ContentStoreTest.Test;\r\n\r\nnamespace ContentStoreTest.Performance\r\n{\r\n public class PerformanceResults\r\n {\r\n private readonly Dictionary> _results =\r\n new Dictionary>(StringComparer.OrdinalIgnoreCase);\r\n\r\n public void Add(string name, long value, string units, long count = 0)\r\n {\r\n Contract.Requires(name != null);\r\n _results.Add(name, Tuple.Create(value, units, count));\r\n }\r\n\r\n public void Report()\r\n {\r\n if (_results.Count > 0)\r\n {\r\n var logger = TestGlobal.Logger;\r\n\r\n foreach (var kvp in _results)\r\n {\r\n var itemCount = kvp.Value.Item3;\r\n if (itemCount > 0)\r\n {\r\n logger.Always(\"{0} = {1} {2} ({3} items)\", kvp.Key, kvp.Value.Item1, kvp.Value.Item2, kvp.Value.Item3);\r\n }\r\n else\r\n {\r\n logger.Always(\"{0} = {1} {2}\", kvp.Key, kvp.Value.Item1, kvp.Value.Item2);\r\n }\r\n }\r\n }\r\n }\r\n }\r\n}"
-"import {\n ApolloServerPlugin,\n GraphQLRequestListener,\n} from 'apollo-server-plugin-base';\nimport { GraphQLRequestContext, GraphQLResponse } from 'apollo-server-types';\nimport { KeyValueCache, PrefixingKeyValueCache } from 'apollo-server-caching';\nimport { ValueOrPromise } from 'apollo-server-types';\nimport { CacheHint, CacheScope } from 'apollo-cache-control';\n\n// XXX This should use createSHA from apollo-server-core in order to work on\n// non-Node environments. I'm not sure where that should end up ---\n// apollo-server-sha as its own tiny module? apollo-server-env seems bad because\n// that would add sha.js to unnecessary places, I think?\nimport { createHash } from 'crypto';\n\ninterface Options> {\n // Underlying cache used to save results. All writes will be under keys that\n // start with 'fqc:' and are followed by a fixed-size cryptographic hash of a\n // JSON object with keys representing the query document, operation name,\n // variables, and other keys derived from the sessionId and extraCacheKeyData\n // hooks. If not provided, use the cache in the GraphQLRequestContext instead\n // (ie, the cache passed to the ApolloServer constructor).\n cache?: KeyValueCache;\n\n // Define this hook if you're setting any cache hints with scope PRIVATE.\n // This should return a session ID if the user is \"logged in\", or null if\n // there is no \"logged in\""
-"# ***************************************************************************\n# * Copyright (c) 2020 Bernd Hahnebach *\n# * *\n# * This file is part of the FreeCAD CAx development system. *\n# * *\n# * This program is free software; you can redistribute it and/or modify *\n# * it under the terms of the GNU Lesser General Public License (LGPL) *\n# * as published by the Free Software Foundation; either version 2 of *\n# * the License, or (at your option) any later version. *\n# * for detail see the LICENCE text file. *\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 Library General Public License for more details. *\n# * *\n# * You should have received a copy of the GNU Library General Public *\n# * License along with this program; if not, write to the Free Software *\n# * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 *\n# * USA *\n#"
-"/*\n * L3 code\n *\n * Copyright (C) 2008, Christian Pellegrin \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 version 2 as\n * published by the Free Software Foundation.\n *\n *\n * based on:\n *\n * L3 bus algorithm module.\n *\n * Copyright (C) 2001 Russell King, All Rights Reserved.\n *\n *\n */\n\n#include \n#include \n#include \n\n#include \n\n/*\n * Send one byte of data to the chip. Data is latched into the chip on\n * the rising edge of the clock.\n */\nstatic void sendbyte(struct l3_pins *adap, unsigned int byte)\n{\n\tint i;\n\n\tfor (i = 0; i < 8; i++) {\n\t\tadap->setclk(0);\n\t\tudelay(adap->data_hold);\n\t\tadap->setdat(byte & 1);\n\t\tudelay(adap->data_setup);\n\t\tadap->setclk(1);\n\t\tudelay(adap->clock_high);\n\t\tbyte >>= 1;\n\t}\n}\n\n/*\n * Send a set of bytes to the chip. We need to pulse the MODE line\n * between each byte, but never at the start nor at the end of the\n * transfer.\n */\nstatic void sendbytes(struct l3_pins *adap, const u8 *buf,\n\t\t int len)\n{\n\tint i;\n\n\tfor (i = 0; i < len; i++) {\n\t\tif (i) {\n\t\t\tudelay(adap->mode_hold);\n\t\t\tadap->setmode(0);\n\t\t\tudelay(adap->mode);\n\t\t}"
-"def acos():\n pass\n\n\ndef acosh():\n pass\n\n\ndef asin():\n pass\n\n\ndef asinh():\n pass\n\n\ndef atan():\n pass\n\n\ndef atan2():\n pass\n\n\ndef atanh():\n pass\n\n\ndef ceil():\n pass\n\n\ndef copysign():\n pass\n\n\ndef cos():\n pass\n\n\ndef cosh():\n pass\n\n\ndef degrees():\n pass\n\n\ne = 2.718282\n\n\ndef erf():\n pass\n\n\ndef erfc():\n pass\n\n\ndef exp():\n pass\n\n\ndef expm1():\n pass\n\n\ndef fabs():\n pass\n\n\ndef floor():\n pass\n\n\ndef fmod():\n pass\n\n\ndef frexp():\n pass\n\n\ndef gamma():\n pass\n\n\ndef isfinite():\n pass\n\n\ndef isinf():\n pass\n\n\ndef isnan():\n pass\n\n\ndef ldexp():\n pass\n\n\ndef lgamma():\n pass\n\n\ndef log():\n pass\n\n\ndef log10():\n pass\n\n\ndef log2():\n pass\n\n\ndef modf():\n pass\n\n\npi = 3.141593\n\n\ndef pow():\n pass\n\n\ndef radians():\n pass\n\n\ndef sin():\n pass\n\n\ndef sinh():\n pass\n\n\ndef sqrt():\n pass\n\n\ndef tan():\n pass\n\n\ndef tanh():\n pass\n\n\ndef trunc():\n pass"
-"/*\n * Copyright 2017-2019 original 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 */\npackage io.micronaut.inject.factory\n\nimport io.micronaut.context.BeanContext\nimport io.micronaut.context.DefaultBeanContext\nimport io.micronaut.context.annotation.Bean\nimport io.micronaut.context.annotation.Factory\nimport io.micronaut.context.annotation.Prototype\nimport io.micronaut.context.event.BeanInitializedEventListener\nimport io.micronaut.context.event.BeanInitializingEvent\nimport spock.lang.Specification\n\nimport javax.annotation.PostConstruct\nimport javax.inject.Inject\nimport javax.inject.Singleton\n\n/**\n * @author Graeme Rocher\n * @since 1.0\n */\nclass BeanInitializingWithFactorySpec extends Specification {\n void \"test bean initializing event listener\"() {\n given:\n BeanContext context = new DefaultBeanContext().start()\n\n when:\"A bean is retrieved where a BeanInitializedEventListener is present\"\n B b= context.getBean(B)\n\n then:\"The event is triggered prior to @PostConstruct hooks\"\n b.name == \"CHANGED\"\n\n }\n\n static class B {\n String name\n }\n\n @Singleton\n static class A {\n String name = \"A\"\n }\n\n @Factory\n static class BFactory {\n String name = \"original\"\n boolean postConstructCalled"
-"/**\n * Copyright (c) 2017 ~ present NAVER Corp.\n * billboard.js project is licensed under the MIT license\n */\n/**\n * Axis based chart data config options\n */\nexport default {\n\t/**\n\t * Specify the key of x values in the data.
\n\t * We can show the data with non-index x values by this option. This option is required when the type of x axis is timeseries. If this option is set on category axis, the values of the data on the key will be used for category names.\n\t * @name data\u2024x\n\t * @memberof Options\n\t * @type {string}\n\t * @default undefined\n\t * @example\n\t * data: {\n\t * x: \"date\"\n\t * }\n\t */\n\tdata_x: undefined,\n\n\t/**\n\t * Specify the keys of the x values for each data.
\n\t * This option can be used if we want to show the data that has different x values.\n\t * @name data\u2024xs\n\t * @memberof Options\n\t * @type {object}\n\t * @default {}\n\t * @example\n\t * data: {\n\t * xs: {\n\t * data1: \"x1\",\n\t * data2: \"x2\"\n\t * }\n\t * }\n\t */\n\tdata_xs: {},\n\n\t/**\n\t * Set a format specifier to parse string specifed as x.\n\t * @name data\u2024xFormat\n\t * @memberof Options\n\t * @type {string}\n\t *"
-"\nThis is a modified CDTestFramework to test Bullet's dynamic AABB tree against a SAP. It's the same demo as here: http://bulletphysics.com/ftp/pub/test/physics/demos/CDTestFramework2.70.zip\n\nBut I added an extra challenger: http://www.codercorner.com/Code/SweepAndPrune2.rar. This is the code described in this document: http://www.codercorner.com/SAP.pdf\n\nSo there are 4 tests:\n- OPCODE's \"box pruning\"\n- Bullet's Multi SAP\n- Bullet's dbvt (dynamic AABB tree)\n- OPCODE's array-based SAP\n\nFor 8192 boxes and 10% of them moving, OPCODE's SAP is roughly as fast as dbvt (and twice faster than Bullet's SAP on my machine). For less boxes (say 1024 or 2048), OPCODE's SAP is faster than dbvt. Figures and \"winner\" vary a lot depending on the number of objects and how many of them are moving each frame.\n\nIf you're interested you can see for yourself:\n- download Bullet 2.70\n- replace the content of this directory with the new files: \\bullet-2.70\\bullet-2.70\\Extras\\CDTestFramework\n\n\nCheers,\n\n- Pierre Terdiman\nAugust 31, 2008"
-"/*\n * pthread_detach.c\n *\n * Description:\n * This translation unit implements functions related to thread\n * synchronisation.\n *\n * --------------------------------------------------------------------------\n *\n * Pthreads-win32 - POSIX Threads Library for Win32\n * Copyright(C) 1998 John E. Bossom\n * Copyright(C) 1999,2005 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,"
-"\"\"\"\nMdpopups manual test module.\n\nOn load, it will clear the cache and show the test menu.\nSubsequent tests can be loaded:\n\n mdpopups.tests.menu()\n\nIf you need to reload the test module.\n\n import imp\n mdpopups.tests = imp.reload(mdpopups.tests)\n\nIf you need to clear the cache.\n\n mdpopups.tests.clear_cache()\n\"\"\"\nimport sublime\nimport mdpopups\nfrom textwrap import dedent\nimport sys\nthis = sys.modules[__name__]\n\nformat_text = dedent(\n '''\n # H1\n ## H2\n ### H3\n #### H4\n ##### H5\n ###### H6\n\n ---\n\n ## Paragraphs\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut \\\n labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco \\\n laboris nisi ut aliquip ex ea commodo consequat...\n\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut \\\n labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco \\\n\n ## Inline\n Inline **bold**.\n\n Inline *italic*.\n\n Inline `code`.\n\n Inline `#!python import code`\n\n [mdpopups link](https://github.com/facelessuser/sublime-markdown-popups)\n\n ## Line Breaks and Quotes\n\n > This is a line break.\n > This is a line.\n\n ## Lists\n\n Apple\n : 1) The round fruit of a tree of the rose family, which typically has thin red or green skin and crisp"
-"// NOTE: cgo can't generate struct Stat_t and struct Statfs_t yet\n// Created by cgo -godefs - DO NOT EDIT\n// cgo -godefs types_darwin.go\n\n// +build arm,darwin\n\npackage unix\n\nconst (\n\tsizeofPtr = 0x4\n\tsizeofShort = 0x2\n\tsizeofInt = 0x4\n\tsizeofLong = 0x4\n\tsizeofLongLong = 0x8\n)\n\ntype (\n\t_C_short int16\n\t_C_int int32\n\t_C_long int32\n\t_C_long_long int64\n)\n\ntype Timespec struct {\n\tSec int32\n\tNsec int32\n}\n\ntype Timeval struct {\n\tSec int32\n\tUsec int32\n}\n\ntype Timeval32 [0]byte\n\ntype Rusage struct {\n\tUtime Timeval\n\tStime Timeval\n\tMaxrss int32\n\tIxrss int32\n\tIdrss int32\n\tIsrss int32\n\tMinflt int32\n\tMajflt int32\n\tNswap int32\n\tInblock int32\n\tOublock int32\n\tMsgsnd int32\n\tMsgrcv int32\n\tNsignals int32\n\tNvcsw int32\n\tNivcsw int32\n}\n\ntype Rlimit struct {\n\tCur uint64\n\tMax uint64\n}\n\ntype _Gid_t uint32\n\ntype Stat_t struct {\n\tDev int32\n\tMode uint16\n\tNlink uint16\n\tIno uint64\n\tUid uint32\n\tGid uint32\n\tRdev int32\n\tAtimespec Timespec\n\tMtimespec Timespec\n\tCtimespec Timespec\n\tBirthtimespec Timespec\n\tSize int64\n\tBlocks int64\n\tBlksize int32\n\tFlags uint32\n\tGen uint32\n\tLspare int32\n\tQspare [2]int64\n}\n\ntype Statfs_t struct {\n\tBsize uint32\n\tIosize int32\n\tBlocks uint64\n\tBfree uint64\n\tBavail uint64\n\tFiles uint64\n\tFfree uint64\n\tFsid Fsid\n\tOwner uint32\n\tType uint32\n\tFlags uint32\n\tFssubtype uint32\n\tFstypename [16]int8\n\tMntonname"
-"/*\n * Copyright (c) 2014 The WebM project authors. All Rights Reserved.\n *\n * Use of this source code is governed by a BSD-style license\n * that can be found in the LICENSE file in the root of the source\n * tree. An additional intellectual property rights grant can be found\n * in the file PATENTS. All contributing project authors may\n * be found in the AUTHORS file in the root of the source tree.\n */\n#include \n\n#include \"vpx/vpx_integer.h\"\n#include \"vpx_ports/system_state.h\"\n\nstatic int horizontal_filter(const uint8_t *s) {\n return (s[1] - s[-2]) * 2 + (s[-1] - s[0]) * 6;\n}\n\nstatic int vertical_filter(const uint8_t *s, int p) {\n return (s[p] - s[-2 * p]) * 2 + (s[-p] - s[0]) * 6;\n}\n\nstatic int variance(int sum, int sum_squared, int size) {\n return sum_squared / size - (sum / size) * (sum / size);\n}\n// Calculate a blockiness level for a vertical block edge.\n// This function returns a new blockiness metric that's defined as\n\n// p0 p1 p2 p3\n// q0 q1 q2 q3\n// block edge ->\n// r0 r1 r2 r3\n// s0 s1 s2 s3\n\n// blockiness = p0*-2+q0*6+r0*-6+s0*2 +\n// p1*-2+q1*6+r1*-6+s1*2 +\n//"
-"//\r\n// NotificationService.m\r\n// jpushNotificationService\r\n//\r\n// Created by wuxingchen on 16/10/10.\r\n//\r\n//\r\n\r\n#import \"NotificationService.h\"\r\n#import \r\n\r\n@interface NotificationService ()\r\n\r\n@property (nonatomic, strong) void (^contentHandler)(UNNotificationContent *contentToDeliver);\r\n@property (nonatomic, strong) UNMutableNotificationContent *bestAttemptContent;\r\n\r\n@end\r\n\r\n@implementation NotificationService\r\n\r\n- (void)didReceiveNotificationRequest:(UNNotificationRequest *)request withContentHandler:(void (^)(UNNotificationContent * _Nonnull))contentHandler {\r\n\r\n self.contentHandler = contentHandler;\r\n self.bestAttemptContent = [request.content mutableCopy];\r\n\r\n @try {\r\n NSString *urlStr = [request.content.userInfo valueForKey:@\"JPushPluginAttachment\"];\r\n NSArray *urls = [urlStr componentsSeparatedByString:@\".\"];\r\n NSURL *urlNative = [[NSBundle mainBundle] URLForResource:urls[0] withExtension:urls[1]];\r\n UNNotificationAttachment *attachment = [UNNotificationAttachment attachmentWithIdentifier:urlStr URL:urlNative options:nil error:nil];\r\n self.bestAttemptContent.attachments = @[attachment];\r\n } @catch (NSException *exception) {\r\n }\r\n\r\n self.contentHandler(self.bestAttemptContent);\r\n}\r\n\r\n- (void)serviceExtensionTimeWillExpire {\r\n // Called just before the extension will be terminated by the system.\r\n // Use this as an opportunity to deliver your \"best attempt\" at modified content, otherwise the original push payload will be used.\r\n self.contentHandler(self.bestAttemptContent);\r\n}\r\n\r\n@end"
-"#\n# Distributed authoring and versioning (WebDAV)\n#\n# Required modules: mod_alias, mod_auth_digest, mod_authn_core, mod_authn_file,\n# mod_authz_core, mod_authz_user, mod_dav, mod_dav_fs,\n# mod_setenvif\n\n# The following example gives DAV write access to a directory called\n# \"uploads\" under the ServerRoot directory.\n#\n# The User/Group specified in httpd.conf needs to have write permissions\n# on the directory where the DavLockDB is placed and on any directory where\n# \"Dav On\" is specified.\n\nDavLockDB \"@@ServerRoot@@/var/DavLock\"\n\nAlias /uploads \"@@ServerRoot@@/uploads\"\n\n\n Dav On\n\n AuthType Digest\n AuthName DAV-upload\n # You can use the htdigest program to create the password database:\n # htdigest -c \"@@ServerRoot@@/user.passwd\" DAV-upload admin\n AuthUserFile \"@@ServerRoot@@/user.passwd\"\n AuthDigestProvider file\n\n # Allow universal read-access, but writes are restricted\n # to the admin user.\n \n Require method GET POST OPTIONS\n Require user admin\n \n\n\n#\n# The following directives disable redirects on non-GET requests for\n# a directory that does not include the trailing slash. This fixes a \n# problem with several clients that do not appropriately handle \n# redirects for folders with DAV methods.\n#\nBrowserMatch \"Microsoft Data Access Internet Publishing Provider\" redirect-carefully\nBrowserMatch \"MS FrontPage\" redirect-carefully\nBrowserMatch \"^WebDrive\" redirect-carefully\nBrowserMatch \"^WebDAVFS/1.[01234]\" redirect-carefully\nBrowserMatch \"^gnome-vfs/1.0\" redirect-carefully\nBrowserMatch \"^XML Spy\" redirect-carefully\nBrowserMatch \"^Dreamweaver-WebDAV-SCM1\" redirect-carefully"
-"#!/usr/bin/env bash\n\n#!/bin/bash\n\nnchains=20 # number of chains to create\nnentries=0 # number of entries to add to each chain\n\nfa1=$(factom-cli importaddress Fs3E9gV6DXsYzf7Fqx1fVBQPQXV695eP3k5XbmHEZVRLkMdD9qCK)\n\nec1=$(factom-cli importaddress Es3LB2YW9bpdWmMnNQYb31kyPzqnecsNqmg5W4K7FKp4UP6omRTa)\n\necho \"Buying\" 1000 $fa1 $ec1\nfactom-cli buyec $fa1 $ec1 100\nsleep 5s\n\naddentries() {\n # create a random datafile\n\tdatalen=$(shuf -i 100-9900 -n 1)\n\tdatafile=$(mktemp)\n\tbase64 /dev/urandom | head -c $datalen > $datafile\n\n\techo \"Entry Length \" $datalen \" bytes, file name: \" $datafile\n\n\tlet y=$(shuf -i 30-120 -n 1)\n\techo \"sleep\" $y \" seconds before writing entries\"\n\tsleep $y\n\tfor ((i=0; i for STMicroelectronics.\n */\n\n#ifndef _STI_DRV_H_\n#define _STI_DRV_H_\n\n#include \n\nstruct sti_compositor;\nstruct sti_tvout;\n\n/**\n * STI drm private structure\n * This structure is stored as private in the drm_device\n *\n * @compo: compositor\n * @plane_zorder_property: z-order property for CRTC planes\n * @drm_dev: drm device\n */\nstruct sti_private {\n\tstruct sti_compositor *compo;\n\tstruct drm_property *plane_zorder_property;\n\tstruct drm_device *drm_dev;\n};\n\nextern struct platform_driver sti_tvout_driver;\nextern struct platform_driver sti_hqvdp_driver;\nextern struct platform_driver sti_hdmi_driver;\nextern struct platform_driver sti_hda_driver;\nextern struct platform_driver sti_dvo_driver;\nextern struct platform_driver sti_vtg_driver;\nextern struct platform_driver sti_compositor_driver;\n\n#endif"
-"/*\n * Copyright (C) 2017 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.systemui.util.leak;\n\n\nimport androidx.test.filters.SmallTest;\nimport androidx.test.runner.AndroidJUnit4;\n\nimport com.android.systemui.SysuiTestCase;\nimport com.android.systemui.util.leak.ReferenceTestUtils.CollectionWaiter;\n\nimport org.junit.Before;\nimport org.junit.Ignore;\nimport org.junit.Test;\nimport org.junit.runner.RunWith;\n\nimport java.io.FileOutputStream;\nimport java.io.PrintWriter;\nimport java.util.ArrayList;\nimport java.util.Collection;\nimport java.util.function.BiConsumer;\nimport java.util.function.Consumer;\n\n@SmallTest\n@RunWith(AndroidJUnit4.class)\npublic class LeakDetectorTest extends SysuiTestCase {\n\n private LeakDetector mLeakDetector;\n\n // The references for which collection is observed are stored in fields. The allocation and\n // of these references happens in separate methods (trackObjectWith/trackCollectionWith)\n // from where they are set to null. The generated code might keep the allocated reference\n // alive in a dex register when compiling in release mode. As R8 is used to compile this"
-"// This file is part of Eigen, a lightweight C++ template library\n// for linear algebra.\n//\n// Copyright (C) 2014 Benoit Steiner \n//\n// This Source Code Form is subject to the terms of the Mozilla\n// Public License v. 2.0. If a copy of the MPL was not distributed\n// with this file, You can obtain one at http://mozilla.org/MPL/2.0/.\n\n#ifndef EIGEN_EMULATE_CXX11_META_H\n#define EIGEN_EMULATE_CXX11_META_H\n\n\n\nnamespace Eigen {\n\nnamespace internal {\n\n/** \\internal\n * \\file CXX11/util/EmulateCXX11Meta.h\n * This file emulates a subset of the functionality provided by CXXMeta.h for\n * compilers that don't yet support cxx11 such as nvcc.\n */\n\nstruct empty_list { static const std::size_t count = 0; };\n\ntemplate struct type_list {\n typedef T HeadType;\n typedef Tail TailType;\n static const T head;\n static const Tail tail;\n static const std::size_t count = 1 + Tail::count;\n};\n\nstruct null_type { };\n\ntemplate\nstruct make_type_list {\n typedef typename make_type_list::type tailresult;\n\n typedef type_list type;\n};\n\ntemplate<> struct make_type_list<> {\n typedef"
-"fileFormatVersion: 2\nguid: d45add8d43a697b48a0fdefbafe9715b\ntimeCreated: 1474860054\nlicenseType: Pro\nTextureImporter:\n fileIDToRecycleName: {}\n serializedVersion: 2\n mipmaps:\n mipMapMode: 0\n enableMipMap: 1\n linearTexture: 0\n correctGamma: 0\n fadeOut: 0\n borderMipMap: 0\n mipMapFadeDistanceStart: 1\n mipMapFadeDistanceEnd: 3\n bumpmap:\n convertToNormalMap: 0\n externalNormalMap: 0\n heightScale: 0.25\n normalMapFilter: 0\n isReadable: 1\n grayScaleToAlpha: 0\n generateCubemap: 0\n cubemapConvolution: 0\n cubemapConvolutionSteps: 7\n cubemapConvolutionExponent: 1.5\n seamlessCubemap: 0\n textureFormat: -3\n maxTextureSize: 2048\n textureSettings:\n filterMode: -1\n aniso: -1\n mipBias: -1\n wrapMode: -1\n nPOTScale: 0\n lightmap: 0\n rGBM: 0\n compressionQuality: 50\n allowsAlphaSplitting: 0\n spriteMode: 0\n spriteExtrude: 1\n spriteMeshType: 1\n alignment: 0\n spritePivot: {x: 0.5, y: 0.5}\n spriteBorder: {x: 0, y: 0, z: 0, w: 0}\n spritePixelsToUnits: 100\n alphaIsTransparency: 0\n textureType: -1\n buildTargetSettings: []\n spriteSheet:\n sprites: []\n outline: []\n spritePackingTag: \n userData: \n assetBundleName: \n assetBundleVariant:"
-"/*\nCopyright 2016 S7connector members (github.com/s7connector)\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*/\npackage com.github.s7connector.test.example;\n\nimport com.github.s7connector.api.S7Connector;\nimport com.github.s7connector.api.S7Serializer;\nimport com.github.s7connector.api.factory.S7ConnectorFactory;\nimport com.github.s7connector.api.factory.S7SerializerFactory;\n\n/**\n * @author Thomas Rudin (thomas@rudin-informatik.ch)\n *\n */\npublic class SerializerTutorialExample\n{\n\t\n\tpublic static void main(String[] args) throws Exception\n\t{\n\t\t//Open TCP Connection\n\t\tS7Connector connector = \n\t\t\t\tS7ConnectorFactory\n\t\t\t\t.buildTCPConnector()\n\t\t\t\t.withHost(\"10.0.0.220\")\n\t\t\t\t.build();\n\t\t\n\t\t//Create serializer\n\t\tS7Serializer serializer = S7SerializerFactory.buildSerializer(connector);\n\t\t\n\t\t//dispense bean from DB100 and offset 0\n\t\tMyDataBean bean1 = serializer.dispense(MyDataBean.class, 100, 0);\n\t\t\n\t\t//Set some values\n\t\tbean1.bit1 = true;\n\t\tbean1.myNumber = 123;\n\t\t\n\t\t//Store bean to DB101 offset 0\n\t\tserializer.store(bean1, 101, 0);\n\t\t\n\t\t//Close connection\n\t\tconnector.close();\n\t}\n\n}"
-"function syscall(stub, n) {\n switch (n) {\n default:\n console.error(\"NYI syscall\", arguments);\n throw new Error(\"NYI syscall\");\n break;\n \n \n case /*brk*/ 45:\n return 0;\n case /*mmap2*/ 192:\n var instance = stub.instance;\n var memory = instance.exports.memory;\n var requested = arguments[3];\n if (!stub.memory) {\n stub.memory = {\n object: memory,\n currentPosition: memory.buffer.byteLength,\n };\n }\n var cur = stub.memory.currentPosition;\n if (cur + requested > memory.buffer.byteLength) {\n var need = Math.ceil((cur + requested - memory.buffer.byteLength) / 65536);\n memory.grow(need);\n }\n stub.memory.currentPosition += requested;\n return cur;\n }\n}\n\nfunction createWasmceptionStub() {\n var imports = {\n env: {\n __syscall0: (n) => syscall(stub, n),\n __syscall1: (n,a) => syscall(stub, n, a),\n __syscall2: (n,a,b) => syscall(stub, n, a, b),\n __syscall3: (n,a,b,c) => syscall(stub, n, a, b, c),\n __syscall4: (n,a,b,c,d) => syscall(stub, n, a, b, c, d),\n __syscall5: (n,a,b,c,d,e) => syscall(stub, n, a, b, c, d, e),\n __syscall6: (n,a,b,c,d,e,f) => syscall(stub, n, a, b, c, d, e, f),\n },\n };\n var stub = {\n imports,\n instance: null,\n memory: null,\n };\n return stub;\n}"
-"// Copyright (c) 2012 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n#ifndef UI_MESSAGE_CENTER_MESSAGE_CENTER_H_\n#define UI_MESSAGE_CENTER_MESSAGE_CENTER_H_\n\n#include \n\n#include \n#include \n\n#include \"base/macros.h\"\n#include \"ui/message_center/message_center_export.h\"\n#include \"ui/message_center/message_center_types.h\"\n#include \"ui/message_center/notification_list.h\"\n\nclass DownloadNotification;\nclass DownloadNotificationTestBase;\n\n// Interface to manage the NotificationList. The client (e.g. Chrome) calls\n// [Add|Remove|Update]Notification to create and update notifications in the\n// list. It also sends those changes to its observers when a notification\n// is shown, closed, or clicked on.\n//\n// MessageCenter is agnostic of profiles; it uses the string returned by\n// message_center::Notification::id() to uniquely identify a notification. It is\n// the caller's responsibility to formulate the id so that 2 different\n// notification should have different ids. For example, if the caller supports\n// multiple profiles, then caller should encode both profile characteristics and\n// notification front end's notification id into a new id and set it into the\n// notification instance before passing that in. Consequently the id passed to\n// observers will be this unique id, which can be used with MessageCenter\n// interface but probably not higher level interfaces.\n\nnamespace message_center"
-"\ufeff\n\n\n\n\n \n \n \n \n \n"
-"\n * @copyright 2011 The Authors\n * @license http://www.opensource.org/licenses/mit-license.html MIT License\n * @version Build @@version@@\n */\n\nnamespace PasswordLib\\Password;\n\nuse PasswordLib\\Password\\Implementation\\Blowfish;\nrequire_once dirname(__FILE__).\"/Implementation/Blowfish.php\";\n\n/**\n * The Password Factory\n *\n * @category PHPPasswordLib\n * @package Password\n * @author Anthony Ferrara \n */\nclass Factory extends \\PasswordLib\\Core\\AbstractFactory {\n\n /**\n * @var array An array of implementation classes\n */\n protected $implementations = array();\n\n /**\n * Build a new instance of the factory, loading core implementations\n *\n * @return void\n */\n public function __construct() {\n $this->loadImplementations();\n }\n\n /**\n * Create a new password hash from the supplied password\n *\n * This defaults to using Blowfish if $prefix is not supplied\n *\n * @param string $password The password to hash\n * @param string $prefix The prefix for the implementation\n *\n * @return string The hashed password\n * @throws DomainException if the supplied prefix is not supported\n */\n public function createHash(\n $password,\n $prefix = '$2a$',\n array $options = array()\n ) {\n if ($prefix === false) {\n throw new \\DomainException('Unsupported Prefix Supplied');\n }\n foreach ($this->implementations as $impl) {\n if ($impl::getPrefix() == $prefix) {\n $instance = new"
-"/****************************************************************************\n**\n** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies).\n** Contact: http://www.qt-project.org/legal\n**\n** This file is part of Qt Creator.\n**\n** Commercial License Usage\n** Licensees holding valid commercial Qt licenses may use this file in\n** accordance with the commercial license agreement provided with the\n** Software or, alternatively, in accordance with the terms contained in\n** a written agreement between you and Digia. For licensing terms and\n** conditions see http://qt.digia.com/licensing. For further information\n** use the contact form at http://qt.digia.com/contact-us.\n**\n** GNU Lesser General Public License Usage\n** Alternatively, this file may be used under the terms of the GNU Lesser\n** General Public License version 2.1 as published by the Free Software\n** Foundation and appearing in the file LICENSE.LGPL included in the\n** packaging of this file. Please review the following information to\n** ensure the GNU Lesser General Public License version 2.1 requirements\n** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.\n**\n** In addition, as a special exception, Digia gives you certain additional\n** rights. These rights are described in the Digia Qt LGPL Exception\n** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.\n**\n****************************************************************************/\n\nimport QtQuick 2.0"
-"{\n \"asset_name\": \"Vent\",\n \"is_turf\": false,\n \"sprite\": \"icons/vent_pump.dmi\",\n \"sprite_state\": \"off\",\n \"typename\": \"Vent\",\n \"variables\": [\n {\n \"name\": \"passable_level_\",\n \"type\": \"int32\"\n },\n {\n \"name\": \"last_move_\",\n \"type\": \"int32\"\n },\n {\n \"name\": \"direction_\",\n \"type\": \"int32\"\n },\n {\n \"name\": \"v_level_\",\n \"type\": \"int32\"\n },\n {\n \"name\": \"tick_speed_\",\n \"type\": \"int32\"\n },\n {\n \"name\": \"passable_all_\",\n \"type\": \"int32\"\n },\n {\n \"name\": \"name_\",\n \"type\": \"string\"\n },\n {\n \"name\": \"main_force_direction_\",\n \"type\": \"int32\"\n },\n {\n \"name\": \"force_error_\",\n \"type\": \"int32\"\n },\n {\n \"name\": \"secondary_force_direction_\",\n \"type\": \"int32\"\n },\n {\n \"name\": \"passable_right_\",\n \"type\": \"int32\"\n },\n {\n \"name\": \"force_error_per_main_\",\n \"type\": \"int32\"\n },\n {\n \"name\": \"anchored_\",\n \"type\": \"bool\"\n },\n {\n \"name\": \"passable_down_\",\n \"type\": \"int32\"\n },\n {\n \"name\": \"passable_up_\",\n \"type\": \"int32\"\n },\n {\n \"name\": \"transparent_\",\n \"type\": \"bool\"\n },\n {\n \"name\": \"passable_left_\",\n \"type\": \"int32\"\n }\n ]\n}"
-"FROM ubuntu:18.04\nMAINTAINER Intrigue Team \nENV DEBIAN_FRONTEND noninteractive\n\nUSER root\n\n# Get up to date\nRUN apt-get -y update && apt-get -y install sudo\n\n# Set us up!\nWORKDIR /core\n\n# Set up intrigue\nENV BUNDLE_JOBS=12\nENV PATH /root/.rbenv/bin:$PATH\nENV IDIR=/core\nENV DEBIAN_FRONTEND=noninteractive\n\n# create a volume\nVOLUME /data\n\n# copy intrigue code\nCOPY . /core/\n\n# install intrigue-specific software & config\nRUN /bin/bash /core/util/bootstrap-worker.sh\n\n# Remove the config file so one generates on startup (useful when testing)\nRUN if [ -e /core/config/config.json ]; then rm /core/config/config.json; fi\n\n# Expose the port\nEXPOSE 7777\n\nRUN chmod +x /core/util/start-worker.sh\nENTRYPOINT [\"/core/util/start-worker.sh\"]"
-"/* Copyright (c) 2012 Massachusetts Institute of Technology\n * \n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n * \n * The above copyright notice and this permission notice shall be included in\n * 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 THE \n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n * THE SOFTWARE.\n */\n\n#include \"model/electrical/RippleAdder.h\"\n\n#include \n\n#include \"model/PortInfo.h\"\n#include \"model/TransitionInfo.h\"\n#include \"model/EventInfo.h\"\n#include"
-"// Copyright (c) 2014 GeometryFactory Sarl (France)\n// All rights reserved.\n//\n// This file is part of CGAL (www.cgal.org); you can redistribute it and/or\n// modify it under the terms of the GNU Lesser General Public License as\n// published by the Free Software Foundation; either version 3 of the License,\n// or (at your option) any later version.\n//\n// Licensees holding a valid commercial license may use this file in\n// accordance with the commercial license agreement provided with the software.\n//\n// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE\n// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.\n//\n// $URL$\n// $Id$\n//\n//\n// Author(s) : Andreas Fabri, Laurent Rineau\n\n//| This flag is set if the compiler bugs with some \"using Base::Member;\" in\n//| a derived class. The workaround is to write a forwarder or not use\n//| using.\n\nenum Type { POINT, WPOINT };\n\n#include \n\nint I;\n\nstruct Point {\n};\n\n\nstruct WPoint\n{\n WPoint(const Point&) {} // Point is implicitly convertible to WPoint.\n};\n\n\nstruct Conv\n{\n Conv() {}\n\n template \n Type operator()(const T&){ return POINT; }\n};\n\n\nstruct WConv"
-"/** @file\r\n The internal header file includes the common header files, defines\r\n internal structure and functions used by AuthService module.\r\n\r\n Caution: This module requires additional review when modified.\r\n This driver will have external input - variable data. It may be input in SMM mode.\r\n This external input must be validated carefully to avoid security issue like\r\n buffer overflow, integer overflow.\r\n Variable attribute should also be checked to avoid authentication bypass.\r\n The whole SMM authentication variable design relies on the integrity of flash part and SMM.\r\n which is assumed to be protected by platform. All variable code and metadata in flash/SMM Memory\r\n may not be modified without authorization. If platform fails to protect these resources,\r\n the authentication service provided in this driver will be broken, and the behavior is undefined.\r\n\r\nCopyright (c) 2009 - 2018, Intel Corporation. All rights reserved. \r\nThis program and the accompanying materials\r\nare licensed and made available under the terms and conditions of the BSD License\r\nwhich accompanies this distribution. The full text of the license may be found at\r\nhttp://opensource.org/licenses/bsd-license.php\r\n\r\nTHE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN \"AS IS\" BASIS,\r\nWITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r\n\r\n**/\r\n\r\n#ifndef"
-"/*\n * Copyright (c) 2017, 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 com.sun.s1asdev.connector.installed_libraries_test.ejb;\n\nimport jakarta.ejb.CreateException;\nimport jakarta.ejb.EJBLocalHome;\n\npublic interface SimpleSessionHome extends EJBLocalHome {\n SimpleSession create()\n throws CreateException;\n}"
-"class Border3DSide(Enum,IComparable,IFormattable,IConvertible):\r\n \"\"\"\r\n Specifies the sides of a rectangle to apply a three-dimensional border to.\r\n\r\n \r\n\r\n enum (flags) Border3DSide,values: All (2063),Bottom (8),Left (1),Middle (2048),Right (4),Top (2)\r\n \"\"\"\r\n def __eq__(self,*args):\r\n \"\"\" x.__eq__(y) <==> x==yx.__eq__(y) <==> x==yx.__eq__(y) <==> x==y \"\"\"\r\n pass\r\n def __format__(self,*args):\r\n \"\"\" __format__(formattable: IFormattable,format: str) -> str \"\"\"\r\n pass\r\n def __ge__(self,*args):\r\n pass\r\n def __gt__(self,*args):\r\n pass\r\n def __init__(self,*args):\r\n \"\"\" x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature \"\"\"\r\n pass\r\n def __le__(self,*args):\r\n pass\r\n def __lt__(self,*args):\r\n pass\r\n def __ne__(self,*args):\r\n pass\r\n def __reduce_ex__(self,*args):\r\n pass\r\n def __str__(self,*args):\r\n pass\r\n All=None\r\n Bottom=None\r\n Left=None\r\n Middle=None\r\n Right=None\r\n Top=None\r\n value__=None"
-"/// Copyright (c) 2012 Ecma International. All rights reserved. \n/**\n * @path ch15/15.2/15.2.3/15.2.3.7/15.2.3.7-6-a-167.js\n * @description Object.defineProperties - 'O' is an Array, 'P' is the length property of 'O', the [[Value]] field of 'desc' is less than value of the length property, test the [[Configurable]] attribute of inherited data property with large index named in 'O' can't stop deleting index named properties (15.4.5.1 step 3.l.ii)\n */\n\n\nfunction testcase() {\n\n var arr = [0, 1];\n try {\n Array.prototype[1] = 2; //we are not allowed to set the [[Configurable]] attribute of property \"1\" to false here, since Array.prototype is a global object, and non-configurbale property can't revert to configurable\n\n Object.defineProperties(arr, {\n length: {\n value: 1\n }\n });\n\n return arr.length === 1 && !arr.hasOwnProperty(\"1\") && arr[0] === 0 && Array.prototype[1] === 2;\n } finally {\n delete Array.prototype[1];\n }\n }\nrunTestCase(testcase);"
-"/*******************************************************************************\n * Copyright (c) 2017 Rogue Wave Software Inc. and others.\n *\n * This program and the accompanying materials are made\n * available under the terms of the Eclipse Public License 2.0\n * which is available at https://www.eclipse.org/legal/epl-2.0/\n *\n * SPDX-License-Identifier: EPL-2.0\n *\n * Contributors:\n * Rogue Wave Software Inc. - initial implementation\n *******************************************************************************/\npackage org.eclipse.php.internal.debug.core.zend.debugger.messages;\n\nimport java.io.DataInputStream;\nimport java.io.DataOutputStream;\nimport java.io.IOException;\n\nimport org.eclipse.php.debug.core.debugger.messages.IDebugRequestMessage;\n\n/**\n * Get code coverage request.\n */\npublic class GetCodeCoverageRequest extends DebugMessageRequestImpl implements IDebugRequestMessage {\n\n\t@Override\n\tpublic void deserialize(DataInputStream in) throws IOException {\n\t\tsetID(in.readInt());\n\t}\n\n\t@Override\n\tpublic int getType() {\n\t\treturn 10014;\n\t}\n\n\t@Override\n\tpublic void serialize(DataOutputStream out) throws IOException {\n\t\tout.writeShort(getType());\n\t\tout.writeInt(getID());\n\t}\n}"
-"/*\n** 2001 September 22\n**\n** The author disclaims copyright to this source code. In place of\n** a legal notice, here is a blessing:\n**\n** May you do good and not evil.\n** May you find forgiveness for yourself and forgive others.\n** May you share freely, never taking more than you give.\n**\n*************************************************************************\n** This is the implementation of generic hash-tables used in SQLite.\n** We've modified it slightly to serve as a standalone hash table\n** implementation for the full-text indexing module.\n*/\n\n/*\n** The code in this file is only compiled if:\n**\n** * The FTS3 module is being built as an extension\n** (in which case SQLITE_CORE is not defined), or\n**\n** * The FTS3 module is being built into the core of\n** SQLite (in which case SQLITE_ENABLE_FTS3 is defined).\n*/\n#include \"fts3Int.h\"\n#if !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_FTS3)\n\n#include \n#include \n#include \n\n#include \"fts3_hash.h\"\n\n/*\n** Malloc and Free functions\n*/\nstatic void *fts3HashMalloc(sqlite3_int64 n){\n void *p = sqlite3_malloc64(n);\n if( p ){\n memset(p, 0, n);\n }\n return p;\n}\nstatic void fts3HashFree(void *p){\n sqlite3_free(p);\n}\n\n/* Turn bulk memory into a hash table object by initializing the"
-"// Generated from definition io.k8s.api.apps.v1.DeploymentSpec\n\n/// DeploymentSpec is the specification of the desired behavior of the Deployment.\n#[derive(Clone, Debug, Default, PartialEq)]\npub struct DeploymentSpec {\n /// Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready)\n pub min_ready_seconds: Option,\n\n /// Indicates that the deployment is paused.\n pub paused: Option,\n\n /// The maximum time in seconds for a deployment to make progress before it is considered to be failed. The deployment controller will continue to process failed deployments and a condition with a ProgressDeadlineExceeded reason will be surfaced in the deployment status. Note that progress will not be estimated during the time a deployment is paused. Defaults to 600s.\n pub progress_deadline_seconds: Option,\n\n /// Number of desired pods. This is a pointer to distinguish between explicit zero and not specified. Defaults to 1.\n pub replicas: Option,\n\n /// The number of old ReplicaSets to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 10.\n pub revision_history_limit: Option,\n\n /// Label selector for pods. Existing ReplicaSets whose"
-"/**\n * AMCC SoC PPC4xx Crypto Driver\n *\n * Copyright (c) 2008 Applied Micro Circuits Corporation.\n * All rights reserved. James Hsiao \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 * This is the header file for AMCC Crypto offload Linux device driver for\n * use with Linux CryptoAPI.\n\n */\n\n#ifndef __CRYPTO4XX_CORE_H__\n#define __CRYPTO4XX_CORE_H__\n\n#include \n\n#define MODULE_NAME \"crypto4xx\"\n\n#define PPC460SX_SDR0_SRST 0x201\n#define PPC405EX_SDR0_SRST 0x200\n#define PPC460EX_SDR0_SRST 0x201\n#define PPC460EX_CE_RESET 0x08000000\n#define PPC460SX_CE_RESET 0x20000000\n#define PPC405EX_CE_RESET 0x00000008\n\n#define CRYPTO4XX_CRYPTO_PRIORITY\t\t300\n#define PPC4XX_NUM_PD\t\t\t\t256\n#define PPC4XX_LAST_PD\t\t\t\t(PPC4XX_NUM_PD - 1)\n#define PPC4XX_NUM_GD\t\t\t\t1024\n#define PPC4XX_LAST_GD\t\t\t\t(PPC4XX_NUM_GD - 1)\n#define PPC4XX_NUM_SD\t\t\t\t256\n#define PPC4XX_LAST_SD\t\t\t\t(PPC4XX_NUM_SD - 1)\n#define PPC4XX_SD_BUFFER_SIZE\t\t\t2048\n\n#define PD_ENTRY_INUSE\t\t\t\t1\n#define PD_ENTRY_FREE\t\t\t\t0\n#define ERING_WAS_FULL\t\t\t\t0xffffffff\n\nstruct"
-"/*\n * This program is free software; you can redistribute it and/or\n * modify it under the terms of the GNU General Public License\n * as published by the Free Software Foundation; either version 2\n * of the License, or (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 Foundation,\n * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n *\n * The Original Code is Copyright (C) 2004 Blender Foundation\n * All rights reserved.\n * .blend file reading entry point\n */\n\n/** \\file\n * \\ingroup blenloader\n */\n\n#include \n#include \n#include \n#include \n#include \n#include \n\n/* open/close */\n#ifndef _WIN32\n# include \n#else\n# include \n#endif\n\n#include \"MEM_guardedalloc.h\"\n\n#include \"DNA_listBase.h\"\n\n#include \"BLI_blenlib.h\"\n#include \"BLI_ghash.h\"\n\n#include \"BLO_readfile.h\"\n#include \"BLO_undofile.h\"\n\n#include \"BKE_lib_id.h\"\n#include \"BKE_main.h\"\n\n/* keep last */"
-"* TI - TSC ADC (Touschscreen and analog digital converter)\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nRequired properties:\n- mfd\n\tcompatible: Should be\n\t\t\"ti,am3359-tscadc\" for AM335x/AM437x SoCs\n\t\t\"ti,am654-tscadc\", \"ti,am3359-tscadc\" for AM654 SoCs\n- child \"tsc\"\n\tcompatible: Should be \"ti,am3359-tsc\".\n\tti,wires: Wires refer to application modes i.e. 4/5/8 wire touchscreen\n\t\t support on the platform.\n\tti,x-plate-resistance: X plate resistance\n\tti,coordinate-readouts: The sequencer supports a total of 16\n\t\t\t\tprogrammable steps each step is used to\n\t\t\t\tread a single coordinate. A single\n readout is enough but multiple reads can\n\t\t\t\tincrease the quality.\n\t\t\t\tA value of 5 means, 5 reads for X, 5 for\n\t\t\t\tY and 2 for Z (always). This utilises 12\n\t\t\t\tof the 16 software steps available. The\n\t\t\t\tremaining 4 can be used by the ADC.\n\tti,wire-config: Different boards could have a different order for\n\t\t\tconnecting wires on touchscreen. We need to provide an\n\t\t\t8 bit number where in the 1st four bits represent the\n\t\t\tanalog lines and the next 4 bits represent positive/\n\t\t\tnegative terminal on that input line. Notations to\n\t\t\trepresent the input lines and terminals resoectively\n\t\t\tis as follows:\n\t\t\tAIN0 = 0, AIN1 = 1 and so on till AIN7 = 7.\n\t\t\tXP = 0, XN = 1, YP = 2, YN = 3.\n-"
-"// @flow\nimport React, { Component } from 'react';\nimport { observer } from 'mobx-react';\nimport { defineMessages, intlShape } from 'react-intl';\nimport { Input } from 'react-polymorph/lib/components/Input';\nimport { InputSkin } from 'react-polymorph/lib/skins/simple/InputSkin';\nimport styles from './WalletTransactionsSearch.scss';\n\nconst messages = defineMessages({\n searchHint: {\n id: 'wallet.transactions.search.hint',\n defaultMessage: '!!!Search transaction',\n description: 'Hint in the transactions search box.',\n },\n});\n\ntype Props = {\n searchTerm: string,\n onChange: Function,\n};\n\n@observer\nexport default class WalletTransactionsSearch extends Component {\n static contextTypes = {\n intl: intlShape.isRequired,\n };\n\n render() {\n const { intl } = this.context;\n const { searchTerm, onChange } = this.props;\n return (\n
\n \n
\n );\n }\n}"
-"\ufeff\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\" FILE: gcd.vim\n\" AUTHOR: Shougo Matsushita \n\" License: MIT license {{{\n\" Permission is hereby granted, free of charge, to any person obtaining\n\" a copy of this software and associated documentation files (the\n\" \"Software\"), to deal in the Software without restriction, including\n\" without limitation the rights to use, copy, modify, merge, publish,\n\" distribute, sublicense, and/or sell copies of the Software, and to\n\" permit persons to whom the Software is furnished to do so, subject to\n\" 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\n\" OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n\" MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n\" IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\n\" CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n\" TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n\" SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\" }}}\n\"=============================================================================\n\nlet s:command ="
-"/**\n * Copyright (c) 2006-2015, JGraph Ltd\n * Copyright (c) 2006-2015, Gaudenz Alder\n */\n/**\n * Class: mxCellRenderer\n * \n * Renders cells into a document object model. The is a global\n * map of shapename, constructor pairs that is used in all instances. You can\n * get a list of all available shape names using the following code.\n * \n * In general the cell renderer is in charge of creating, redrawing and\n * destroying the shape and label associated with a cell state, as well as\n * some other graphical objects, namely controls and overlays. The shape\n * hieararchy in the display (ie. the hierarchy in which the DOM nodes\n * appear in the document) does not reflect the cell hierarchy. The shapes\n * are a (flat) sequence of shapes and labels inside the draw pane of the\n * graph view, with some exceptions, namely the HTML labels being placed\n * directly inside the graph container for certain browsers.\n * \n * (code)\n * mxLog.show();\n * for (var i in mxCellRenderer.prototype.defaultShapes)\n * {\n * mxLog.debug(i);\n * }\n * (end)\n *\n * Constructor: mxCellRenderer\n * \n * Constructs a new cell renderer with the following built-in shapes:\n * arrow, rectangle, ellipse, rhombus,"
-"/*\nPackage sdk is the gRPC implementation of the SDK gRPC server\nCopyright 2018 Portworx\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\thttp://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*/\npackage sdk\n\nimport (\n\t\"context\"\n\n\t\"github.com/libopenstorage/openstorage/api\"\n\t\"github.com/libopenstorage/openstorage/cluster\"\n\t\"github.com/libopenstorage/openstorage/pkg/grpcserver\"\n\t\"github.com/portworx/kvdb\"\n\t\"google.golang.org/grpc\"\n\t\"google.golang.org/grpc/codes\"\n\t\"google.golang.org/grpc/status\"\n)\n\n// NodeServer is an implementation of the gRPC OpenStorageNodeServer interface\ntype NodeServer struct {\n\tserver serverAccessor\n}\n\nfunc (s *NodeServer) cluster() cluster.Cluster {\n\treturn s.server.cluster()\n}\n\n// Enumerate returns the ids of all the nodes in the cluster\nfunc (s *NodeServer) Enumerate(\n\tctx context.Context,\n\treq *api.SdkNodeEnumerateRequest,\n) (*api.SdkNodeEnumerateResponse, error) {\n\tif s.cluster() == nil {\n\t\treturn nil, status.Error(codes.Unavailable, \"Resource has not been initialized\")\n\t}\n\tc, err := s.cluster().Enumerate()\n\tif err != nil {\n\t\treturn nil, status.Error(codes.Internal, err.Error())\n\t}\n\n\tnodeIds := make([]string, len(c.Nodes))\n\tfor i, v := range c.Nodes {\n\t\tnodeIds[i] = v.Id\n\t}"
-"/*\n * Copyright (c) 2018 THL A29 Limited, a Tencent company. 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,\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 */\n\nnamespace TencentCloud.Billing.V20180709.Models\n{\n using Newtonsoft.Json;\n using System.Collections.Generic;\n using TencentCloud.Common;\n\n public class BillTagInfo : AbstractModel\n {\n \n /// \n /// \u5206\u8d26\u6807\u7b7e\u952e\n /// \n [JsonProperty(\"TagKey\")]\n public string TagKey{ get; set; }\n\n /// \n /// \u6807\u7b7e\u503c\n /// \n [JsonProperty(\"TagValue\")]\n public string TagValue{ get; set; }\n\n\n /// \n /// For internal usage only. DO NOT USE IT.\n /// \n internal override void ToMap(Dictionary map, string prefix)\n {\n this.SetParamSimple(map, prefix + \"TagKey\", this.TagKey);\n this.SetParamSimple(map, prefix + \"TagValue\", this.TagValue);\n }\n }\n}"
-"// OCHamcrest by Jon Reid, http://qualitycoding.org/about/\n// Copyright 2015 hamcrest.org. See LICENSE.txt\n\n#import \n\n\n@interface HCEvery : HCDiagnosingMatcher\n\n@property (nonatomic, strong, readonly) id matcher;\n\n- (instancetype)initWithMatcher:(id )matcher;\n\n@end\n\n\nFOUNDATION_EXPORT id HC_everyItem(id itemMatcher);\n\n#ifdef HC_SHORTHAND\n/*!\n * @brief everyItem(itemMatcher) -\n * Matches if every element of a collection satisfies the given matcher.\n * @param itemMatcher The matcher to apply to every item provided by the examined collection.\n * @discussion This matcher iterates the evaluated collection, confirming that each element\n * satisfies the given matcher.\n *\n * Example:\n *
\n *
everyItem(startsWith(\\@\"Jo\"))
\n *
\n * will match a collection [\"Jon\", \"John\", \"Johann\"].\n *\n * @attribute Name Clash\n * In the event of a name clash, don't #define HC_SHORTHAND and use the synonym HC_everyItem instead.\n */\n#define everyItem HC_everyItem\n#endif"
-"0.5.3 / 2018-12-17\n==================\n\n * Use `safe-buffer` for improved Buffer API\n\n0.5.2 / 2016-12-08\n==================\n\n * Fix `parse` to accept any linear whitespace character\n\n0.5.1 / 2016-01-17\n==================\n\n * perf: enable strict mode\n\n0.5.0 / 2014-10-11\n==================\n\n * Add `parse` function\n\n0.4.0 / 2014-09-21\n==================\n\n * Expand non-Unicode `filename` to the full ISO-8859-1 charset\n\n0.3.0 / 2014-09-20\n==================\n\n * Add `fallback` option\n * Add `type` option\n\n0.2.0 / 2014-09-19\n==================\n\n * Reduce ambiguity of file names with hex escape in buggy browsers\n\n0.1.2 / 2014-09-19\n==================\n\n * Fix periodic invalid Unicode filename header\n\n0.1.1 / 2014-09-19\n==================\n\n * Fix invalid characters appearing in `filename*` parameter\n\n0.1.0 / 2014-09-18\n==================\n\n * Make the `filename` argument optional\n\n0.0.0 / 2014-09-18\n==================\n\n * Initial release"
-"\n\n\n\n\n \n My custom rules\n \n \n \n Geode does not allow mutable static fields within the product code. All static\n fields must be marked final and be immutable objects.\n\n If the value of your static field is actually immutable, you can annotate the field\n itself with @Immutable, and it will be ignored by this rule.\n \n 3\n \n void\n handleUrl: (url: string) => void\n}\n\nexport default function FileControls(props: FileControlsProps): JSX.Element {\n const {board, loading, downloading, dispatch} = useAppState()\n const [open, setOpen] = useState(false)\n const {buttonClassName} = props\n\n const toggleUploadOpen = (): void => setOpen(!open)\n\n const handleFiles = (event: FileEvent): void => {\n setOpen(false)\n props.handleFiles(event)\n }\n\n const handleUrl = (url: string): void => {\n setOpen(false)\n props.handleUrl(url)\n }\n\n const downloadBoard = (): void => {\n if (board) {\n dispatch(getBoardPackage(board.id))\n }\n }\n\n return (\n <>\n \n \n \n >\n )\n}"
-"/*\n * Copyright 2012-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 * https://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.test;\n\npublic class SampleApplication {\n\n\tpublic static void main(String[] args) {\n\t}\n\n}"
-"/*\n * Copyright 2015 The FireNio 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 */\npackage com.firenio.buffer;\n\nimport java.nio.ByteBuffer;\n\n/**\n * @author wangkai\n */\nclass UnpooledHeapByteBuf extends HeapByteBuf {\n\n UnpooledHeapByteBuf(byte[] memory, int off, int len) {\n super(memory);\n this.abs_read_index = off;\n this.abs_write_index = len + off;\n }\n\n UnpooledHeapByteBuf(ByteBuffer memory) {\n super(memory);\n this.abs_read_index = 0;\n this.abs_write_index = memory.position();\n }\n\n @Override\n public int capacity() {\n return memory.length;\n }\n\n @Override\n public void expansion(int cap) {\n byte[] oldBuffer = memory;\n byte[] newBuffer = new byte[cap];\n if (hasReadableBytes()) {\n copy(oldBuffer, absReadIndex(), newBuffer, 0, readableBytes());\n }\n memory = newBuffer;\n }\n\n @Override\n public boolean isPooled() {\n return false;\n }\n\n @Override\n protected final void release0() {}\n\n @Override\n public void reset(ByteBuffer memory) {\n if (memory.isDirect()) {\n throw"
-"\n\n#ifndef MSG_MORE\n#define MSG_MORE 0x8000\n#endif\n\nssize_t sys_sendfile(int tofd, int fromfd, const DATA_BLOB *header, SMB_OFF_T offset, size_t count)\n{\n\tsize_t total=0;\n\tssize_t ret;\n\tsize_t hdr_len = 0;\n\n\t/*\n\t * Send the header first.\n\t * Use MSG_MORE to"
-"using System.IO;\n\nnamespace Spect.Net.SpectrumEmu.Devices.Tape.Tzx\n{\n /// \n /// Pause (silence) or 'Stop the Tape' block\n /// \n public class TzxSilenceDataBlock : TzxDataBlockBase\n {\n /// \n /// Duration of silence\n /// \n /// \n /// This will make a silence (low amplitude level (0)) for a given time \n /// in milliseconds. If the value is 0 then the emulator or utility should \n /// (in effect) STOP THE TAPE, i.e. should not continue loading until \n /// the user or emulator requests it.\n /// \n public ushort Duration { get; set; }\n\n /// \n /// The ID of the block\n /// \n public override int BlockId => 0x20;\n\n /// \n /// Reads the content of the block from the specified binary stream.\n /// \n /// Stream to read the block from\n public override void ReadFrom(BinaryReader reader)\n {\n Duration = reader.ReadUInt16();\n }\n\n /// \n /// Writes the content of the block to the specified binary stream.\n /// \n /// Stream to write the block to\n public override void WriteTo(BinaryWriter writer)\n {\n writer.Write(Duration);\n }\n }\n}"
-"/*******************************************************************************\n * Copyright 2012-2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n * Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use\n * this file except in compliance with the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file.\n * This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations under the License.\n * *****************************************************************************\n *\n * AWS Tools for Windows (TM) PowerShell (TM)\n *\n */\n\nusing System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Management.Automation;\nusing System.Text;\nusing Amazon.PowerShell.Common;\nusing Amazon.Runtime;\nusing Amazon.EC2;\nusing Amazon.EC2.Model;\n\nnamespace Amazon.PowerShell.Cmdlets.EC2\n{\n /// \n /// Attaches the specified VPC to the specified transit gateway.\n /// \n /// \n /// \n /// If you attach a VPC with a CIDR range that overlaps the CIDR range of a VPC that is\n /// already attached, the new VPC CIDR range is not propagated to the default propagation\n /// route table.\n /// \n /// To send VPC traffic to an attached transit gateway, add a route to the VPC route"
-"---\ntitle: Travis CI for R?\ndate: '2013-04-07'\nslug: travis-ci-for-r\n---\n\nI'm always worried about [CRAN](http://cran.r-project.org): a system maintained by FTP and emails from real humans (basically one of Uwe, Kurt or Prof Ripley). I'm worried for two reasons:\n\n1. The number of R packages is growing _exponentially_;\n2. Time and time again I see frustrations from both parties (CRAN maintainers and package authors);\n\nI have a good solution for 2, which is to keep silent when your submission passes the check system, and say \"Sorry!\" no matter if you agree with the reason or not when it did not pass (which made one maintainer unhappy), but do not argue -- just go back and fix the problem if you know what is the problem; or use dark voodoo to hide (yes, _hide_, not solve) the problem if you are sure you are right. If you read the mailing list frequently, you probably remember that `if (CRAN)` discussion. The solution in my mind was `if (Sys.getenv('USER') == 'ripley')`.\n\nThe key is, do not argue. Silence is gold.\n\n\n\nThe CRAN maintainers have been volunteering their time, and we should respect them. The question is, will this approach"
-"/*\n * Copyright (c) 2016-2018 Positive Technologies, https://www.ptsecurity.com,\n * Fast Positive Hash.\n *\n * Portions Copyright (c) 2010-2018 Leonid Yuriev ,\n * The 1Hippeus project (t1h).\n *\n * This software is provided 'as-is', without any express or implied\n * warranty. In no event will the authors be held liable for any damages\n * arising from the use of this software.\n *\n * Permission is granted to anyone to use this software for any purpose,\n * including commercial applications, and to alter it and redistribute it\n * freely, subject to the following restrictions:\n *\n * 1. The origin of this software must not be misrepresented; you must not\n * claim that you wrote the original software. If you use this software\n * in a product, an acknowledgement in the product documentation would be\n * appreciated but is not required.\n * 2. Altered source versions must be plainly marked as such, and must not be\n * misrepresented as being the original software.\n * 3. This notice may not be removed or altered from any source distribution.\n */\n\n/*\n * t1ha = { Fast Positive Hash, aka \"\u041f\u043e\u0437\u0438\u0442\u0438\u0432\u043d\u044b\u0439 \u0425\u044d\u0448\" }\n * by [Positive Technologies](https://www.ptsecurity.ru)\n *\n * Briefly, it is a 64-bit Hash Function:"
-"/*\r\n LUFA Library\r\n Copyright (C) Dean Camera, 2013.\r\n\r\n dean [at] fourwalledcubicle [dot] com\r\n www.lufa-lib.org\r\n*/\r\n\r\n/*\r\n Copyright 2013 Dean Camera (dean [at] fourwalledcubicle [dot] com)\r\n\r\n Permission to use, copy, modify, distribute, and sell this\r\n software and its documentation for any purpose is hereby granted\r\n without fee, provided that the above copyright notice appear in\r\n all copies and that both that the copyright notice and this\r\n permission notice and warranty disclaimer appear in supporting\r\n documentation, and that the name of the author not be used in\r\n advertising or publicity pertaining to distribution of the\r\n software without specific, written prior permission.\r\n\r\n The author disclaims all warranties with regard to this\r\n software, including all implied warranties of merchantability\r\n and fitness. In no event shall the author be liable for any\r\n special, indirect or consequential damages or any damages\r\n whatsoever resulting from loss of use, data or profits, whether\r\n in an action of contract, negligence or other tortious action,\r\n arising out of or in connection with the use or performance of\r\n this software.\r\n*/\r\n\r\n/** \\file\r\n * \\brief LUFA Custom Board Joystick Hardware Driver (Template)\r\n *\r\n * This is a stub driver header file, for implementing custom board\r\n * layout hardware with compatible LUFA"
-"// Copyright (c) 2013 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n#ifndef CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_WRONG_HWID_SCREEN_HANDLER_H_\n#define CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_WRONG_HWID_SCREEN_HANDLER_H_\n\n#include \"base/compiler_specific.h\"\n#include \"base/macros.h\"\n#include \"chrome/browser/chromeos/login/screens/wrong_hwid_screen_actor.h\"\n#include \"chrome/browser/ui/webui/chromeos/login/base_screen_handler.h\"\n#include \"content/public/browser/web_ui.h\"\n\nnamespace base {\nclass DictionaryValue;\n}\n\nnamespace chromeos {\n\n// WebUI implementation of WrongHWIDScreenActor.\nclass WrongHWIDScreenHandler : public WrongHWIDScreenActor,\n public BaseScreenHandler {\n public:\n WrongHWIDScreenHandler();\n ~WrongHWIDScreenHandler() override;\n\n // WrongHWIDScreenActor implementation:\n void PrepareToShow() override;\n void Show() override;\n void Hide() override;\n void SetDelegate(Delegate* delegate) override;\n\n // BaseScreenHandler implementation:\n void DeclareLocalizedValues(\n ::login::LocalizedValuesBuilder* builder) override;\n void Initialize() override;\n\n // WebUIMessageHandler implementation:\n void RegisterMessages() override;\n\n private:\n // JS messages handlers.\n void HandleOnSkip();\n\n Delegate* delegate_;\n\n // Keeps whether screen should be shown right after initialization.\n bool show_on_init_;\n\n DISALLOW_COPY_AND_ASSIGN(WrongHWIDScreenHandler);\n};\n\n} // namespace chromeos\n\n#endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_WRONG_HWID_SCREEN_HANDLER_H_"
-"// Copyright 2011 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 ssh\n\n// Session implements an interactive session described in\n// \"RFC 4254, section 6\".\n\nimport (\n\t\"bytes\"\n\t\"errors\"\n\t\"fmt\"\n\t\"io\"\n\t\"io/ioutil\"\n\t\"sync\"\n)\n\ntype Signal string\n\n// POSIX signals as listed in RFC 4254 Section 6.10.\nconst (\n\tSIGABRT Signal = \"ABRT\"\n\tSIGALRM Signal = \"ALRM\"\n\tSIGFPE Signal = \"FPE\"\n\tSIGHUP Signal = \"HUP\"\n\tSIGILL Signal = \"ILL\"\n\tSIGINT Signal = \"INT\"\n\tSIGKILL Signal = \"KILL\"\n\tSIGPIPE Signal = \"PIPE\"\n\tSIGQUIT Signal = \"QUIT\"\n\tSIGSEGV Signal = \"SEGV\"\n\tSIGTERM Signal = \"TERM\"\n\tSIGUSR1 Signal = \"USR1\"\n\tSIGUSR2 Signal = \"USR2\"\n)\n\nvar signals = map[Signal]int{\n\tSIGABRT: 6,\n\tSIGALRM: 14,\n\tSIGFPE: 8,\n\tSIGHUP: 1,\n\tSIGILL: 4,\n\tSIGINT: 2,\n\tSIGKILL: 9,\n\tSIGPIPE: 13,\n\tSIGQUIT: 3,\n\tSIGSEGV: 11,\n\tSIGTERM: 15,\n}\n\ntype TerminalModes map[uint8]uint32\n\n// POSIX terminal mode flags as listed in RFC 4254 Section 8.\nconst (\n\ttty_OP_END = 0\n\tVINTR = 1\n\tVQUIT = 2\n\tVERASE = 3\n\tVKILL = 4\n\tVEOF = 5\n\tVEOL = 6\n\tVEOL2 = 7\n\tVSTART = 8\n\tVSTOP = 9\n\tVSUSP = 10\n\tVDSUSP"
-"\ufeffimport { Component, ViewChild, AfterViewInit } from '@angular/core';\n\nimport { jqxSchedulerComponent } from 'jqwidgets-ng/jqxscheduler';\n\n@Component({\n selector: 'app-root',\n templateUrl: './app.component.html'\n})\n\nexport class AppComponent implements AfterViewInit {\n @ViewChild('scheduler', { static: false }) myScheduler: jqxSchedulerComponent;\n \n ngAfterViewInit() {\n this.myScheduler.ensureAppointmentVisible('id1');\n }\n\n\tgetWidth() : any {\n\t\tif (document.body.offsetWidth < 850) {\n\t\t\treturn '90%';\n\t\t}\n\t\t\n\t\treturn 850;\n\t}\n\n generateAppointments() {\n let appointments = new Array();\n let appointment1 = {\n id: 'id1',\n description: 'George brings projector for presentations.',\n location: '',\n subject: 'Quarterly Project Review Meeting',\n calendar: 'Room 1',\n start: new Date(2020, 10, 23, 9, 15, 0),\n end: new Date(2020, 10, 23, 16, 0, 0)\n }\n let appointment2 = {\n id: 'id2',\n description: '',\n location: '',\n subject: 'IT Group Mtg.',\n calendar: 'Room 2',\n start: new Date(2020, 10, 24, 10, 45, 0),\n end: new Date(2020, 10, 24, 15, 0, 0)\n }\n let appointment3 = {\n id: 'id3',\n description: '',\n location: '',\n subject: 'Course Social Media',\n calendar: 'Room 3',\n start: new Date(2020, 10, 27, 11, 30, 0),\n end: new Date(2020, 10, 27, 13, 0, 0)\n }\n let appointment4 = {\n id: 'id4',\n description: '',\n location: '',\n subject: 'New Projects Planning',\n calendar: 'Room 2',\n start: new Date(2020, 10, 23, 16, 15, 0),\n end: new Date(2020, 10, 26, 18, 0, 0)\n }"
-"# uncompyle6 version 2.9.10\n# Python bytecode 2.7 (62211)\n# Decompiled from: Python 3.6.0b2 (default, Oct 11 2016, 05:27:10) \n# [GCC 6.2.0 20161005]\n# Embedded file name: tty.py\n\"\"\"Terminal utilities.\"\"\"\nfrom termios import *\n__all__ = [\n 'setraw', 'setcbreak']\nIFLAG = 0\nOFLAG = 1\nCFLAG = 2\nLFLAG = 3\nISPEED = 4\nOSPEED = 5\nCC = 6\n\ndef setraw(fd, when=TCSAFLUSH):\n \"\"\"Put terminal into a raw mode.\"\"\"\n mode = tcgetattr(fd)\n mode[IFLAG] = mode[IFLAG] & ~(BRKINT | ICRNL | INPCK | ISTRIP | IXON)\n mode[OFLAG] = mode[OFLAG] & ~OPOST\n mode[CFLAG] = mode[CFLAG] & ~(CSIZE | PARENB)\n mode[CFLAG] = mode[CFLAG] | CS8\n mode[LFLAG] = mode[LFLAG] & ~(ECHO | ICANON | IEXTEN | ISIG)\n mode[CC][VMIN] = 1\n mode[CC][VTIME] = 0\n tcsetattr(fd, when, mode)\n\n\ndef setcbreak(fd, when=TCSAFLUSH):\n \"\"\"Put terminal into a cbreak mode.\"\"\"\n mode = tcgetattr(fd)\n mode[LFLAG] = mode[LFLAG] & ~(ECHO | ICANON)\n mode[CC][VMIN] = 1\n mode[CC][VTIME] = 0\n tcsetattr(fd, when, mode)"
-"worker_processes 1;\n\nevents {\n worker_connections 1024;\n}\n\nhttp {\n include mime.types;\n default_type application/octet-stream;\n\n #\n # < regular Nginx configuration here >\n #\n\n # For a hands-on explanation of using Accept negotiation, see:\n # http://www.igvita.com/2013/05/01/deploying-webp-via-accept-content-negotiation/\n\n # For an explanation of how to use maps for that, see:\n # http://www.lazutkin.com/blog/2014/02/23/serve-files-with-nginx-conditionally/\n\n map $http_accept $webp_suffix {\n \"~*webp\" \".webp\";\n }\n map $msie $cache_control {\n \"1\" \"private\";\n }\n map $msie $vary_header {\n default \"Accept\";\n \"1\" \"\";\n }\n\n # if proxying to another backend and using nginx as cache\n proxy_cache_path /tmp/cache levels=1:2 keys_zone=my-cache:8m max_size=1000m inactive=600m;\n proxy_temp_path /tmp/cache/tmp;\n\n server {\n listen 8081;\n server_name localhost;\n\n location ~ \\.(png|jpe?g)$ {\n # set response headers specially treating MSIE\n add_header Vary $vary_header;\n add_header Cache-Control $cache_control;\n # now serve our images\n try_files $uri$webp_suffix $uri =404;\n }\n\n # if proxying to another backend and using nginx as cache\n if ($http_accept ~* \"webp\") { set $webp_accept \"true\"; }\n proxy_cache_key $scheme$proxy_host$request_uri$webp_local$webp_accept;\n\n location ~ ^/proxy.*\\.(png|jpe?g)$ {\n # Pass WebP support header to backend\n proxy_set_header WebP $webp_accept;\n proxy_pass http://127.0.0.1:8080;\n proxy_cache my-cache;\n }\n }\n}"
-"/***************************************************************************/\n/* */\n/* cf2glue.h */\n/* */\n/* Adobe's code for shared stuff (specification only). */\n/* */\n/* Copyright 2007-2013 Adobe Systems Incorporated. */\n/* */\n/* This software, and all works of authorship, whether in source or */\n/* object code form as indicated by the copyright notice(s) included */\n/* herein (collectively, the \"Work\") is made available, and may only be */\n/* used, modified, and distributed under the FreeType Project License, */\n/* LICENSE.TXT. Additionally, subject to the terms and conditions of the */\n/* FreeType Project License, each contributor to the Work hereby grants */\n/* to any individual or legal entity exercising permissions granted by */\n/* the FreeType Project License and this section (hereafter, \"You\" or */\n/* \"Your\") a perpetual, worldwide, non-exclusive, no-charge, */\n/* royalty-free, irrevocable (except as stated in this section) patent */\n/* license to make, have made, use, offer to sell, sell, import, and */\n/* otherwise transfer the Work, where such license applies only to those */\n/* patent claims licensable by such contributor that are necessarily */\n/* infringed by their contribution(s) alone or by combination of their */\n/* contribution(s) with the Work to"
-"// LoopingAndRanges/ForWithRanges.kt\n// (c)2020 Mindview LLC. See Copyright.txt for permissions.\n\nfun showRange(r: IntProgression) {\n for (i in r) {\n print(\"$i \")\n }\n print(\" // $r\")\n println()\n}\n\nfun main() {\n showRange(1..5)\n showRange(0 until 5)\n showRange(5 downTo 1) // [1]\n showRange(0..9 step 2) // [2]\n showRange(0 until 10 step 3) // [3]\n showRange(9 downTo 2 step 3)\n}\n/* Output:\n1 2 3 4 5 // 1..5\n0 1 2 3 4 // 0..4\n5 4 3 2 1 // 5 downTo 1 step 1\n0 2 4 6 8 // 0..8 step 2\n0 3 6 9 // 0..9 step 3\n9 6 3 // 9 downTo 3 step 3\n*/"
-"/*\n * Gamedev Framework (gf)\n * Copyright (C) 2016-2019 Julien Bernard\n *\n * This software is provided 'as-is', without any express or implied\n * warranty. In no event will the authors be held liable for any damages\n * arising from the use of this software.\n *\n * Permission is granted to anyone to use this software for any purpose,\n * including commercial applications, and to alter it and redistribute it\n * freely, subject to the following restrictions:\n *\n * 1. The origin of this software must not be misrepresented; you must not\n * claim that you wrote the original software. If you use this software\n * in a product, an acknowledgment in the product documentation would be\n * appreciated but is not required.\n * 2. Altered source versions must be plainly marked as such, and must not be\n * misrepresented as being the original software.\n * 3. This notice may not be removed or altered from any source distribution.\n */\n#include \n\n#include \n#include \n\n#include \n\nnamespace gf {\n#ifndef DOXYGEN_SHOULD_SKIP_THIS\ninline namespace v1 {\n#endif\n\n Serializer& operator|(Serializer& ar, bool data) {\n ar.writeBoolean(data);\n return ar;\n }\n\n Serializer& operator|(Serializer& ar, char data) {\n ar.writeChar(data);\n return ar;\n }\n\n Serializer& operator|(Serializer&"
-"/*\n * Copyright 2020, Verizon Media.\n * Licensed under the terms of the Apache 2.0 license.\n * Please see LICENSE file in the project root for terms.\n */\n\npackage com.yahoo.oak;\n\nimport org.junit.Test;\n\n\npublic class MemoryReleaseTest {\n\n @Test(timeout = 300_000)\n public void testByteBuffersReleased() {\n// System.gc();\n// String val = String.format(\"-%016000d\", 0);\n//\n// OakMapBuilder builder = new OakMapBuilder()\n// .setChunkMaxItems(1024)\n// .setChunkBytesPerItem(4096)\n// .setKeySerializer(new StringSerializer())\n// .setValueSerializer(new StringSerializer())\n// .setComparator(new StringComparator())\n// .setMinKey(\"\");\n// OakMap oak = builder.build();\n//\n// int firstIteration = 0;\n// try {\n// while (true) {\n// String key = String.format(\"-%01024d\", firstIteration++);\n// oak.put(key, val);\n// }\n// } catch (OutOfMemoryError e) {\n//\n// }\n//\n// oak.close();\n//\n// int secondIteration = 0;\n// oak = builder.build();\n// System.gc();\n//\n// try {\n// while (true) {\n// String key = String.format(\"-%01024d\", secondIteration++);\n// oak.put(key, val);\n// }\n// } catch (OutOfMemoryError e) {\n//\n// }\n// assert(firstIteration <= secondIteration);\n// oak.close();\n// System.gc();\n }\n\n}"
-"/*\nBullet Continuous Collision Detection and Physics Library\nCopyright (c) 2003-2006 Erwin Coumans http://continuousphysics.com/Bullet/\n\nThis software is provided 'as-is', without any express or implied warranty.\nIn no event will the authors be held liable for any damages arising from the use of this software.\nPermission is granted to anyone to use this software for any purpose, \nincluding commercial applications, and to alter it and redistribute it freely, \nsubject to the following restrictions:\n\n1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required.\n2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software.\n3. This notice may not be removed or altered from any source distribution.\n*/\n\n#ifndef BT_MANIFOLD_CONTACT_POINT_H\n#define BT_MANIFOLD_CONTACT_POINT_H\n\n#include \"LinearMath/btVector3.h\"\n#include \"LinearMath/btTransformUtil.h\"\n\n#ifdef PFX_USE_FREE_VECTORMATH\n#include \"physics_effects/base_level/solver/pfx_constraint_row.h\"\ntypedef sce::PhysicsEffects::PfxConstraintRow btConstraintRow;\n#else\n// Don't change following order of parameters\nATTRIBUTE_ALIGNED16(struct)\nbtConstraintRow\n{\n\tbtScalar m_normal[3];\n\tbtScalar m_rhs;\n\tbtScalar m_jacDiagInv;\n\tbtScalar m_lowerLimit;\n\tbtScalar m_upperLimit;\n\tbtScalar m_accumImpulse;\n};\ntypedef btConstraintRow PfxConstraintRow;\n#endif //PFX_USE_FREE_VECTORMATH\n\nenum btContactPointFlags\n{\n\tBT_CONTACT_FLAG_LATERAL_FRICTION_INITIALIZED = 1,\n\tBT_CONTACT_FLAG_HAS_CONTACT_CFM = 2,"
-"/* GdkMacosCairoSubview.h\n *\n * Copyright \u00a9 2020 Red Hat, Inc.\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. If not, see .\n *\n * SPDX-License-Identifier: LGPL-2.1-or-later\n */\n\n#include \n\n#define GDK_IS_MACOS_CAIRO_SUBVIEW(obj) ((obj) && [obj isKindOfClass:[GdkMacosCairoSubview class]])\n\n@interface GdkMacosCairoSubview : NSView\n{\n BOOL _isOpaque;\n cairo_surface_t *cairoSurface;\n}\n\n-(void)setOpaque:(BOOL)opaque;\n-(void)setCairoSurface:(cairo_surface_t *)cairoSurface\n withDamage:(cairo_region_t *)region;\n\n@end"
-"// This may look like C code, but it's really -*- C++ -*-\n/*\n * Copyright (C) 2010 Emweb bv, Herent, Belgium.\n *\n * See the LICENSE file for terms of use.\n */\n#include \n\n#include \n#include \n\nBOOST_AUTO_TEST_CASE(money_test)\n{\n {\n Wt::Payment::Money v1 = Wt::Payment::Money(13, 67, \"EUR\");\n Wt::Payment::Money v2 = Wt::Payment::Money(2, 75, \"EUR\");\n Wt::Payment::Money v3 = Wt::Payment::Money(4, 1, \"EUR\");\n double d = 100.9;\n\n BOOST_REQUIRE(v1.toString() == \"13.67\");\n BOOST_REQUIRE(v3.toString() == \"4.01\");\n\n BOOST_REQUIRE((v1 + v2).toString() == \"16.42\");\n BOOST_REQUIRE((v1 - v2).toString() == \"10.92\");\n BOOST_REQUIRE((v1 * d).toString() == \"1379.30\");\n BOOST_REQUIRE((v1 / d).toString() == \"0.13\");\n BOOST_REQUIRE((v3 * d).toString() == \"404.60\");\n\n Wt::Payment::Money v4 = (v1 + v2);\n v1+= v2;\n v2*= 8.1;\n BOOST_REQUIRE(v1.toString() == v4.toString());\n BOOST_REQUIRE(v2.toString() == \"22.27\");\n\n v2/= 8.1;\n //test - rounding error.\n BOOST_REQUIRE(v2.toString() == \"2.74\");\n }\n\n}"
-"/*\n * Copyright (C) 2010 Moduad Co., Ltd.\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 along\n * with this program; if not, write to the Free Software Foundation, Inc.,\n * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n */\npackage org.androidpn.server.xmpp.router;\n\nimport org.xmpp.packet.IQ;\nimport org.xmpp.packet.Message;\nimport org.xmpp.packet.Packet;\nimport org.xmpp.packet.Presence;\n\n/** \n * This class is to handle incoming packets and route them to their corresponding handler.\n *\n * @author Sehwan Noh (devnoh@gmail.com)\n */\npublic class PacketRouter {\n\n private MessageRouter messageRouter;\n\n private PresenceRouter presenceRouter;\n\n private IQRouter iqRouter;\n\n /**\n * Constructor. \n */\n public PacketRouter() {\n messageRouter = new MessageRouter();\n presenceRouter = new PresenceRouter();\n iqRouter = new"
-"// RTTI support for -*- C++ -*-\n// Copyright (C) 1994-2020 Free Software Foundation, Inc.\n//\n// This file is part of GCC.\n//\n// GCC 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, or (at your option)\n// any later version.\n//\n// GCC 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// Under Section 7 of GPL version 3, you are granted additional\n// permissions described in the GCC Runtime Library Exception, version\n// 3.1, as published by the Free Software Foundation.\n\n// You should have received a copy of the GNU General Public License and\n// a copy of the GCC Runtime Library Exception along with this program;\n// see the files COPYING3 and COPYING.RUNTIME respectively. If not, see\n// .\n\n/** @file typeinfo\n * This is a Standard C++ Library header.\n */\n\n#ifndef _TYPEINFO\n#define _TYPEINFO\n\n#pragma GCC system_header\n\n#include "
-"# Description\n\nAutoSave - automatically saves changes to disk without having to use `:w`\n(or any binding to it) every time a buffer has been modified or based on your\npreferred events.\n\nInspired by the same feature in RubyMine text editor.\n\nBy default AutoSave will save every time something has been changed in normal\nmode and when the user leaves insert mode. This configuration is a mix between\n\"save as often as possible\" and \"try to avoid breaking other plugins that depend\non filewrite-events\".\n\n\n# Installation\n\nUse [vundle](https://github.com/gmarik/vundle) or\ndownload [packaged version](http://www.vim.org/scripts/script.php?script_id=4521)\nfrom vim.org.\n\n\n# Usage\n\nAutoSave is disabled by default, run `:AutoSaveToggle` to enable/disable it.\n\n\n# Options\n\n## Enable on Startup\n\nIf you want the plugin to be enabled on startup use the `g:auto_save` option.\n\n```VimL\n\" .vimrc\nlet g:auto_save = 1 \" enable AutoSave on Vim startup\n```\n\nIt's also possible to override global `g:auto_save` value individually per buffer or window. For example, if you have auto save enabled globally, you can opt out some files. And vice versa, opt in some files, when you have auto save disabled globally.\n\n```vim\nlet g:auto_save = 0\naugroup ft_markdown\n au!\n au FileType markdown let b:auto_save = 1\naugroup END\n```"
-"/*****************************************************************************\n Copyright (c) 2014, Intel Corp.\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 * Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n * Neither the name of Intel Corporation nor the names of its contributors\n may be used to endorse or promote products derived from this software\n 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 COPYRIGHT OWNER 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"
-"var openParentheses = \"(\".charCodeAt(0);\nvar closeParentheses = \")\".charCodeAt(0);\nvar singleQuote = \"'\".charCodeAt(0);\nvar doubleQuote = '\"'.charCodeAt(0);\nvar backslash = \"\\\\\".charCodeAt(0);\nvar slash = \"/\".charCodeAt(0);\nvar comma = \",\".charCodeAt(0);\nvar colon = \":\".charCodeAt(0);\nvar star = \"*\".charCodeAt(0);\n\nmodule.exports = function(input) {\n var tokens = [];\n var value = input;\n\n var next, quote, prev, token, escape, escapePos, whitespacePos;\n var pos = 0;\n var code = value.charCodeAt(pos);\n var max = value.length;\n var stack = [{ nodes: tokens }];\n var balanced = 0;\n var parent;\n\n var name = \"\";\n var before = \"\";\n var after = \"\";\n\n while (pos < max) {\n // Whitespaces\n if (code <= 32) {\n next = pos;\n do {\n next += 1;\n code = value.charCodeAt(next);\n } while (code <= 32);\n token = value.slice(pos, next);\n\n prev = tokens[tokens.length - 1];\n if (code === closeParentheses && balanced) {\n after = token;\n } else if (prev && prev.type === \"div\") {\n prev.after = token;\n } else if (\n code === comma ||\n code === colon ||\n (code === slash && value.charCodeAt(next + 1) !== star)\n ) {\n before = token;\n } else {\n tokens.push({\n type: \"space\",\n sourceIndex: pos,\n value: token\n });\n }\n\n pos = next;\n\n // Quotes\n } else if (code ==="
-"var assert = require(\"assert\");\nvar path = require(\"path\");\nvar Q = require(\"q\");\nvar fs = require(\"graceful-fs\");\nvar util = require(\"./util\");\nvar readdir = Q.denodeify(fs.readdir);\nvar lstat = Q.denodeify(fs.lstat);\n\nfunction processDirP(pattern, dir) {\n return readdir(dir).then(function(files) {\n return Q.all(files.map(function(file) {\n file = path.join(dir, file);\n return lstat(file).then(function(stat) {\n return stat.isDirectory()\n ? processDirP(pattern, file)\n : processFileP(pattern, file);\n });\n })).then(function(results) {\n return util.flatten(results);\n });\n });\n}\n\nfunction processFileP(pattern, file) {\n return util.readFileP(file).then(function(contents) {\n var result = new RegExp(pattern, 'g').exec(contents);\n return result ? [{\n path: file,\n match: result[0]\n }] : [];\n });\n}\n\nmodule.exports = function(pattern, sourceDir) {\n assert.strictEqual(typeof pattern, \"string\");\n\n return processDirP(pattern, sourceDir).then(function(results) {\n var pathToMatch = {};\n\n results.forEach(function(result) {\n pathToMatch[path.relative(\n sourceDir,\n result.path\n ).split(\"\\\\\").join(\"/\")] = result.match;\n });\n \n return pathToMatch;\n });\n};"
-"version: \"1.4.1\"\nname: SimplePing\nid: simpleping\npublisher: Xamarin Inc\npublisher-url: https://xamarin.com\nsrc-url: https://github.com/xamarin/XamarinComponents/tree/master/iOS/SimplePing\nsummary: Easily open a special, non-privileged ICMP socket that allows you to send and receive pings.\nlicense: ../License.md\nicons:\n - ../images/icon_128x128.png\n - ../images/icon_512x512.png\n\nno_build: true\nis_shell: true\nlibraries:\n ios-unified: ../output/Xamarin.SimplePing.iOS.dll\n mac-unified: ../output/Xamarin.SimplePing.Mac.dll\n tvos: ../output/Xamarin.SimplePing.tvOS.dll\nlocal-nuget-repo: ../output\npackages:\n ios-unified: Xamarin.SimplePing, Version=1.4.1\n mac-unified: Xamarin.SimplePing, Version=1.4.1\n tvos: Xamarin.SimplePing, Version=1.4.1\n\nsamples:\n - name: \"iOS Sample\"\n path: ../samples/SimplePingSample.iOS/SimplePingSample.iOS.sln\n removeProjects:\n - Xamarin.SimplePing\n - Xamarin.SimplePing.iOS\n installNuGets:\n - project: SimplePingSample.iOS\n packages:\n - Xamarin.SimplePing\n - name: \"macOS Sample\"\n path: ../samples/SimplePingSample.Mac/SimplePingSample.Mac.sln\n removeProjects:\n - Xamarin.SimplePing\n - Xamarin.SimplePing.Mac\n installNuGets:\n - project: SimplePingSample.Mac\n packages:\n - Xamarin.SimplePing\n\nadditional-files:\n - source: \"../External-Dependency-Info.txt\"\n destination: \"THIRD-PARTY-NOTICES.txt\""
-"'''\nCreated on April 14, 2011\n\n@author: Mark V Systems Limited\n(c) Copyright 2011 Mark V Systems Limited, All rights reserved.\n'''\ntry:\n import regex as re\nexcept ImportError:\n import re\n\ndef attrValue(str, name):\n # retrieves attribute in a string, such as xyz=\"abc\" or xyz='abc' or xyz=abc; \n prestuff, matchedName, valuePart = str.lower().partition(\"charset\")\n value = []\n endSep = None\n beforeEquals = True\n for c in valuePart:\n if value:\n if c == endSep or c.isspace() or c in (';'):\n break\n value.append(c)\n elif beforeEquals:\n if c == '=':\n beforeEquals = False\n else:\n if c in ('\"', \"'\"):\n endSep = c\n elif c == ';':\n break\n elif not c.isspace():\n value.append(c)\n return ''.join(value)"
-"The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE."
-"/*\n * Copyright 2015, The Querydsl Team (http://www.querydsl.com/team)\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 * http://www.apache.org/licenses/LICENSE-2.0\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.querydsl.core.testutil;\n\npublic interface SQLServer extends ExternalDatabase {\n}"
-"/*\n * Copyright 2010-2016 JetBrains s.r.o.\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 test;\n\nimport org.junit.Test;\n\nimport static junit.framework.Assert.assertEquals;\nimport java.lang.reflect.Modifier;\n\npublic class AllOpenSimpleTest {\n\n @Test\n public void greeting() {\n assertEquals(false, Modifier.isFinal(OpenClass.class.getModifiers()));\n assertEquals(true, Modifier.isFinal(ClosedClass.class.getModifiers()));\n }\n}"
-"SUMMARY = \"OpenFlow communications protocol\"\nDESCRIPTION = \"\\\nOpen standard that enables researchers to run experimental protocols in \\\ncontained networks. OpenFlow is a communications interface between \\\ncontrol and forwarding planes of a software-defined networking architecture.\\\n\"\nHOMEPAGE = \"http://www.openflow.org\"\n\nSECTION = \"net\"\nLICENSE = \"GPLv2\"\n\nLIC_FILES_CHKSUM = \"file://COPYING;md5=e870c934e2c3d6ccf085fd7cf0a1e2e2\"\n\nSRC_URI = \"git://gitosis.stanford.edu/openflow.git;protocol=git\"\n\nDEPENDS = \"virtual/libc\"\n\nPACKAGECONFIG ??= \"openssl\"\nPACKAGECONFIG[openssl] = \"--enable-ssl,--disable-ssl, openssl openssl-native, libssl\"\n\nEXTRA_OECONF += \" \\\n KARCH=${TARGET_ARCH} \\\n ${@bb.utils.contains('PACKAGECONFIG', 'openssl', 'SSL_LIBS=\"-lssl -lcrypto\"', '', d)} \\\n \"\n\nS = \"${WORKDIR}/git\"\n\ninherit autotools-brokensep pkgconfig\n\ndo_configure_prepend() {\n ./boot.sh\n}\n\ndo_install_append() {\n # Remove /var/run as it is created on startup\n rm -rf ${D}${localstatedir}/run\n}"
-"#!/usr/bin/env python\n\n# Copyright (c) 2012 Google Inc. All rights reserved.\n# Use of this source code is governed by a BSD-style license that can be\n# found in the LICENSE file.\n\n\"\"\"Make the format of a vcproj really pretty.\n\n This script normalize and sort an xml. It also fetches all the properties\n inside linked vsprops and include them explicitly in the vcproj.\n\n It outputs the resulting xml to stdout.\n\"\"\"\n\n__author__ = 'nsylvain (Nicolas Sylvain)'\n\nimport os\nimport sys\n\nfrom xml.dom.minidom import parse\nfrom xml.dom.minidom import Node\n\nREPLACEMENTS = dict()\nARGUMENTS = None\n\n\nclass CmpTuple(object):\n \"\"\"Compare function between 2 tuple.\"\"\"\n def __call__(self, x, y):\n return cmp(x[0], y[0])\n\n\nclass CmpNode(object):\n \"\"\"Compare function between 2 xml nodes.\"\"\"\n\n def __call__(self, x, y):\n def get_string(node):\n node_string = \"node\"\n node_string += node.nodeName\n if node.nodeValue:\n node_string += node.nodeValue\n\n if node.attributes:\n # We first sort by name, if present.\n node_string += node.getAttribute(\"Name\")\n\n all_nodes = []\n for (name, value) in node.attributes.items():\n all_nodes.append((name, value))\n\n all_nodes.sort(CmpTuple())\n for (name, value) in all_nodes:\n node_string += name\n node_string += value\n\n return node_string\n\n return cmp(get_string(x), get_string(y))\n\n\ndef PrettyPrintNode(node, indent=0):\n if node.nodeType == Node.TEXT_NODE:\n if node.data.strip():\n print '%s%s' % (' '*indent, node.data.strip())\n return\n\n if node.childNodes:\n node.normalize()\n # Get the number of attributes\n attr_count ="
-"/*\n * RV40 decoder\n * Copyright (c) 2007 Konstantin Shishkov\n *\n * This file is part of FFmpeg.\n *\n * FFmpeg 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.1 of the License, or (at your option) any later version.\n *\n * FFmpeg 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 FFmpeg; if not, write to the Free Software\n * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n */\n\n/**\n * @file\n * RV40 decoder\n */\n\n#include \"libavutil/imgutils.h\"\n\n#include \"avcodec.h\"\n#include \"mpegutils.h\"\n#include \"mpegvideo.h\"\n#include \"golomb.h\"\n\n#include \"rv34.h\"\n#include \"rv40vlc2.h\"\n#include \"rv40data.h\"\n\nstatic VLC aic_top_vlc;\nstatic VLC aic_mode1_vlc[AIC_MODE1_NUM], aic_mode2_vlc[AIC_MODE2_NUM];\nstatic VLC ptype_vlc[NUM_PTYPE_VLCS], btype_vlc[NUM_BTYPE_VLCS];\n\nstatic const int16_t mode2_offs[] = {\n 0, 614, 1222, 1794, 2410, 3014, 3586, 4202, 4792, 5382, 5966, 6542,\n 7138, 7716,"
-"+++\ntitle = \"Reports talk:Tasks not implemented in FreeBASIC\"\ndescription = \"\"\ndate = 2016-10-04T22:49:35Z\naliases = []\n[extra]\nid = 21145\n[taxonomies]\ncategories = []\ntags = []\n+++\n\nThis list seems to be rather old (last edited in August 2014). Who can update it? Or will it be updated automatically? --[[User:Lothar Schirm|Lothar Schirm]], 04 October 2016\n\nThe lists update automatic when there is a change.\nBut you must use the correct way to write FreeBASIC in the header tag is FreeBASIC, if it's not correct it will be in red in the list, meaning there is no page for that name. If it's correct it will be in blue and the link to the FreeBASIC page will work. If correct all the list's will be updated (most of the time whitin a minute). The lang tag is not case sensitive, I write it as freebasic (lowercase).--[[User:Frisian|Frisian]] ([[User talk:Frisian|talk]]) 22:49, 4 October 2016 (UTC)"
-"/* LanguageTool, a natural language style checker\n * Copyright (C) 2013 Daniel Naber (http://www.danielnaber.de)\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.1 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; if not, write to the Free Software\n * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301\n * USA\n */\npackage org.languagetool.rules.sl;\n\nimport org.junit.Test;\nimport org.languagetool.rules.patterns.PatternRuleTest;\n\nimport java.io.IOException;\n\npublic class SlovenianPatternRuleTest extends PatternRuleTest {\n\n @Test\n public void testRules() throws IOException {\n runGrammarRulesFromXmlTest();\n }\n\n}"
-"/*\n SDL - Simple DirectMedia Layer\n Copyright (C) 2008 Edgar Simo\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.1 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; if not, write to the Free Software\n Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\n\n Sam Lantinga\n slouken@libsdl.org\n*/\n#include \"SDL_config.h\"\n\n#if defined(SDL_HAPTIC_DUMMY) || defined(SDL_HAPTIC_DISABLED)\n\n#include \"SDL_haptic.h\"\n#include \"../SDL_syshaptic.h\"\n\n\nstatic int\nSDL_SYS_LogicError(void)\n{\n SDL_SetError(\"Logic error: No haptic devices available.\");\n return 0;\n}\n\n\nint\nSDL_SYS_HapticInit(void)\n{\n return 0;\n}\n\n\nconst char *\nSDL_SYS_HapticName(int index)\n{\n SDL_SYS_LogicError();\n return NULL;\n}\n\n\nint\nSDL_SYS_HapticOpen(SDL_Haptic * haptic)\n{\n SDL_SYS_LogicError();\n return -1;\n}\n\n\nint\nSDL_SYS_HapticMouse(void)\n{\n return -1;\n}\n\n\nint\nSDL_SYS_JoystickIsHaptic(SDL_Joystick * joystick)\n{\n return 0;\n}\n\n\nint\nSDL_SYS_HapticOpenFromJoystick(SDL_Haptic * haptic, SDL_Joystick * joystick)"
-"\n\n\n\n \n \n \n \n \n\n\n
\n You've reached the default home page. \n It can be easily overridden by providing a Controller mapped to \"/\"\n\n \n
\n\n\n\n"
-"# Copyright 2020 The Magma Authors.\n\n# This source code is licensed under the BSD-style license found in the\n# LICENSE file in the root directory of this source tree.\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[Unit]\nDescription=Magma s6a_proxy cloud service\n\n[Service]\nType=simple\nExecStart=/usr/bin/envdir /var/opt/magma/envdir /var/opt/magma/bin/s6a_proxy -logtostderr=true -v=0\nStandardOutput=syslog\nStandardError=syslog\nSyslogIdentifier=s6a_proxy\nUser=root\nRestart=always\nRestartSec=1s\nStartLimitInterval=0\nMemoryLimit=300M\n\n[Install]\nWantedBy=multi-user.target"
-"// Copyright Benoit Blanchon 2014-2015\n// MIT License\n//\n// Arduino JSON library\n// https://github.com/bblanchon/ArduinoJson\n\n#include \"../../include/ArduinoJson/Internals/List.hpp\"\n\n#include \"../../include/ArduinoJson/JsonPair.hpp\"\n#include \"../../include/ArduinoJson/JsonVariant.hpp\"\n\nusing namespace ArduinoJson;\nusing namespace ArduinoJson::Internals;\n\ntemplate \nsize_t List::size() const {\n size_t nodeCount = 0;\n for (node_type *node = _firstNode; node; node = node->next) nodeCount++;\n return nodeCount;\n}\n\ntemplate \ntypename List::node_type *List::addNewNode() {\n node_type *newNode = new (_buffer) node_type();\n\n if (_firstNode) {\n node_type *lastNode = _firstNode;\n while (lastNode->next) lastNode = lastNode->next;\n lastNode->next = newNode;\n } else {\n _firstNode = newNode;\n }\n\n return newNode;\n}\n\ntemplate \nvoid List::removeNode(node_type *nodeToRemove) {\n if (!nodeToRemove) return;\n if (nodeToRemove == _firstNode) {\n _firstNode = nodeToRemove->next;\n } else {\n for (node_type *node = _firstNode; node; node = node->next)\n if (node->next == nodeToRemove) node->next = nodeToRemove->next;\n }\n}\n\ntemplate class ArduinoJson::Internals::List;\ntemplate class ArduinoJson::Internals::List;"
-"## Description\n\n This module exploits a race condition and use-after-free in the\n `packet_set_ring` function in `net/packet/af_packet.c` (`AF_PACKET`) in\n the Linux kernel to execute code as `root` (CVE-2016-8655).\n\n The bug was initially introduced in 2011 and patched in 2016 in version\n 4.4.0-53.74, potentially affecting a large number of kernels; however\n this exploit targets only systems using Ubuntu (Trusty / Xenial) kernels\n 4.4.0 < 4.4.0-53, including Linux distros based on Ubuntu, such as\n Linux Mint.\n\n The target system must have unprivileged user namespaces enabled,\n two or more CPU cores, and SMAP must be disabled.\n\n Bypasses for SMEP and KASLR are included. Failed exploitation\n may crash the kernel.\n\n\n## Vulnerable Application\n\n This module has been tested successfully on:\n\n * Linux Mint 17.3 (x86_64)\n * Linux Mint 18 (x86_64)\n * Ubuntu 16.04.2 (x86_64)\n\n With kernel versions:\n\n * 4.4.0-45-generic\n * 4.4.0-51-generic\n\n\n## Verification Steps\n\n 1. Start `msfconsole`\n 2. Get a session\n 3. `use exploit/linux/local/af_packet_chocobo_root_priv_esc`\n 4. `set SESSION [SESSION]`\n 5. `check`\n 6. `run`\n 7. You should get a new *root* session\n\n\n## Options\n\n **SESSION**\n\n Which session to use, which can be viewed with `sessions`\n\n **WritableDir**\n\n A writable directory file system path. (default: `/tmp`)\n\n **TIMEOUT**\n\n Race timeout (seconds). (default: `600`)\n\n **COMPILE**\n\n Options: `Auto` `True` `False` (default: `Auto`)"
-"\n\n\t\n\t\tCSS Reftest Reference: Flexbox direction and wrapping\n\t \n\t \n\t \n\t\t\n\t\n\t\n\t\t
The test passes if there is a 3x3 grid of green squares, numbered 1-9 left-to-right and top-to-bottom, and there is no red.
\n\t\t
\n\t\t\t
1
2
3
4
5
6
7
8
9
\n\t\t
\n\t\n"
-"\ufeff// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.\n\nusing StarkPlatform.Compiler.Diagnostics;\nusing StarkPlatform.Compiler.Formatting;\nusing StarkPlatform.Compiler.Text;\n\n#if CODE_STYLE\nusing FormatterState = StarkPlatform.Compiler.Formatting.ISyntaxFormattingService;\n#else\nusing StarkPlatform.Compiler.Options;\nusing FormatterState = StarkPlatform.Compiler.Workspace;\n#endif\n\nnamespace StarkPlatform.Compiler.CodeStyle\n{\n internal static class FormattingAnalyzerHelper\n {\n internal static void AnalyzeSyntaxTree(SyntaxTreeAnalysisContext context, FormatterState formatterState, DiagnosticDescriptor descriptor, OptionSet options)\n {\n var tree = context.Tree;\n var cancellationToken = context.CancellationToken;\n\n var oldText = tree.GetText(cancellationToken);\n var formattingChanges = Formatter.GetFormattedTextChanges(tree.GetRoot(cancellationToken), formatterState, options, cancellationToken);\n\n // formattingChanges could include changes that impact a larger section of the original document than\n // necessary. Before reporting diagnostics, process the changes to minimize the span of individual\n // diagnostics.\n foreach (var formattingChange in formattingChanges)\n {\n var change = formattingChange;\n if (change.NewText.Length > 0 && !change.Span.IsEmpty)\n {\n // Handle cases where the change is a substring removal from the beginning. In these cases, we want\n // the diagnostic span to cover the unwanted leading characters (which should be removed), and\n // nothing more.\n var offset = change.Span.Length - change.NewText.Length;\n if (offset >= 0)\n {\n if (oldText.GetSubText(new TextSpan(change.Span.Start + offset, change.NewText.Length)).ContentEquals(SourceText.From(change.NewText)))\n {\n change = new TextChange(new TextSpan(change.Span.Start, offset), \"\");\n }\n else\n {\n // Handle cases where the change"
-"/**\n ******************************************************************************\n * @file stm32f4xx_hal_pcd.h\n * @author MCD Application Team\n * @version V1.7.1\n * @date 14-April-2017\n * @brief Header file of PCD HAL module.\n ******************************************************************************\n * @attention\n *\n *
\n *\n * Redistribution and use in source and binary forms, with or without modification,\n * are permitted provided that the following conditions are met:\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 STMicroelectronics nor the names of its contributors\n * may be used to endorse or promote products derived from this software\n * 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 ARE\n * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\n * FOR ANY DIRECT, INDIRECT, INCIDENTAL,"
-"#~# ORIGINAL\n\nx = 1\n xyz = 2\n\n w = 3\n\n#~# EXPECTED\nx = 1\nxyz = 2\n\nw = 3\n\n#~# ORIGINAL\n\nx = 1\n foo[bar] = 2\n\n w = 3\n\n#~# EXPECTED\nx = 1\nfoo[bar] = 2\n\nw = 3\n\n#~# ORIGINAL\n\nx = 1; x = 2\n xyz = 2\n\n w = 3\n\n#~# EXPECTED\nx = 1; x = 2\nxyz = 2\n\nw = 3\n\n#~# ORIGINAL\n\na = begin\n b = 1\n abc = 2\n end\n\n#~# EXPECTED\na = begin\n b = 1\n abc = 2\n end\n\n#~# ORIGINAL\n\na = 1\n a += 2\n\n#~# EXPECTED\na = 1\na += 2\n\n#~# ORIGINAL\n\nfoo = 1\n a += 2\n\n#~# EXPECTED\nfoo = 1\na += 2\n\n#~# ORIGINAL\n\nx = 1\n xyz = 2\n\n w = 3\n\n#~# EXPECTED\nx = 1\nxyz = 2\n\nw = 3"
-"package flatmap\n\nimport (\n\t\"fmt\"\n\t\"reflect\"\n)\n\n// Flatten takes a structure and turns into a flat map[string]string.\n//\n// Within the \"thing\" parameter, only primitive values are allowed. Structs are\n// not supported. Therefore, it can only be slices, maps, primitives, and\n// any combination of those together.\n//\n// See the tests for examples of what inputs are turned into.\nfunc Flatten(thing map[string]interface{}) Map {\n\tresult := make(map[string]string)\n\n\tfor k, raw := range thing {\n\t\tflatten(result, k, reflect.ValueOf(raw))\n\t}\n\n\treturn Map(result)\n}\n\nfunc flatten(result map[string]string, prefix string, v reflect.Value) {\n\tif v.Kind() == reflect.Interface {\n\t\tv = v.Elem()\n\t}\n\n\tswitch v.Kind() {\n\tcase reflect.Bool:\n\t\tif v.Bool() {\n\t\t\tresult[prefix] = \"true\"\n\t\t} else {\n\t\t\tresult[prefix] = \"false\"\n\t\t}\n\tcase reflect.Int:\n\t\tresult[prefix] = fmt.Sprintf(\"%d\", v.Int())\n\tcase reflect.Map:\n\t\tflattenMap(result, prefix, v)\n\tcase reflect.Slice:\n\t\tflattenSlice(result, prefix, v)\n\tcase reflect.String:\n\t\tresult[prefix] = v.String()\n\tdefault:\n\t\tpanic(fmt.Sprintf(\"Unknown: %s\", v))\n\t}\n}\n\nfunc flattenMap(result map[string]string, prefix string, v reflect.Value) {\n\tfor _, k := range v.MapKeys() {\n\t\tif k.Kind() == reflect.Interface {\n\t\t\tk = k.Elem()\n\t\t}\n\n\t\tif k.Kind() != reflect.String {\n\t\t\tpanic(fmt.Sprintf(\"%s: map key is not string: %s\", prefix, k))\n\t\t}\n\n\t\tflatten(result, fmt.Sprintf(\"%s.%s\", prefix, k.String()), v.MapIndex(k))\n\t}\n}\n\nfunc flattenSlice(result map[string]string, prefix string, v reflect.Value) {"
-"# invokescript Method\n\nReturns the result after passing a script through the VM.\n\n> [!Note]\n>\n> This method is to test your VM script as if they were ran on the blockchain at that point in time. This RPC call does not affect the blockchain in any way.\n\n## Parameter Description\n\nscript: A script runnable by the VM. This is the same script that is carried in InvocationTransaction\n\n## Example\n\nRequest body:\n\n```json\n{\n \"jsonrpc\": \"2.0\",\n \"method\": \"invokescript\",\n \"params\": [\"00046e616d656724058e5e1b6008847cd662728549088a9ee82191\"],\n \"id\": 3\n}\n```\n\nResponse body:\n\n```json\n{\n \"jsonrpc\": \"2.0\",\n \"id\": 3,\n \"result\": {\n \"script\": \"00046e616d656724058e5e1b6008847cd662728549088a9ee82191\",\n \"state\": \"HALT, BREAK\",\n \"gas_consumed\": \"0.161\",\n \"stack\": [\n {\n \"type\": \"ByteArray\",\n \"value\": \"4e45503520474153\"\n }\n ],\n \"tx\": \"d1011b00046e616d656724058e5e1b6008847cd662728549088a9ee82191000000000000000000000000\"\n }\n}\n```"
-"\npackage Paws::ApiGateway::Usage;\n use Moose;\n has EndDate => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'endDate');\n has Items => (is => 'ro', isa => 'Paws::ApiGateway::MapOfKeyUsages', traits => ['NameInRequest'], request_name => 'values');\n has Position => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'position');\n has StartDate => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'startDate');\n has UsagePlanId => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'usagePlanId');\n\n has _request_id => (is => 'ro', isa => 'Str');\n1;\n\n### main pod documentation begin ###\n\n=head1 NAME\n\nPaws::ApiGateway::Usage\n\n=head1 ATTRIBUTES\n\n\n=head2 EndDate => Str\n\nThe ending date of the usage data.\n\n\n=head2 Items => L\n\nThe usage data, as daily logs of used and remaining quotas, over the\nspecified time interval indexed over the API keys in a usage plan. For\nexample, C<{..., \"values\" : { \"{api_key}\" : [ [0, 100], [10, 90], [100,\n10]]}>, where C<{api_key}> stands for an API key value and the daily\nlog entry is of the format C<[used quota, remaining quota]>.\n\n\n=head2 Position => Str\n\n\n\n\n=head2 StartDate => Str\n\nThe starting date of the usage data.\n\n\n=head2 UsagePlanId => Str\n\nThe plan Id associated with"
-"body {\n\tcolor: #333;\n\tfont-family: 'Segoe UI', 'Lucida Grande', Helvetica, sans-serif;\n\tline-height: 1.5;\n\tmargin: 50px auto;\n\tmax-width: 800px;\n}\n\nh1, h2, h3, h4, h5, h6 {\n\tfont-weight: normal;\n\tline-height: 1em;\n\tmargin: 20px 0;\n}\nh1 {\n\tfont-size: 2.25em;\n}\nh2 {\n\tfont-size: 1.75em;\n}\nh3 {\n\tfont-size: 1.5em;\n}\nh4, h5, h6 {\n\tfont-size: 1.25em;\n}\n\na {\n\tcolor: #08C;\n\ttext-decoration: none;\n}\na:hover, a:focus {\n\ttext-decoration: underline;\n}\na:visited {\n\tcolor: #058;\n}\n\nimg {\n\tmax-width: 100%;\n}\n\nli + li {\n\tmargin-top: 3px;\n}\ndt {\n\tfont-weight: bold;\n}\n\ncode {\n\tbackground: #EEE;\n\tfont-family: \"Consolas\", \"Lucida Console\", monospace;\n\tpadding: 1px 5px;\n}\npre {\n\tbackground: #EEE;\n\tpadding: 5px 10px;\n\twhite-space: pre-wrap;\n}\npre code {\n\tpadding: 0;\n}\n\nblockquote {\n\tborder-left: 5px solid #EEE;\n\tmargin: 0;\n\tpadding: 0 10px;\n}\n\ntable {\n\tborder-collapse: collapse;\n\twidth: 100%;\n}\ntable + table {\n\tmargin-top: 1em;\n}\nthead {\n\tbackground: #EEE;\n\ttext-align: left;\n}\nth, td {\n\tborder: 1px solid #EEE;\n\tpadding: 5px 10px;\n}\n\nhr {\n\tbackground: #EEE;\n\tborder: 0;\n\theight: 1px;\n}"
-"# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same license as the PACKAGE package.\n#\n# , 2015.\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version: Django-recaptcha\\n\"\n\"Report-Msgid-Bugs-To: \\n\"\n\"POT-Creation-Date: 2019-01-21 09:40+0200\\n\"\n\"PO-Revision-Date: 2015-03-29 15:13+0200\\n\"\n\"Last-Translator: \\n\"\n\"Language-Team: pbf \\n\"\n\"Language: pl\\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 \"\n\"|| n%100>=20) ? 1 : 2);\\n\"\n\"X-Generator: Lokalize 1.5\\n\"\n\n#: captcha/fields.py:26 captcha/fields.py:27\n#, fuzzy\n#| msgid \"Error verifying input, please try again.\"\nmsgid \"Error verifying reCAPTCHA, please try again.\"\nmsgstr \"B\u0142\u0105d podczas weryfikacji, spr\u00f3buj jeszcze raz.\"\n\n#~ msgid \"Incorrect, please try again.\"\n#~ msgstr \"Pomy\u0142ka, spr\u00f3buj jeszcze raz.\""
-"/*\n * Copyright 2017 StreamSets 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.streamsets.pipeline.stage.destination.couchbase;\n\nimport com.streamsets.pipeline.api.base.BaseEnumChooserValues;\nimport com.streamsets.pipeline.config.DataFormat;\n\npublic class DataFormatChooserValues extends BaseEnumChooserValues {\n\n public DataFormatChooserValues() {\n super(\n DataFormat.AVRO,\n DataFormat.BINARY,\n DataFormat.DELIMITED,\n DataFormat.JSON,\n DataFormat.PROTOBUF,\n DataFormat.SDC_JSON,\n DataFormat.TEXT\n );\n }\n}"
-"Current API Version: 2.0.5\n\nPlease note that the API version is an internal number and does not match release numbers. It is entirely possible that releases will not increase the API version number, and increasing this number too often would burden contrib module maintainers who need to keep up with API changes.\n\nThis file contains a log of changes to the API.\nAPI Version 2.0.6\n Introduce a hook to alter the implementors of a certain api via hook_[ctools_api_hook]_alter.\n\nAPI Version 2.0.5\n Introduce ctools_fields_get_fields_by_type().\n Add language.inc\n Introduce hook_ctools_content_subtype_alter($subtype, $plugin);\n\nAPI Version 2.0.4\n Introduce ctools_form_include_file()\n\nAPI Version 2.0.3\n Introduce ctools_field_invoke_field() and ctools_field_invoke_field_default().\n\nAPI Version 2.0.2\n Introduce ctools_export_crud_load_multiple() and 'load multiple callback' to\n export schema.\n\nAPI Version 2.0.1\n Introduce ctools_export_crud_enable(), ctools_export_crud_disable() and\n ctools_export_crud_set_status() and requisite changes.\n Introduce 'object factory' to export schema, allowing modules to control\n how the exportable objects are instantiated.\n Introduce 'hook_ctools_math_expression_functions_alter'.\n\nAPI Version 2.0\n Remove the deprecated callback-based behavior of the 'defaults' property on\n plugin types; array addition is now the only option. If you need more\n complex logic, do it with the 'process' callback.\n Introduce a global plugin type registration hook and remove the per-plugin\n type magic callbacks.\n Introduce $owner . '_' . $api . '_hook_name' allowing modules to"
-"/*\n * Copyright MapStruct Authors.\n *\n * Licensed under the Apache License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0\n */\npackage org.mapstruct.ap.test.bugs._1594;\n\nimport org.mapstruct.Mapper;\nimport org.mapstruct.Mapping;\nimport org.mapstruct.Mappings;\nimport org.mapstruct.factory.Mappers;\n\n/**\n * @author Filip Hrisafov\n */\n@Mapper\npublic interface Issue1594Mapper {\n\n Issue1594Mapper INSTANCE = Mappers.getMapper( Issue1594Mapper.class );\n\n @Mappings({\n @Mapping(target = \"address.country.oid\", expression = \"java(dto.getFullAddress().split( \\\"-\\\" )[0])\"),\n @Mapping(target = \"address.city.oid\", expression = \"java(dto.getFullAddress().split( \\\"-\\\" )[1])\"),\n })\n Client toClient(Dto dto);\n\n class Client {\n private Address address;\n\n public Address getAddress() {\n return address;\n }\n\n public void setAddress(Address address) {\n this.address = address;\n }\n }\n\n class Address {\n\n private Id country;\n private Id city;\n\n public Id getCountry() {\n return country;\n }\n\n public void setCountry(Id country) {\n this.country = country;\n }\n\n public Id getCity() {\n return city;\n }\n\n public void setCity(Id city) {\n this.city = city;\n }\n }\n\n class Id {\n private String oid;\n\n public String getOid() {\n return oid;\n }\n\n public void setOid(String oid) {\n this.oid = oid;\n }\n }\n\n class Dto {\n private String fullAddress;\n\n public String getFullAddress() {\n return fullAddress;\n }\n\n public void setFullAddress(String fullAddress) {\n this.fullAddress = fullAddress;\n }\n }\n}"
-"/* Copyright 2013 David Axmark\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\thttp://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#ifndef SOAP_H\n#define SOAP_H\n\n#include \n#include \n\nusing namespace MAUtil;\n\nclass SoapListener : public Mtx::XmlListener {\npublic:\n\tvirtual void soapError(int code) = 0;\t//If this is called, the operation stops.\n\tvirtual void soapEnd() = 0;\t//This is called when all of the SOAP body has been parsed.\n};\n\nclass SoapRequest : protected HttpConnectionListener, protected Mtx::MtxListener {\nprivate:\n\tHttpConnection mHttp;\n\n\tvirtual void connWriteFinished(Connection* conn, int result);\n\tvirtual void connRecvFinished(Connection* conn, int result);\n\tvirtual void httpFinished(HttpConnection* http, int result);\n\n\tvirtual void mtxDataRemains(const char* data, int len);\n\tvirtual void mtxEncoding(const char* name);\n\tvirtual void mtxTagStart(const char* name, int len);\n\tvirtual void mtxTagAttr(const char* attrName, const char* attrValue);\n\tvirtual void mtxTagData(const char* data, int len);\n\tvirtual void mtxTagEnd(const char*"
-"#ifndef SLANG_CORE_TYPE_TRAITS_H\n#define SLANG_CORE_TYPE_TRAITS_H\n\nnamespace Slang\n{\n\tstruct TraitResultYes\n\t{\n\t\tchar x;\n\t};\n\tstruct TraitResultNo\n\t{\n\t\tchar x[2];\n\t};\n\n\ttemplate \n\tstruct IsBaseOfTraitHost\n\t{\n\t\toperator B*() const { return nullptr; }\n\t\toperator D*() { return nullptr; }\n\t};\n\n\ttemplate \n\tstruct IsBaseOf\n\t{\n\t\ttemplate \n\t\tstatic TraitResultYes Check(D*, T) { return TraitResultYes(); }\n\t\tstatic TraitResultNo Check(B*, int) { return TraitResultNo(); }\n\t\tenum { Value = sizeof(Check(IsBaseOfTraitHost(), int())) == sizeof(TraitResultYes) };\n\t};\n\n\ttemplate\n\tstruct EnableIf {};\n\n\ttemplate\n\tstruct EnableIf { typedef T type; };\n\n\ttemplate \n\tstruct IsConvertible\n\t{\n\t\tstatic TraitResultYes Use(B) { return TraitResultYes(); };\n\t\tstatic TraitResultNo Use(...) { return TraitResultNo(); };\n\t\tenum { Value = sizeof(Use(*(D*)(nullptr))) == sizeof(TraitResultYes) };\n\t};\n}\n\n#endif"
-"\n * @license http://opensource.org/licenses/mit-license.php MIT\n *\n * @link http://www.ppi.io\n */\n\nnamespace PPI\\FrameworkTest\\ServiceManager\\Fixtures;\n\nuse stdClass;\nuse Zend\\ServiceManager\\AbstractFactoryInterface;\nuse Zend\\ServiceManager\\MutableCreationOptionsInterface;\nuse Zend\\ServiceManager\\ServiceLocatorInterface;\n\n/**\n * Class AbstractFactoryWithMutableCreationOptions.\n *\n * @author V\u00edtor Brand\u00e3o \n */\nclass AbstractFactoryWithMutableCreationOptions implements AbstractFactoryInterface, MutableCreationOptionsInterface\n{\n /**\n * @param \\Zend\\ServiceManager\\ServiceLocatorInterface $serviceLocator\n * @param $name\n * @param $requestedName\n *\n * @return bool\n */\n public function canCreateServiceWithName(ServiceLocatorInterface $serviceLocator, $name, $requestedName)\n {\n return true;\n }\n\n /**\n * @param \\Zend\\ServiceManager\\ServiceLocatorInterface $serviceLocator\n * @param $name\n * @param $requestedName\n *\n * @return \\stdClass\n */\n public function createServiceWithName(ServiceLocatorInterface $serviceLocator, $name, $requestedName)\n {\n return new stdClass();\n }\n\n public function setCreationOptions(array $options)\n {\n $this->options = $options;\n }\n}"
-"/*\n * File macho_module.c - processing of Mach-O files\n * Originally based on elf_module.c\n *\n * Copyright (C) 1996, Eric Youngdale.\n * 1999-2007 Eric Pouech\n * 2009 Ken Thomases, CodeWeavers Inc.\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.1 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; if not, write to the Free Software\n * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA\n */\n\n#include \"config.h\"\n#include \"wine/port.h\"\n\n#ifdef HAVE_MACH_O_LOADER_H\n#include \n#define LoadResource mac_LoadResource\n#define GetCurrentThread mac_GetCurrentThread\n#include \n#undef LoadResource\n#undef GetCurrentThread\n#endif\n\n#include \n#include \n#include \n#include \n#ifdef HAVE_SYS_STAT_H\n# include \n#endif\n#ifdef HAVE_SYS_MMAN_H\n#"
-"{ stdenv, fetchurl, libogg, pkgconfig }:\n\nstdenv.mkDerivation rec {\n name = \"liboggz-1.1.1\";\n\n src = fetchurl {\n url = \"http://downloads.xiph.org/releases/liboggz/${name}.tar.gz\";\n sha256 = \"0nj17lhnsw4qbbk8jy4j6a78w6v2llhqdwq46g44mbm9w2qsvbvb\";\n };\n\n propagatedBuildInputs = [ libogg ];\n\n nativeBuildInputs = [ pkgconfig ];\n\n meta = with stdenv.lib; {\n homepage = \"https://xiph.org/oggz/\";\n description = \"A C library and tools for manipulating with Ogg files and streams\";\n longDescription = ''\n Oggz comprises liboggz and the tool oggz, which provides commands to\n inspect, edit and validate Ogg files. The oggz-chop tool can also be used\n to serve time ranges of Ogg media over HTTP by any web server that\n supports CGI.\n\n liboggz is a C library for reading and writing Ogg files and streams. It\n offers various improvements over the reference libogg, including support\n for seeking, validation and timestamp interpretation. Ogg is an\n interleaving data container developed by Monty at Xiph.Org, originally to\n support the Ogg Vorbis audio format but now used for many free codecs\n including Dirac, FLAC, Speex and Theora.'';\n platforms = platforms.unix;\n license = licenses.bsd3;\n };\n}"
-"STARTFONT 2.1\nFONT -t-cherry-Bold-R-Normal--10-100-75-75-C-100-ISO8859-1\nSIZE 10 75 75\nFONTBOUNDINGBOX 6 10 0 -2\nSTARTPROPERTIES 14\nPOINT_SIZE 100\nPIXEL_SIZE 10\nRESOLUTION_X 75\nRESOLUTION_Y 75\nAVERAGE_WIDTH 100\nSPACING \"C\"\n_GBDFED_INFO \"Edited with gbdfed 1.6.\"\nCHARSET_ENCODING \"1\"\nCHARSET_REGISTRY \"ISO8859\"\nFOUNDRY \"t\"\nFAMILY_NAME \"cherry\"\nFONT_DESCENT 2\nFONT_ASCENT 8\nWEIGHT_NAME \"Bold\"\nENDPROPERTIES\nCHARS 192\nSTARTCHAR char0\nENCODING 0\nSWIDTH 576 0\nDWIDTH 6 0\nBBX 6 10 0 -2\nBITMAP\nFC\nFC\nFC\nFC\nFC\nFC\nFC\nFC\nFC\nFC\nENDCHAR\nSTARTCHAR char32\nENCODING 32\nSWIDTH 576 0\nDWIDTH 6 0\nBBX 6 10 0 -2\nBITMAP\n00\n00\n00\n00\n00\n00\n00\n00\n00\n00\nENDCHAR\nSTARTCHAR char33\nENCODING 33\nSWIDTH 576 0\nDWIDTH 6 0\nBBX 6 10 0 -2\nBITMAP\n00\n30\n30\n30\n30\n00\n30\n30\n00\n00\nENDCHAR\nSTARTCHAR char34\nENCODING 34\nSWIDTH 576 0\nDWIDTH 6 0\nBBX 6 10 0 -2\nBITMAP\n00\n6C\n6C\n6C\n00\n00\n00\n00\n00\n00\nENDCHAR\nSTARTCHAR char35\nENCODING 35\nSWIDTH 576 0\nDWIDTH 6 0\nBBX 6 10 0 -2\nBITMAP\n00\n28\n7C\n7C\n28\n7C\n7C\n28\n00\n00\nENDCHAR\nSTARTCHAR char36\nENCODING 36\nSWIDTH 576 0\nDWIDTH 6 0\nBBX 6 10 0 -2\nBITMAP"
-"#+TITLE: How I use my Hipster PDA\n\nMay 8th, 2005 -\n[[http://sachachua.com/blog/p/2753][http://sachachua.com/blog/p/2753]]\n\nAfter all my experiments with\n[[http://sachachua.com/notebook/wiki/WearableComputing][wearable\ncomputing]]\n using a [[http://www.handykey.com][one-handed chording keyboard]] and a\n[[http://www.speech.cs.cmu.edu/flite/][speech synthesizer]],\n I've found that the most portable device for me is still a 3\u00d75 pack of\nindex cards bound with a fold-back clip.\n Jokingly dubbed the \u201cHipster PDA\u201d elsewhere on the Net, this low-tech\ndevice is surprisingly flexible and easy to use.\n I use mine to keep track of tasks and random notes for later entry into\nmy online planner.\n\nMy Hipster PDA is composed of:\n\n- a colored index card with my contact information\n- my inbox: cards with notes on them that haven't been entered into the\n computer\n- two pages of month templates from a 3\u00d75 day planner\n- a year calendar for 2005 and 2006\n- my archive: index cards that have already been entered but might\n still be useful\n- a colored index card with yellow sticky notes\n- a stack of blank index cards\n- a fold-back clip holding all of these things together\n- a black signpen or a mechanical pencil tucked into the fold-back clip\n\nOne of the things I've found much easier to do"
-"[Rank]\nS. Jacobi Apostoli;;Duplex II classis;;5.1;;ex C1\n\n[Rank1960]\nS. Jacobi Apostoli;;Duplex II classis;;5;;ex C1\n\n[Rule]\nex C1;\nGloria\nCredo\n\n[Introitus]\n!Ps 138:17\nv. To me, Your friends, O God, are made exceedingly honorable; their~\nprincipality is exceedingly strengthened.\n!Ps 138:1-2\nO Lord, You have probed me and You know me; You know when I sit and when I~\nstand.\n&Gloria\nv. To me, Your friends, O God, are made exceedingly honorable; their~\nprincipality is exceedingly strengthened.\n\n[Oratio]\nProtect Your people and make them holy, O Lord, so that, guarded by the help of~\nYour Apostle James, they may please You by their conduct and serve You with~\npeace of mind.\n$Per Dominum\n\n[Lectio]\nOlvasm\u00e1ny szent P\u00e1l apostol Korintusiakhoz irott els\u0151 level\u00e9b\u0151l\n!1 Cor. 4:9-15\nv. \u00dagy l\u00e1tom ugyanis, hogy Isten nek\u00fcnk, apostoloknak az utols\u00f3 helyet jel\u00f6lte ki, mint olyanoknak, akiket hal\u00e1lra sz\u00e1ntak, hogy l\u00e1tv\u00e1nyoss\u00e1gul szolg\u00e1ljunk a vil\u00e1gnak, az angyaloknak \u00e9s az embereknek is. Mi oktalanok vagyunk Krisztus\u00e9rt, ti okosak Krisztusban. Mi gy\u00f6ng\u00e9k vagyunk, ti er\u0151sek. Titeket megbecs\u00fclnek, minket megvetnek. Mindm\u00e1ig \u00e9hez\u00fcnk \u00e9s szomjazunk, nincs ruh\u00e1nk \u00e9s ver\u00e9st szenved\u00fcnk. Nincs otthonunk, \u00e9s kez\u00fcnk munk\u00e1j\u00e1val keress\u00fck kenyer\u00fcnk. Ha \u00e1tkoznak minket, \u00e1ld\u00e1st mondunk, ha \u00fcld\u00f6znek, t\u00fcrelemmel viselj\u00fck, ha szidalmaznak, szel\u00edden sz\u00f3lunk. Szinte salakja"
-"/**\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 */\npackage org.wicketstuff.jeeweb;\n\nimport org.apache.wicket.markup.html.WebPage;\n\npublic class TestJSPFailPage extends WebPage\n{\n\n\tprivate static final long serialVersionUID = 7792252668180660312L;\n\n}"
-"//{{NO_DEPENDENCIES}}\r\n// Microsoft Visual C++ generated include file.\r\n// Used by Resources.rc\r\n//\r\n#define IDR_AUTH_BUTTON_DROPDOWN 104\r\n#define IDD_PREFERENCES 148\r\n#define IDB_AUTH 1014\r\n#define IDC_SCROBBLING_GROUP 1100\r\n#define IDC_ENABLE_SCROBBLING 1101\r\n#define IDC_ENABLE_NOW_PLAYING 1102\r\n#define IDC_SUBMIT_ONLY_IN_LIBRARY 1103\r\n#define IDC_SUBMIT_DYNAMIC_SOURCES 1104\r\n#define IDC_MAPPING_GROUP 1200\r\n#define IDC_ARTIST_MAPPING 1201\r\n#define IDC_ARTIST_MAPPING_EDIT 1202\r\n#define IDC_ALBUM_ARTIST_MAPPING 1203\r\n#define IDC_ALBUM_ARTIST_MAPPING_EDIT 1204\r\n#define IDC_ALBUM_MAPPING 1205\r\n#define IDC_ALBUM_MAPPING_EDIT 1206\r\n#define IDC_TITLE_MAPPING 1207\r\n#define IDC_TITLE_MAPPING_EDIT 1208\r\n#define IDC_MBTRACKID_MAPPING 1209\r\n#define IDC_MBTRACKID_MAPPING_EDIT 1210\r\n#define IDC_SKIP_SUBMISSION_FORMAT 1211\r\n#define IDC_SKIP_SUBMISSION_FORMAT_EDIT 1212\r\n#define IDC_SKIP_SUBMISSION_FORMAT_DESC 1213\r\n#define IDC_CACHE_STATUS 1300\r\n#define IDC_CANCEL_AUTH 40001\r\n\r\n// Next default values for new objects\r\n// \r\n#ifdef APSTUDIO_INVOKED\r\n#ifndef APSTUDIO_READONLY_SYMBOLS\r\n#define _APS_NEXT_RESOURCE_VALUE 105\r\n#define _APS_NEXT_COMMAND_VALUE 40002\r\n#define _APS_NEXT_CONTROL_VALUE 1301\r\n#define _APS_NEXT_SYMED_VALUE 101\r\n#endif\r\n#endif"
-"/* SPDX-License-Identifier: GPL-2.0 */\n/*\n * fs-verity: read-only file-based authenticity protection\n *\n * Copyright 2019 Google LLC\n */\n\n#ifndef _FSVERITY_PRIVATE_H\n#define _FSVERITY_PRIVATE_H\n\n#ifdef CONFIG_FS_VERITY_DEBUG\n#define DEBUG\n#endif\n\n#define pr_fmt(fmt) \"fs-verity: \" fmt\n\n#include \n#include \n#include \n\nstruct ahash_request;\n\n/*\n * Implementation limit: maximum depth of the Merkle tree. For now 8 is plenty;\n * it's enough for over U64_MAX bytes of data using SHA-256 and 4K blocks.\n */\n#define FS_VERITY_MAX_LEVELS\t\t8\n\n/*\n * Largest digest size among all hash algorithms supported by fs-verity.\n * Currently assumed to be <= size of fsverity_descriptor::root_hash.\n */\n#define FS_VERITY_MAX_DIGEST_SIZE\tSHA512_DIGEST_SIZE\n\n/* A hash algorithm supported by fs-verity */\nstruct fsverity_hash_alg {\n\tstruct crypto_ahash *tfm; /* hash tfm, allocated on demand */\n\tconst char *name;\t /* crypto API name, e.g. sha256 */\n\tunsigned int digest_size; /* digest size in bytes, e.g. 32 for SHA-256 */\n\tunsigned int block_size; /* block size in bytes, e.g. 64 for SHA-256 */\n\tmempool_t req_pool;\t /* mempool with a preallocated hash request */\n};\n\n/* Merkle tree parameters: hash algorithm, initial hash state, and topology */\nstruct merkle_tree_params {\n\tstruct fsverity_hash_alg *hash_alg; /* the hash algorithm */\n\tconst u8 *hashstate;\t\t/* initial hash state or NULL */\n\tunsigned"
-"\ufeff#region Licence\n/* The MIT License (MIT)\nCopyright \u00a9 2017 Ian Cooper \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \u201cSoftware\u201d), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \u201cAS IS\u201d, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE. */\n\n#endregion\n\nusing System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Threading.Tasks;\nusing Newtonsoft.Json;\nusing Paramore.Brighter.Logging;\nusing ServiceStack.Redis;\n\nnamespace Paramore.Brighter.MessagingGateway.Redis\n{\n public class RedisMessageConsumer : RedisMessageGateway, IAmAMessageConsumer"
-"import time\nfrom redis import Redis\nfrom functools import update_wrapper\nfrom flask import request, g\n\nredis = Redis()\n\nclass RateLimit(object):\n expiration_window = 10\n\n def __init__(self, key_prefix, limit, per, send_x_headers):\n self.reset = (int(time.time()) // per) * per + per\n self.key = key_prefix + str(self.reset)\n self.limit = limit\n self.per = per\n self.send_x_headers = send_x_headers\n p = redis.pipeline()\n p.incr(self.key)\n p.expireat(self.key, self.reset + self.expiration_window)\n self.current = min(p.execute()[0], limit)\n\n remaining = property(lambda x: x.limit - x.current)\n over_limit = property(lambda x: x.current >= x.limit)\n\n\ndef get_view_rate_limit():\n return getattr(g, '_view_rate_limit', None)\n\n\ndef on_over_limit(limit):\n return '{\"message\": \"You hit the rate limit\"}', 400\n\n\ndef ratelimit(limit, per=300, send_x_headers=True,\n over_limit=on_over_limit,\n scope_func=lambda: request.remote_addr,\n key_func=lambda: request.endpoint):\n def decorator(f):\n def rate_limited(*args, **kwargs):\n key = 'rate-limit/%s/%s/' % (key_func(), scope_func())\n rlimit = RateLimit(key, limit, per, send_x_headers)\n g._view_rate_limit = rlimit\n if over_limit is not None and rlimit.over_limit:\n return over_limit(rlimit)\n return f(*args, **kwargs)\n return update_wrapper(rate_limited, f)\n return decorator"
-"/* TDSPool - Connection pooling for TDS based databases\n * Copyright (C) 2001 Brian Bruns\n * Copyright (C) 2005 Frediano Ziglio\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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n *\n */\n\n#include \n\n#include \n#include \n#include \n#include \n\n#if HAVE_STDLIB_H\n#include \n#endif /* HAVE_STDLIB_H */\n\n#if HAVE_STRING_H\n#include \n#endif\n\n#ifdef HAVE_LIMITS_H\n#include \n#endif\n\n#include \"pool.h\"\n#include \n\n#define POOL_STR_SERVER\t\"server\"\n#define POOL_STR_PORT\t\"port\"\n#define POOL_STR_USER\t\"user\"\n#define POOL_STR_PASSWORD\t\"password\"\n#define POOL_STR_DATABASE\t\"database\"\n#define POOL_STR_SERVER_USER\t\"server"
-"Data Protection\n===============\n\nNowadays, one of the most important things in security is data protection. You\ndon't want something like:\n\n\n\nIn a nutshell, data from your web application needs to be protected,. Therefore,\nin this section we will take a look at the different ways to secure it.\n\nOne of the first things you should take care of is creating and implementing the\nright privileges for each user and restrict them to strictly the functions they\nreally need.\n\nFor example, consider a simple online store with the following user roles:\n\n* _Sales user_: Permission only to view catalog\n* _Marketing user_: Allowed to check statistics\n* _Developer_: Allowed to modify pages and web application options\n\nAlso, in the system configuration (aka webserver), you should define the right\npermissions.\n\nThe main thing is to define the right role for each user - web or system.\n\nRole separation and access controls are further discussed in the [Access\nControl][1] section.\n\n## Remove Sensitive Information\n\nTemporary and cache files containing sensitive information should be removed\nas soon as they're not needed. If you still need some of them, move them to\nprotected areas and/or encrypt them. This"
-"/*\n *\n * Copyright 2015 gRPC 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 */\n\n#import \n\n#include \n\n@class GRPCCompletionQueue;\nstruct grpc_channel_credentials;\n\n\n/**\n * Each separate instance of this class represents at least one TCP connection to the provided host.\n */\n@interface GRPCChannel : NSObject\n\n@property(nonatomic, readonly, nonnull) struct grpc_channel *unmanagedChannel;\n\n- (nullable instancetype)init NS_UNAVAILABLE;\n\n/**\n * Creates a secure channel to the specified @c host using default credentials and channel\n * arguments. If certificates could not be found to create a secure channel, then @c nil is\n * returned.\n */\n+ (nullable GRPCChannel *)secureChannelWithHost:(nonnull NSString *)host;\n\n/**\n * Creates a secure channel to the specified @c host using Cronet as a transport mechanism.\n */"
-"/***********************************************************************************************************************\n* OpenStudio(R), Copyright (c) 2008-2020, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved.\n*\n* Redistribution and use in source and binary forms, with or without modification, are permitted provided that the\n* following conditions are met:\n*\n* (1) Redistributions of source code must retain the above copyright notice, this list of conditions and the following\n* disclaimer.\n*\n* (2) Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following\n* disclaimer in the documentation and/or other materials provided with the distribution.\n*\n* (3) Neither the name of the copyright holder nor the names of any contributors may be used to endorse or promote products\n* derived from this software without specific prior written permission from the respective party.\n*\n* (4) Other than as required in clauses (1) and (2), distributions in any form of modifications or other derivative works\n* may not use the \"OpenStudio\" trademark, \"OS\", \"os\", or any other confusingly similar designation without specific prior\n* written permission from Alliance for Sustainable Energy, LLC.\n*\n* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER(S) AND ANY CONTRIBUTORS \"AS IS\" AND ANY EXPRESS"
-"/*\r\n * Copyright (c) 2004, Swedish Institute of Computer Science.\r\n * All rights reserved.\r\n *\r\n * Redistribution and use in source and binary forms, with or without\r\n * modification, are permitted provided that the following conditions\r\n * are met:\r\n * 1. Redistributions of source code must retain the above copyright\r\n * notice, this list of conditions and the following disclaimer.\r\n * 2. Redistributions in binary form must reproduce the above copyright\r\n * notice, this list of conditions and the following disclaimer in the\r\n * documentation and/or other materials provided with the distribution.\r\n * 3. Neither the name of the Institute nor the names of its contributors\r\n * may be used to endorse or promote products derived from this software\r\n * without specific prior written permission.\r\n *\r\n * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND\r\n * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\r\n * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\r\n * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE\r\n * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\r\n * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\r\n * OR SERVICES; LOSS"
-"Encoding interface implies that the implementing ID3v2 frame\n * supports content encoding.\n *\n * @category Zend\n * @package Zend_Media\n * @subpackage ID3\n * @author Sven Vollbehr \n * @copyright Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com) \n * @license http://framework.zend.com/license/new-bsd New BSD License\n * @version $Id: Encoding.php 177 2010-03-09 13:13:34Z svollbehr $\n */\ninterface Zend_Media_Id3_Encoding\n{\n /** The ISO-8859-1 encoding. */\n const ISO88591 = 0;\n\n /** The UTF-16 Unicode encoding with BOM. */\n const UTF16 = 1;\n\n /** The UTF-16LE Unicode"
-"package:\n name: foolscap\n version: !!str 0.6.4\n\nsource:\n fn: foolscap-0.6.4.tar.gz\n url: https://pypi.python.org/packages/source/f/foolscap/foolscap-0.6.4.tar.gz\n md5: 0aedae62a0be50da4f89d80b5b30c8a2\n# patches:\n # List any patch files here\n # - fix.patch\n\n# build:\n #preserve_egg_dir: True\n #entry_points:\n # Put any entry points (scripts to be generated automatically) here. The\n # syntax is module:function. For example\n #\n # - foolscap = foolscap:main\n #\n # Would create an entry point called foolscap that calls foolscap.main()\n\n\n # If this is a new build for the same version, increment the build\n # number. If you do not include this key, it defaults to 0.\n # number: 1\n\nrequirements:\n build:\n - python\n - setuptools\n - twisted\n\n run:\n - python\n - twisted\n\ntest:\n # Python imports\n imports:\n - foolscap.appserver\n - foolscap.test\n - foolscap.logging\n - foolscap\n - foolscap.slicers\n\n #commands:\n # You can put test commands to be run here. Use this to test that the\n # entry points work.\n\n\n # You can also put a file called run_test.py in the recipe that will be run\n # at test time.\n\n # requires:\n # Put any additional test requirements here. For example\n # - nose\n\nabout:\n home: http://foolscap.lothar.com/trac\n license: MIT License\n\n# See\n# http://docs.continuum.io/conda/build.html for\n# more information about meta.yaml"
-"/*\n * Copyright (c) 2002, 2020, 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\npackage sun.jvm.hotspot.debugger.remote;\n\nimport java.rmi.*;\nimport java.rmi.server.*;\n\nimport sun.jvm.hotspot.debugger.*;\n\n/** The implementation of the"
-"#partner-overview\n\n // Override .partner-shows styles\n .partner-shows\n .partner-shows-section.featured\n border-bottom 1px solid gray-color\n padding-bottom 50px\n .partner-shows-section-heading\n display none\n .partner-shows-section.lonely // lonely section\n border-bottom 0\n\n .partner-overview-section\n min-height 200px\n margin-bottom 50px\n border-bottom 1px solid gray-color\n &:last-child\n border none\n\n .partner-overview-messages\n min-height 0\n background-color #fff5db\n padding 100px 0\n position relative\n top -50px\n margin-bottom 0\n p\n text-align center\n color gray-darkest-color\n font-size 19px\n line-height 1.5\n &.message-title\n font-size 30px\n\n // Overwrite artists list styles\n .partner-overview-artists\n .artists-groups-container\n border-bottom 0\n\n // Artists grid styles\n .artists-grid\n .artists-grid-section\n margin-bottom 50px\n .artists-group-label\n font-size 18px\n margin-bottom 20px\n .partner-artist\n display inline-block\n vertical-align top\n width 22%\n box-sizing content-box\n margin 0 0 3% 0\n padding 0 2%\n &:nth-child(4n+1)\n padding-left 0\n &:nth-child(4n)\n padding-right 0\n &:nth-last-child(-n+4)\n margin-bottom 0\n img\n width 100%\n a\n text-decoration none\n .partner-artist-cover-image\n position relative\n margin-bottom 10px\n .partner-artist-overlay\n position absolute\n top 0\n bottom 0\n width 100%\n background-color black\n opacity 0\n transition opacity 0.3s ease-in-out\n &:hover\n opacity 0.4\n .partner-artists-see-all\n a\n font-size 13px\n &:hover:before\n border-bottom-width 2px\n margin-top 0.6em\n\n // Locations\n .partner-overview-locations\n ul.locations\n margin-top 20px\n text-align center\n li\n display inline-block\n vertical-align top\n margin 20px 30px"
-"import PropTypes from 'prop-types';\nimport React, { Component } from 'react';\nimport Button from 'Components/Link/Button';\nimport ModalBody from 'Components/Modal/ModalBody';\nimport ModalContent from 'Components/Modal/ModalContent';\nimport ModalFooter from 'Components/Modal/ModalFooter';\nimport ModalHeader from 'Components/Modal/ModalHeader';\nimport { kinds } from 'Helpers/Props';\nimport translate from 'Utilities/String/translate';\nimport styles from './ExcludeMovieModalContent.css';\n\nclass ExcludeMovieModalContent extends Component {\n\n //\n // Listeners\n\n onExcludeMovieConfirmed = () => {\n this.props.onExcludePress();\n }\n\n //\n // Render\n\n render() {\n const {\n tmdbId,\n title,\n onModalClose\n } = this.props;\n\n return (\n \n \n Exclude - {title} ({tmdbId})\n \n\n \n
\n Exclude {title}? This will prevent Radarr from adding automatically via list sync.\n
\n\n \n\n \n \n\n \n \n \n );\n }\n}\n\nExcludeMovieModalContent.propTypes = {\n tmdbId: PropTypes.number.isRequired,\n title: PropTypes.string.isRequired,\n onExcludePress: PropTypes.func.isRequired,\n onModalClose: PropTypes.func.isRequired\n};\n\nexport default ExcludeMovieModalContent;"
-"/******************************************************************************\n *\n * Module Name: dtutils.c - Utility routines for the data table compiler\n *\n *****************************************************************************/\n\n/*\n * Copyright (C) 2000 - 2016, Intel Corp.\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\n * are met:\n * 1. Redistributions of source code must retain the above copyright\n * notice, this list of conditions, and the following disclaimer,\n * without modification.\n * 2. Redistributions in binary form must reproduce at minimum a disclaimer\n * substantially similar to the \"NO WARRANTY\" disclaimer below\n * (\"Disclaimer\") and any redistribution must be conditioned upon\n * including a substantially similar Disclaimer requirement for further\n * binary redistribution.\n * 3. Neither the names of the above-listed copyright holders nor the names\n * of any contributors may be used to endorse or promote products derived\n * from this software without specific prior written permission.\n *\n * Alternatively, this software may be distributed under the terms of the\n * GNU General Public License (\"GPL\") version 2 as published by the Free\n * Software Foundation.\n *\n * NO WARRANTY\n * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n *"
-"// Copyright (C) 2006 Douglas Gregor .\r\n\r\n// Use, modification and distribution is subject to the Boost Software\r\n// License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at\r\n// http://www.boost.org/LICENSE_1_0.txt)\r\n\r\n/** @file request.hpp\r\n *\r\n * This header defines the class @c request, which contains a request\r\n * for non-blocking communication.\r\n */\r\n#ifndef BOOST_MPI_REQUEST_HPP\r\n#define BOOST_MPI_REQUEST_HPP\r\n\r\n#include \r\n#include \r\n#include \r\n#include \r\n\r\nnamespace boost { namespace mpi {\r\n\r\nclass status;\r\nclass communicator;\r\n\r\n/**\r\n * @brief A request for a non-blocking send or receive.\r\n *\r\n * This structure contains information about a non-blocking send or\r\n * receive and will be returned from @c isend or @c irecv,\r\n * respectively.\r\n */\r\nclass BOOST_MPI_DECL request \r\n{\r\n public:\r\n /**\r\n * Constructs a NULL request.\r\n */\r\n request();\r\n\r\n /**\r\n * Wait until the communication associated with this request has\r\n * completed, then return a @c status object describing the\r\n * communication.\r\n */\r\n status wait();\r\n\r\n /**\r\n * Determine whether the communication associated with this request\r\n * has completed successfully. If so, returns the @c status object\r\n * describing the communication. Otherwise, returns an empty @c\r\n * optional<> to indicate that the communication has not completed\r\n * yet. Note that once @c test() returns"
-"\n \n \n \n
\n \n
Ordering food has never been easier
\n
\n We make it easier than ever to order gourmet food\n from your favorite local restaurants.\n
\n \n \n"
-"---\norder: 5\ntitle:\n zh-CN: \u54cd\u5e94\u5f0f\u7684\u6805\u683c\u5217\u8868\n en-US: Responsive grid list\n---\n\n## zh-CN\n\n\u54cd\u5e94\u5f0f\u7684\u6805\u683c\u5217\u8868\u3002\u5c3a\u5bf8\u4e0e [Layout Grid](/components/grid-cn/#Col) \u4fdd\u6301\u4e00\u81f4\u3002\n\n## en-US\n\nResponsive grid list. The size property is as same as [Layout Grid](/components/grid/#Col).\n\n````jsx\nimport { List, Card } from 'choerodon-ui';\n\nconst data = [\n {\n title: 'Title 1',\n },\n {\n title: 'Title 2',\n },\n {\n title: 'Title 3',\n },\n {\n title: 'Title 4',\n },\n {\n title: 'Title 5',\n },\n {\n title: 'Title 6',\n },\n];\n\nReactDOM.render(\n (\n \n Card content\n \n )}\n />,\n mountNode);\n````"
-"title, new MessageBuilder() );\n * $htmlFormRenderer\n * \t->setName( 'Foo' )\n * \t->setParameter( 'foo', 'someValue' )\n * \t->addPaging( 10, 0, 5 )\n * \t->addHorizontalRule()\n * \t->addInputField( 'BarLabel', 'bar', 'someValue' )\n * \t->addSubmitButton()\n * \t->getForm();\n * @endcode\n *\n * @license GNU GPL v2+\n * @since 2.1\n *\n * @author mwjames\n */\nclass HtmlFormRenderer {\n\n\t/**\n\t * @var Title\n\t */\n\tprivate $title = null;\n\n\t/**\n\t * @var MessageBuilder\n\t */\n\tprivate $messageBuilder = null;\n\n\t/**\n\t * @var array\n\t */\n\tprivate $queryParameters = array();\n\n\t/**\n\t * @var string\n\t */\n\tprivate $name ='';\n\n\t/**\n\t * @var string|boolean\n\t */\n\tprivate $method = false;\n\n\t/**\n\t * @var string|boolean\n\t */\n\tprivate $useFieldset = false;\n\n\t/**\n\t * @var string|boolean\n\t */\n\tprivate $actionUrl = false;\n\n\t/**\n\t * @var string[]\n\t */\n\tprivate $content = array();\n\n\t/**\n\t * @var string\n\t */\n\tprivate $defaultPrefix = 'smw-form';\n\n\t/**\n\t * @since 2.1\n\t *\n\t * @param Title $title\n\t * @param MessageBuilder $messageBuilder\n\t */\n\tpublic function __construct( Title $title, MessageBuilder $messageBuilder ) {\n\t\t$this->title = $title;\n\t\t$this->messageBuilder = $messageBuilder;\n\t}\n\n\t/**\n\t *"
-"import { getTopSameDomainWindow, getFrameElement } from '../utils/dom';\nimport nativeMethods from './native-methods';\nimport Sandbox from './index';\n\nconst SANDBOX_BACKUP = 'hammerhead|sandbox-backup';\n\ninterface SandboxBackupEntry {\n iframe: Element;\n sandbox: Sandbox;\n}\n\nfunction findRecord (storage: SandboxBackupEntry[], iframe: Element | null) {\n for (let i = storage.length - 1; i >= 0; i--) {\n try {\n if (storage[i].iframe === iframe)\n return storage[i];\n }\n catch (e) {\n storage.splice(i, 1);\n }\n }\n\n return void 0;\n}\n\nexport function create (window: Window, sandbox: Sandbox) {\n const topSameDomainWindow = getTopSameDomainWindow(window);\n const iframe = window !== topSameDomainWindow ? getFrameElement(window) : null;\n let storage = topSameDomainWindow[SANDBOX_BACKUP];\n\n if (!storage) {\n storage = [];\n nativeMethods.objectDefineProperty(topSameDomainWindow, SANDBOX_BACKUP, { value: storage });\n }\n\n const record = findRecord(storage, iframe);\n\n if (record)\n record.sandbox = sandbox;\n else\n storage.push({ iframe, sandbox });\n}\n\nexport function get (window: Window) {\n const topSameDomainWindow = getTopSameDomainWindow(window);\n const storage = topSameDomainWindow[SANDBOX_BACKUP];\n const iframe = window !== topSameDomainWindow ? window.frameElement : null;\n\n if (storage) {\n const record = findRecord(storage, iframe);\n\n return record ? record.sandbox : null;\n }\n\n return null;\n}"
-"require 'puppet/util/inifile'\n\nPuppet::Type.type(:yumrepo).provide(:inifile) do\n desc <<-EOD\n Manage yum repo configurations by parsing yum INI configuration files.\n\n ### Fetching instances\n\n When fetching repo instances, directory entries in '/etc/yum/repos.d',\n '/etc/yum.repos.d', and the directory optionally specified by the reposdir\n key in '/etc/yum.conf' will be checked. If a given directory does not exist it\n will be ignored. In addition, all sections in '/etc/yum.conf' aside from\n 'main' will be created as sections.\n\n ### Storing instances\n\n When creating a new repository, a new section will be added in the first\n yum repo directory that exists. The custom directory specified by the\n '/etc/yum.conf' reposdir property is checked first, followed by\n '/etc/yum/repos.d', and then '/etc/yum.repos.d'. If none of these exist, the\n section will be created in '/etc/yum.conf'.\n EOD\n\n PROPERTIES = Puppet::Type.type(:yumrepo).validproperties\n\n # Retrieve all providers based on existing yum repositories\n #\n # @api public\n # @return [Array] providers generated from existing yum\n # repository definitions.\n def self.instances\n instances = []\n\n virtual_inifile.each_section do |section|\n # Ignore the 'main' section in yum.conf since it's not a repository.\n next if section.name == \"main\"\n\n attributes_hash = {:name => section.name, :ensure => :present, :provider => :yumrepo}\n\n section.entries.each do |key, value|\n key = key.to_sym\n if valid_property?(key)\n attributes_hash[key] = value\n elsif key == :name\n attributes_hash[:descr]"
-"\n* @copyright 2007-2017 PrestaShop SA\n* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)\n* International Registered Trademark & Property of PrestaShop SA\n*/\n\nheader(\"Expires: Mon, 26 Jul 1997 05:00:00 GMT\");\nheader(\"Last-Modified: \".gmdate(\"D, d M Y H:i:s\").\" GMT\");\n\nheader(\"Cache-Control: no-store, no-cache, must-revalidate\");\nheader(\"Cache-Control: post-check=0, pre-check=0\", false);\nheader(\"Pragma: no-cache\");\n\nheader(\"Location: ../\");\nexit;"
-"/*\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 */\n\n/*!\n * Copyright (c) 2014 by Contributors\n * \\file stream_gpu-inl.h\n * \\brief implementation of GPU code\n * \\author Bing Xu, Tianqi Chen\n */\n#ifndef MSHADOW_STREAM_GPU_INL_H_\n#define MSHADOW_STREAM_GPU_INL_H_\n#include \n#include \"./base.h\"\n#include \"./tensor.h\"\n#include \"./logging.h\"\n\nnamespace mshadow {\n#if MSHADOW_USE_CUDA == 1\n// Stream alocation\n// actual implementation of GPU stream in CUDA\ntemplate<>\nstruct Stream {\n /*! \\brief handle state */\n enum HandleState {\n NoHandle = 0,\n OwnHandle ="
-"#!/bin/sh\n#4 July 96 Dan.Shearer@UniSA.edu.au \n\nINSTALLPERMS=$1\nBASEDIR=$2\nBINDIR=$3\nLIBDIR=$4\nVARDIR=$5\nshift\nshift\nshift\nshift\nshift\n\nif [ ! -d $BINDIR ]; then\n echo Directory $BINDIR does not exist!\n echo Do a \"make installbin\" or \"make install\" first.\n exit 1\nfi\n\nfor p in $*; do\n p2=`basename $p`\n if [ -f $BINDIR/$p2 ]; then\n echo Removing $BINDIR/$p2\n rm -f $BINDIR/$p2\n if [ -f $BINDIR/$p2 ]; then\n echo Cannot remove $BINDIR/$p2 ... does $USER have privileges?\n fi\n fi\ndone\n\n\ncat << EOF\n======================================================================\nThe binaries have been uninstalled. You may restore the binaries using\nthe command \"make installbin\" or \"make install\" to install binaries, \nman pages and shell scripts. You can restore a previous version of the\nbinaries (if there were any) using \"make revert\".\n======================================================================\nEOF\n\nexit 0"
-"define([\n './path',\n './special_attr_path',\n '../../tools'\n], function(Path, SpecialAttrPath, tools) {\n 'use strict';\n\n Path.ellipse = function(x, y, radiusX, radiusY) {\n return new Path(new Ellipse(x, y, radiusX, radiusY).segments()).attr({\n x: x,\n y: y\n });\n };\n\n /**\n * Creates an ellipse\n *\n * @constructor\n * @name Ellipse\n * @memberOf module:path\n * @extends module:path.SpecialAttrPath\n * @param {Number} x The x coordinate of the center of the ellipse\n * @param {Number} y The y coordinate of the center of the ellipse\n * @param {Number} radiusX The x (horizonal) radius\n * @param {Number} radiusY The y (vertical) radius\n */\n function Ellipse(x, y, radiusX, radiusY) {\n\n SpecialAttrPath.call(this, {\n radiusX: 0,\n radiusY: 0\n });\n\n this.attr({\n x: x,\n y: y,\n radiusX: radiusX,\n radiusY: radiusY\n });\n\n }\n\n /** @lends module:path.Ellipse.prototype **/\n var proto = Ellipse.prototype = Object.create(SpecialAttrPath.prototype);\n\n /**\n * Generates shape as per Ellipse's properties in _attributes\n *\n * @private\n */\n proto._make = function() {\n\n var attr = this._attributes,\n radiusX = attr.radiusX,\n radiusY = attr.radiusY;\n\n this\n .moveTo(radiusX, 0)\n .arcTo(radiusX, radiusY, 0, 0, 0, -radiusX, 0)\n .arcTo(radiusX, radiusY, 0, 0, 0, radiusX, 0);\n\n };\n\n return Ellipse;\n\n});"
-"/*\n * ngene-cards.c: nGene PCIe bridge driver - card specific info\n *\n * Copyright (C) 2005-2007 Micronas\n *\n * Copyright (C) 2008-2009 Ralph Metzler \n * Modifications for new nGene firmware,\n * support for EEPROM-copying,\n * support for new dual DVB-S2 card prototype\n *\n *\n * This program is free software; you can redistribute it and/or\n * modify it under the terms of the GNU General Public License\n * version 2 only, as published by the Free Software Foundation.\n *\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 *\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 Street, Fifth Floor, Boston, MA\n * 02110-1301, USA\n * Or, point your browser to http://www.gnu.org/copyleft/gpl.html\n */\n\n#include \n#include \n#include \n#include \n\n#include \"ngene.h\"\n\n/* demods/tuners */\n#include \"stv6110x.h\"\n#include \"stv090x.h\"\n#include \"lnbh24.h\"\n#include \"lgdt330x.h\"\n#include \"mt2131.h\"\n#include \"tda18271c2dd.h\"\n#include \"drxk.h\"\n#include \"drxd.h\""
-"@charset \"UTF-8\";\n/// Creates a grid column of requested size.\n///\n/// @group features\n///\n/// @name Grid column\n///\n/// @argument {number (unitless)} $columns [null]\n/// Specifies the number of columns an element should span based on the total\n/// columns of the grid.\n///\n/// This can also be defined in a shorthand syntax which also contains the\n/// total column count such as `3 of 5`.\n///\n/// @argument {map} $grid [$neat-grid]\n/// The grid to be used to generate the column.\n/// By default, the global `$neat-grid` will be used.\n///\n/// @example scss\n/// .element {\n/// @include grid-column(3);\n/// }\n///\n/// @example css\n/// .element {\n/// width: calc(25% - 25px);\n/// float: left;\n/// margin-left: 20px;\n/// }\n\n@mixin grid-column($columns: null, $grid: $neat-grid) {\n $columns: _neat-column-default($grid, $columns);\n $_grid-columns: _retrieve-neat-setting($grid, columns);\n $_grid-gutter: _retrieve-neat-setting($grid, gutter);\n\n width: calc(#{_neat-column-width($grid, $columns)});\n float: _neat-float-direction($grid);\n margin-#{_neat-float-direction($grid)}: $_grid-gutter;\n}"
-"/** @file\r\n AML String.\r\n\r\n Copyright (c) 2010 - 2018, Intel Corporation. All rights reserved. \r\n Copyright (c) 2019 - 2020, Arm Limited. All rights reserved. \r\n\r\n SPDX-License-Identifier: BSD-2-Clause-Patent\r\n**/\r\n\r\n#include \r\n\r\n#include \r\n#include \r\n\r\n/** Check NameString/path information is valid.\r\n\r\n Root, ParentPrefix and SegCount cannot be 0 at the same time.\r\n This function works for ASL and AML name strings.\r\n\r\n @param [in] Root Number of root char.\r\n Must be 0 or 1.\r\n @param [in] ParentPrefix Number of carets char ('^').\r\n Must be [0-255].\r\n @param [in] SegCount Number of NameSeg (s).\r\n Must be [0-255].\r\n\r\n @retval TRUE id the input information is in the right boundaries.\r\n FALSE otherwise.\r\n**/\r\nBOOLEAN\r\nEFIAPI\r\nAmlIsNameString (\r\n IN UINT32 Root,\r\n IN UINT32 ParentPrefix,\r\n IN UINT32 SegCount\r\n )\r\n{\r\n if (((Root == 0) || (Root == 1)) &&\r\n (ParentPrefix <= MAX_UINT8) &&\r\n (!((ParentPrefix != 0) && (Root != 0))) &&\r\n (SegCount <= MAX_UINT8) &&\r\n ((SegCount + Root + ParentPrefix) != 0)) {\r\n return TRUE;\r\n }\r\n return FALSE;\r\n}\r\n\r\n/** Copy bytes from SrcBuffer to DstBuffer and convert to upper case.\r\n Don't copy more than MaxDstBufferSize bytes.\r\n\r\n @param [out] DstBuffer Destination buffer.\r\n @param [in] MaxDstBufferSize Maximum size of DstBuffer.\r\n Must be non-zero.\r\n @param [in] SrcBuffer Source buffer.\r\n @param"
-"// Copyright 2018 Google LLC\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.google.api.ads.adwords.jaxws.v201809.cm;\n\nimport java.util.List;\nimport javax.jws.WebMethod;\nimport javax.jws.WebParam;\nimport javax.jws.WebResult;\nimport javax.jws.WebService;\nimport javax.xml.bind.annotation.XmlSeeAlso;\nimport javax.xml.ws.RequestWrapper;\nimport javax.xml.ws.ResponseWrapper;\n\n\n/**\n * \n * IMPORTANT: THIS IS NOT A REAL SERVICE INTERFACE. It exists solely for the\n * purpose of generating client library code. Do not attempt to send SOAP\n * requests to this endpoint.\n * \n *
Service for BatchJob XML i/o. When submitting an XML file to BatchJobService,\n * the input should be a single Mutate with any number of Operations. The output\n * will be a single MutateResponse with the same number of MutateResults.\n * \n * \n * This class was generated by the JAX-WS RI.\n *"
-"/*\n * Copyright (C) 2012-present 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 */\npackage org.pf4j;\n\nimport org.pf4j.util.FileUtils;\nimport org.slf4j.Logger;\nimport org.slf4j.LoggerFactory;\n\nimport java.io.IOException;\nimport java.nio.file.Files;\nimport java.nio.file.Path;\nimport java.util.List;\n\n/**\n * The default implementation for {@link PluginStatusProvider}.\n * The enabled plugins are read from {@code enabled.txt} file and\n * the disabled plugins are read from {@code disabled.txt} file.\n *\n * @author Decebal Suiu\n * @author M\u00e1rio Franco\n */\npublic class DefaultPluginStatusProvider implements PluginStatusProvider {\n\n private static final Logger log = LoggerFactory.getLogger(DefaultPluginStatusProvider.class);\n\n private final Path pluginsRoot;\n\n private List enabledPlugins;\n private List disabledPlugins;\n\n public DefaultPluginStatusProvider(Path pluginsRoot) {\n this.pluginsRoot = pluginsRoot;\n\n try {\n // create a list with plugin identifiers that should be only accepted"
-"config SYSFS\n\tbool \"sysfs file system support\" if EXPERT\n\tdefault y\n\thelp\n\tThe sysfs filesystem is a virtual filesystem that the kernel uses to\n\texport internal kernel objects, their attributes, and their\n\trelationships to one another.\n\n\tUsers can use sysfs to ascertain useful information about the running\n\tkernel, such as the devices the kernel has discovered on each bus and\n\twhich driver each is bound to. sysfs can also be used to tune devices\n\tand other kernel subsystems.\n\n\tSome system agents rely on the information in sysfs to operate.\n\t/sbin/hotplug uses device and object attributes in sysfs to assist in\n\tdelegating policy decisions, like persistently naming devices.\n\n\tsysfs is currently used by the block subsystem to mount the root\n\tpartition. If sysfs is disabled you must specify the boot device on\n\tthe kernel boot command line via its major and minor numbers. For\n\texample, \"root=03:01\" for /dev/hda1.\n\n\tDesigners of embedded systems may wish to say N here to conserve space."
-"/*\n * Copyright (C) 2014 Michael Brown .\n *\n * This program is free software; you can redistribute it and/or\n * modify it under the terms of the GNU General Public License as\n * published by the Free Software Foundation; either version 2 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful, but\n * WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n * 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 Street, Fifth Floor, Boston, MA\n * 02110-1301, USA.\n *\n * You can also choose to distribute this program under the terms of\n * the Unmodified Binary Distribution Licence (as given in the file\n * COPYING.UBDL), provided that you have satisfied its requirements.\n */\n\nFILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );\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"
-"; Test to make sure that load from the same address as a store and appears after the store prevents the store from being sunk\n; RUN: opt -basicaa -memdep -mldst-motion -S < %s | FileCheck %s\ntarget datalayout = \"e-m:o-i64:64-i128:128-n32:64-S128\"\n\n%struct.node = type { i32, %struct.node*, %struct.node*, %struct.node*, i32, i32, i32, i32 }\n\n; Function Attrs: nounwind uwtable\ndefine void @sink_store(%struct.node* nocapture %r, i32 %index) {\nentry:\n %node.0.in16 = getelementptr inbounds %struct.node, %struct.node* %r, i64 0, i32 2\n %node.017 = load %struct.node*, %struct.node** %node.0.in16, align 8\n %index.addr = alloca i32, align 4\n store i32 %index, i32* %index.addr, align 4\n %0 = load i32, i32* %index.addr, align 4\n %cmp = icmp slt i32 %0, 0\n br i1 %cmp, label %if.then, label %if.else\n\n; CHECK: if.then\nif.then: ; preds = %entry\n %1 = load i32, i32* %index.addr, align 4\n %p1 = getelementptr inbounds %struct.node, %struct.node* %node.017, i32 0, i32 6\n ; CHECK: store i32\n store i32 %1, i32* %p1, align 4\n %p2 = getelementptr inbounds %struct.node, %struct.node* %node.017, i32 0, i32 6\n ; CHECK: load i32, i32*\n %barrier = load i32 , i32 * %p2, align 4\n br label %if.end\n\n; CHECK: if.else\nif.else: ; preds = %entry\n %2 = load"
-"/* Linux driver for Philips webcam\n (C) 2004-2006 Luc Saillard (luc@saillard.org)\n\n NOTE: this version of pwc is an unofficial (modified) release of pwc & pcwx\n driver and thus may have bugs that are not present in the original version.\n Please send bug reports and support requests to .\n The decompression routines have been implemented by reverse-engineering the\n Nemosoft binary pwcx module. Caveat emptor.\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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n*/\n\n/* Entries for the Kiara (730/740/750) camera */\n\n#ifndef PWC_KIARA_H\n#define PWC_KIARA_H\n\n#include \"pwc.h\"\n\n#define PWC_FPS_MAX_KIARA 6\n\nstruct Kiara_table_entry\n{\n\tchar alternate;\t\t\t/*"
-"').appendTo('head');\nDataTable.ext.foundationVersion = meta.css('font-family').match(/small|medium|large/) ? 6 : 5;\nmeta.remove();\n\n\n$.extend( DataTable.ext.classes, {\n\tsWrapper: \"dataTables_wrapper dt-foundation\",\n\tsProcessing: \"dataTables_processing panel callout\"\n} );\n\n\n/* Set the defaults"
-"often similar to a little boy lost in a park that he had no right venturing into , the call of the oboe ( o toque do oboe ) is a disappointing film that seems to have wandered astray . \nmany elements of the film are solid , and have potential far greater than director claudio macdowell will ever know , but they simply don't convert into a solid work . \nalthough a setting is never established , it becomes apparent . \nthe film takes place somewhere in a latin american village in present day . \nthe community is a dull one , where every day is a downhill slide from the last . \nover time , the people have taken to themselves . \nthe town cinema is closed , no tourist has passed through in years , and the daily funeral processions are accompanied by no one other than the grave digger . \nso what happens when a \" tourist \" ( paolo betti ) does arrive one day ? \nhe sends this routine and dull town into mayhem and shock . \nit is revealed that he is a musician who plays the oboe as a hobby . \nwhen"
-"{-# LANGUAGE CPP #-}\n-----------------------------------------------------------------------------\n-- |\n-- Module : Data.Ix\n-- Copyright : (c) The University of Glasgow 2001\n-- License : BSD-style (see the file libraries/base/LICENSE)\n-- \n-- Maintainer : libraries@haskell.org\n-- Stability : stable\n-- Portability : portable\n--\n-- The 'Ix' class is used to map a contiguous subrange of values in\n-- type onto integers. It is used primarily for array indexing\n-- (see the array package).\n-- \n-----------------------------------------------------------------------------\nmodule Data.Ix\n (\n -- * The 'Ix' class\n Ix\n ( range -- :: (Ix a) => (a,a) -> [a]\n , index -- :: (Ix a) => (a,a) -> a -> Int\n , inRange -- :: (Ix a) => (a,a) -> a -> Bool\n , rangeSize -- :: (Ix a) => (a,a) -> Int\n )\n -- Ix instances:\n --\n -- Ix Char\n -- Ix Int\n -- Ix Integer\n -- Ix Bool\n -- Ix Ordering\n -- Ix ()\n -- (Ix a, Ix b) => Ix (a, b)\n -- ...\n\n -- Implementation checked wrt. Haskell 98 lib report, 1/99.\n\n -- * Deriving Instances of 'Ix'\n -- | Derived instance declarations for the class 'Ix' are only possible\n -- for enumerations (i.e. datatypes having only nullary constructors)\n -- and single-constructor"
-"\"\"\"Define latency evaluators that evaluate the performance of mode on devices.\n\"\"\"\n# 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\nfrom paddle.fluid import Program\nfrom ..core import GraphWrapper, OpWrapper\n__all__ = [\"LatencyEvaluator\", \"TableLatencyEvaluator\"]\n\n\nclass LatencyEvaluator(object):\n \"\"\"Base class of latency evaluator.\n \"\"\"\n\n def latency(self, graph):\n \"\"\"Get latency of graph. It is an abstract method.\n\n Args:\n graph(GrapWrapper | Program): The graph to be evaluated.\n\n Returns:\n latency(float): The latency of given graph on current evaluator.\n \"\"\"\n raise NotImplementedError('Abstract method.')\n\n def _get_ops_from_graph(self, graph, only_conv):\n assert isinstance(graph, GraphWrapper)\n ops = []\n i = 0\n for op in graph.ops():\n if op.type() in ['conv2d', 'depthwise_conv2d']:\n tmp = self._conv_op_args(op)\n elif op.type() in [\n 'elementwise_add', 'elementwise_mul', 'elementwise_max'\n ]"
-"/*\n * Copyright 2019 ABSA Group Limited\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 */\nimport { AfterViewInit, Component, Input, OnDestroy, OnInit, ViewChild } from '@angular/core'\nimport { Store } from '@ngrx/store'\nimport { CytoscapeNgLibComponent } from 'cytoscape-ng-lib'\nimport * as _ from 'lodash'\nimport { Subscription } from 'rxjs'\nimport { filter, map, switchMap } from 'rxjs/operators'\nimport { AppState } from 'src/app/model/app-state'\nimport { RouterStateUrl } from 'src/app/model/routerStateUrl'\nimport { LineageOverviewNodeType } from 'src/app/model/types/lineageOverviewNodeType'\nimport * as ContextMenuAction from 'src/app/store/actions/context-menu.actions'\nimport * as DetailsInfosAction from 'src/app/store/actions/details-info.actions'\nimport * as ExecutionPlanAction from 'src/app/store/actions/execution-plan.actions'\nimport * as LayoutAction from 'src/app/store/actions/layout.actions'\nimport * as LineageOverviewAction from 'src/app/store/actions/lineage-overview.actions'\nimport * as RouterAction from 'src/app/store/actions/router.actions'\nimport { getWriteOperationIdFromExecutionId } from"
-"/*\n * Copyright (c) 2009, 2012, 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. Oracle designates this\n * particular file as subject to the \"Classpath\" exception as provided\n * by Oracle in the LICENSE file that accompanied this code.\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"
-"// Copyright \u00a92013 The Gonum 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 mat\n\nimport (\n\t\"fmt\"\n\t\"strconv\"\n)\n\n// Formatted returns a fmt.Formatter for the matrix m using the given options.\nfunc Formatted(m Matrix, options ...FormatOption) fmt.Formatter {\n\tf := formatter{\n\t\tmatrix: m,\n\t\tdot: '.',\n\t}\n\tfor _, o := range options {\n\t\to(&f)\n\t}\n\treturn f\n}\n\ntype formatter struct {\n\tmatrix Matrix\n\tprefix string\n\tmargin int\n\tdot byte\n\tsqueeze bool\n}\n\n// FormatOption is a functional option for matrix formatting.\ntype FormatOption func(*formatter)\n\n// Prefix sets the formatted prefix to the string p. Prefix is a string that is prepended to\n// each line of output.\nfunc Prefix(p string) FormatOption {\n\treturn func(f *formatter) { f.prefix = p }\n}\n\n// Excerpt sets the maximum number of rows and columns to print at the margins of the matrix\n// to m. If m is zero or less all elements are printed.\nfunc Excerpt(m int) FormatOption {\n\treturn func(f *formatter) { f.margin = m }\n}\n\n// DotByte sets the dot character to b. The dot character is used to"
-"label = esc_html__( 'Payment Amount', 'gravityview' );\n\n\t\tadd_filter( 'gravityview_field_entry_value_' . $this->name . '_pre_link', array( $this, 'get_content' ), 10, 4 );\n\t\tadd_filter( 'gravityview/field/payment_amount/value', array( $this, 'get_value' ), 10, 6 );\n\n\t\tparent::__construct();\n\t}\n\n\t/**\n\t * Filter the value of the field\n\t *\n\t * @todo Consider how to add to parent class\n\t *\n\t * @since 1.16\n\t *\n\t * @param string $output HTML value output\n\t * @param array $entry The GF entry array\n\t * @param array $field_settings Settings for the particular GV field\n\t * @param array $field Current field being displayed\n\t *\n\t * @return String values for this field based on the numeric values used by Gravity Forms\n\t */\n\tpublic function get_content( $output = '', $entry = array(), $field_settings = array(), $field = array() ) {\n\n\t\t/** Overridden by a template. */\n\t\tif( ! empty( $field['field_path'] ) ) { return $output; }\n\n\t\t$amount = \\GV\\Utils::get("
-"/*\n BLAKE2 reference source code package - optimized C implementations\n\n Written in 2012 by Samuel Neves \n\n To the extent possible under law, the author(s) have dedicated all copyright\n and related and neighboring rights to this software to the public domain\n worldwide. This software is distributed without any warranty.\n\n You should have received a copy of the CC0 Public Domain Dedication along with\n this software. If not, see .\n*/\n#pragma once\n#ifndef __BLAKE2_CONFIG_H__\n#define __BLAKE2_CONFIG_H__\n\n// These don't work everywhere\n#if defined(__SSE2__)\n#define HAVE_SSE2\n#endif\n\n#if defined(__SSSE3__)\n#define HAVE_SSSE3\n#endif\n\n#if defined(__SSE4_1__)\n#define HAVE_SSE41\n#endif\n\n#if defined(__AVX__)\n#define HAVE_AVX\n#endif\n\n#if defined(__XOP__)\n#define HAVE_XOP\n#endif\n\n\n#ifdef HAVE_AVX2\n#ifndef HAVE_AVX\n#define HAVE_AVX\n#endif\n#endif\n\n#ifdef HAVE_XOP\n#ifndef HAVE_AVX\n#define HAVE_AVX\n#endif\n#endif\n\n#ifdef HAVE_AVX\n#ifndef HAVE_SSE41\n#define HAVE_SSE41\n#endif\n#endif\n\n#ifdef HAVE_SSE41\n#ifndef HAVE_SSSE3\n#define HAVE_SSSE3\n#endif\n#endif\n\n#ifdef HAVE_SSSE3\n#define HAVE_SSE2\n#endif\n\n#if !defined(HAVE_SSE2)\n#error \"This code requires at least SSE2.\"\n#endif\n\n#endif"
-"/*\n * Copyright 2016 Facebook, 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 */\n\n#include \n#include \n\n#include \n\nnamespace folly {\n\nvoid MicroLockCore::lockSlowPath(uint32_t oldWord,\n detail::Futex<>* wordPtr,\n uint32_t slotHeldBit,\n unsigned maxSpins,\n unsigned maxYields) {\n uint32_t newWord;\n unsigned spins = 0;\n uint32_t slotWaitBit = slotHeldBit << 1;\n\nretry:\n if ((oldWord & slotHeldBit) != 0) {\n ++spins;\n if (spins > maxSpins + maxYields) {\n // Somebody appears to have the lock. Block waiting for the\n // holder to unlock the lock. We set heldbit(slot) so that the\n // lock holder knows to FUTEX_WAKE us.\n newWord = oldWord | slotWaitBit;\n if (newWord != oldWord) {\n if (!wordPtr->compare_exchange_weak(oldWord,\n newWord,\n std::memory_order_relaxed,\n std::memory_order_relaxed)) {\n goto retry;\n }\n }\n (void)wordPtr->futexWait(newWord, slotHeldBit);\n } else"
-"/*\nCopyright 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\n// Code generated by client-gen. DO NOT EDIT.\n\n// Package fake has the automatically generated clients.\npackage fake"
-"/*\n * linux/drivers/scsi/esas2r/esas2r_disc.c\n * esas2r device discovery routines\n *\n * Copyright (c) 2001-2013 ATTO Technology, Inc.\n * (mailto:linuxdrivers@attotech.com)\n */\n/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/\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; version 2 of the License.\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 * NO WARRANTY\n * THE PROGRAM IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT\n * LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT,\n * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is\n * solely responsible for determining the appropriateness of using and\n * distributing the Program and assumes all risks associated with its\n * exercise of rights under this Agreement, including but not limited to\n * the risks and costs of program errors, damage to or loss of data,\n * programs or equipment, and"
-"/*\n * Copyright (C) 2000, Matias Atria\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 Street, Fifth Floor, Boston, MA 02110-1301, USA.\n */\n#ifndef _MDVI_COMMON_H\n#define _MDVI_COMMON_H 1\n\n#include \n#include \n#include \n\n#include \"sysdeps.h\"\n\n#if STDC_HEADERS\n# include \n#endif\n\n#if !defined(STDC_HEADERS) || defined(__STRICT_ANSI__)\n# ifndef HAVE_STRCHR\n# define strchr index\n# define strrchr rindex\n# endif\n# ifndef HAVE_MEMCPY\n# define memcpy(a,b,n) bcopy((b), (a), (n))\n# define memmove(a,b,n) bcopy((b), (a), (n))\n# endif\n#endif\n\n#if defined(STDC_HEADERS) || defined(HAVE_MEMCPY)\n#define memzero(a,n) memset((a), 0, (n))\n#else\n#define"
-"[tox]\nenvlist =\n lint\n py{27,35,36,37}\n py37-oldpy3deps\n py27-oldpy2deps\n coverage-report\n manifest\n pypi-description\nisolated_build = true\n\n[testenv]\ndeps =\n oldpy2deps: redis==2.6.2\n oldpy2deps: flask==0.8.0\n oldpy2deps: werkzeug==0.8.3\n oldpy3deps: redis==2.6.2\n oldpy3deps: flask==0.11.1\n oldpy3deps: werkzeug==0.11.15\nextras = tests\ncommands = coverage run --parallel-mode -m pytest {posargs}\n\n[testenv:coverage-report]\nbasepython = python3.7\nskip_install = true\ndeps = coverage\ncommands =\n coverage combine\n coverage report\n\n[testenv:lint]\nbasepython = python3.7\nskip_install = true\ndeps = pre-commit\npassenv = HOMEPATH # needed on Windows\ncommands = pre-commit run --all-files\n\n[testenv:manifest]\nbasepython = python3.7\nskip_install = true\ndeps = check-manifest\ncommands = check-manifest\n\n[testenv:pypi-description]\nbasepython = python3.7\nskip_install = true\ndeps = twine\ncommands =\n pip wheel -w {envtmpdir}/build --no-deps .\n twine check {envtmpdir}/build/*"
-"/*\n * Copyright 2020 ZUP IT SERVICOS EM TECNOLOGIA E INOVACAO SA\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 br.com.zup.beagle.sample.constants\n\nconst val BUTTON_STYLE = \"DesignSystem.Stylish.Button\"\nconst val BUTTON_STYLE_APPEARANCE=\"DesignSystem.Stylish.ButtonAndAppearance\"\nconst val SCREEN_TEXT_STYLE = \"DesignSystem.Text.helloWord\"\nconst val TITLE_SCREEN= \"DesignSystem.Text.Image\"\nconst val TEXT_FONT_MAX = \"DesignSystem.Text.Action.Click\"\nconst val BUTTON_STYLE_FORM = \"DesignSystem.Form.Submit\"\nconst val NAVIGATION_BAR_STYLE = \"DesignSystem.Navigationbar.Style.Green\"\nconst val BUTTON_STYLE_TITLE = \"DesignSystem.Button.Style\"\nconst val BUTTON_STYLE_ACCESSIBILITY = \"DesignSystem.Button.White\"\nconst val NAVIGATION_BAR_STYLE_DEFAULT = \"DesignSystem.Navigationbar.Style.Default\"\nconst val TEXT_IMAGE_REMOTE = \"DesignSystem.Text.Image.Remote\""
-"if !exists('g:rust_conceal') || !has('conceal') || &enc != 'utf-8'\n\tfinish\nendif\n\n\" For those who don't want to see `::`...\nif exists('g:rust_conceal_mod_path')\n\tsyn match rustNiceOperator \"::\" conceal cchar=\u318d\nendif\n\nsyn match rustRightArrowHead contained \">\" conceal cchar=\u2000\nsyn match rustRightArrowTail contained \"-\" conceal cchar=\u27f6\nsyn match rustNiceOperator \"->\" contains=rustRightArrowHead,rustRightArrowTail\n\nsyn match rustFatRightArrowHead contained \">\" conceal cchar=\u2000\nsyn match rustFatRightArrowTail contained \"=\" conceal cchar=\u27f9\nsyn match rustNiceOperator \"=>\" contains=rustFatRightArrowHead,rustFatRightArrowTail\n\nsyn match rustNiceOperator /\\<\\@!_\\(_*\\>\\)\\@=/ conceal cchar=\u2032\n\n\" For those who don't want to see `pub`...\nif exists('g:rust_conceal_pub')\n syn match rustPublicSigil contained \"pu\" conceal cchar=\uff0a\n syn match rustPublicRest contained \"b\" conceal cchar=\u2000\n syn match rustNiceOperator \"pub \" contains=rustPublicSigil,rustPublicRest\nendif\n\nhi link rustNiceOperator Operator\n\nif !exists('g:rust_conceal_mod_path')\n hi! link Conceal Operator\nendif"
-"grammar Jnu;\noptions {\n output = AST; // build trees\n ASTLabelType = JnuAST;\n}\n\ntokens {\n METHOD_DECL; // function definition\n ARG_DECL; // parameter\n BLOCK;\n MEMBERS; // class body\n VAR_DECL;\n FIELD_DECL;\n CALL;\n ELIST; // expression list\n EXPR; \t // root of an expression\n ASSIGN='=';\n EXTENDS;\n}\n\ncompilationUnit\n : ( classDefinition | varDeclaration | methodDeclaration )+ EOF\n ;\n\n// START: class\nclassDefinition\n : 'class' ID superClass? '{' classMember+ '}' ';'\n -> ^('class' ID superClass? ^(MEMBERS classMember+))\n ;\nsuperClass\n\t:\t':' 'public' ID -> ^(EXTENDS ID)\n\t;\n// END: class\n\nclassMember\n\t:\ttype ID ('=' expression)? ';' -> ^(FIELD_DECL type ID expression?)\n\t|\tmethodDeclaration\n\t|\t'public' ':' -> // throw away; just making input valid C++\n\t;\n\t\n// START: method\nmethodDeclaration\n : type ID '(' formalParameters? ')' block\n -> ^(METHOD_DECL type ID formalParameters? block)\n ;\n// END: method\n\nformalParameters\n : type ID (',' type ID)* -> ^(ARG_DECL type ID)+\n ;\n\ntype: 'float'\n | 'int'\n |\t'void'\n |\tID // class type name\n ;\n\n// START: block\nblock\n : '{' statement* '}' -> ^(BLOCK statement*)\n ;\n// END: block\n\n// START: var\nvarDeclaration\n : type ID ('=' expression)? ';' -> ^(VAR_DECL type ID expression?)\n ;\n// END: var\n\nstatement\n : block\n |\tvarDeclaration\n | 'return'"
-"/*\n Copyright 2008 Intel Corporation\n \n Use, modification and distribution are subject to the Boost Software License,\n Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at\n http://www.boost.org/LICENSE_1_0.txt).\n*/\n#ifndef BOOST_POLYGON_PROPERTY_MERGE_HPP\n#define BOOST_POLYGON_PROPERTY_MERGE_HPP\nnamespace boost { namespace polygon{\n\ntemplate \nclass property_merge_point {\nprivate:\n coordinate_type x_, y_;\npublic:\n inline property_merge_point() : x_(), y_() {}\n inline property_merge_point(coordinate_type x, coordinate_type y) : x_(x), y_(y) {}\n //use builtin assign and copy\n inline bool operator==(const property_merge_point& that) const { return x_ == that.x_ && y_ == that.y_; }\n inline bool operator!=(const property_merge_point& that) const { return !((*this) == that); }\n inline bool operator<(const property_merge_point& that) const {\n if(x_ < that.x_) return true;\n if(x_ > that.x_) return false;\n return y_ < that.y_;\n }\n inline coordinate_type x() const { return x_; }\n inline coordinate_type y() const { return y_; }\n inline void x(coordinate_type value) { x_ = value; }\n inline void y(coordinate_type value) { y_ = value; }\n};\n\ntemplate \nclass property_merge_interval {\nprivate:\n coordinate_type low_, high_;\npublic:\n inline property_merge_interval() : low_(), high_() {}\n inline property_merge_interval(coordinate_type low, coordinate_type high) : low_(low), high_(high) {}\n //use builtin assign and copy\n inline bool operator==(const property_merge_interval& that) const { return low_ == that.low_ && high_ == that.high_; }\n inline"
-"/*\nCopyright 2014 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 httplog\n\nimport (\n\t\"bufio\"\n\t\"context\"\n\t\"fmt\"\n\t\"net\"\n\t\"net/http\"\n\t\"runtime\"\n\t\"time\"\n\n\t\"k8s.io/klog/v2\"\n)\n\n// StacktracePred returns true if a stacktrace should be logged for this status.\ntype StacktracePred func(httpStatus int) (logStacktrace bool)\n\ntype logger interface {\n\tAddf(format string, data ...interface{})\n}\n\ntype respLoggerContextKeyType int\n\n// respLoggerContextKey is used to store the respLogger pointer in the request context.\nconst respLoggerContextKey respLoggerContextKeyType = iota\n\n// Add a layer on top of ResponseWriter, so we can track latency and error\n// message sources.\n//\n// TODO now that we're using go-restful, we shouldn't need to be wrapping\n// the http.ResponseWriter. We can recover panics from go-restful, and\n// the logging value is questionable.\ntype respLogger struct {\n\thijacked"
-"\nclass Foo(x: Int) {}\ncase class Bar(y: Int) extends Foo(y);\n\n\ntrait T {}\ntrait U {}\nclass C() {}\n\n\ntrait T1;\ntrait T2 {}\ntrait T5 extends T;\ntrait T6 extends T {}\ntrait T7 extends T with U;\ntrait T8 extends T with U {}\n\nclass C1();\nclass C2() {}\nclass C5() extends C();\nclass C6() extends C() {}\nclass C7() extends C() with U;\nclass C8() extends C() with U {}\n\ncase class D1();\ncase class D2() {}\ncase class D5() extends C();\ncase class D6() extends C() {}\ncase class D7() extends C() with U;\ncase class D8() extends C() with U {}\n\nobject M1;\nobject M2 {}\nobject M5 extends C();\nobject M6 extends C() {}\nobject M7 extends C() with U;\nobject M8 extends C() with U {}\n\n\n\n-----"
-"// Copyright 2013 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 loader\n\n// See doc.go for package documentation and implementation notes.\n\nimport (\n\t\"errors\"\n\t\"fmt\"\n\t\"go/ast\"\n\t\"go/build\"\n\t\"go/parser\"\n\t\"go/token\"\n\t\"go/types\"\n\t\"os\"\n\t\"path/filepath\"\n\t\"sort\"\n\t\"strings\"\n\t\"sync\"\n\t\"time\"\n\n\t\"golang.org/x/tools/go/ast/astutil\"\n)\n\nvar ignoreVendor build.ImportMode\n\nconst trace = false // show timing info for type-checking\n\n// Config specifies the configuration for loading a whole program from\n// Go source code.\n// The zero value for Config is a ready-to-use default configuration.\ntype Config struct {\n\t// Fset is the file set for the parser to use when loading the\n\t// program. If nil, it may be lazily initialized by any\n\t// method of Config.\n\tFset *token.FileSet\n\n\t// ParserMode specifies the mode to be used by the parser when\n\t// loading source packages.\n\tParserMode parser.Mode\n\n\t// TypeChecker contains options relating to the type checker.\n\t//\n\t// The supplied IgnoreFuncBodies is not used; the effective\n\t// value comes from the TypeCheckFuncBodies func below.\n\t// The supplied Import function is not used either.\n\tTypeChecker types.Config\n\n\t// TypeCheckFuncBodies is a predicate over package paths.\n\t// A package for"
-"// Copyright 2010 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 gzip\n\nimport (\n\t\"errors\"\n\t\"fmt\"\n\t\"hash/crc32\"\n\t\"io\"\n\n\t\"github.com/klauspost/compress/flate\"\n)\n\n// These constants are copied from the flate package, so that code that imports\n// \"compress/gzip\" does not also have to import \"compress/flate\".\nconst (\n\tNoCompression = flate.NoCompression\n\tBestSpeed = flate.BestSpeed\n\tBestCompression = flate.BestCompression\n\tDefaultCompression = flate.DefaultCompression\n\tConstantCompression = flate.ConstantCompression\n\tHuffmanOnly = flate.HuffmanOnly\n)\n\n// A Writer is an io.WriteCloser.\n// Writes to a Writer are compressed and written to w.\ntype Writer struct {\n\tHeader // written at first call to Write, Flush, or Close\n\tw io.Writer\n\tlevel int\n\twroteHeader bool\n\tcompressor *flate.Writer\n\tdigest uint32 // CRC-32, IEEE polynomial (section 8)\n\tsize uint32 // Uncompressed size (section 2.3.1)\n\tclosed bool\n\tbuf [10]byte\n\terr error\n}\n\n// NewWriter returns a new Writer.\n// Writes to the returned writer are compressed and written to w.\n//\n// It is the caller's responsibility to call Close on the WriteCloser when done.\n// Writes may be buffered and not flushed until Close.\n//\n// Callers that wish to set the fields in Writer.Header"
-"# Compression\n\n## Client side\nThe preferred method for configuring message compression on a client is to pass `options` when the client object is instantiated.\n\nThese two options control compression behavior:\n\n**grpc.default_compression_algorithm** (int)\n\nDefault compression algorithm for the channel, applies to sending messages.\n\nPossible values for this option are:\n- `0` - No compression\n- `1` - Compress with DEFLATE algorithm\n- `2` - Compress with GZIP algorithm\n- `3` - Stream compression with GZIP algorithm\n\n**grpc.default_compression_level** (int)\n\nDefault compression level for the channel, applies to receiving messages.\n\nPossible values for this option are:\n- `0` - None\n- `1` - Low level\n- `2` - Medium level\n- `3` - High level\n\n### Code example\n```javascript\nclient = new ExampleClient(\"example.com\", credentials.createInsecure(), {'grpc.default_compression_algorithm': 2, 'grpc.default_compression_level': 2});\n```"
-"/*\n * Input Power Event -> APM Bridge\n *\n * Copyright (c) 2007 Richard Purdie\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 version 2 as\n * published by the Free Software Foundation.\n *\n */\n\n#define pr_fmt(fmt) KBUILD_MODNAME \": \" fmt\n\n#include \n#include \n#include \n#include \n#include \n#include \n#include \n#include \n\nstatic void system_power_event(unsigned int keycode)\n{\n\tswitch (keycode) {\n\tcase KEY_SUSPEND:\n\t\tapm_queue_event(APM_USER_SUSPEND);\n\t\tpr_info(\"Requesting system suspend...\\n\");\n\t\tbreak;\n\tdefault:\n\t\tbreak;\n\t}\n}\n\nstatic void apmpower_event(struct input_handle *handle, unsigned int type,\n\t\t\t unsigned int code, int value)\n{\n\t/* only react on key down events */\n\tif (value != 1)\n\t\treturn;\n\n\tswitch (type) {\n\tcase EV_PWR:\n\t\tsystem_power_event(code);\n\t\tbreak;\n\n\tdefault:\n\t\tbreak;\n\t}\n}\n\nstatic int apmpower_connect(struct input_handler *handler,\n\t\t\t\t\t struct input_dev *dev,\n\t\t\t\t\t const struct input_device_id *id)\n{\n\tstruct input_handle *handle;\n\tint error;\n\n\thandle = kzalloc(sizeof(struct input_handle), GFP_KERNEL);\n\tif (!handle)\n\t\treturn -ENOMEM;\n\n\thandle->dev = dev;\n\thandle->handler = handler;\n\thandle->name = \"apm-power\";\n\n\terror = input_register_handle(handle);\n\tif (error) {\n\t\tpr_err(\"Failed to register input power handler, error %d\\n\",\n\t\t error);\n\t\tkfree(handle);\n\t\treturn error;\n\t}\n\n\terror = input_open_device(handle);\n\tif (error) {\n\t\tpr_err(\"Failed to open input power device, error %d\\n\","
-"/*\r\n * Copyright 2008 Pirion Systems Pty Ltd, 139 Warry St,\r\n * Fortitude Valley, Queensland, Australia\r\n *\r\n * This library 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 * This library 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 this library; if not, write to the Free Software\r\n * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\r\n */\r\npackage com.sun.pdfview;\r\n\r\nimport java.io.*;\r\nimport java.util.Map;\r\nimport java.util.HashMap;\r\nimport java.nio.CharBuffer;\r\nimport java.nio.ByteBuffer;\r\nimport java.nio.charset.CharacterCodingException;\r\n\r\n/**\r\n *
Utility methods for dealing with PDF Strings, such as:\r\n *
\r\n *
{@link #asTextString(String) converting to text strings}\r\n *
{@link #asPDFDocEncoded(String) converting to PDFDocEncoded strings}\r\n *
{@link #asUTF16BEEncoded converting to UTF-16BE strings}\r\n *
converting basic strings"
-"import { ElementRef, Component, ViewChild, Input, ChangeDetectionStrategy } from \"@angular/core\";\n\ndeclare var jQuery: any;\n\n/**\n * Component, implementation of Semantic UI popup components.\n *\n * This component is triggered by UIPopupDirective.\n */\n@Component({\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: \"sm-popup\",\n template: `
\n
\n \n
\n
`\n})\nexport class SemanticPopupComponent {\n @ViewChild(\"popup\") popup: ElementRef;\n @Input() class: string;\n\n private visible: boolean = false;\n private element: Element;\n\n show(element: Event, data: {} = {}) {\n\n if (!this.visible) {\n\n this.visible = true;\n this.element = element.target;\n\n const options: {} = Object.assign({\n closable: true,\n exclusive: true,\n lastResort: true,\n on: \"click\",\n onHide: () => this.hide(),\n popup: this.popup.nativeElement,\n position: \"bottom center\",\n preserve: true,\n }, data);\n\n jQuery(this.element)\n .popup(options)\n .popup(\"show\");\n }\n }\n\n hide() {\n if (this.visible && this.element) {\n\n this.visible = false;\n\n jQuery(this.element)\n .popup(\"hide\");\n }\n }\n}"
-"/*\n* Copyright 2012-2016 Broad Institute, Inc.\n* \n* Permission is hereby granted, free of charge, to any person\n* obtaining a copy of this software and associated documentation\n* files (the \"Software\"), to deal in the Software without\n* restriction, including without limitation the rights to use,\n* copy, modify, merge, publish, distribute, sublicense, and/or sell\n* copies of the Software, and to permit persons to whom the\n* Software is furnished to do so, subject to the following\n* conditions:\n* \n* The above copyright notice and this permission notice shall be\n* included in all copies or substantial portions of the Software.\n* \n* THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\n* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\n* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\n* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR\n* THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n*/\n\npackage org.broadinstitute.gatk.utils.commandline;\n\n/**\n * Type of where an argument"
-"/**\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\npackage org.apache.hadoop.mapreduce.lib.db;\n\nimport java.math.BigDecimal;\nimport java.sql.ResultSet;\nimport java.sql.SQLException;\nimport java.util.ArrayList;\nimport java.util.List;\n\nimport org.apache.commons.logging.Log;\nimport org.apache.commons.logging.LogFactory;\n\nimport org.apache.hadoop.classification.InterfaceAudience;\nimport org.apache.hadoop.classification.InterfaceStability;\nimport org.apache.hadoop.conf.Configuration;\nimport org.apache.hadoop.mapreduce.InputSplit;\nimport org.apache.hadoop.mapreduce.MRJobConfig;\n\n/**\n * Implement DBSplitter over BigDecimal values.\n */\n@InterfaceAudience.Public\n@InterfaceStability.Evolving\npublic class BigDecimalSplitter implements DBSplitter {\n private static final Log LOG = LogFactory.getLog(BigDecimalSplitter.class);\n\n public List split(Configuration conf, ResultSet results, String colName)\n throws SQLException {\n\n BigDecimal minVal = results.getBigDecimal(1);\n BigDecimal maxVal = results.getBigDecimal(2);\n\n String lowClausePrefix ="
-"# Getting Started\n\n## Create an AWS account\n\nIn order to complete the hands-on content on this site, you'll need an AWS Account. We strongly recommend that you use a personal account or create a new AWS account to ensure you have the necessary access and that you do not accidentally modify corporate resources. Do **not** use an AWS account from the company you work for unless they provide sandbox accounts just for this purpose.\n\n## Create an IAM user (with admin permissions) \n\nIf you don't already have an AWS IAM user with admin permissions, please use the following instructions to create one:\n\n1. Browse to the AWS IAM console.\n2. Click **Users** on the left navigation and then click **Add User**.\n3. Enter a **User Name**, check the checkbox for **AWS Management Console access**, enter a **Custom Password**, and click **Next:Permissions**.\n4. Click **Attach existing policies directly**, click the checkbox next to the **AdministratorAccess**, and click **Next:review**.\n5. Click **Create User**\n6. Click **Dashboard** on the left navigation and use the **IAM users sign-in link** to login as the admin user you just created.\n\n## Add credits (optional) \n\nIf you are"
-"/*\n * Copyright 2010, The Android Open Source Project\n *\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions\n * are met:\n * * Redistributions of source code must retain the above copyright\n * notice, this list of conditions and the following disclaimer.\n * * Redistributions in binary form must reproduce the above copyright\n * notice, this list of conditions and the following disclaimer in the\n * documentation and/or other materials provided with the distribution.\n *\n * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND ANY\n * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR\n * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\n * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\n * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY\n * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE"
-"/*\n * Copyright (c) 2010-2013, NVIDIA CORPORATION. All rights reserved.\n *\n * This program is free software; you can redistribute it and/or modify it\n * under the terms and conditions of the GNU General Public License,\n * version 2, as published by the Free Software Foundation.\n *\n * This program is distributed in the hope 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 for\n * more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program. If not, see .\n */\n\n#ifndef\t_ASM_ARCH_SPL_H_\n#define\t_ASM_ARCH_SPL_H_\n\n#define BOOT_DEVICE_RAM 1\n\n#endif"
-"/*\nCopyright 2020 The Jetstack cert-manager contributors.\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 main\n\nimport (\n\t\"fmt\"\n\t\"os\"\n\n\tctlcmd \"github.com/jetstack/cert-manager/cmd/ctl/cmd\"\n\tutilcmd \"github.com/jetstack/cert-manager/pkg/util/cmd\"\n)\n\nfunc main() {\n\tstopCh := utilcmd.SetupSignalHandler()\n\tcmd := ctlcmd.NewCertManagerCtlCommand(os.Stdin, os.Stdout, os.Stderr, stopCh)\n\n\tif err := cmd.Execute(); err != nil {\n\t\tfmt.Fprintf(os.Stderr, \"%s\\n\", err)\n\t}\n}"
-"/*\n * Driver for generic ESS AudioDrive ES18xx soundcards\n * Copyright (c) by Christian Fischbach \n * Copyright (c) by Abramo Bagnara \n *\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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n *\n */\n/* GENERAL NOTES:\n *\n * BUGS:\n * - There are pops (we can't delay in trigger function, cause midlevel \n * often need to trigger down and then up very quickly).\n * Any ideas?\n * - Support for 16 bit DMA seems to be broken. I've no hardware"
-"/*\n * linux/fs/nls/mac-romanian.c\n *\n * Charset macromanian translation tables.\n * Generated automatically from the Unicode and charset\n * tables from the Unicode Organization (www.unicode.org).\n * The Unicode to charset table has only exact mappings.\n */\n\n/*\n * COPYRIGHT AND PERMISSION NOTICE\n *\n * Copyright 1991-2012 Unicode, Inc. All rights reserved. Distributed under\n * the Terms of Use in http://www.unicode.org/copyright.html.\n *\n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of the Unicode data files and any associated documentation (the \"Data\n * Files\") or Unicode software and any associated documentation (the\n * \"Software\") to deal in the Data Files or Software without restriction,\n * including without limitation the rights to use, copy, modify, merge,\n * publish, distribute, and/or sell copies of the Data Files or Software, and\n * to permit persons to whom the Data Files or Software are furnished to do\n * so, provided that (a) the above copyright notice(s) and this permission\n * notice appear with all copies of the Data Files or Software, (b) both the\n * above copyright notice(s) and this permission notice appear in associated\n * documentation, and (c) there is clear notice in each modified Data File or\n *"
-"# -*- coding: utf-8 -*-\n\"\"\"Define Dashboard related utilities and miscellaneous logic.\n\nCopyright (C) 2020 Gitcoin Core\n\nThis program is free software: you can redistribute it and/or modify\nit under the terms of the GNU Affero General Public License as published\nby the Free Software Foundation, either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU Affero General Public License for more details.\n\nYou should have received a copy of the GNU Affero General Public License\nalong with this program. If not, see .\n\n\"\"\"\nimport base64\nimport json\nimport logging\nimport re\nfrom json.decoder import JSONDecodeError\n\nfrom django.conf import settings\nfrom django.urls import URLPattern, URLResolver\nfrom django.utils import timezone\n\nimport ipfshttpclient\nimport requests\nfrom app.utils import sync_profile\nfrom avatar.models import CustomAvatar\nfrom compliance.models import Country, Entity\nfrom cytoolz import compose\nfrom dashboard.helpers import UnsupportedSchemaException, normalize_url, process_bounty_changes, process_bounty_details\nfrom dashboard.models import (\n Activity, BlockedUser, Bounty, BountyFulfillment, HackathonRegistration, Profile, UserAction,\n)\nfrom dashboard.sync.btc import sync_btc_payout\nfrom dashboard.sync.celo import sync_celo_payout\nfrom dashboard.sync.etc import sync_etc_payout\nfrom dashboard.sync.eth import"
-"{\n \"id\": \"\",\n \"border_box\": {\n \"size\": [\n 1008,\n 130\n ],\n \"position\": [\n 8,\n 16\n ]\n },\n \"tag\": \"body\",\n \"border\": [\n 0,\n 0,\n 0,\n 0\n ],\n \"content\": {\n \"size\": [\n 1008,\n 130\n ],\n \"position\": [\n 8,\n 16\n ]\n },\n \"padding_box\": {\n \"size\": [\n 1008,\n 130\n ],\n \"position\": [\n 8,\n 16\n ]\n },\n \"children\": [\n {\n \"id\": \"\",\n \"border_box\": {\n \"size\": [\n 482,\n 130\n ],\n \"position\": [\n 8,\n 16\n ]\n },\n \"tag\": \"div\",\n \"border\": [\n 1,\n 1,\n 1,\n 1\n ],\n \"content\": {\n \"size\": [\n 480,\n 128\n ],\n \"position\": [\n 9,\n 17\n ]\n },\n \"padding_box\": {\n \"size\": [\n 480,\n 128\n ],\n \"position\": [\n 9,\n 17\n ]\n },\n \"children\": [\n {\n \"id\": \"\",\n \"border_box\": {\n \"size\": [\n 96,\n 96\n ],\n \"position\": [\n 25,\n 33\n ]\n },\n \"text\": \"one\",\n \"tag\": \"span\",\n \"border\": [\n 0,\n 0,\n 0,\n 0\n ],\n \"content\": {\n \"size\": [\n 96,\n 96\n ],\n \"position\": [\n 25,\n 33\n ]\n },\n \"padding_box\": {\n \"size\": [\n 96,\n 96\n ],\n \"position\": [\n 25,\n 33\n ]\n },\n \"children\": [],\n \"padding\": [\n 0,\n 0,\n 0,\n 0\n ]\n },\n {\n \"id\": \"\",\n \"border_box\": {\n \"size\": [\n 96,\n 96\n ],\n \"position\": [\n 201,\n 33\n ]\n },\n \"text\": \"two\",\n \"tag\": \"span\",\n \"border\": [\n 0,\n 0,\n 0,\n 0\n ],\n \"content\": {\n \"size\": ["
-"/* \n * This file is part of the UCB release of Plan 9. It is subject to the license\n * terms in the LICENSE file found in the top-level directory of this\n * distribution and at http://akaros.cs.berkeley.edu/files/Plan9License. No\n * part of the UCB release of Plan 9, including this file, may be copied,\n * modified, propagated, or distributed except according to the terms contained\n * in the LICENSE file.\n */\n\n#include \n#include \n\nulong\ntruerand(void)\n{\n\tulong x;\n\tstatic int randfd = -1;\n\n\tif(randfd < 0)\n\t\trandfd = open(\"/dev/random\", OREAD|OCEXEC);\n\tif(randfd < 0)\n\t\tsysfatal(\"can't open /dev/random\");\n\tif(read(randfd, &x, sizeof(x)) != sizeof(x))\n\t\tsysfatal(\"can't read /dev/random\");\n\treturn x;\n}"
-"//\n// MBBaseOverlaySettings.h\n// Microblink\n//\n// Created by Dino Gustin on 04/05/2018.\n//\n\n#import \"MBOverlaySettings.h\"\n\nNS_ASSUME_NONNULL_BEGIN\n\n/**\n * Settings class containing UI information\n */\nMB_CLASS_AVAILABLE_IOS(8.0)\n@interface MBBaseOverlaySettings : MBOverlaySettings\n\n/**\n * If YES, Overlay View Controller will be autorotated independently of ScanningViewController.\n *\n * Default: NO.\n */\n@property (nonatomic, assign) BOOL autorotateOverlay;\n\n/**\n * If YES, default camera overlay will display Status bar.\n * Usually, if camera is displayed inside Navigation View Controler, this is reasonable to set to YES.\n *\n * Default: YES on iPhones with notch, NO otherwise.\n */\n@property (nonatomic, assign) BOOL showStatusBar;\n\n/**\n * Default: UIInterfaceOrientationMaskPortrait\n */\n@property (nonatomic, assign) UIInterfaceOrientationMask supportedOrientations;\n\n/**\n * Full path to the sound file which is played when the valid result is scanned.\n *\n * Default: `[bundle pathForResource:@\"PPbeep\" ofType:@\"wav\"];\n */\n@property (nonatomic, strong, nullable) NSString *soundFilePath;\n\n/**\n * Default: YES.\n */\n@property (nonatomic, assign) BOOL displayCancelButton;\n\n/**\n * Default: YES.\n */\n@property (nonatomic, assign) BOOL displayTorchButton;\n\n@end\n\nNS_ASSUME_NONNULL_END"
-"//\n// Basic Bootstrap table\n//\n\n.table {\n width: 100%;\n margin-bottom: $spacer;\n background-color: $table-bg; // Reset for nesting within parents with `background-color`.\n\n th,\n td {\n padding: $table-cell-padding;\n vertical-align: top;\n border-top: $table-border-width solid $table-border-color;\n }\n\n thead th {\n vertical-align: bottom;\n border-bottom: (2 * $table-border-width) solid $table-border-color;\n }\n\n tbody + tbody {\n border-top: (2 * $table-border-width) solid $table-border-color;\n }\n\n .table {\n background-color: $body-bg;\n }\n}\n\n\n//\n// Condensed table w/ half padding\n//\n\n.table-sm {\n th,\n td {\n padding: $table-cell-padding-sm;\n }\n}\n\n\n// Border versions\n//\n// Add or remove borders all around the table and between all the columns.\n\n.table-bordered {\n border: $table-border-width solid $table-border-color;\n\n th,\n td {\n border: $table-border-width solid $table-border-color;\n }\n\n thead {\n th,\n td {\n border-bottom-width: 2 * $table-border-width;\n }\n }\n}\n\n.table-borderless {\n th,\n td,\n thead th,\n tbody + tbody {\n border: 0;\n }\n}\n\n// Zebra-striping\n//\n// Default zebra-stripe styles (alternating gray and transparent backgrounds)\n\n.table-striped {\n tbody tr:nth-of-type(#{$table-striped-order}) {\n background-color: $table-accent-bg;\n }\n}\n\n\n// Hover effect\n//\n// Placed here since it has to come after the potential zebra striping\n\n.table-hover {\n tbody tr {\n @include hover {\n background-color: $table-hover-bg;\n }\n }\n}\n\n\n// Table backgrounds\n//\n// Exact selectors below required to override"
-" SUBROUTINE DGGBAK( JOB, SIDE, N, ILO, IHI, LSCALE, RSCALE, M, V,\n $ LDV, INFO )\n*\n* -- LAPACK routine (version 3.0) --\n* Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd.,\n* Courant Institute, Argonne National Lab, and Rice University\n* September 30, 1994\n*\n* .. Scalar Arguments ..\n CHARACTER JOB, SIDE\n INTEGER IHI, ILO, INFO, LDV, M, N\n* ..\n* .. Array Arguments ..\n DOUBLE PRECISION LSCALE( * ), RSCALE( * ), V( LDV, * )\n* ..\n*\n* Purpose\n* =======\n*\n* DGGBAK forms the right or left eigenvectors of a real generalized\n* eigenvalue problem A*x = lambda*B*x, by backward transformation on\n* the computed eigenvectors of the balanced pair of matrices output by\n* DGGBAL.\n*\n* Arguments\n* =========\n*\n* JOB (input) CHARACTER*1\n* Specifies the type of backward transformation required:\n* = 'N': do nothing, return immediately;\n* = 'P': do backward transformation for permutation only;\n* = 'S': do backward transformation for scaling only;\n* = 'B': do backward transformations for both permutation and\n* scaling.\n* JOB must be the same as the argument JOB supplied to DGGBAL.\n*\n* SIDE (input) CHARACTER*1\n* ="
-"#\n# Appletalk driver configuration\n#\nconfig ATALK\n\ttristate \"Appletalk protocol support\"\n\tselect LLC\n\t---help---\n\t AppleTalk is the protocol that Apple computers can use to communicate\n\t on a network. If your Linux box is connected to such a network and you\n\t wish to connect to it, say Y. You will need to use the netatalk package\n\t so that your Linux box can act as a print and file server for Macs as\n\t well as access AppleTalk printers. Check out\n\t on the WWW for details.\n\t EtherTalk is the name used for AppleTalk over Ethernet and the\n\t cheaper and slower LocalTalk is AppleTalk over a proprietary Apple\n\t network using serial links. EtherTalk and LocalTalk are fully\n\t supported by Linux.\n\n\t General information about how to connect Linux, Windows machines and\n\t Macs is on the WWW at . The\n\t NET3-4-HOWTO, available from\n\t , contains valuable\n\t information as well.\n\n\t To compile this driver as a module, choose M here: the module will be\n\t called appletalk. You almost certainly want to compile it as a\n\t module so you can restart your AppleTalk stack without rebooting\n\t your machine. I hear that the GNU boycott of Apple is over, so\n\t even politically correct people are allowed to"
-"package hystrix\n\ntype executorPool struct {\n\tName string\n\tMetrics *poolMetrics\n\tMax int\n\tTickets chan *struct{}\n}\n\nconst ConcurrentRequestsLimit = 5000\n\nfunc newExecutorPool(name string) *executorPool {\n\tp := &executorPool{}\n\tp.Name = name\n\tp.Metrics = newPoolMetrics(name)\n\tp.Max = getSettings(name).MaxConcurrentRequests\n\tif p.Max > ConcurrentRequestsLimit {\n\t\tp.Max = ConcurrentRequestsLimit\n\t}\n\n\tp.Tickets = make(chan *struct{}, p.Max)\n\tfor i := 0; i < p.Max; i++ {\n\t\tp.Tickets <- &struct{}{}\n\t}\n\n\treturn p\n}\n\nfunc (p *executorPool) Return(ticket *struct{}) {\n\tif ticket == nil {\n\t\treturn\n\t}\n\n\tp.Metrics.Updates <- poolMetricsUpdate{\n\t\tactiveCount: p.ActiveCount(),\n\t}\n\tp.Tickets <- ticket\n}\n\nfunc (p *executorPool) ActiveCount() int {\n\treturn p.Max - len(p.Tickets)\n}"
-"open Cil_types\n\nlet mach =\n{\n version = \"foo\";\n compiler = \"bar\";\n cpp_arch_flags = [];\n sizeof_short = 2;\n sizeof_int = 3;\n sizeof_long = 4;\n sizeof_longlong = 8;\n sizeof_ptr = 4;\n sizeof_float = 4;\n sizeof_double = 8;\n sizeof_longdouble = 12;\n sizeof_void = 1;\n sizeof_fun = 1;\n size_t = \"unsigned long\";\n wchar_t = \"int\";\n ptrdiff_t = \"int\";\n alignof_short = 2;\n alignof_int = 3;\n alignof_long = 4;\n alignof_longlong = 4;\n alignof_ptr = 4;\n alignof_float = 4;\n alignof_double = 4;\n alignof_longdouble = 4;\n alignof_str = 1;\n alignof_fun = 1;\n alignof_aligned= 16;\n char_is_unsigned = false;\n const_string_literals = true;\n little_endian = true;\n underscore_name = false ;\n has__builtin_va_list = true;\n __thread_is_keyword = true;\n}\n\nlet mach2 = { mach with compiler = \"baz\" }\n\n(* First run : register [mach] under name [custom].\n Second run :\n - register [mach] under name [custom] again. This must work.\n - then register [mach2] under name [custom]. This must result in an error.\n*)\nlet () =\n let ran = ref false in\n Cmdline.run_after_loading_stage\n (fun () ->\n Kernel.result \"Registering machdep 'mach' as 'custom'\";\n File.new_machdep \"custom\" mach;\n if !ran then begin\n Kernel.result \"Trying to register machdep 'mach2' as 'custom'\";\n File.new_machdep \"custom\" mach2\n end\n else ran := true\n )"
-"import {COMPOUND_FIELD_RGX} from \"../compoundField\"\nimport {isString} from \"../../lib/is\"\n\ntype ZngRecordType = {name: string; type: ZngRecordType | string}[]\n\nexport default function zngToZeekTypes(zng: ZngRecordType): ZngRecordType {\n return zng.map((t) => ({\n name: t.name,\n type: recursiveReplace(t.type)\n }))\n}\n\nfunction recursiveReplace(zng: ZngRecordType | string): ZngRecordType | string {\n if (isString(zng)) return getZeekType(zng)\n else return zngToZeekTypes(zng)\n}\n\nfunction getZeekType(type: string): string {\n const match = type.match(COMPOUND_FIELD_RGX)\n if (match) {\n const [_, container, itemType] = match\n const zeekType = getSingleZeekType(itemType)\n return `${container}[${zeekType}]`\n } else {\n return getSingleZeekType(type)\n }\n}\n\nfunction getSingleZeekType(type) {\n switch (type) {\n case \"byte\":\n case \"int16\":\n case \"int32\":\n case \"int64\":\n case \"uint16\":\n case \"uint32\":\n return \"int\"\n case \"uint64\":\n return \"count\"\n case \"float64\":\n return \"double\"\n case \"ip\":\n return \"addr\"\n case \"net\":\n return \"subnet\"\n case \"duration\":\n return \"interval\"\n case \"bstring\":\n return \"string\"\n case \"zenum\":\n return \"enum\"\n default:\n return type\n }\n}"
-"/**\n * Adds behavior to allow a div to be resized\n * Stores and restores the resized width\n *\n * @author Tamara Robichet \n * @copyright 2017 Akeneo SAS (http://www.akeneo.com)\n * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)\n */\ndefine(['jquery'], function($) {\n return {\n /**\n * @property {Number} maxWidth The maximum width of the panel in pixels\n * @property {Number} minWidth The minimum width of the panel in pixels\n * @property {String|HTMLElement} container A selector or element that will be resizable\n * @property {String} storageKey The name of the localStorage key to store the width\n */\n options: {\n maxWidth: null,\n minWidth: null,\n container: null,\n storageKey: null\n },\n\n /**\n * Set the div with the provided container as resizable\n * with jQuery UI.\n *\n * @param {Object} options\n */\n set(options = {}) {\n this.options = Object.assign(this.options, options);\n\n const { maxWidth, minWidth, container } = this.options;\n\n if (null === container) {\n throw new Error('You must specify the container as an element or CSS selector');\n }\n\n $(container).resizable({\n zIndex: 0,\n maxWidth,\n minWidth,\n handles: 'e',\n create: this.restoreWidth.bind(this),\n stop: this.storeWidth.bind(this)\n });\n },\n\n /**\n * Destroy the resizable and handler events\n */\n destroy() {\n const container = $(this.options.container);\n const resizableInstance = container.resizable('instance');\n\n if (undefined !== resizableInstance) {"
-"package training.learn.lesson.swift.rundebugtest\n\nimport training.learn.LessonsBundle\nimport training.learn.interfaces.Module\nimport training.learn.lesson.kimpl.*\n\nclass SwiftRunLesson(module: Module) : KLesson(\"swift.rdt.run\", LessonsBundle.message(\"swift.rdt.run.name\"), module, \"Swift\") {\n\n private val sample: LessonSample = parseLessonSample(\"\"\"\nimport UIKit\n\nclass RunExample: UIViewController {\n\n override func viewDidLoad() {\n super.viewDidLoad()\n\n let x = 0\n let y = 50\n\n let tableView = UITableView()\n\n let header = UILabel()\n header.text = \"AppCode\"\n header.sizeToFit()\n\n tableView.frame = CGRect(x: x, y: y, width: 320, height: 400)\n tableView.tableHeaderView = header\n self.view.addSubview(tableView)\n }\n}\"\"\".trimIndent())\n override val lessonContent: LessonContext.() -> Unit = {\n prepareSample(sample)\n\n task { caret(6, 10) }\n task {\n triggers(\"Run\")\n text(LessonsBundle.message(\"swift.rdt.run.actions\", action(\"Run\")))\n }\n task {\n triggers(\"Stop\")\n text(LessonsBundle.message(\"swift.rdt.run.stop\", action(\"Stop\")))\n }\n task {\n triggers(\"ChooseRunConfiguration\")\n text(LessonsBundle.message(\"swift.rdt.run.another\", action(\"ChooseRunConfiguration\"), LessonUtil.rawEnter()))\n }\n task {\n triggers(\"Stop\")\n text(LessonsBundle.message(\"swift.rdt.run.final\", action(\"Stop\")))\n }\n }\n}"
-"// Code generated by sqlc. DO NOT EDIT.\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst selectUserArg = `-- name: SelectUserArg :many\nSELECT first_name from\nusers where (? = id OR ? = 0)\n`\n\nfunc (q *Queries) SelectUserArg(ctx context.Context, id interface{}) ([]string, error) {\n\trows, err := q.db.QueryContext(ctx, selectUserArg, id)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar first_name string\n\t\tif err := rows.Scan(&first_name); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, first_name)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst selectUserQuestion = `-- name: SelectUserQuestion :many\nSELECT first_name from\nusers where (? = id OR ? = 0)\n`\n\ntype SelectUserQuestionParams struct {\n\tColumn1 interface{}\n\tColumn2 interface{}\n}\n\nfunc (q *Queries) SelectUserQuestion(ctx context.Context, arg SelectUserQuestionParams) ([]string, error) {\n\trows, err := q.db.QueryContext(ctx, selectUserQuestion, arg.Column1, arg.Column2)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar first_name string\n\t\tif err := rows.Scan(&first_name); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, first_name)"
-"# Configuration file for PreTeXt's \"pretext\" script\n\n# **********************************************************************\n# Copyright 2014 Robert A. Beezer\n#\n# This file is part of PreTeXt.\n#\n# PreTeXt 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 or version 3 of the\n# License (at your option).\n#\n# PreTeXt 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 PreTeXt. If not, see .\n# ***********************************************************************\n\n# ***********************************************************************\n# DO NOT EDIT THIS FILE\n#\n# IT WILL BE OVERWRITTEN WITH UPDATES AND YOUR CHANGES WILL BE LOST\n#\n# Instead, make a copy as mathbook/user/pretext.cfg\n# (Create the user directory at the same level as the mathbook/pretext directory)\n# And perhaps delete this notice, as it may confuse you\n# Only the options needing changes need to be listed in custom version"
-"/*!\n * VERSION: 0.1.3\n * DATE: 2018-08-27\n * UPDATES AND DOCS AT: http://greensock.com\n *\n * @license Copyright (c) 2008-2019, GreenSock. All rights reserved.\n * This work is subject to the terms at http://greensock.com/standard-license or for\n * Club GreenSock members, the software agreement that was issued with your membership.\n *\n * @author: Jack Doyle, jack@greensock.com\n */\n/* eslint-disable */\n\nimport { _gsScope } from \"./TweenLite.js\";\n\nexport var EndArrayPlugin = _gsScope._gsDefine.plugin({\n\t\tpropName: \"endArray\",\n\t\tAPI: 2,\n\t\tversion: \"0.1.3\",\n\n\t\t//called when the tween renders for the first time. This is where initial values should be recorded and any setup routines should run.\n\t\tinit: function(target, value, tween) {\n\t\t\tvar i = value.length,\n\t\t\t\ta = this.a = [],\n\t\t\t\tstart, end;\n\t\t\tthis.target = target;\n\t\t\tthis._mod = 0;\n\t\t\tif (!i) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\twhile (--i > -1) {\n\t\t\t\tstart = target[i];\n\t\t\t\tend = value[i];\n\t\t\t\tif (start !== end) {\n\t\t\t\t\ta.push({i:i, s:start, c:end - start});\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn true;\n\t\t},\n\n\t\tmod: function(lookup) {\n\t\t\tif (typeof(lookup.endArray) === \"function\") {\n\t\t\t\tthis._mod = lookup.endArray;\n\t\t\t}\n\t\t},\n\n\t\t//called each time the values should be updated, and the ratio gets passed as the only parameter (typically it's a value between 0 and 1, but it can exceed those when using an ease like"
-"# Load balancing\n\nThis examples shows how `ClientConn` can pick different load balancing policies.\n\nNote: to show the effect of load balancers, an example resolver is installed in\nthis example to get the backend addresses. It's suggested to read the name\nresolver example before this example.\n\n## Try it\n\n```\ngo run server/main.go\n```\n\n```\ngo run client/main.go\n```\n\n## Explanation\n\nTwo echo servers are serving on \":50051\" and \":50052\". They will include their\nserving address in the response. So the server on \":50051\" will reply to the RPC\nwith `this is examples/load_balancing (from :50051)`.\n\nTwo clients are created, to connect to both of these servers (they get both\nserver addresses from the name resolver).\n\nEach client picks a different load balancer (using `grpc.WithBalancerName`):\n`pick_first` or `round_robin`. (These two policies are supported in gRPC by\ndefault. To add a custom balancing policy, implement the interfaces defined in\nhttps://godoc.org/google.golang.org/grpc/balancer).\n\nNote that balancers can also be switched using service config, which allows\nservice owners (instead of client owners) to pick the balancer to use. Service\nconfig doc is available at\nhttps://github.com/grpc/grpc/blob/master/doc/service_config.md.\n\n### pick_first\n\nThe first client is configured to use `pick_first`. `pick_first` tries to\nconnect to the first address, uses it for"
-"/*\n * Copyright 2017 Red Hat, Inc. and/or its affiliates.\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.jboss.qa.bpms.dm.iberia;\n\npublic class Reservation extends java.lang.Object implements java.io.Serializable {\n\n static final long serialVersionUID = 1L;\n\n private java.lang.String flight;\n\n private org.jboss.qa.bpms.dm.iberia.Passenger passenger;\n\n private java.lang.Integer seat;\n\n public Reservation() {\n }\n\n public Reservation(java.lang.String flight, org.jboss.qa.bpms.dm.iberia.Passenger passenger, java.lang.Integer seat) {\n this.flight = flight;\n this.passenger = passenger;\n this.seat = seat;\n }\n\n public java.lang.String getFlight() {\n return this.flight;\n }\n\n public void setFlight(java.lang.String flight) {\n this.flight = flight;\n }\n \n public org.jboss.qa.bpms.dm.iberia.Passenger getPassenger() {\n return this.passenger;\n }\n\n public void setPassenger(org.jboss.qa.bpms.dm.iberia.Passenger passenger) {\n this.passenger = passenger;\n }\n \n public java.lang.Integer getSeat() {\n return this.seat;\n }\n\n public void setSeat(java.lang.Integer seat) {\n this.seat = seat;\n }\n}"
-"/*\n * Copyright (c) 2016, 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. Oracle designates this\n * particular file as subject to the \"Classpath\" exception as provided\n * by Oracle in the LICENSE file that accompanied this code.\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"
-"#!/usr/bin/env node\n\nvar rimraf = require('./')\n\nvar help = false\nvar dashdash = false\nvar noglob = false\nvar args = process.argv.slice(2).filter(function(arg) {\n if (dashdash)\n return !!arg\n else if (arg === '--')\n dashdash = true\n else if (arg === '--no-glob' || arg === '-G')\n noglob = true\n else if (arg === '--glob' || arg === '-g')\n noglob = false\n else if (arg.match(/^(-+|\\/)(h(elp)?|\\?)$/))\n help = true\n else\n return !!arg\n})\n\nif (help || args.length === 0) {\n // If they didn't ask for help, then this is not a \"success\"\n var log = help ? console.log : console.error\n log('Usage: rimraf [ ...]')\n log('')\n log(' Deletes all files and folders at \"path\" recursively.')\n log('')\n log('Options:')\n log('')\n log(' -h, --help Display this usage info')\n log(' -G, --no-glob Do not expand glob patterns in arguments')\n log(' -g, --glob Expand glob patterns in arguments (default)')\n process.exit(help ? 0 : 1)\n} else\n go(0)\n\nfunction go (n) {\n if (n >= args.length)\n return\n var options = {}\n if (noglob)\n options = { glob: false }\n rimraf(args[n], options, function (er) {\n if (er)\n throw er\n go(n+1)\n })\n}"
-"# \n# Copyright (c) 2005, 2013, 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. Oracle designates this\n# particular file as subject to the \"Classpath\" exception as provided\n# by Oracle in the LICENSE file that accompanied this code.\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"
-"\n \u3000\u4e94 \u4e4b\u540e \u80a1\u5e02 \u706b\u7206 \u8fde\u7eed \u5929\u5927 \u4e00\u4e3e \u7a81\u7834 \u4e94\u5927 \u6295\u8d44\u8005 \u878d\u901a \u57fa\u91d1 \u7ba1\u7406 \u516c\u53f8 \u9996\u5e2d \u5206\u6790\u5e08 \u878d\u901a \u884c\u4e1a \u666f\u6c14 \u57fa\u91d1 \u7ecf\u7406 \u51af\u5b87\u8f89 \u8868\u793a \u706b\u7206 \u57fa\u672c\u9762 \u91cd\u4e8e \u6700\u91cd\u8981 \u9009\u80a1 \n \u6295\u8d44\u8005 \u660e\u767d \u575a\u6301 \n \u3000\u51af \u8868\u793a \u57fa\u91d1 \u7ecf\u7406 \u540c\u6837 \u82e6\u82e6 \u575a\u6301 \u7ecf\u9a8c \u53bb\u5e74 \u878d\u901a \u884c\u4e1a \u7814\u7a76\u5458 \u5b9e\u5730 \u8c03\u7814 \u63a8\u8350 \u5e7f\u8239 \u56fd\u9645 \u5f53\u65f6 \u53d7\u7d2f \u94a2\u6750 \u4ef7\u683c \u8fde\u5e74 \u4e0a\u6da8 \u56fd\u5185 \u9020\u8239\u4e1a \u4e00\u76f4 \u5904\u4e8e \u4e0b\u964d \u901a\u9053 \u5e7f\u8239 \u56fd\u9645 \u4e1a\u7ee9 \u60c5\u51b5 \u7406\u60f3 \u6ca1\u6709 \u4e00\u5bb6 \u57fa\u91d1 \u770b\u597d \u6295\u8d44 \u5e7f\u8239 \u56fd\u9645 \u9999\u6e2f \u5e02\u573a \u4e00\u76f4 \u4f4e\u8ff7 \n \u516c\u53f8 \u53ec\u5f00 \u4e13\u9898 \u8bba\u8bc1\u4f1a \u6fc0\u70c8 \u8ba8\u8bba \u516c\u53f8 \u5185\u90e8 \u5f62\u6210 \u5171\u8bc6 \u9020\u8239\u4e1a \u6b63\u5904\u4e8e \u884c\u4e1a \u666f\u6c14 \u5468\u671f \u62d0\u70b9 \u5e7f\u8239 \u56fd\u9645 \u8ba2\u5355 \u60c5\u51b5 \u672a\u6765 \u4e1a\u7ee9 \u5927\u5e45\u5ea6 \u63d0\u5347 \u878d\u901a \u884c\u4e1a \u666f\u6c14 \u57fa\u91d1 \u57fa\u91d1 \u901a\u4e7e \u51b3\u5b9a \u91cd\u4ed3 \u4ecb\u5165 \n \u5176\u540e \u76f8\u5f53 \u65f6\u95f4 \u878d\u901a \u57fa\u91d1 \u4e00\u5bb6 \u673a\u6784 \u770b\u597d \u5e7f\u8239 \u56fd\u9645 \u4ef7\u683c \u4f9d\u7136 \u4f4e\u8ff7 \u53bb\u5e74 \u60c5\u51b5 \u53d8\u5f97 \u4ef7\u683c \u6700\u4f4e \u4e0b\u8dcc \u4ef7\u683c 60% \u5de6\u53f3 \u5f53\u65f6 \u62e5\u6709 \u4e0a\u5e02\u516c\u53f8 \u80a1\u4ef7 \u666e\u904d \u63a5\u8f68 \u4f4e\u4e8e \u4e0d\u5728\u5c11\u6570 \u57fa\u91d1 \u7ecf\u7406 \u5b87\u8f89 \u5766\u627f \u611f\u5230 \u538b\u529b \u5de8\u5927 \u575a\u6301 \u4e0b\u6765 \u516c\u53f8 \u57fa\u672c\u9762 \u4e86\u89e3 \u6e05\u695a \u76f8\u4fe1 \u6700\u7ec8 \u5e02\u573a \u8ba4\u53ef \n \u3000\u51af \u5f88\u5feb \u7ed3\u675f \u96be\u71ac \u65e5\u5b50 \u9999\u6e2f \u5e02\u573a \u7ec8\u4e8e \u8ba4\u8bc6\u5230 \u5e7f\u8239 \u56fd\u9645 \u6295\u8d44 \u4ef7\u503c \u7387\u5148 \u5e26\u52a8 \u8fc5\u901f \u8d70\u9ad8 \u8fdb\u5165 \u5e7f\u8239 \u56fd\u9645 \u4ef7\u683c \u8d85\u8fc7 \u76ee\u524d \u5e7f\u8239 \u56fd\u9645 \u80a1\u6539 \u505c\u724c \u505c\u724c \u6536\u62a5 \u53bb\u5e74 \u4ef7\u683c \u76f8\u6bd4 \u51fa\u5934 \u878d\u901a \u65d7\u4e0b \u57fa\u91d1 \u5e7f\u8239 \u56fd\u9645 \u83b7\u5229 \u8d85\u8fc7 100% \n \u5e02\u573a \u5df2\u7ecf \u80fd\u591f"
-"/**\n * \\file\n * \\brief Bench library.\n */\n\n/*\n * Copyright (c) 2007, 2008, 2009, 2010, ETH Zurich.\n * All rights reserved.\n *\n * This file is distributed under the terms in the attached LICENSE file.\n * If you do not find this file, copies can be found by writing to:\n * ETH Zurich D-INFK, Haldeneggsteig 4, CH-8092 Zurich. Attn: Systems Group.\n */\n\n#ifndef BENCH_H\n#define BENCH_H\n\n#include // for cycles_t\n#include \n#include \n\n#define BENCH_IGNORE_WATERMARK 0XDEADBEEF\n\n__BEGIN_DECLS\nvoid bench_init(void);\ncycles_t bench_avg(cycles_t *array, size_t len);\ncycles_t bench_variance(cycles_t *array, size_t len);\ncycles_t bench_min(cycles_t *array, size_t len);\ncycles_t bench_max(cycles_t *array, size_t len);\ncycles_t bench_tscoverhead(void);\n__END_DECLS\n\n\n/*\n * Control functions for benchmarks\n */\n\nenum bench_ctl_mode {\n // Fixed number of runs (exactly min_runs)\n BENCH_MODE_FIXEDRUNS,\n};\n\nstruct bench_ctl {\n enum bench_ctl_mode mode;\n size_t result_dimensions;\n\n size_t min_runs;\n size_t dry_runs;\n\n size_t result_count;\n cycles_t *data;\n};\n\ntypedef struct bench_ctl bench_ctl_t;\n\n\n/**\n * Initialize a benchmark control instance.\n *\n * @param mode Mode of the benchmark (enum bench_ctl_mode)\n * @param dimensions Number of values each run produces\n * @param min_runs Minimal number of runs to be executed\n *\n * @return Control handle, to be passed on subsequent calls to bench_ctl_\n * functions.\n */\nbench_ctl_t *bench_ctl_init(enum bench_ctl_mode"
-"class Foo {\n // function fBar (x,y);\n fOne(argA, argB, argC, \nargD, argE, argF, argG, argH) {\n Array numbers = ['one', 'two', 'three', 'four', 'five', 'six'];\n var x = (\"\" + argA) + \n argB + argC + argD + \n argE + argF + argG + argH;\n try {\n this.fTwo (\n argA, argB, argC, this.fThree (\n \"\", argE, argF, argG, argH));\n } catch (e,s) {}\n var z =\n argA == 'Some string' ?\n 'yes' : 'no';\n var colors = ['red', 'green', 'blue', 'black', 'white', 'gray'];\n for (colorIndex in colors) {\n var colorString = numbers[ colorIndex];\n }\n do {\n colors.pop();\n } while (colors.length > 0);\n }\n\n fTwo(strA, \n strB, strC, strD) {\n if\n (true)\n return strC;\n if (strA == 'one' ||\n strB == 'two') {\n return strA + strB;\n }\n else if (true) return strD;\n throw strD;\n }\n\n fThree(\n strA, strB, strC, strD, strE) {\n return strA + strB + strC + strD + strE;\n }\n}"
-"Package[\"SetReplace`\"]\n\nPackageScope[\"setSubstitutionSystem$wl\"]\n\n(* This is the implementation of setSubstitutionSystem in Wolfram Language. Works better with larger vertex degrees,\n but is otherwise much slower. Supports arbitrary pattern rules with conditions. Does not support multiway systems. *)\n\n(* We are going to transform set substitution rules into a list of n! normal rules, where elements of the input subset\n are arranged in every possible order with blank null sequences in between. *)\n\nallLeftHandSidePermutations[input_Condition :> output_List] := Module[\n {inputLength, inputPermutations, heldOutput},\n inputLength = Length @ input[[1]];\n\n inputPermutations = Permutations @ input[[1]];\n heldOutput = Thread @ Hold @ output;\n\n With[{right = heldOutput, condition = input[[2]]}, (* condition is already held before it's passed here *)\n # /; condition :> right & /@ inputPermutations] /. Hold[expr_] :> expr\n] \n\n(* Now, if there are new vertices that need to be created, we will disassemble the Module remembering which variables\n it applies to, and then reassemble it for the output. *)\n\nallLeftHandSidePermutations[input_Condition :> output_Module] := Module[\n {ruleInputOriginal = input[[1]],\n ruleCondition = heldPart[input, 2],\n heldModule = mapHold[output, {0, 1}],\n moduleInputContents},\n moduleInputContents = heldModule[[1, 2]];\n With[{ruleInputFinal = #[[1]],\n moduleArguments = heldModule[[1, 1]],\n moduleOutputContents = (Hold /@ #)[[2]]},\n ruleInputFinal :> Module[moduleArguments, moduleOutputContents]\n ] & /@ allLeftHandSidePermutations[\n ruleInputOriginal /; ruleCondition"
-"/*\n * Copyright Amazon.com, Inc. or its affiliates. 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 * A copy of the License is located at\n * \n * http://aws.amazon.com/apache2.0\n * \n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License.\n */\n\n/*\n * Do not modify this file. This file is generated from the wafv2-2019-07-29.normal.json service model.\n */\nusing System;\nusing System.Collections.Generic;\nusing System.Xml.Serialization;\nusing System.Text;\nusing System.IO;\nusing System.Net;\n\nusing Amazon.Runtime;\nusing Amazon.Runtime.Internal;\n\nnamespace Amazon.WAFV2.Model\n{\n /// \n /// This is the response object from the ListTagsForResource operation.\n /// \n public partial class ListTagsForResourceResponse : AmazonWebServiceResponse\n {\n private string _nextMarker;\n private TagInfoForResource _tagInfoForResource;\n\n /// \n /// Gets and sets the property NextMarker. \n /// \n /// When you request a list of objects with a Limit setting, if the number\n /// of objects that are still available for retrieval exceeds the limit, AWS WAF returns\n ///"
-"--TEST--\nTest date_sunrise() function : usage variation - Passing unexpected values to fifth argument zenith\n--FILE--\n 1, 'two' => 2);\n\n//array of values to iterate over\n$inputs = array(\n\n // int data\n 'int 0' => 0,\n 'int 1' => 1,\n 'int 12345' => 12345,\n 'int -12345' => -12345,\n\n // array data\n 'empty array' => array(),\n 'int indexed array' => $index_array,\n 'associative array' => $assoc_array,\n 'nested arrays' => array('foo', $index_array,"
-"/**\n Copyright (c) 2014-present, Facebook, Inc.\n All rights reserved.\n \n This source code is licensed under the BSD-style license found in the\n LICENSE file in the root directory of this source tree. An additional grant\n of patent rights can be found in the PATENTS file in the same directory.\n */\n\n#import \n\n#import \n#import \n\n@class CAMediaTimingFunction;\n\n/**\n @abstract The abstract animation base class.\n @discussion Instantiate and use one of the concrete animation subclasses.\n */\n@interface POPAnimation : NSObject\n\n/**\n @abstract The name of the animation.\n @discussion Optional property to help identify the animation.\n */\n@property (copy, nonatomic) NSString *name;\n\n/**\n @abstract The beginTime of the animation in media time.\n @discussion Defaults to 0 and starts immediately.\n */\n@property (assign, nonatomic) CFTimeInterval beginTime;\n\n/**\n @abstract The animation delegate.\n @discussion See {@ref POPAnimationDelegate} for details.\n */\n@property (weak, nonatomic) id delegate;\n\n/**\n @abstract The animation tracer.\n @discussion Returns the existing tracer, creating one if needed. Call start/stop on the tracer to toggle event collection.\n */\n@property (readonly, nonatomic) POPAnimationTracer *tracer;\n\n/**\n @abstract Optional block called on animation completion.\n */\n@property (copy, nonatomic) void (^completionBlock)(POPAnimation *anim, BOOL finished);\n\n/**\n @abstract Flag indicating whether animation should be removed on completion.\n @discussion Setting to"
-"package internal_test\n\nimport (\n\t\"testing\"\n\n\t\"github.com/ThreeDotsLabs/watermill/internal\"\n\t\"github.com/stretchr/testify/assert\"\n)\n\nfunc TestIsChannelClosed(t *testing.T) {\n\tclosed := make(chan struct{})\n\tclose(closed)\n\n\twithSentValue := make(chan struct{}, 1)\n\twithSentValue <- struct{}{}\n\n\ttestCases := []struct {\n\t\tName string\n\t\tChannel chan struct{}\n\t\tExpectedPanic bool\n\t\tExpectedClosed bool\n\t}{\n\t\t{\n\t\t\tName: \"not_closed\",\n\t\t\tChannel: make(chan struct{}),\n\t\t\tExpectedPanic: false,\n\t\t\tExpectedClosed: false,\n\t\t},\n\t\t{\n\t\t\tName: \"closed\",\n\t\t\tChannel: closed,\n\t\t\tExpectedPanic: false,\n\t\t\tExpectedClosed: true,\n\t\t},\n\t\t{\n\t\t\tName: \"with_sent_value\",\n\t\t\tChannel: withSentValue,\n\t\t\tExpectedPanic: true,\n\t\t\tExpectedClosed: false,\n\t\t},\n\t}\n\n\tfor _, c := range testCases {\n\t\tt.Run(c.Name, func(t *testing.T) {\n\t\t\ttestFunc := func() {\n\t\t\t\tclosed := internal.IsChannelClosed(c.Channel)\n\t\t\t\tassert.EqualValues(t, c.ExpectedClosed, closed)\n\t\t\t}\n\n\t\t\tif c.ExpectedPanic {\n\t\t\t\tassert.Panics(t, testFunc)\n\t\t\t} else {\n\t\t\t\tassert.NotPanics(t, testFunc)\n\t\t\t}\n\t\t})\n\t}\n}"
-"/*\n Simple DirectMedia Layer\n Copyright (C) 1997-2019 Sam Lantinga \n\n This software is provided 'as-is', without any express or implied\n warranty. In no event will the authors be held liable for any damages\n arising from the use of this software.\n\n Permission is granted to anyone to use this software for any purpose,\n including commercial applications, and to alter it and redistribute it\n freely, subject to the following restrictions:\n\n 1. The origin of this software must not be misrepresented; you must not\n claim that you wrote the original software. If you use this software\n in a product, an acknowledgment in the product documentation would be\n appreciated but is not required.\n 2. Altered source versions must be plainly marked as such, and must not be\n misrepresented as being the original software.\n 3. This notice may not be removed or altered from any source distribution.\n*/\n#include \"../SDL_internal.h\"\n\n#include \"SDL_video.h\"\n#include \"SDL_sysvideo.h\"\n#include \"SDL_blit.h\"\n#include \"SDL_RLEaccel_c.h\"\n#include \"SDL_pixels_c.h\"\n#include \"SDL_yuv_c.h\"\n\n\n/* Check to make sure we can safely check multiplication of surface w and pitch and it won't overflow size_t */\nSDL_COMPILE_TIME_ASSERT(surface_size_assumptions,\n sizeof(int) == sizeof(Sint32) && sizeof(size_t) >= sizeof(Sint32));\n\n/* Public routines */\n\n/*\n * Calculate the pad-aligned scanline width of a surface"
-"/*\n * Copyright (C) 2014, United States Government, as represented by the\n * Administrator of the National Aeronautics and Space Administration.\n * All rights reserved.\n *\n * The Java Pathfinder core (jpf-core) platform is licensed under the\n * Apache License, Version 2.0 (the \"License\"); you may not use this file except\n * in compliance 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 */\npackage gov.nasa.jpf;\n\nimport gov.nasa.jpf.jvm.ClassFile;\nimport gov.nasa.jpf.report.Publisher;\nimport gov.nasa.jpf.report.PublisherExtension;\nimport gov.nasa.jpf.search.Search;\nimport gov.nasa.jpf.search.SearchListener;\nimport gov.nasa.jpf.vm.ChoiceGenerator;\nimport gov.nasa.jpf.vm.ClassInfo;\nimport gov.nasa.jpf.vm.ElementInfo;\nimport gov.nasa.jpf.vm.Instruction;\nimport gov.nasa.jpf.vm.MethodInfo;\nimport gov.nasa.jpf.vm.ThreadInfo;\nimport gov.nasa.jpf.vm.VM;\nimport gov.nasa.jpf.vm.VMListener;\n\n/**\n * abstract base class that dummy implements Property, Search- and VMListener methods\n * convenient for creating listeners that act as properties, just having to override\n * the methods they need\n *\n * the only local functionality is that instances register themselves automatically\n * as property when the search"
-"Teclas de Atalhos Gen\u00e9ricas\n===========================\n\nAlgumas das teclas de atalhos se aplicam a qualquer painel que esteja\nselecionado. Elas s\u00e3o chamadas teclas de atalhos gen\u00e9ricas.\n\nAqui est\u00e1 a lista de todas as teclas de atalhos gen\u00e9ricas, junto com\nsuas respectivas a\u00e7\u00f5es:\n\n '^R' : Redesenhar -> redesenha pain\u00e9is do calcurse, sendo \u00fatil se\n voc\u00ea redimensionar a sua tela de terminal ou\n quando aparece lixo na vis\u00e3o do calcurse\n '^A' : AdicAgend -> adiciona um agendamento ou um evento\n '^T' : AdiTarefa -> adiciona uma tarefa\n 'T' : -1 Dia -> move para dia anterior\n 't' : +1 Dia -> move para dia seguinte\n 'W' : -1 Semana -> move para semana anterior\n 'w' : +1 Semana -> move para semana seguinte\n 'M' : -1 M\u00eas -> move para m\u00eas anterior\n 'm' : +1 M\u00eas -> move para m\u00eas seguinte\n 'Y' : -1 Ano -> move para ano anterior\n 'y' : +1 Ano -> move para ano seguinte\n '^G' : IrPara hoje -> move para o dia de hoje\n\nAs teclas '^P' e '^N' s\u00e3o usadas para rolar texto para cima e para\nbaixo quando se est\u00e1 dentro de telas espec\u00edficas, como, por exemplo,\nas telas de ajuda. Elas tamb\u00e9m s\u00e3o usadas"
-"Computer Associates International Inc said on Tuesday at its North American revenues grew 33 percent in its December quarter, cushioning the blow of a pre-announced decline in European sales.\r\nIn a phone interview, Sanjay Kumar, CA's president and chief operating officer, said European revenues declined about 20 percent year-on-year.\r\nTotal revenues for the fiscal third quarter ended December 31 were $1.05 billion against $1.00 billion in the December quarter of 1995.\r\nAlso, the executive said CA had become a \"big buyer\" of its own stock since the company's warning in late December of a revenue shortfall sent the stock price tumbling.\r\nCA stock had been trading around record high levels of $67 and now is in the mid $40's.\r\nKumar said the revenue problem arose from the software maker's on-going transition to a client-server focus from its traditional mainframe base.\r\nHe said the mainframe-oriented European sales force was finding the switch to highly competitive open systems software a challenge. \r\nKumar said he told Wall Street analysts in a conference call Tuesday evening that it could take a quarter and perhaps two quarters to put its European sales back on track.\r\n\"We clearly need the current quarter to work through these"
-"import io\nimport os\nimport re\nfrom setuptools import setup, find_packages\n\n\ndef find_version():\n file_dir = os.path.dirname(__file__)\n with io.open(os.path.join(file_dir, 'auth0', '__init__.py')) as f:\n version = re.search(r'^__version__ = [\\'\"]([^\\'\"]*)[\\'\"]', f.read())\n if version:\n return version.group(1)\n else:\n raise RuntimeError(\"Unable to find version string.\")\n\n\nwith io.open('README.rst', encoding='utf-8') as f:\n long_description = f.read()\n\n\nsetup(\n name='auth0-python',\n version=find_version(),\n description='Auth0 Python SDK',\n long_description=long_description,\n author='Auth0',\n author_email='support@auth0.com',\n license='MIT',\n packages=find_packages(),\n install_requires=['requests'],\n extras_require={'test': ['mock']},\n python_requires='>=2.7, !=3.0.*, !=3.1.*',\n classifiers=[\n 'Development Status :: 4 - Beta',\n 'Intended Audience :: Developers',\n 'Operating System :: OS Independent',\n 'License :: OSI Approved :: MIT License',\n 'Programming Language :: Python :: 2',\n 'Programming Language :: Python :: 2.7',\n 'Programming Language :: Python :: 3',\n 'Programming Language :: Python :: 3.2',\n 'Programming Language :: Python :: 3.3',\n 'Programming Language :: Python :: 3.4',\n 'Programming Language :: Python :: 3.5',\n 'Programming Language :: Python :: 3.6',\n 'Programming Language :: Python :: 3.7',\n ],\n url='https://github.com/auth0/auth0-python',\n)"
-"/*\n * Copyright 2010, Intel Corporation\n *\n * This is part of PowerTOP\n *\n * This program file is free software; you can redistribute it and/or modify it\n * under the terms of the GNU General Public License as published by the\n * Free Software Foundation; version 2 of the License.\n *\n * This program 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 * for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program in a file named COPYING; if not, write to the\n * Free Software Foundation, Inc,\n * 51 Franklin Street, Fifth Floor,\n * Boston, MA 02110-1301 USA\n * or just google for it.\n *\n * getopt code is taken from \"The GNU C Library\" reference manual,\n * section 24.2 \"Parsing program options using getopt\"\n * http://www.gnu.org/s/libc/manual/html_node/Getopt-Long-Option-Example.html\n * Manual published under the terms of the Free Documentation License.\n *\n * Authors:\n *\tArjan van de Ven \n */\n#include \n#include \n#include \n#include \n#include \n#include"
-"
"
-"#' Unloads package(s)\n#' \n#' Unloads package(s) or all packages.\n#' \n#' @param \\dots name of package(s) or \"all\" (all removes all add on packages).\n#' @param negate logical. If \\code{TRUE} will unload\n#' all add on packages except those provided to \\code{p_unload}.\n#' @param char Character vector containing packages to load. If you are calling\n#' \\code{p_unload} from within a function (or just having difficulties calling it \n#' using a character vector input) then pass your character vector of packages \n#' to load to this parameter directly.\n#' @param character.only logical. If \\code{TRUE} then \\code{p_unload} will only \n#' accept a single input which is a character vector containing the names of \n#' packages to load.\n#' @note \\code{p_unload} will not unload the base install packages that load \n#' when R boots up. See the comments in the help for \\code{detach} about some \n#' issues with unloading and reloading namespaces.\n#' @seealso \\code{\\link[base]{detach}}\n#' @keywords detach package\n#' @export\n#' @examples\n#' \\dontrun{\n#' p_load(lattice)\n#' p_loaded()\n#' p_unload(lattice)\n#' p_loaded()\n#' \n#' p_load(\"lattice\", \"MASS\")\n#' p_loaded()\n#' p_unload(all)\n#' p_loaded() # will not work as you unloaded pacman\n#'\n#' library(pacman)\n#' p_load(lattice, MASS, foreign)\n#' p_loaded()\n#' p_unload(pacman,"
-"/*\n * Tegra host1x Syncpoints\n *\n * Copyright (c) 2010-2013, NVIDIA Corporation.\n *\n * This program is free software; you can redistribute it and/or modify it\n * under the terms and conditions of the GNU General Public License,\n * version 2, as published by the Free Software Foundation.\n *\n * This program is distributed in the hope 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 for\n * more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program. If not, see .\n */\n\n#include \n\n#include \"../dev.h\"\n#include \"../syncpt.h\"\n\n/*\n * Write the current syncpoint value back to hw.\n */\nstatic void syncpt_restore(struct host1x_syncpt *sp)\n{\n\tu32 min = host1x_syncpt_read_min(sp);\n\tstruct host1x *host = sp->host;\n\n\thost1x_sync_writel(host, min, HOST1X_SYNC_SYNCPT(sp->id));\n}\n\n/*\n * Write the current waitbase value back to hw.\n */\nstatic void syncpt_restore_wait_base(struct host1x_syncpt *sp)\n{\n\tstruct host1x *host = sp->host;\n\n\thost1x_sync_writel(host, sp->base_val,\n\t\t\t HOST1X_SYNC_SYNCPT_BASE(sp->id));\n}\n\n/*\n * Read waitbase value from hw.\n */\nstatic void syncpt_read_wait_base(struct host1x_syncpt *sp)\n{\n\tstruct host1x *host = sp->host;\n\n\tsp->base_val =\n\t\thost1x_sync_readl(host, HOST1X_SYNC_SYNCPT_BASE(sp->id));\n}"
-"\n\n\n\n\n\n\n\n\n\n Redirecting...\n \n \n\n\n\n\n\n\n\n\n"
-"/*\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.struts2.jasper.runtime;\n\n/**\n * Interface for tracking the source files dependencies, for the purpose\n * of compiling out of date pages. This is used for\n * 1) files that are included by page directives\n * 2) files that are included by include-prelude and include-coda in jsp:config\n * 3) files that are tag files and referenced\n * 4) TLDs referenced\n */\n\npublic interface JspSourceDependent {\n\n /**\n * @return a list of"
-"body = array();\n\t\t$this->headers = array();\n\t\t$this->test = $test;\n\t}\n\n\t/**\n\t * Creates an instance of a mock Joomla\\Application\\AbstractApplication object.\n\t *\n\t * @return object\n\t *\n\t * @since 1.0\n\t */\n\tpublic function createMockBase()\n\t{\n\t\t// Collect all the relevant methods in JApplicationBase (work in progress).\n\t\t$methods = array(\n\t\t\t'close',\n\t\t\t'doExecute',\n\t\t\t'execute',\n\t\t\t'fetchConfigurationData',\n\t\t\t'get',\n\t\t\t'getLogger',\n\t\t\t'hasLogger',\n\t\t\t'initialise',\n\t\t\t'set',\n\t\t\t'setConfiguration',\n\t\t\t'setLogger',\n\t\t);\n\n\t\t// Create the mock.\n\t\t$mockObject = $this->test->getMock(\n\t\t\t'Joomla\\\\Application\\\\AbstractApplication',\n\t\t\t$methods,\n\t\t\t// Constructor arguments.\n\t\t\tarray(),\n\t\t\t// Mock class name.\n\t\t\t'',\n\t\t\t// Call original constructor.\n\t\t\ttrue\n\t\t);\n\n\t\treturn $mockObject;\n\t}\n\n\t/**\n\t * Creates"
-"--TEST--\nTest dir() function : usage variations - non-existent directory\n--SKIPIF--\n\n--FILE--\nclose(); //close the dir\n\n// remove directory and try to open the same(non-existent) directory again\nrmdir($dir_path);\nclearstatcache();\n\necho \"-- opening previously removed directory --\\n\";\nvar_dump( dir($dir_path) );\n\n// point to a non-existent directory\n$non_existent_dir = $file_path.\"/non_existent_dir\";\necho \"-- opening non-existent directory --\\n\";\n$d = dir($non_existent_dir);\nvar_dump( $d );\n\necho \"Done\";\n?>\n--EXPECTF--\n*** Testing dir() : open a non-existent directory ***\n-- opening previously removed directory --\n\nWarning: dir(%s): failed to open dir: %s in %s on line %d\nbool(false)\n-- opening non-existent directory --\n\nWarning: dir(%s): failed to open dir:"
-"/*\n * Copyright (c) 2013 ARM/Linaro\n *\n * Authors: Daniel Lezcano \n * Lorenzo Pieralisi \n * Nicolas Pitre \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 version 2 as\n * published by the Free Software Foundation.\n *\n * Maintainer: Lorenzo Pieralisi \n * Maintainer: Daniel Lezcano \n */\n#include \n#include \n#include \n#include \n\n#include \n#include \n#include \n#include \n#include \n#include \n\n#include \"dt_idle_states.h\"\n\nstatic int bl_enter_powerdown(struct cpuidle_device *dev,\n\t\t\t struct cpuidle_driver *drv, int idx);\n\n/*\n * NB: Owing to current menu governor behaviour big and LITTLE\n * index 1 states have to define exit_latency and target_residency for\n * cluster state since, when all CPUs in a cluster hit it, the cluster\n * can be shutdown. This means that when a single CPU enters this state\n * the exit_latency and target_residency values are somewhat overkill.\n * There is no notion of cluster states in the menu governor, so CPUs\n * have to define CPU states where possibly the cluster will be shutdown\n * depending on the state of other CPUs. idle states entry and exit happen\n *"
-"/*\n * Copyright (c) 2018 Jaroslav Jindrak\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\n * are met:\n *\n * - Redistributions of source code must retain the above copyright\n * notice, this list of conditions and the following disclaimer.\n * - Redistributions in binary form must reproduce the above copyright\n * notice, this list of conditions and the following disclaimer in the\n * documentation and/or other materials provided with the distribution.\n * - The name of the author may not be used to endorse or promote products\n * derived from this software without specific prior written permission.\n *\n * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\n * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\n * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY"
-".\n\n\nclass HTMLTag\n{\n\tprotected $tag;\n\tprotected $usesPrettyPrint = true;\n\tprotected $isSingleton;\n\tprotected $attributes = array ();\n\tprotected $children = array ();\n\n\tpublic function __construct ($tag = '', $attributes = '', $pretty = true, $singleton = false, $spaced = true)\n\t{\n\t\tif (!is_string ($tag) or !$this->isWord ($tag)) {\n\t\t\t$this->throwError ('Tag must have a single word String value.');\n\t\t\treturn;\n\t\t}\n\n\t\tif (!is_bool ($singleton)) {\n\t\t\t$this->throwError ('Singleton parameter must have a Boolean value.');\n\t\t\treturn;\n\t\t}"
-"// cgo -godefs types_darwin.go | go run mkpost.go\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build 386,darwin\n\npackage unix\n\nconst (\n\tSizeofPtr = 0x4\n\tSizeofShort = 0x2\n\tSizeofInt = 0x4\n\tSizeofLong = 0x4\n\tSizeofLongLong = 0x8\n)\n\ntype (\n\t_C_short int16\n\t_C_int int32\n\t_C_long int32\n\t_C_long_long int64\n)\n\ntype Timespec struct {\n\tSec int32\n\tNsec int32\n}\n\ntype Timeval struct {\n\tSec int32\n\tUsec int32\n}\n\ntype Timeval32 struct{}\n\ntype Rusage struct {\n\tUtime Timeval\n\tStime Timeval\n\tMaxrss int32\n\tIxrss int32\n\tIdrss int32\n\tIsrss int32\n\tMinflt int32\n\tMajflt int32\n\tNswap int32\n\tInblock int32\n\tOublock int32\n\tMsgsnd int32\n\tMsgrcv int32\n\tNsignals int32\n\tNvcsw int32\n\tNivcsw int32\n}\n\ntype Rlimit struct {\n\tCur uint64\n\tMax uint64\n}\n\ntype _Gid_t uint32\n\ntype Stat_t struct {\n\tDev int32\n\tMode uint16\n\tNlink uint16\n\tIno uint64\n\tUid uint32\n\tGid uint32\n\tRdev int32\n\tAtim Timespec\n\tMtim Timespec\n\tCtim Timespec\n\tBtim Timespec\n\tSize int64\n\tBlocks int64\n\tBlksize int32\n\tFlags uint32\n\tGen uint32\n\tLspare int32\n\tQspare [2]int64\n}\n\ntype Statfs_t struct {\n\tBsize uint32\n\tIosize int32\n\tBlocks uint64\n\tBfree uint64\n\tBavail uint64\n\tFiles uint64\n\tFfree uint64\n\tFsid Fsid\n\tOwner uint32\n\tType uint32\n\tFlags uint32\n\tFssubtype uint32\n\tFstypename [16]int8\n\tMntonname [1024]int8\n\tMntfromname [1024]int8\n\tReserved"
-"(*\n Copyright \u00a9 2011 MLstate\n\n This file is part of Opa.\n\n Opa is free software: you can redistribute it and/or modify it under the\n terms of the GNU Affero General Public License, version 3, as published by\n the Free Software Foundation.\n\n Opa is distributed in the hope that it will be useful, but WITHOUT ANY\n WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS\n FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for\n more details.\n\n You should have received a copy of the GNU Affero General Public License\n along with Opa. If not, see .\n*)\n(* CF mli *)\nmodule List = BaseList\n\ntype 'a t = { mutable d : 'a list }\nlet create () = { d = [] }\nlet clear d = d.d <- []\nlet add d a = d.d <- a::d.d\nlet append d l = d.d <- List.rev_append l d.d\nlet rev_append d l = d.d <- List.append l d.d\nlet mem a d = List.mem a d.d\nlet fold_right fct d acc = List.fold_left (fun acc d -> fct d acc) acc d.d\nlet fold_left fct acc d = List.fold_left fct acc (List.rev d.d)\nlet to_list"
-"spreadsheetId = $spreadsheetId;\n }\n public function getSpreadsheetId()\n {\n return $this->spreadsheetId;\n }\n public function setUpdatedCells($updatedCells)\n {\n $this->updatedCells = $updatedCells;\n }\n public function getUpdatedCells()\n {\n return $this->updatedCells;\n }\n public function setUpdatedColumns($updatedColumns)\n {\n $this->updatedColumns = $updatedColumns;\n }\n public function getUpdatedColumns()\n {\n return $this->updatedColumns;\n }\n public function setUpdatedRange($updatedRange)\n {\n $this->updatedRange = $updatedRange;\n }\n public function getUpdatedRange()\n {\n return $this->updatedRange;\n }\n public function setUpdatedRows($updatedRows)\n {\n $this->updatedRows = $updatedRows;\n }\n public function getUpdatedRows()\n {\n return $this->updatedRows;\n }\n}"
-"require_relative '../../spec_helper'\nrequire_relative '../enumerable/shared/enumeratorized'\n\ndescribe \"Array#cycle\" do\n before :each do\n ScratchPad.record []\n\n @array = [1, 2, 3]\n @prc = -> x { ScratchPad << x }\n end\n\n it \"does not yield and returns nil when the array is empty and passed value is an integer\" do\n [].cycle(6, &@prc).should be_nil\n ScratchPad.recorded.should == []\n end\n\n it \"does not yield and returns nil when the array is empty and passed value is nil\" do\n [].cycle(nil, &@prc).should be_nil\n ScratchPad.recorded.should == []\n end\n\n it \"does not yield and returns nil when passed 0\" do\n @array.cycle(0, &@prc).should be_nil\n ScratchPad.recorded.should == []\n end\n\n it \"iterates the array 'count' times yielding each item to the block\" do\n @array.cycle(2, &@prc)\n ScratchPad.recorded.should == [1, 2, 3, 1, 2, 3]\n end\n\n it \"iterates indefinitely when not passed a count\" do\n @array.cycle do |x|\n ScratchPad << x\n break if ScratchPad.recorded.size > 7\n end\n ScratchPad.recorded.should == [1, 2, 3, 1, 2, 3, 1, 2]\n end\n\n it \"iterates indefinitely when passed nil\" do\n @array.cycle(nil) do |x|\n ScratchPad << x\n break if ScratchPad.recorded.size > 7\n end\n ScratchPad.recorded.should == [1, 2, 3, 1, 2, 3, 1, 2]\n end\n\n it \"does not rescue StopIteration when not passed a count\" do\n -> do\n @array.cycle { raise StopIteration }"
-"#!/usr/bin/php\r\n\r\n * - initial author\r\n *\r\n **/\r\n#%# family=auto\r\n#%# capabilities=autoconf suggest\r\n\r\n $result = explode(\"\\n\",shell_exec('/usr/bin/upnpc -s'));\r\n\r\n foreach($result as $line)"
-"\ufeffnamespace Rebus.Routing.TransportMessages\n{\n /// \n /// Options on how to handle exceptions when attempting to forward transport messages\n /// \n public enum ErrorBehavior\n {\n /// \n /// Indicates that no error handling should be done. This puts the burden of handling errors into the hands\n /// of the implementor of the transport message forwarding function, and thus it should handle errors by\n /// forwarding the message somewhere else\n /// \n RetryForever,\n\n /// \n /// Indicates that the transport message should be forwarded to the error queue in the event that there is an error.\n /// This is done in a \"fail fast\"-fashion, so there will be no additional delivery attempts.\n /// \n ForwardToErrorQueue\n }\n}"
-"---\nauthor:\n name: Linode\n email: docs@linode.com\ndescription: \"Clojure is a general-purpose programming language with an emphasis on functional programming. It is a dialect of the Lisp programming language running on the Java Virtual Machine (JVM). While Clojure allows you to write elegant and concise code, its ability to make use of the existing JVM infrastructure, such as libraries, tools and application servers, makes it also a very practical choice.\"\nog_description: 'Clojure is a general-purpose programming language with an emphasis on functional programming. It is a dialect of the Lisp programming language running on the Java Virtual Machine (JVM). While Clojure allows you to write elegant and concise code, its ability to make use of the existing JVM infrastructure, such as libraries, tools and application servers, makes it also a very practical choice.'\nkeywords: [\"clojure\", \"java virtual machine\", \"jvm\"]\nlicense: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)'\npublished: 2020-08-31\ntitle: Clojure\nshow_in_lists: true\n---"
-"\n\n\n \n \n \n \n \n \n \n"
-"var baseIsArguments = require('./_baseIsArguments'),\n isObjectLike = require('./isObjectLike');\n\n/** Used for built-in method references. */\nvar objectProto = Object.prototype;\n\n/** Used to check objects for own properties. */\nvar hasOwnProperty = objectProto.hasOwnProperty;\n\n/** Built-in value references. */\nvar propertyIsEnumerable = objectProto.propertyIsEnumerable;\n\n/**\n * Checks if `value` is likely an `arguments` object.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is an `arguments` object,\n * else `false`.\n * @example\n *\n * _.isArguments(function() { return arguments; }());\n * // => true\n *\n * _.isArguments([1, 2, 3]);\n * // => false\n */\nvar isArguments = baseIsArguments(function() { return arguments; }()) ? baseIsArguments : function(value) {\n return isObjectLike(value) && hasOwnProperty.call(value, 'callee') &&\n !propertyIsEnumerable.call(value, 'callee');\n};\n\nmodule.exports = isArguments;"
-"/* crypt.h -- base code for crypt/uncrypt ZIPfile\n\n\n Version 1.01e, February 12th, 2005\n\n Copyright (C) 1998-2005 Gilles Vollant\n\n This code is a modified version of crypting code in Infozip distribution\n\n The encryption/decryption parts of this source code (as opposed to the\n non-echoing password parts) were originally written in Europe. The\n whole source package can be freely distributed, including from the USA.\n (Prior to January 2000, re-export from the US was a violation of US law.)\n\n This encryption code is a direct transcription of the algorithm from\n Roger Schlafly, described by Phil Katz in the file appnote.txt. This\n file (appnote.txt) is distributed with the PKZIP program (even in the\n version without encryption capabilities).\n\n If you don't need crypting in your application, just define symbols\n NOCRYPT and NOUNCRYPT.\n\n This code support the \"Traditional PKWARE Encryption\".\n\n The new AES encryption added on Zip format by Winzip (see the page\n http://www.winzip.com/aes_info.htm ) and PKWare PKZip 5.x Strong\n Encryption is not supported.\n*/\n\n#define CRC32(c, b) ((*(pcrc_32_tab+(((int)(c) ^ (b)) & 0xff))) ^ ((c) >> 8))\n\n/***********************************************************************\n * Return the next byte in the pseudo-random sequence\n */\nstatic int decrypt_byte(unsigned long* pkeys, const unsigned long* pcrc_32_tab)\n{\n unsigned temp; /* POTENTIAL BUG: temp*(temp^1) may overflow in"
-"/*\n * H.263 internal header\n *\n * This file is part of FFmpeg.\n *\n * FFmpeg 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.1 of the License, or (at your option) any later version.\n *\n * FFmpeg 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 FFmpeg; if not, write to the Free Software\n * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n */\n#ifndef AVCODEC_H263_H\n#define AVCODEC_H263_H\n\n#include \n#include \"libavutil/rational.h\"\n#include \"get_bits.h\"\n#include \"mpegvideo.h\"\n#include \"h263data.h\"\n#include \"rl.h\"\n\n#if !FF_API_ASPECT_EXTENDED\n#define FF_ASPECT_EXTENDED 15\n#endif\n#define INT_BIT (CHAR_BIT * sizeof(int))\n\n// The defines below define the number of bits that are read at once for\n// reading vlc values. Changing these may improve speed and data cache needs\n// be aware though"
-"/*\n * Copyright (c) 2004, Oracle and/or its affiliates. All rights reserved.\n * Copyright (c) 2015, Red Hat Inc.\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\npackage sun.jvm.hotspot.debugger.proc.aarch64;\n\nimport sun.jvm.hotspot.debugger.*;\nimport sun.jvm.hotspot.debugger.aarch64.*;\nimport"
-"---\nstage: Release\ngroup: Release Management\ninfo: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/engineering/ux/technical-writing/#designated-technical-writers\n---\n\n# Exploring GitLab Pages\n\nThis document is a user guide to explore the options and settings\nGitLab Pages offers.\n\nTo familiarize yourself with GitLab Pages first:\n\n- Read an [introduction to GitLab Pages](index.md#overview).\n- Learn [how to get started with Pages](index.md#getting-started).\n- Learn how to enable GitLab Pages\n across your GitLab instance on the [administrator documentation](../../../administration/pages/index.md).\n\n## GitLab Pages requirements\n\nIn brief, this is what you need to upload your website in GitLab Pages:\n\n1. Domain of the instance: domain name that is used for GitLab Pages\n (ask your administrator).\n1. GitLab CI/CD: a `.gitlab-ci.yml` file with a specific job named [`pages`](../../../ci/yaml/README.md#pages) in the root directory of your repository.\n1. A directory called `public` in your site's repository containing the content\n to be published.\n1. GitLab Runner enabled for the project.\n\n## GitLab Pages on GitLab.com\n\nIf you are using [GitLab Pages on GitLab.com](#gitlab-pages-on-gitlabcom) to host your website, then:\n\n- The domain name for GitLab Pages on GitLab.com is `gitlab.io`.\n- Custom domains and TLS support are enabled.\n- Shared runners are enabled by default, provided for"
-"package template\n\nimport (\n\t\"fmt\"\n\t\"regexp\"\n\t\"strings\"\n)\n\nvar delimiter = \"\\\\$\"\nvar substitution = \"[_a-z][_a-z0-9]*(?::?-[^}]+)?\"\n\nvar patternString = fmt.Sprintf(\n\t\"%s(?i:(?P%s)|(?P%s)|{(?P%s)}|(?P))\",\n\tdelimiter, delimiter, substitution, substitution,\n)\n\nvar pattern = regexp.MustCompile(patternString)\n\n// InvalidTemplateError is returned when a variable template is not in a valid\n// format\ntype InvalidTemplateError struct {\n\tTemplate string\n}\n\nfunc (e InvalidTemplateError) Error() string {\n\treturn fmt.Sprintf(\"Invalid template: %#v\", e.Template)\n}\n\n// Mapping is a user-supplied function which maps from variable names to values.\n// Returns the value as a string and a bool indicating whether\n// the value is present, to distinguish between an empty string\n// and the absence of a value.\ntype Mapping func(string) (string, bool)\n\n// Substitute variables in the string with their values\nfunc Substitute(template string, mapping Mapping) (result string, err *InvalidTemplateError) {\n\tresult = pattern.ReplaceAllStringFunc(template, func(substring string) string {\n\t\tmatches := pattern.FindStringSubmatch(substring)\n\t\tgroups := make(map[string]string)\n\t\tfor i, name := range pattern.SubexpNames() {\n\t\t\tif i != 0 {\n\t\t\t\tgroups[name] = matches[i]\n\t\t\t}\n\t\t}\n\n\t\tsubstitution := groups[\"named\"]\n\t\tif substitution == \"\" {\n\t\t\tsubstitution = groups[\"braced\"]\n\t\t}\n\t\tif substitution != \"\" {\n\t\t\t// Soft default (fall back if unset or empty)\n\t\t\tif strings.Contains(substitution, \":-\") {\n\t\t\t\tname, defaultValue := partition(substitution, \":-\")\n\t\t\t\tvalue, ok := mapping(name)"
-"/*\n * Copyright (C) 2014 Apple Inc. 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\n * are met:\n *\n * 1. Redistributions of source code must retain the above copyright\n * notice, this list of conditions and the following disclaimer.\n * 2. Redistributions in binary form must reproduce the above copyright\n * notice, this list of conditions and the following disclaimer in the\n * documentation and/or other materials provided with the distribution.\n *\n * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS\n * IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\n * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\n * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n * HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY"
-"PREHOOK: query: explain select * from src union all select * from src\nPREHOOK: type: QUERY\nPREHOOK: Input: default@src\n#### A masked pattern was here ####\nPOSTHOOK: query: explain select * from src union all select * from src\nPOSTHOOK: type: QUERY\nPOSTHOOK: Input: default@src\n#### A masked pattern was here ####\nSTAGE DEPENDENCIES:\n Stage-1 is a root stage\n Stage-0 depends on stages: Stage-1\n\nSTAGE PLANS:\n Stage: Stage-1\n Tez\n#### A masked pattern was here ####\n Edges:\n Map 1 <- Union 2 (CONTAINS)\n Map 3 <- Union 2 (CONTAINS)\n#### A masked pattern was here ####\n Vertices:\n Map 1 \n Map Operator Tree:\n TableScan\n alias: src\n Statistics: Num rows: 500 Data size: 89000 Basic stats: COMPLETE Column stats: COMPLETE\n Select Operator\n expressions: key (type: string), value (type: string)\n outputColumnNames: _col0, _col1\n Statistics: Num rows: 500 Data size: 89000 Basic stats: COMPLETE Column stats: COMPLETE\n File Output Operator\n compressed: false\n Statistics: Num rows: 1000 Data size: 178000 Basic stats: COMPLETE Column stats: COMPLETE\n table:\n input format: org.apache.hadoop.mapred.SequenceFileInputFormat\n output format: org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat\n serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe\n Execution mode: vectorized, llap\n LLAP IO: all inputs\n Map 3 \n Map Operator Tree:\n TableScan\n alias: src\n Statistics: Num rows: 500 Data size: 89000 Basic stats: COMPLETE Column stats: COMPLETE\n Select"
-"/*\n * Copyright (c) 2017-present Robert Jaros\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all\n * 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 THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\n\npackage pl.treksoft.kvision.cordova\n\nimport kotlinx.browser.window\nimport kotlin.coroutines.resume\nimport kotlin.coroutines.suspendCoroutine\n\n/**\n * Battery status."
-"// RUN: %clang_cc1 -verify -fopenmp -std=c++11 -o - %s\n\nvoid foo() {\n}\n\n#pragma omp target teams // expected-error {{unexpected OpenMP directive '#pragma omp target teams'}}\n\nint main(int argc, char **argv) {\n#pragma omp target teams { // expected-warning {{extra tokens at the end of '#pragma omp target teams' are ignored}}\n foo();\n#pragma omp target teams ( // expected-warning {{extra tokens at the end of '#pragma omp target teams' are ignored}}\n foo();\n#pragma omp target teams [ // expected-warning {{extra tokens at the end of '#pragma omp target teams' are ignored}}\n foo();\n#pragma omp target teams ] // expected-warning {{extra tokens at the end of '#pragma omp target teams' are ignored}}\n foo();\n#pragma omp target teams ) // expected-warning {{extra tokens at the end of '#pragma omp target teams' are ignored}}\n foo();\n#pragma omp target teams } // expected-warning {{extra tokens at the end of '#pragma omp target teams' are ignored}}\n foo();\n#pragma omp target teams\n foo();\n#pragma omp target teams unknown() // expected-warning {{extra tokens at the end of '#pragma omp target teams' are ignored}}\n foo();\n L1:\n foo();\n#pragma omp target teams\n ;\n#pragma omp target teams\n {\n goto L1; // expected-error {{use of undeclared label 'L1'}}\n argc++;\n }"
-"\"\"\"Utilities for extracting common archive formats\"\"\"\n\nimport zipfile\nimport tarfile\nimport os\nimport shutil\nimport posixpath\nimport contextlib\nfrom distutils.errors import DistutilsError\n\nfrom pkg_resources import ensure_directory\n\n__all__ = [\n \"unpack_archive\", \"unpack_zipfile\", \"unpack_tarfile\", \"default_filter\",\n \"UnrecognizedFormat\", \"extraction_drivers\", \"unpack_directory\",\n]\n\n\nclass UnrecognizedFormat(DistutilsError):\n \"\"\"Couldn't recognize the archive type\"\"\"\n\n\ndef default_filter(src, dst):\n \"\"\"The default progress/filter callback; returns True for all files\"\"\"\n return dst\n\n\ndef unpack_archive(filename, extract_dir, progress_filter=default_filter,\n drivers=None):\n \"\"\"Unpack `filename` to `extract_dir`, or raise ``UnrecognizedFormat``\n\n `progress_filter` is a function taking two arguments: a source path\n internal to the archive ('/'-separated), and a filesystem path where it\n will be extracted. The callback must return the desired extract path\n (which may be the same as the one passed in), or else ``None`` to skip\n that file or directory. The callback can thus be used to report on the\n progress of the extraction, as well as to filter the items extracted or\n alter their extraction paths.\n\n `drivers`, if supplied, must be a non-empty sequence of functions with the\n same signature as this function (minus the `drivers` argument), that raise\n ``UnrecognizedFormat`` if they do not support extracting the designated\n archive type. The `drivers` are tried in sequence until one is found that\n does not raise an error, or until"
-"/*\n * Copyright (c) 2000, 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\npackage sun.jvm.hotspot.types;\n\nimport sun.jvm.hotspot.debugger.*;\n\n/** A specialization of Field which represents a field containing"
-" In the past I've seen QueryPerformanceCounter give incorrect results,\n > especially with SpeedStep processors on laptops. This was many years ago and\n > might have been fixed by service packs and drivers.\n >\n > Typically you check the results of QPC against GetTickCount to see if the\n > results are reasonable.\n > http://support.microsoft.com/kb/274323\n >\n > I've also heard of problems with QueryPerformanceCounter in multi-processor\n > systems.\n >\n > I know some people SetThreadAffinityMask to 1 for"
-"// Code generated by protoc-gen-go.\n// source: extension.proto\n// DO NOT EDIT!\n\n/*\nPackage openapiextension_v1 is a generated protocol buffer package.\n\nIt is generated from these files:\n\textension.proto\n\nIt has these top-level messages:\n\tVersion\n\tExtensionHandlerRequest\n\tExtensionHandlerResponse\n\tWrapper\n*/\npackage openapiextension_v1\n\nimport proto \"github.com/golang/protobuf/proto\"\nimport fmt \"fmt\"\nimport math \"math\"\nimport google_protobuf \"github.com/golang/protobuf/ptypes/any\"\n\n// Reference imports to suppress errors if they are not otherwise used.\nvar _ = proto.Marshal\nvar _ = fmt.Errorf\nvar _ = math.Inf\n\n// This is a compile-time assertion to ensure that this generated file\n// is compatible with the proto package it is being compiled against.\n// A compilation error at this line likely means your copy of the\n// proto package needs to be updated.\nconst _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package\n\n// The version number of OpenAPI compiler.\ntype Version struct {\n\tMajor int32 `protobuf:\"varint,1,opt,name=major\" json:\"major,omitempty\"`\n\tMinor int32 `protobuf:\"varint,2,opt,name=minor\" json:\"minor,omitempty\"`\n\tPatch int32 `protobuf:\"varint,3,opt,name=patch\" json:\"patch,omitempty\"`\n\t// A suffix for alpha, beta or rc release, e.g., \"alpha-1\", \"rc2\". It should\n\t// be empty for mainline stable releases.\n\tSuffix string `protobuf:\"bytes,4,opt,name=suffix\" json:\"suffix,omitempty\"`\n}\n\nfunc (m *Version) Reset() { *m = Version{} }\nfunc (m *Version) String() string { return proto.CompactTextString(m) }\nfunc (*Version) ProtoMessage()"
-"// Copyright 2015 The Shaderc 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\n#ifndef SHADERC_SHADERC_HPP_\n#define SHADERC_SHADERC_HPP_\n\n#include \n#include \n#include \n\n#include \"shaderc.h\"\n\nnamespace shaderc {\n// A CompilationResult contains the compiler output, compilation status,\n// and messages.\n//\n// The compiler output is stored as an array of elements and accessed\n// via random access iterators provided by cbegin() and cend(). The iterators\n// are contiguous in the sense of \"Contiguous Iterators: A Refinement of\n// Random Access Iterators\", Nevin Liber, C++ Library Evolution Working\n// Group Working Paper N3884.\n// http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2014/n3884.pdf\n//\n// Methods begin() and end() are also provided to enable range-based for.\n// They are synonyms to cbegin()"
-"/* Construct incremental minimum or maximum lists from an RSF file.\n\nConstructs the following set of minimum or maximum lists for each\nx2, x3, ... xn in the input RSF file:\n\nout[0] = in[0]\nout[i] = min or max of (in[i], out[i-1]) for i = 1, 2, 3, ... n1\n\nThe input file data type must be float.\nThe output file data type will be float.\n\nsflistminmax mode=min, can be used to simulate \"erosion\" for a set of \ngeological surfaces, producing a new set of surfaces that do not cross.\n\nSee also: sfminmax, sfstack.\n*/\n\n/*\nCopyright (C) 2004 University of Texas at Austin\n\nThis program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if"
-"\ufeff/* Copyright (c) Citrix Systems, Inc. \r\n * All rights reserved. \r\n * \r\n * Redistribution and use in source and binary forms, \r\n * with or without modification, are permitted provided \r\n * that the following conditions are met: \r\n * \r\n * * Redistributions of source code must retain the above \r\n * copyright notice, this list of conditions and the \r\n * following disclaimer. \r\n * * Redistributions in binary form must reproduce the above \r\n * copyright notice, this list of conditions and the \r\n * following disclaimer in the documentation and/or other \r\n * materials provided with the distribution. \r\n * \r\n * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND \r\n * CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, \r\n * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF \r\n * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE \r\n * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR \r\n * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, \r\n * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, \r\n * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR \r\n * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS \r\n * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, \r\n * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING \r\n * NEGLIGENCE OR OTHERWISE)"
-"The MIT License (MIT)\n\nCopyright (c) 2017-2018 Compositor and Vercel, Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE."
-"/**\n * Copyright (c) 2000-present Liferay, Inc. All rights reserved.\n *\n * This library is free software; you can redistribute it and/or modify it under\n * the terms of the GNU Lesser General Public License as published by the Free\n * Software Foundation; either version 2.1 of the License, or (at your option)\n * any later version.\n *\n * This library is distributed in the hope that it will be useful, but WITHOUT\n * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS\n * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more\n * details.\n */\n\npackage com.liferay.socialcoding.service.persistence.impl;\n\nimport com.liferay.portal.kernel.bean.BeanReference;\nimport com.liferay.portal.kernel.service.persistence.impl.BasePersistenceImpl;\n\nimport com.liferay.socialcoding.model.JIRAChangeGroup;\nimport com.liferay.socialcoding.service.persistence.JIRAChangeGroupPersistence;\n\nimport java.util.Set;\n\n/**\n * @author Brian Wing Shun Chan\n * @generated\n */\npublic class JIRAChangeGroupFinderBaseImpl extends BasePersistenceImpl {\n\t@Override\n\tpublic Set getBadColumnNames() {\n\t\treturn getJIRAChangeGroupPersistence().getBadColumnNames();\n\t}\n\n\t/**\n\t * Returns the j i r a change group persistence.\n\t *\n\t * @return the j i r a change group persistence\n\t */\n\tpublic JIRAChangeGroupPersistence getJIRAChangeGroupPersistence() {\n\t\treturn jiraChangeGroupPersistence;\n\t}\n\n\t/**\n\t * Sets the j i r a change group persistence.\n\t *\n\t * @param jiraChangeGroupPersistence the j i r a change group persistence\n\t */\n\tpublic void setJIRAChangeGroupPersistence(\n\t\tJIRAChangeGroupPersistence jiraChangeGroupPersistence) {\n\t\tthis.jiraChangeGroupPersistence ="
-"/**\n * Copyright (C) 2011 Brian Ferris \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 org.onebusaway.transit_data_federation.impl.probability;\n\nimport cern.jet.stat.Probability;\n\npublic class HalfNormal {\n\n private static final double SQRT_TWO = Math.sqrt(2.0);\n\n private final double _sigma;\n\n public HalfNormal(double sigma) {\n _sigma = sigma;\n }\n\n public double cdf(double x) {\n if (x < 0)\n return 0.0;\n return Probability.errorFunction(x / (SQRT_TWO * _sigma));\n }\n}"
-"/*\n * A JavaScript implementation of the RSA Data Security, Inc. MD5 Message\n * Digest Algorithm, as defined in RFC 1321.\n * Version 2.1 Copyright (C) Paul Johnston 1999 - 2002.\n * Other contributors: Greg Holt, Andrew Kepert, Ydnar, Lostinet\n * Distributed under the BSD License\n * See http://pajhome.org.uk/crypt/md5 for more info.\n */\n\n/*\n * Configurable variables. You may need to tweak these to be compatible with\n * the server-side, but the defaults work in most cases.\n */\nvar hexcase = 0; /* hex output format. 0 - lowercase; 1 - uppercase */\nvar b64pad = \"\"; /* base-64 pad character. \"=\" for strict RFC compliance */\nvar chrsz = 8; /* bits per input character. 8 - ASCII; 16 - Unicode */\n\n/*\n * These are the functions you'll usually want to call\n * They take string arguments and return either hex or base-64 encoded strings\n */\nfunction hex_md5(s){ return binl2hex(core_md5(str2binl(s), s.length * chrsz));}\nfunction b64_md5(s){ return binl2b64(core_md5(str2binl(s), s.length * chrsz));}\nfunction str_md5(s){ return binl2str(core_md5(str2binl(s), s.length * chrsz));}\nfunction hex_hmac_md5(key, data) { return binl2hex(core_hmac_md5(key, data)); }\nfunction b64_hmac_md5(key, data) { return binl2b64(core_hmac_md5(key, data)); }\nfunction str_hmac_md5(key, data) { return binl2str(core_hmac_md5(key, data)); }\n\n/*\n * Perform a simple self-test to"
-"#\n# This tests the use of large blobs in InnoDB.\n#\ncall mtr.add_suppression(\"InnoDB: Warning: a long semaphore wait\");\nSET GLOBAL innodb_file_per_table = OFF;\n#\n# System tablespace, Row Format = Redundant\n#\nCREATE TABLE t1 (\nc1 INT DEFAULT NULL,\nc2 LONGBLOB NOT NULL,\nKEY k2 (c2(250), c1)\n) ENGINE=InnoDB DEFAULT CHARSET=latin1 ROW_FORMAT=REDUNDANT;\nINSERT INTO t1 VALUES (1, '');\nUPDATE t1 SET c2=@longblob;\nDROP TABLE t1;\n#\n# System tablespace, Row Format = Compact\n#\nCREATE TABLE t1 (\nc1 INT DEFAULT NULL,\nc2 LONGBLOB NOT NULL,\nKEY k2 (c2(250), c1)\n) ENGINE=InnoDB DEFAULT CHARSET=latin1 ROW_FORMAT=COMPACT;\nINSERT INTO t1 VALUES (1, '');\nUPDATE t1 SET c2=@longblob;\nDROP TABLE t1;\nSET GLOBAL innodb_file_per_table = ON;\n#\n# Separate tablespace, Row Format = Redundant\n#\nCREATE TABLE t1 (\nc1 INT DEFAULT NULL,\nc2 LONGBLOB NOT NULL,\nKEY k2 (c2(250), c1)\n) ENGINE=InnoDB DEFAULT CHARSET=latin1 ROW_FORMAT=REDUNDANT;\nINSERT INTO t1 VALUES (1, '');\nUPDATE t1 SET c2=@longblob;\nDROP TABLE t1;\n#\n# Separate tablespace, Row Format = Compact\n#\nCREATE TABLE t1 (\nc1 INT DEFAULT NULL,\nc2 LONGBLOB NOT NULL,\nKEY k2 (c2(250), c1)\n) ENGINE=InnoDB DEFAULT CHARSET=latin1 ROW_FORMAT=COMPACT;\nINSERT INTO t1 VALUES (1, '');\nUPDATE t1 SET c2=@longblob;\nDROP TABLE"
-"import { inject } from 'vue';\nimport PropTypes from '../../_util/vue-types';\nimport { INTERNAL_COL_DEFINE } from './utils';\n\nexport default {\n name: 'ColGroup',\n inheritAttrs: false,\n props: {\n fixed: PropTypes.string,\n columns: PropTypes.array,\n },\n setup() {\n return {\n table: inject('table', {}),\n };\n },\n render() {\n const { fixed, table } = this;\n const { prefixCls, expandIconAsCell, columnManager } = table;\n\n let cols = [];\n\n if (expandIconAsCell && fixed !== 'right') {\n cols.push(
;\n },\n};"
-"---\ntitle: \"1-bit Adam: Up to 5x less communication volume and up to 2x faster training\"\n---\n\nIn this tutorial, we are going to introduce the 1-bit Adam optimizer in DeepSpeed. 1-bit Adam can improve model training speed on communication-constrained clusters, especially for communication-intensive large models by reducing the overall communication volume by up to 5x. Detailed description of the 1-bit Adam algorithm, its implementation in DeepSpeed, and performance evaluation is available from our [blog post](https://www.deepspeed.ai/news/2020/09/08/onebit-adam-blog-post.html).\n\nTo illustrate the benefits and usage of 1-bit Adam optimizer in DeepSpeed, we use the following two training tasks as examples:\n\n1. BingBertSQuAD Fine-tuning\n2. BERT Pre-training\n\nFor more details on these tasks, please refer to the tutorial posts on [BingBertSQuAD Fine-tuning](/tutorials/bert-finetuning/) and [BERT Pre-training](/tutorials/bert-pretraining/).\n\n## 1. Overview\n\n### Pre-requisites for installing DeepSpeed\n\nIf you don't already have a copy of the DeepSpeed repository, please clone in\nnow and checkout the DeepSpeedExamples submodule that contains the BingBertSQuAD and BERT Pre-training examples.\n\n```shell\ngit clone https://github.com/microsoft/DeepSpeed\ncd DeepSpeed\ngit submodule update --init --recursive\ncd DeepSpeedExamples/\n```\n\n### Pre-requisites for 1-bit Adam\n\n1-bit Adam uses advanced communication schemes that are not yet supported by PyTorch distributed and NCCL. We rely on Message Passing Interface (MPI) for"
-"// This file is part of Eigen, a lightweight C++ template library\n// for linear algebra.\n//\n// Copyright (C) 2010 Gael Guennebaud \n//\n// This Source Code Form is subject to the terms of the Mozilla\n// Public License v. 2.0. If a copy of the MPL was not distributed\n// with this file, You can obtain one at http://mozilla.org/MPL/2.0/.\n\n#ifndef EIGEN_TRIANGULAR_SOLVER2_H\n#define EIGEN_TRIANGULAR_SOLVER2_H\n\nnamespace Eigen { \n\nconst unsigned int UnitDiagBit = UnitDiag;\nconst unsigned int SelfAdjointBit = SelfAdjoint;\nconst unsigned int UpperTriangularBit = Upper;\nconst unsigned int LowerTriangularBit = Lower;\n\nconst unsigned int UpperTriangular = Upper;\nconst unsigned int LowerTriangular = Lower;\nconst unsigned int UnitUpperTriangular = UnitUpper;\nconst unsigned int UnitLowerTriangular = UnitLower;\n\ntemplate\ntemplate\ntypename ExpressionType::PlainObject\nFlagged::solveTriangular(const MatrixBase& other) const\n{\n return m_matrix.template triangularView().solve(other.derived());\n}\n\ntemplate