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 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 *\n * @see RFC 2045\n * @author Apache Software Foundation\n * @since 1.0-dev\n * @version $Id$\n */\npublic class Base64\n{\n\n //\n // Source Id: Base64.java 161350 2005-04-14 20:39:46Z ggregory\n //\n\n /**\n * Chunk size per RFC 2045 section 6.8.\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 forwardOrder;\n\n ReverseOrdering(Ordering 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 \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![You shall not pass](https://db.yihui.org/imgur/3mdv0k9.jpg)\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\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 *

© COPYRIGHT(c) 2017 STMicroelectronics

\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![All your data are belong to us](files/cB52MA.jpeg)\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 Exclude\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 \"Restaurant\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 Choose a Restaurant\n

\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" -"
    \n \n

    \n <% if (!isReservedColumn) { %>\n <%- col_type %>\n <% } else { %>\n <%- col_type %>\n <% } %>\n

    \n
    \n

    <%- col_name %>_<% if (col_type == 'geometry' && !read_only) { %>GEO<% } %>

    \n

    <%- col_type %>_

    " -"#' 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\n let leafColumns;\n\n if (fixed === 'left') {\n leafColumns = columnManager.leftLeafColumns();\n } else if (fixed === 'right') {\n leafColumns = columnManager.rightLeafColumns();\n } else {\n leafColumns = columnManager.leafColumns();\n }\n cols = cols.concat(\n leafColumns.map(({ key, dataIndex, width, [INTERNAL_COL_DEFINE]: additionalProps }) => {\n const mergedKey = key !== undefined ? key : dataIndex;\n const w = typeof width === 'number' ? `${width}px` : width;\n return ;\n }),\n );\n return {cols};\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\ntemplate\nvoid Flagged::solveTriangularInPlace(const MatrixBase& other) const\n{\n m_matrix.template triangularView().solveInPlace(other.derived());\n}\n\n} // end namespace Eigen\n \n#endif // EIGEN_TRIANGULAR_SOLVER2_H" -"% Generated by roxygen2: do not edit by hand\n% Please edit documentation in R/moga.R\n\\name{moga}\n\\alias{moga}\n\\title{Make Oxygen Great Again}\n\\usage{\nmoga(path, ..., force.fields = NULL, dry.run = TRUE, overwrite = FALSE)\n}\n\\arguments{\n\\item{path}{character path to R file}\n\n\\item{\\dots}{arguments to be passed to new makeOxygen}\n\n\\item{force.fields}{character, vector a field names that are in current header that are to be updated Default: NULL}\n\n\\item{dry.run}{boolean, write lines to console the output, Default: TRUE}\n\n\\item{overwrite}{boolean, overwrite contents of input file, Default: FALSE}\n}\n\\value{\ncharacter\n}\n\\description{\nUpdate/append an R file that has roxygen2 headers already with updated information\n}\n\\details{\nCross references fields already in the roxygen2 header and adds any new ones from the updated call.\nTo force a change to a field add field name to force.fields.\n}\n\\examples{\n\n# We want to update the contents of the Roxygen2 with the new parameter \"b\"\n# without touching the other fields\n\n# Before\n cat(readLines(system.file('example_moga.R',package = 'sinew')),sep = '\\n')\n\n# After\n moga(system.file('example_moga.R',package = 'sinew'))\n \n}\n\\concept{populate}" -"# Notification Documentation\n#\n# The notification table provides support for handling notifications throughout the application.\n# It has a polymorphic relation so can be utilised by various models.\n# == Schema Information\n#\n# Table name: notifications\n#\n# id :integer not null, primary key\n# email :string\n# notifiable_id :integer\n# created_at :datetime not null\n# updated_at :datetime not null\n# sent :boolean default(FALSE)\n# sent_at :datetime\n# notifiable_type :string\n#\n\nclass Notification < ActiveRecord::Base\n\n attr_accessible :notifiable_id, :notifiable_type, :email, :sent, :sent_at\n\n belongs_to :notifiable, polymorphic: true\n\n validates :email, presence: { message: 'is required' },\n format: { with: /\\A([^@\\s]+)@((?:[-a-z0-9]+\\.)+[a-z]{2,})\\z/i },\n uniqueness: { scope: [:notifiable_id, :notifiable_type, :sent_at],\n message: 'notification has already been created.' }\n\nend" -"/*\n *\n * Copyright 2016 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#ifndef GRPC_CORE_LIB_IOMGR_COMBINER_H\n#define GRPC_CORE_LIB_IOMGR_COMBINER_H\n\n#include \n\n#include \n\n#include \n#include \"src/core/lib/debug/trace.h\"\n#include \"src/core/lib/iomgr/exec_ctx.h\"\n\nnamespace grpc_core {\n// TODO(yashkt) : Remove this class and replace it with a class that does not\n// use ExecCtx\nclass Combiner {\n public:\n void Run(grpc_closure* closure, grpc_error* error);\n // TODO(yashkt) : Remove this method\n void FinallyRun(grpc_closure* closure, grpc_error* error);\n Combiner* next_combiner_on_this_exec_ctx = nullptr;\n MultiProducerSingleConsumerQueue queue;\n // either:\n // a pointer to the initiating exec ctx if that is the only exec_ctx that has\n // ever queued to this combiner, or NULL. If this is non-null, it's not\n // dereferencable (since the initiating exec_ctx may have" -"package org.apereo.cas.support.saml.web.idp.profile.builders;\n\nimport org.apereo.cas.support.saml.SamlException;\nimport org.apereo.cas.support.saml.services.SamlRegisteredService;\nimport org.apereo.cas.support.saml.services.idp.metadata.SamlRegisteredServiceServiceProviderMetadataFacade;\n\nimport org.opensaml.core.xml.XMLObject;\nimport org.opensaml.messaging.context.MessageContext;\nimport org.opensaml.saml.saml2.core.RequestAbstractType;\n\nimport javax.servlet.http.HttpServletRequest;\nimport javax.servlet.http.HttpServletResponse;\n\n/**\n * The {@link SamlProfileObjectBuilder} defines the operations\n * required for building the saml response for an RP.\n *\n * @param the type parameter\n * @author Misagh Moayyed\n * @since 5.0.0\n */\n@FunctionalInterface\npublic interface SamlProfileObjectBuilder {\n\n /**\n * Build response.\n *\n * @param authnRequest the authn request\n * @param request the request\n * @param response the response\n * @param assertion the assertion\n * @param service the service\n * @param adaptor the adaptor\n * @param binding the binding\n * @param messageContext the message context\n * @return the response\n * @throws SamlException the exception\n */\n T build(RequestAbstractType authnRequest,\n HttpServletRequest request,\n HttpServletResponse response,\n Object assertion,\n SamlRegisteredService service,\n SamlRegisteredServiceServiceProviderMetadataFacade adaptor,\n String binding,\n MessageContext messageContext) throws SamlException;\n}" -"/*\n * Copyright (C) 2002 Lars Knoll (knoll@kde.org)\n * (C) 2002 Dirk Mueller (mueller@kde.org)\n * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc.\n *\n * This library is free software; you can redistribute it and/or\n * modify it under the terms of the GNU Library General Public\n * License as published by the Free Software Foundation; either\n * version 2 of the License.\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 * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public License\n * along with this library; see the file COPYING.LIB. If not, write to\n * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,\n * Boston, MA 02110-1301, USA.\n */\n\n#include \"config.h\"\n#include \"FixedTableLayout.h\"\n\n#include \"RenderTable.h\"\n#include \"RenderTableCell.h\"\n#include \"RenderTableCol.h\"\n#include \"RenderTableSection.h\"\n\n/*\n The text below is from the CSS 2.1 specs.\n\n Fixed table layout\n\n With this (fast) algorithm, the horizontal layout of the table does\n not depend on the contents of the cells;" -"/*\n * This file is part of CoCalc: Copyright \u00a9 2020 Sagemath, Inc.\n * License: AGPLv3 s.t. \"Commons Clause\" \u2013 see LICENSE.md for details\n */\n\n/*\nGetting, setting, etc. of remember_me cookies should go here.\n\nOF course, not everything is rewritten yet...\n*/\n\nimport { PostgreSQL } from \"./types\";\nconst { one_result } = require(\"../postgres-base\");\nimport { callback } from \"awaiting\";\nimport { reuseInFlight } from \"async-await-utils/hof\";\n\nasync function _get_remember_me(\n db: PostgreSQL,\n hash: string,\n cache: boolean\n): Promise {\n // returned object is the signed_in_message\n\n function f(cb: Function): void {\n db._query({\n cache,\n query: \"SELECT value, expire FROM remember_me\",\n where: {\n \"hash = $::TEXT\": hash.slice(0, 127),\n },\n retry_until_success: { max_time: 60000, start_delay: 10000 }, // since we want this to be (more) robust to database connection failures.\n cb: one_result(\"value\", cb),\n });\n }\n\n return await callback(f);\n}\n\nexport const get_remember_me = reuseInFlight(_get_remember_me, {\n createKey: function (args) {\n return args[1] + args[2];\n },\n});" -"/*\n * TeleStax, Open Source Cloud Communications\n * Copyright 2011-2013, Telestax Inc and individual contributors\n * by the @authors tag.\n *\n * This is free software; you can redistribute it and/or modify it\n * under the terms of the GNU Lesser General Public License as\n * published by the Free Software Foundation; either version 2.1 of\n * the License, or (at your option) any later version.\n *\n * This software 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 software; if not, write to the Free\n * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA\n * 02110-1301 USA, or see the FSF site: http://www.fsf.org.\n */\n\npackage org.restcomm.protocols.ss7.isup.impl.message.parameter;\n\nimport java.io.ByteArrayOutputStream;\nimport java.util.ArrayList;\nimport java.util.List;\n\nimport org.restcomm.protocols.ss7.isup.ParameterException;\nimport org.restcomm.protocols.ss7.isup.message.parameter.InformationType;\nimport org.restcomm.protocols.ss7.isup.message.parameter.InvokingRedirectReason;\nimport org.restcomm.protocols.ss7.isup.message.parameter.RedirectReason;\n\n/**\n * @author baranowb\n *\n */\npublic class InvokingRedirectReasonImpl extends AbstractInformationImpl implements InvokingRedirectReason {\n\n private List reasons = new ArrayList();\n\n\n public InvokingRedirectReasonImpl() {\n super(InformationType.InvokingRedirectReason);\n }\n @Override\n public" -"//\n// Parser.h\n// CoreParse\n//\n// Created by Tom Davie on 04/03/2011.\n// Copyright 2011 In The Beginning... All rights reserved.\n//\n\n#import \n\n#import \"CPGrammar.h\"\n#import \"CPSyntaxTree.h\"\n\n#import \"CPTokenStream.h\"\n#import \"CPRecoveryAction.h\"\n\n@class CPParser;\n\n/**\n * The CPParseResult protocol declares a method that a class must implement so that instances can be created as the result of parsing a token stream.\n */\n@protocol CPParseResult \n\n/**\n * Returns an object initialised with the contents of a syntax tree.\n * \n * @param syntaxTree The syntax tree to initialise the object with.\n * \n * @return An object created using the contents of the syntax tree.\n */\n- (id)initWithSyntaxTree:(CPSyntaxTree *)syntaxTree;\n\n@end\n\n/**\n * The delegate of a CPParser must adopt the CPParserDelegate protocol. This allows you to replace the produced syntax trees with data structures of your choice.\n * \n * Significant processing can be performed in a parser delegate. For example, a parser for numeric expressions could replace each syntax tree with an NSNumber representing\n * the resultant value of evaluating the expression. This would allow you to parse, and compute the result of the expression in one pass.\n */\n@protocol CPParserDelegate \n\n@optional\n\n/**\n * Should return an object to replace" -"/*\n * Cyril Comparon, Larbi Joubala, Resonate-MP4 2009\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#include \"avlanguage.h\"\n#include \"libavutil/avstring.h\"\n#include \"libavutil/common.h\"\n#include \n#include \n#include \n\ntypedef struct LangEntry {\n const char str[4];\n uint16_t next_equivalent;\n} LangEntry;\n\nstatic const uint16_t lang_table_counts[] = { 484, 20, 184 };\nstatic const uint16_t lang_table_offsets[] = { 0, 484, 504 };\n\nstatic const LangEntry lang_table[] = {\n /*----- AV_LANG_ISO639_2_BIBL entries (484) -----*/\n /*0000*/ {" -"/* libFLAC - Free Lossless Audio Codec library\n * Copyright (C) 2000-2009 Josh Coalson\n * Copyright (C) 2011-2014 Xiph.Org Foundation\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 *\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 * - Neither the name of the Xiph.org Foundation nor the names of its\n * contributors may be used to endorse or promote products derived from\n * this software without specific prior written permission.\n *\n * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR\n * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT" -"/*\n * Copyright (c) 2004, 2007, 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.utilities.soql;\n\nimport java.util.*;\nimport sun.jvm.hotspot.oops.*;\nimport sun.jvm.hotspot.runtime.*;\n\n/**\n * Wraps a methodOop" -"{\n \"cells\": [\n {\n \"cell_type\": \"markdown\",\n \"metadata\": {},\n \"source\": [\n \"# FloPy\\n\",\n \"\\n\",\n \"### SWI2 Example 4. Upconing Below a Pumping Well in a Two-Aquifer Island System\\n\",\n \"\\n\",\n \"This example problem is the fourth example problem in the SWI2 documentation (http://pubs.usgs.gov/tm/6a46/) and simulates transient movement of the freshwater-seawater interface beneath an island in response to recharge and groundwater withdrawals. The island is 2,050$\\\\times$2,050 m and consists of two 20-m thick aquifers that extend below sea level. The aquifers are confined, storage changes are not considered (all MODFLOW stress periods are steady-state), and the top and bottom of each aquifer is horizontal. The top of the upper aquifer and the bottom of the lower aquifer are impermeable.\\n\",\n \"\\n\",\n \"The domain is discretized into 61 columns, 61 rows, and 2 layers, with respective cell dimensions of 50 m (`DELR`), 50 m (`DELC`), and 20 m. A total of 230 years is simulated using three stress periods with lengths of 200, 12, and 18 years, with constant time steps of 0.2, 0.1, and 0.1 years, respectively. \\n\",\n \"\\n\",\n \"The horizontal and vertical hydraulic conductivity of both aquifers are 10 m/d and 0.2 m/d, respectively. The effective porosity is 0.2 for both aquifers. The" -"/**\r\n * Copyright 2007-2015 Arthur Blake\r\n *\r\n * Licensed under the Apache License, Version 2.0 (the \"License\");\r\n * you may not use this file except in compliance with the License.\r\n * You may obtain a copy of the License at\r\n *\r\n * http://www.apache.org/licenses/LICENSE-2.0\r\n *\r\n * Unless required by applicable law or agreed to in writing, software\r\n * distributed under the License is distributed on an \"AS IS\" BASIS,\r\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r\n * See the License for the specific language governing permissions and\r\n * limitations under the License.\r\n */\r\npackage net.sf.log4jdbc;\r\n\r\n/**\r\n * Delegates Spy events to a logger.\r\n * This interface is used for all logging activity used by log4jdbc and hides the specific implementation\r\n * of any given logging system from log4jdbc.\r\n *\r\n * @author Arthur Blake\r\n */\r\npublic interface SpyLogDelegator\r\n{\r\n /**\r\n * Determine if any of the jdbc or sql loggers are turned on.\r\n *\r\n * @return true if any of the jdbc or sql loggers are enabled at error level or higher.\r\n */\r\n public boolean isJdbcLoggingEnabled();\r\n\r\n /**\r\n * Called when a spied upon method throws an Exception.\r\n *\r\n * @param spy the Spy wrapping the class that" -"*** Sent via Email - DMCA Notice of Copyright Infringement ***\n\nDear Sir/Madam,\n\nI certify under penalty of perjury, that I am an agent authorized to act on behalf of the owner of the intellectual property rights and that the information contained in this notice is accurate.\n\nI have a good faith belief that the page or material listed below is not authorized by law for use by the individual(s) associated with the identified page listed below or their agents and therefore infringes the copyright owner's rights.\n\nI HEREBY DEMAND THAT YOU ACT EXPEDITIOUSLY TO REMOVE OR DISABLE ACCESS TO THE PAGE OR MATERIAL CLAIMED TO BE INFRINGING.\n\nThis notice is sent pursuant to the Digital Millennium Copyright Act (DMCA), the European Union's Directive on the Harmonisation of Certain Aspects of Copyright and Related Rights in the Information Society (2001/29/EC), and/or other laws and regulations relevant in European Union member states or other jurisdictions.\n\nMy contact information is as follows:\n\nOrganization name: Attributor Corporation as agent for the rights holders listed below \nEmail: [private] \nPhone: [private] \nMailing address: \n1825 S. Grant Street \nSuite 600 \nSan Mateo, CA 94402 \n\nMy electronic signature follows: \nSincerely, \n[private] \nAttributor, Inc.\n\n*** INFRINGING PAGE OR" -"{\n \"CVE_data_meta\": {\n \"ASSIGNER\": \"cve@mitre.org\",\n \"ID\": \"CVE-2008-2556\",\n \"STATE\": \"PUBLIC\"\n },\n \"affects\": {\n \"vendor\": {\n \"vendor_data\": [\n {\n \"product\": {\n \"product_data\": [\n {\n \"product_name\": \"n/a\",\n \"version\": {\n \"version_data\": [\n {\n \"version_value\": \"n/a\"\n }\n ]\n }\n }\n ]\n },\n \"vendor_name\": \"n/a\"\n }\n ]\n }\n },\n \"data_format\": \"MITRE\",\n \"data_type\": \"CVE\",\n \"data_version\": \"4.0\",\n \"description\": {\n \"description_data\": [\n {\n \"lang\": \"eng\",\n \"value\": \"SQL injection vulnerability in read.php in PHP Visit Counter 0.4 and earlier allows remote attackers to execute arbitrary SQL commands via the datespan parameter in a read action.\"\n }\n ]\n },\n \"problemtype\": {\n \"problemtype_data\": [\n {\n \"description\": [\n {\n \"lang\": \"eng\",\n \"value\": \"n/a\"\n }\n ]\n }\n ]\n },\n \"references\": {\n \"reference_data\": [\n {\n \"name\": \"5703\",\n \"refsource\": \"EXPLOIT-DB\",\n \"url\": \"https://www.exploit-db.com/exploits/5703\"\n },\n {\n \"name\": \"phpvisitcounter-read-sql-injection(42789)\",\n \"refsource\": \"XF\",\n \"url\": \"https://exchange.xforce.ibmcloud.com/vulnerabilities/42789\"\n }\n ]\n }\n}" -"\n * Marcello Duarte \n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace Prophecy\\Call;\n\nuse Prophecy\\Prophecy\\MethodProphecy;\nuse Prophecy\\Prophecy\\ObjectProphecy;\nuse Prophecy\\Argument\\ArgumentsWildcard;\nuse Prophecy\\Util\\StringUtil;\nuse Prophecy\\Exception\\Call\\UnexpectedCallException;\n\n/**\n * Calls receiver & manager.\n *\n * @author Konstantin Kudryashov \n */\nclass CallCenter\n{\n private $util;\n\n /**\n * @var Call[]\n */\n private $recordedCalls = array();\n\n /**\n * Initializes call center.\n *\n * @param StringUtil $util\n */\n public function __construct(StringUtil $util = null)\n {\n $this->util = $util ?: new StringUtil;\n }\n\n /**\n * Makes and records specific method call for object prophecy.\n *\n * @param ObjectProphecy $prophecy\n * @param string $methodName\n * @param array $arguments\n *\n * @return mixed Returns null if no promise for prophecy found or promise return value.\n *\n * @throws \\Prophecy\\Exception\\Call\\UnexpectedCallException If no appropriate method prophecy found\n */\n public function makeCall(ObjectProphecy $prophecy, $methodName, array $arguments)\n {\n // For efficiency exclude 'args' from the generated backtrace\n if (PHP_VERSION_ID >= 50400) {\n // Limit backtrace to last 3 calls as we don't use the rest\n // Limit argument was introduced in PHP 5.4.0" -"package regorewriter\n\nimport (\n\t\"io/ioutil\"\n\t\"os\"\n\t\"path/filepath\"\n\t\"reflect\"\n\t\"strings\"\n\n\t\"github.com/golang/glog\"\n\t\"github.com/open-policy-agent/opa/ast\"\n\t\"github.com/open-policy-agent/opa/format\"\n\t\"github.com/pkg/errors\"\n)\n\nconst vLog = 2\nconst vLogDetail = vLog + 1\n\n// RegoRewriter rewrites rego code by updating library package paths by prepending a prefix\n// and updating references to library code accordingly.\ntype RegoRewriter struct {\n\t// entryPoints are the files that contain a violation rule which serves as the entry point for a\n\t// constraint template. These sources will not have their package path updated, but refs to any\n\t// libs will be updated accordingly.\n\tentryPoints []*Module\n\t// libs are the library files that will have their package paths updated and have refs updated\n\t// as well.\n\tlibs []*Module\n\t// testData are files that are found in the 'test' directory and should not be\n\ttestData []*TestData\n\t// packageTransform is the transform that modifies the package path and refs.\n\tpackageTransform PackageTransformer\n\t// allowedLibPrefixes are the allowed package path prefixes for libs, for example \"data.lib\".\n\tallowedLibPrefixes []ast.Ref\n\t// allowedExterns are the allowed external references for entryPoints/libs, for example \"data.inventory\"\n\tallowedExterns []ast.Ref\n}\n\n// New returns a new RegoRewriter\n// args:\n// \tit - the PackageTransformer that will be used for updating the path\n//\tlibs - a" -"#!/usr/bin/env python\n# Copyright 2015 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\"\"\"Captures a video from an Android device.\"\"\"\n\nimport argparse\nimport logging\nimport os\nimport threading\nimport time\nimport sys\n\nif __name__ == '__main__':\n sys.path.append(os.path.abspath(os.path.join(\n os.path.dirname(__file__), '..', '..', '..')))\nfrom devil.android import device_signal\nfrom devil.android import device_utils\nfrom devil.android.tools import script_common\nfrom devil.utils import cmd_helper\nfrom devil.utils import reraiser_thread\nfrom devil.utils import timeout_retry\n\nlogger = logging.getLogger(__name__)\n\n\nclass VideoRecorder(object):\n \"\"\"Records a screen capture video from an Android Device (KitKat or newer).\"\"\"\n\n def __init__(self, device, megabits_per_second=4, size=None,\n rotate=False):\n \"\"\"Creates a VideoRecorder instance.\n\n Args:\n device: DeviceUtils instance.\n host_file: Path to the video file to store on the host.\n megabits_per_second: Video bitrate in megabits per second. Allowed range\n from 0.1 to 100 mbps.\n size: Video frame size tuple (width, height) or None to use the device\n default.\n rotate: If True, the video will be rotated 90 degrees.\n \"\"\"\n self._bit_rate = megabits_per_second * 1000 * 1000\n self._device = device\n self._device_file = (\n '%s/screen-recording.mp4' % device.GetExternalStoragePath())\n self._recorder_thread = None\n self._rotate = rotate\n self._size = size\n self._started = threading.Event()\n\n def __enter__(self):\n self.Start()\n\n def Start(self, timeout=None):\n \"\"\"Start" -"/******************************************************************************\n** Copyright (c) 2015-2017, Intel Corporation **\n** All rights reserved. **\n** **\n** Redistribution and use in source and binary forms, with or without **\n** modification, are permitted provided that the following conditions **\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** 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** 3. Neither the name of the copyright holder nor the names of its **\n** contributors may be used to endorse or promote products derived **\n** from this software without specific prior written permission. **\n** **\n** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS **\n** \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT **\n** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR **\n** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT **\n** HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL," -"c This Formular is generated by mcnf\nc\nc horn? no \nc forced? no \nc mixed sat? no \nc clause length = 3 \nc\np cnf 50 218 \n 45 -29 8 0\n-49 17 11 0\n-40 -17 -23 0\n-1 49 20 0\n-10 -18 40 0\n-25 -24 48 0\n44 27 41 0\n-17 -43 30 0\n32 33 11 0\n24 26 42 0\n-33 38 44 0\n-5 14 49 0\n-8 33 -45 0\n49 3 -10 0\n34 -27 2 0\n-45 23 3 0\n10 7 36 0\n-10 36 -5 0\n46 8 42 0\n-38 -19 12 0\n50 37 45 0\n8 -46 12 0\n19 -33 26 0\n11 47 48 0\n3 45 34 0\n21 22 4 0\n-18 -31 8 0\n-1 9 -38 0\n-32 -35 -23 0\n-45 2 -24 0\n-45 36 -17 0\n11 -18 20 0\n23 48 -18 0\n37 -5 26 0\n38 29 -26 0\n8 -1 -27 0\n-14 -9 -45 0\n42 50 39 0\n-1 47 17 0\n-50 43 -29 0\n-17 -11 -36 0\n20 -48 43 0\n-6 -22 -19 0" -"// Copyright 2010 Google 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// GoMock - a mock framework for Go.\n//\n// Standard usage:\n// (1) Define an interface that you wish to mock.\n// type MyInterface interface {\n// SomeMethod(x int64, y string)\n// }\n// (2) Use mockgen to generate a mock from the interface.\n// (3) Use the mock in a test:\n// func TestMyThing(t *testing.T) {\n// mockCtrl := gomock.NewController(t)\n// defer mockCtrl.Finish()\n//\n// mockObj := something.NewMockMyInterface(mockCtrl)\n// mockObj.EXPECT().SomeMethod(4, \"blah\")\n// // pass mockObj to a real object and play with it.\n// }\n//\n// By default, expected calls are not enforced to run in any particular order.\n// Call order" -"/***********************************************************************\n*\n* Copyright (c) 2012-2020 Barbara Geller\n* Copyright (c) 2012-2020 Ansel Sermersheim\n*\n* Copyright (c) 2015 The Qt Company Ltd.\n* Copyright (c) 2012-2016 Digia Plc and/or its subsidiary(-ies).\n* Copyright (c) 2008-2012 Nokia Corporation and/or its subsidiary(-ies).\n*\n* This file is part of CopperSpice.\n*\n* CopperSpice is free software. You can redistribute it and/or\n* modify it under the terms of the GNU Lesser General Public License\n* version 2.1 as published by the Free Software Foundation.\n*\n* CopperSpice 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.\n*\n* https://www.gnu.org/licenses/\n*\n***********************************************************************/\n\n#ifndef QDECLARATIVESQLDATABASE_P_H\n#define QDECLARATIVESQLDATABASE_P_H\n\n#include \n#include \n\nQT_BEGIN_NAMESPACE\n\nclass QScriptEngine;\nvoid qt_add_qmlsqldatabase(QScriptEngine *engine);\n\nQT_END_NAMESPACE\n\n#endif // QDECLARATIVESQLDATABASE_P_H" -"---\nlayout: pattern\ntitle: Feature Toggle\nfolder: feature-toggle\npermalink: /patterns/feature-toggle/\npumlid: NSZ14G8X30NGLhG0oDrk8XjPd12OvCTjNy_UthpxiAPvIBhUJc37WyZvgdtWp6U6U5i6CTIs9WtDYy5ER_vmEIH6jx8P4BUWoV43lOIHBWMhTnKIjB-gwRFkdFe5\ncategories: Behavioral\ntags:\n - Java\n - Difficulty-Beginner\n---\n\n## Also known as\nFeature Flag\n\n## Intent\nUsed to switch code execution paths based on properties or groupings. Allowing new features to be released, tested\nand rolled out. Allowing switching back to the older feature quickly if needed. It should be noted that this pattern,\ncan easily introduce code complexity. There is also cause for concern that the old feature that the toggle is eventually\ngoing to phase out is never removed, causing redundant code smells and increased maintainability.\n\n![alt text](./etc/feature-toggle.png \"Feature Toggle\")\n\n## Applicability\nUse the Feature Toogle pattern when\n\n* Giving different features to different users.\n* Rolling out a new feature incrementally.\n* Switching between development and production environments.\n\n## Credits\n\n* [Martin Fowler 29 October 2010 (2010-10-29).](http://martinfowler.com/bliki/FeatureToggle.html)" -"// CodeContracts\n// \n// Copyright (c) Microsoft Corporation\n// \n// All rights reserved. \n// \n// MIT License\n// \n// Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the 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 all copies or substantial portions of the Software.\n// \n// THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n// File System.Windows.Automation.Peers.ScrollViewerAutomationPeer.cs\n// Automatically generated contract file.\nusing System.Collections.Generic;\nusing System.IO;\nusing System.Text;\nusing" -"# zap file format\n\nAdvanced ZAP File Format Documentation is [here](zap.md).\n\nThe file is written in the reverse order that we typically access data. This helps us write in one pass since later sections of the file require file offsets of things we've already written.\n\nCurrent usage:\n\n- mmap the entire file\n- crc-32 bytes and version are in fixed position at end of the file\n- reading remainder of footer could be version specific\n- remainder of footer gives us:\n - 3 important offsets (docValue , fields index and stored data index)\n - 2 important values (number of docs and chunk factor)\n- field data is processed once and memoized onto the heap so that we never have to go back to disk for it\n- access to stored data by doc number means first navigating to the stored data index, then accessing a fixed position offset into that slice, which gives us the actual address of the data. the first bytes of that section tell us the size of data so that we know where it ends.\n- access to all other indexed data follows the following pattern:\n - first know the field name -> convert to id" -"## Setting up a local instance of Kafka\n\nUse https://github.com/wurstmeister/kafka-docker\n\n\n```\nmkdir kafka-docker\ncd kafka-docker\ngit clone https://github.com/wurstmeister/kafka-docker .\n```\n\n* Edit file `docker-compose-single-broker.yml`\n* Change KAFKA_ADVERTISED_HOST_NAME to your machine's IP. Use `ifconfig | grep 'inet '` to see available ips. It is recommended to use an IP which doesn't change. Otherwise you will need to bring up again the cluster every time the ip changes. You can use the IP of global protect interface: gpd0. On my machine it has a value of: `10.196.100.168`.\n* Start a Kafka cluster:\n```\ndocker-compose -f docker-compose-single-broker.yml up\n```\n\nThis will startup a kafka with a default topic named `test`.\n\n## Configure an integration instance\n* For the broker, set your machine IP address, the one set as KAFKA_ADVERTISED_HOST_NAME in the previous step, with addition of the port `9092`, e.g. `10.196.100.168:9092`.\n\n## Creating Additional Topics for Testing \nIn the `kafka-docker` dir run the following to start a shell:\n```\n./start-kafka-shell.sh host.docker.internal host.docker.internal:2181\n```\nIn the shell run:\n* Create topic with 4 partitions: `$KAFKA_HOME/bin/kafka-topics.sh --zookeeper $ZK --create --topic mytest-topic --partitions 4 --replication-factor 1`\n* Create topic with lz4 compression: `$KAFKA_HOME/bin/kafka-topics.sh --zookeeper $ZK --create --topic test-lz4 --replication-factor 1 --config compression.type=lz4 --partitions" -"/*\n * Copyright 2017-2020 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 * 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 */\npackage io.micronaut.http.client.docs.basics;\n\nimport com.fasterxml.jackson.annotation.JsonCreator;\nimport com.fasterxml.jackson.annotation.JsonProperty;\n\n/**\n * @author graemerocher\n * @since 1.0\n */\npublic class Book {\n private String title;\n\n @JsonCreator\n public Book(@JsonProperty(\"title\") String title) {\n this.title = title;\n }\n\n Book() {\n }\n\n public String getTitle() {\n return title;\n }\n\n public void setTitle(String title) {\n this.title = title;\n }\n}" -"/**\n * Shopware 5\n * Copyright (c) shopware AG\n *\n * According to our dual licensing model, this program can be used either\n * under the terms of the GNU Affero General Public License, version 3,\n * or under a proprietary license.\n *\n * The texts of the GNU Affero General Public License with an additional\n * permission and of our proprietary license can be found at and\n * in the LICENSE file you have received along with this program.\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 * \"Shopware\" is a registered trademark of shopware AG.\n * The licensing of the program under the AGPLv3 does not imply a\n * trademark license. Therefore any rights, title and interest in\n * our trademarks remain entirely with us.\n *\n * @category Shopware\n * @package Emotion\n * @subpackage View\n * @version $Id$\n * @author shopware AG\n */\n\n//{block name=\"backend/emotion/view/components/html_element\"}\n//{namespace name=\"backend/emotion/view/components/html_element\"}\nExt.define('Shopware.apps.Emotion.view.components.HtmlElement', {\n extend: 'Shopware.apps.Emotion.view.components.Base',\n alias: 'widget.emotion-components-html-element',\n\n snippets: {\n text: {\n fieldLabel: '{s name=\"text/label\"}Text{/s}',\n supportText:" -"// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT license.\n\n// This node built-in must be shimmed for the browser.\nimport EventEmitter from \"events\";\n// This is a node dependency that needs to be replaced with a\n// different implementation in the browser.\nimport print from \"./print\";\nexport { print };\n\nexport { AzureKeyCredential, KeyCredential } from \"@azure/core-auth\";\n\n// this is a utility function from a library that should be external\n// for both node and web\nimport { isNode } from \"@azure/core-http\";\n\n// exporting some value from a dependency\nexport { URLBuilder } from \"@azure/core-http\";\n\nexport function createEventEmitter(): EventEmitter {\n // use event emitter\n const e = new EventEmitter();\n\n // Dynamic Node and browser-specific code\n if (isNode) {\n console.log(\"Node \ud83d\udc4a\");\n } else {\n console.log(\"Browser \u2764\");\n }\n\n print(\"Created event emitter\");\n\n return e;\n}" -"/*\n * $Id$\n *\n * Copyright (C) 2003-2015 JNode.org\n *\n * This library is free software; you can redistribute it and/or modify it\n * under the terms of the GNU Lesser General Public License as published\n * by the Free Software Foundation; either version 2.1 of the License, or\n * (at your option) any later version.\n *\n * This library is distributed in the hope that it will be useful, but \n * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY\n * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public \n * License for more details.\n *\n * You should have received a copy of the GNU Lesser General Public License\n * along with this library; If not, write to the Free Software Foundation, Inc., \n * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n */\n \npackage sun.misc;\n\nimport java.nio.ByteBuffer;\n\n/**\n * @see sun.misc.Perf\n */\nclass NativePerf {\n /**\n * @see sun.misc.Perf#attach(java.lang.String, int, int)\n */\n private static ByteBuffer attach(Perf instance, String arg1, int arg2, int arg3) {\n //todo implement it\n throw new UnsupportedOperationException();\n }\n /**\n * @see sun.misc.Perf#detach(java.nio.ByteBuffer)\n */\n private static void detach(Perf instance, ByteBuffer arg1) {\n //todo implement it\n throw new UnsupportedOperationException();\n }\n /**\n *" -"'use strict';\n\n/* eslint no-invalid-this: 1 */\n\nvar ERROR_MESSAGE = 'Function.prototype.bind called on incompatible ';\nvar slice = Array.prototype.slice;\nvar toStr = Object.prototype.toString;\nvar funcType = '[object Function]';\n\nmodule.exports = function bind(that) {\n var target = this;\n if (typeof target !== 'function' || toStr.call(target) !== funcType) {\n throw new TypeError(ERROR_MESSAGE + target);\n }\n var args = slice.call(arguments, 1);\n\n var bound;\n var binder = function () {\n if (this instanceof bound) {\n var result = target.apply(\n this,\n args.concat(slice.call(arguments))\n );\n if (Object(result) === result) {\n return result;\n }\n return this;\n } else {\n return target.apply(\n that,\n args.concat(slice.call(arguments))\n );\n }\n };\n\n var boundLength = Math.max(0, target.length - args.length);\n var boundArgs = [];\n for (var i = 0; i < boundLength; i++) {\n boundArgs.push('$' + i);\n }\n\n bound = Function('binder', 'return function (' + boundArgs.join(',') + '){ return binder.apply(this,arguments); }')(binder);\n\n if (target.prototype) {\n var Empty = function Empty() {};\n Empty.prototype = target.prototype;\n bound.prototype = new Empty();\n Empty.prototype = null;\n }\n\n return bound;\n};" -"# -*- coding: utf-8 -*-\nfrom __future__ import absolute_import\nfrom __future__ import division\nfrom __future__ import print_function\n\nimport csv\nimport numpy as np\nimport os\nimport sys\n\nfrom observations.util import maybe_download_and_extract\n\n\ndef science(path):\n \"\"\"School Science Survey Data\n\n The `science` data frame has 1385 rows and 7 columns.\n\n The data are on attitudes to science, from a survey where there were\n results from 20 classes in private schools and 46 classes in public\n schools.\n\n This data frame contains the following columns:\n\n State\n a factor with levels `ACT` Australian Capital Territory, `NSW`\n New South Wales\n\n PrivPub\n a factor with levels `private` school, `public` school\n\n school\n a factor, coded to identify the school\n\n class\n a factor, coded to identify the class\n\n sex\n a factor with levels `f`, `m`\n\n like\n a summary score based on two of the questions, on a scale from 1\n (dislike) to 12 (like)\n\n Class\n a factor with levels corresponding to each class\n\n Francine Adams, Rosemary Martin and Murali Nayadu, Australian National\n University\n\n Args:\n\n path: str.\n Path to directory which either stores file or otherwise file will\n be downloaded and extracted there.\n Filename is `science.csv`.\n\n Returns:\n\n Tuple of np.ndarray `x_train` with 1385 rows and 7 columns and\n dictionary `metadata` of" -"// Copyright 2009,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\n// NetBSD system calls.\n// This file is compiled as ordinary Go code,\n// but it is also input to mksyscall,\n// which parses the //sys lines and generates system call stubs.\n// Note that sometimes we use a lowercase //sys name and wrap\n// it in our own nicer implementation, either here or in\n// syscall_bsd.go or syscall_unix.go.\n\npackage unix\n\nimport (\n\t\"syscall\"\n\t\"unsafe\"\n)\n\ntype SockaddrDatalink struct {\n\tLen uint8\n\tFamily uint8\n\tIndex uint16\n\tType uint8\n\tNlen uint8\n\tAlen uint8\n\tSlen uint8\n\tData [12]int8\n\traw RawSockaddrDatalink\n}\n\nfunc Syscall9(trap, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 uintptr, err syscall.Errno)\n\nfunc sysctlNodes(mib []_C_int) (nodes []Sysctlnode, err error) {\n\tvar olen uintptr\n\n\t// Get a list of all sysctl nodes below the given MIB by performing\n\t// a sysctl for the given MIB with CTL_QUERY appended.\n\tmib = append(mib, CTL_QUERY)\n\tqnode := Sysctlnode{Flags: SYSCTL_VERS_1}\n\tqp := (*byte)(unsafe.Pointer(&qnode))\n\tsz := unsafe.Sizeof(qnode)\n\tif err = sysctl(mib, nil, &olen, qp, sz); err != nil {\n\t\treturn nil, err" -"// +build !ignore_autogenerated\n\n/*\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 deepcopy-gen. DO NOT EDIT.\n\npackage internalversion\n\nimport (\n\truntime \"k8s.io/apimachinery/pkg/runtime\"\n)\n\n// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.\nfunc (in *List) DeepCopyInto(out *List) {\n\t*out = *in\n\tout.TypeMeta = in.TypeMeta\n\tin.ListMeta.DeepCopyInto(&out.ListMeta)\n\tif in.Items != nil {\n\t\tin, out := &in.Items, &out.Items\n\t\t*out = make([]runtime.Object, len(*in))\n\t\tfor i := range *in {\n\t\t\tif (*in)[i] != nil {\n\t\t\t\t(*out)[i] = (*in)[i].DeepCopyObject()\n\t\t\t}\n\t\t}\n\t}\n\treturn\n}\n\n// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new List.\nfunc (in *List) DeepCopy() *List {\n\tif in == nil {\n\t\treturn nil\n\t}\n\tout := new(List)\n\tin.DeepCopyInto(out)\n\treturn out\n}" -"var baseSet = require('./_baseSet');\n\n/**\n * This method is like `_.set` except that it accepts `customizer` which is\n * invoked to produce the objects of `path`. If `customizer` returns `undefined`\n * path creation is handled by the method instead. The `customizer` is invoked\n * with three arguments: (nsValue, key, nsObject).\n *\n * **Note:** This method mutates `object`.\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Object\n * @param {Object} object The object to modify.\n * @param {Array|string} path The path of the property to set.\n * @param {*} value The value to set.\n * @param {Function} [customizer] The function to customize assigned values.\n * @returns {Object} Returns `object`.\n * @example\n *\n * var object = {};\n *\n * _.setWith(object, '[0][1]', 'a', Object);\n * // => { '0': { '1': 'a' } }\n */\nfunction setWith(object, path, value, customizer) {\n customizer = typeof customizer == 'function' ? customizer : undefined;\n return object == null ? object : baseSet(object, path, value, customizer);\n}\n\nmodule.exports = setWith;" -"// Go support for Protocol Buffers - Google's data interchange format\n//\n// Copyright 2012 The Go Authors. All rights reserved.\n// https://github.com/golang/protobuf\n//\n// Redistribution and use in source and binary forms, with or without\n// modification, are permitted provided that the following conditions are\n// 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\n// copyright notice, this list of conditions and the following disclaimer\n// in the documentation and/or other materials provided with the\n// distribution.\n// * Neither the name of Google Inc. nor the names of its\n// contributors may be used to endorse or promote products derived from\n// this software without specific prior written permission.\n//\n// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n// \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES" -"package Paws::FMS::ResourceTag;\n use Moose;\n has Key => (is => 'ro', isa => 'Str', required => 1);\n has Value => (is => 'ro', isa => 'Str');\n1;\n\n### main pod documentation begin ###\n\n=head1 NAME\n\nPaws::FMS::ResourceTag\n\n=head1 USAGE\n\nThis class represents one of two things:\n\n=head3 Arguments in a call to a service\n\nUse the attributes of this class as arguments to methods. You shouldn't make instances of this class. \nEach attribute should be used as a named argument in the calls that expect this type of object.\n\nAs an example, if Att1 is expected to be a Paws::FMS::ResourceTag object:\n\n $service_obj->Method(Att1 => { Key => $value, ..., Value => $value });\n\n=head3 Results returned from an API call\n\nUse accessors for each attribute. If Att1 is expected to be an Paws::FMS::ResourceTag object:\n\n $result = $service_obj->Method(...);\n $result->Att1->Key\n\n=head1 DESCRIPTION\n\nThe resource tags that AWS Firewall Manager uses to determine if a\nparticular resource should be included or excluded from the AWS\nFirewall Manager policy. Tags enable you to categorize your AWS\nresources in different ways, for example, by purpose, owner, or\nenvironment. Each tag consists of a key and an optional value. Firewall\nManager combines the tags with \"AND\" so that, if" -"package network\n\n// Copyright (c) Microsoft and contributors. 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// 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//\n// See the License for the specific language governing permissions and\n// limitations under the License.\n//\n// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0\n// Changes may cause incorrect behavior and will be lost if the code is\n// regenerated.\n\nimport (\n\t\"github.com/Azure/go-autorest/autorest\"\n\t\"github.com/Azure/go-autorest/autorest/azure\"\n\t\"github.com/Azure/go-autorest/autorest/validation\"\n\t\"net/http\"\n)\n\n// PublicIPAddressesClient is the composite Swagger for Network Client\ntype PublicIPAddressesClient struct {\n\tManagementClient\n}\n\n// NewPublicIPAddressesClient creates an instance of the\n// PublicIPAddressesClient client.\nfunc NewPublicIPAddressesClient(subscriptionID string) PublicIPAddressesClient {\n\treturn NewPublicIPAddressesClientWithBaseURI(DefaultBaseURI, subscriptionID)\n}\n\n// NewPublicIPAddressesClientWithBaseURI creates an instance of the\n// PublicIPAddressesClient client.\nfunc NewPublicIPAddressesClientWithBaseURI(baseURI string, subscriptionID string) PublicIPAddressesClient {\n\treturn PublicIPAddressesClient{NewWithBaseURI(baseURI, subscriptionID)}\n}\n\n// CreateOrUpdate creates or updates a static or dynamic public" -"/*\r\n * Copyright (C) 2010 Google Inc. 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 are\r\n * met:\r\n *\r\n * * Redistributions of source code must retain the above copyright\r\n * notice, this list of conditions and the following disclaimer.\r\n * * Redistributions in binary form must reproduce the above\r\n * copyright notice, this list of conditions and the following disclaimer\r\n * in the documentation and/or other materials provided with the\r\n * distribution.\r\n * * Neither the name of Google Inc. nor the names of its\r\n * contributors may be used to endorse or promote products derived from\r\n * this software without specific prior written permission.\r\n *\r\n * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\r\n * \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\r\n * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\r\n * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\r\n * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\r\n * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\r\n * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS" -"// Copyright 2013 the V8 project 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 V8CONFIG_H_\n#define V8CONFIG_H_\n\n// clang-format off\n\n// Platform headers for feature detection below.\n#if defined(__ANDROID__)\n# include \n#elif defined(__APPLE__)\n# include \n#elif defined(__linux__)\n# include \n#endif\n\n\n// This macro allows to test for the version of the GNU C library (or\n// a compatible C library that masquerades as glibc). It evaluates to\n// 0 if libc is not GNU libc or compatible.\n// Use like:\n// #if V8_GLIBC_PREREQ(2, 3)\n// ...\n// #endif\n#if defined(__GLIBC__) && defined(__GLIBC_MINOR__)\n# define V8_GLIBC_PREREQ(major, minor) \\\n ((__GLIBC__ * 100 + __GLIBC_MINOR__) >= ((major) * 100 + (minor)))\n#else\n# define V8_GLIBC_PREREQ(major, minor) 0\n#endif\n\n\n// This macro allows to test for the version of the GNU C++ compiler.\n// Note that this also applies to compilers that masquerade as GCC,\n// for example clang and the Intel C++ compiler for Linux.\n// Use like:\n// #if V8_GNUC_PREREQ(4, 3, 1)\n// ...\n// #endif\n#if defined(__GNUC__) && defined(__GNUC_MINOR__) && defined(__GNUC_PATCHLEVEL__)\n# define V8_GNUC_PREREQ(major, minor, patchlevel) \\\n ((__GNUC__ * 10000" -"import groovy.xml.MarkupBuilder\n\nTimeZone.default = TimeZone.getTimeZone(\"CET\")\n\ndef writer = new StringWriter()\ndef builder = new MarkupBuilder(writer) //#1\nbuilder.invoices {\n for (day in 1..3) {\n def invDate = Date.parse('yyyy-MM-dd', \"2015-01-0$day\")\n invoice(date: invDate) {\n item(count: day) {\n product(name: 'ULC', dollar: 1499)\n }\n }\n }\n}\n\nassert \"\\n\" + writer.toString() == \"\"\"\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\"\"\"\n//#1 NEW: MarkupBuilder replaces NodeBuilder" -"---\ntitle: makeCacheProvider()\nid: version-2.1-makeCacheProvider\noriginal_id: makeCacheProvider\n---\n\n```typescript\ndeclare const makeCacheProvider: (\n managers: Manager[],\n initialState?: State,\n) => ({ children }: { children: React.ReactNode }) => JSX.Element;\n```\n\nUsed to build a [\\](./CacheProvider.md) for [makeRenderRestHook()](./makeRenderRestHook.md)\n\n## Arguments\n\n### managers\n\n[Manager](./Manager.md)\n\n### initialState\n\nCan be used to prime the cache if test expects cache values to already be filled.\n\n## Returns\n\nSimple wrapper component that only has child as prop.\n\n```tsx\nconst manager = new MockNetworkManager();\nconst subscriptionManager = new SubscriptionManager(PollingSubscription);\nconst Provider = makeCacheProvider([manager, subscriptionManager]);\n\nfunction renderRestHook(callback: () => T) {\n return renderHook(callback, {\n wrapper: ({ children }) => {children},\n });\n}\n```" -"/*\n * Licensed to Crate under one or more contributor license agreements.\n * See the NOTICE file distributed with this work for additional\n * information regarding copyright ownership. Crate licenses this file\n * to you under the Apache License, Version 2.0 (the \"License\"); you may\n * not use this file except in compliance with the License. You may\n * 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\n * implied. See the License for the specific language governing\n * permissions and limitations under the License.\n *\n * However, if you have executed another commercial license agreement\n * with Crate these terms will supersede the license and you may use the\n * software solely pursuant to the terms of the relevant commercial\n * agreement.\n */\n\npackage io.crate.metadata.sys;\n\nimport io.crate.metadata.IndexParts;\n\nimport javax.annotation.Nullable;\n\nclass TableHealth {\n\n enum Health {\n GREEN,\n YELLOW,\n RED;\n\n public short severity() {\n return (short) (ordinal() + 1);\n }\n }\n\n private final String tableName;\n private final String tableSchema;\n @Nullable\n private final String partitionIdent;" -"/****************************************************************************\n**\n** Copyright (C) 2017 The Qt Company Ltd.\n** Contact: https://www.qt.io/licensing/\n**\n** This file is part of the QtWebEngine module of the Qt Toolkit.\n**\n** $QT_BEGIN_LICENSE:LGPL$\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 The Qt Company. For licensing terms\n** and conditions see https://www.qt.io/terms-conditions. For further\n** information use the contact form at https://www.qt.io/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 3 as published by the Free Software\n** Foundation and appearing in the file LICENSE.LGPL3 included in the\n** packaging of this file. Please review the following information to\n** ensure the GNU Lesser General Public License version 3 requirements\n** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.\n**\n** GNU General Public License Usage\n** Alternatively, this file may be used under the terms of the GNU\n** General Public License version 2.0 or (at your option) the GNU General" -"/*\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 paging.android.example.com.pagingsample\n\nimport androidx.room.Entity\nimport androidx.room.PrimaryKey\n\n/**\n * Data class that represents our items.\n */\n@Entity\ndata class Cheese(@PrimaryKey(autoGenerate = true) val id: Int, val name: String)" -"1.2.1 / 2019-05-10\n==================\n\n * Improve error when `str` is not a string\n\n1.2.0 / 2016-06-01\n==================\n\n * Add `combine` option to combine overlapping ranges\n\n1.1.0 / 2016-05-13\n==================\n\n * Fix incorrectly returning -1 when there is at least one valid range\n * perf: remove internal function\n\n1.0.3 / 2015-10-29\n==================\n\n * perf: enable strict mode\n\n1.0.2 / 2014-09-08\n==================\n\n * Support Node.js 0.6\n\n1.0.1 / 2014-09-07\n==================\n\n * Move repository to jshttp\n\n1.0.0 / 2013-12-11\n==================\n\n * Add repository to package.json\n * Add MIT license\n\n0.0.4 / 2012-06-17\n==================\n\n * Change ret -1 for unsatisfiable and -2 when invalid\n\n0.0.3 / 2012-06-17\n==================\n\n * Fix last-byte-pos default to len - 1\n\n0.0.2 / 2012-06-14\n==================\n\n * Add `.type`\n\n0.0.1 / 2012-06-11\n==================\n\n * Initial release" -"// Copyright 2020 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// Code generated by protoc-gen-go. DO NOT EDIT.\n// versions:\n// \tprotoc-gen-go v1.25.0\n// \tprotoc v3.13.0\n// source: google/ads/googleads/v3/errors/range_error.proto\n\npackage errors\n\nimport (\n\treflect \"reflect\"\n\tsync \"sync\"\n\n\tproto \"github.com/golang/protobuf/proto\"\n\t_ \"google.golang.org/genproto/googleapis/api/annotations\"\n\tprotoreflect \"google.golang.org/protobuf/reflect/protoreflect\"\n\tprotoimpl \"google.golang.org/protobuf/runtime/protoimpl\"\n)\n\nconst (\n\t// Verify that this generated code is sufficiently up-to-date.\n\t_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)\n\t// Verify that runtime/protoimpl is sufficiently up-to-date.\n\t_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)\n)\n\n// This is a compile-time assertion that a sufficiently up-to-date version\n// of the legacy proto package is being used.\nconst _ = proto.ProtoPackageIsVersion4\n\n// Enum describing possible range errors.\ntype RangeErrorEnum_RangeError int32\n\nconst (\n\t// Enum unspecified.\n\tRangeErrorEnum_UNSPECIFIED RangeErrorEnum_RangeError" -"// This file is part of Eigen, a lightweight C++ template library\n// for linear algebra.\n//\n// Copyright (C) 2006-2008 Benoit Jacob \n// Copyright (C) 2008-2011 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_GENERAL_PRODUCT_H\n#define EIGEN_GENERAL_PRODUCT_H\n\nnamespace Eigen { \n\n/** \\class GeneralProduct\n * \\ingroup Core_Module\n *\n * \\brief Expression of the product of two general matrices or vectors\n *\n * \\param LhsNested the type used to store the left-hand side\n * \\param RhsNested the type used to store the right-hand side\n * \\param ProductMode the type of the product\n *\n * This class represents an expression of the product of two general matrices.\n * We call a general matrix, a dense matrix with full storage. For instance,\n * This excludes triangular, selfadjoint, and sparse matrices.\n * It is the return type of the operator* between general matrices. Its template\n * arguments are determined automatically by ProductReturnType. Therefore,\n * GeneralProduct should never be used direclty. To determine the result type of a\n * function" -"//\n// Generated by class-dump 3.5 (64 bit) (Debug version compiled Jun 9 2015 22:53:21).\n//\n// class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2014 by Steve Nygard.\n//\n\n#import \n\n@class NSTimer;\n@protocol IPLargeMovementMouseWatcherDelegate;\n\n@interface IPLargeMovementMouseWatcher : NSObject\n{\n NSTimer *_heartbeatTimer;\n BOOL _paused;\n struct CGPoint _lastMotionPoint;\n double _distance;\n BOOL _largeMovementDetected;\n id _delegate;\n double _timeBetweenHeartbeats;\n double _largeMovementDistance;\n}\n\n@property(readonly, nonatomic) double distanceForHeartbeat; // @synthesize distanceForHeartbeat=_distance;\n@property(nonatomic) double largeMovementDistance; // @synthesize largeMovementDistance=_largeMovementDistance;\n@property(nonatomic) double timeBetweenHeartbeats; // @synthesize timeBetweenHeartbeats=_timeBetweenHeartbeats;\n@property(nonatomic) id delegate; // @synthesize delegate=_delegate;\n- (void)unpause;\n- (void)pause;\n- (void)mouseExited:(id)arg1;\n- (void)mouseMoved:(id)arg1;\n- (void)mouseEntered:(id)arg1;\n- (void)checkForLargeMovement;\n- (BOOL)hasLargeMovementOccurred;\n- (void)timerFired:(id)arg1;\n- (void)reset;\n- (void)_resetDistance;\n- (void)dealloc;\n\n@end" -"/**\n * @license\n Copyright (c) 2008, Adobe Systems Incorporated\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\n met:\n\n * Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n\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 * Neither the name of Adobe Systems Incorporated nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\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 TO,\n THE 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 OF\n LIABILITY, WHETHER IN CONTRACT," -"/*\n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements. See the NOTICE file distributed with\n * this work for additional information regarding copyright ownership.\n * The ASF licenses this file to You under the Apache License, Version 2.0\n * (the \"License\"); you may not use this file except in compliance with\n * the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\npackage org.apache.spark.mllib.regression;\n\nimport java.util.List;\nimport java.util.Random;\n\nimport org.junit.Assert;\nimport org.junit.Test;\n\nimport org.apache.spark.SharedSparkSession;\nimport org.apache.spark.api.java.JavaRDD;\nimport org.apache.spark.mllib.util.LinearDataGenerator;\n\npublic class JavaRidgeRegressionSuite extends SharedSparkSession {\n\n private static double predictionError(List validationData,\n RidgeRegressionModel model) {\n double errorSum = 0;\n for (LabeledPoint point : validationData) {\n Double prediction = model.predict(point.features());\n errorSum += (prediction - point.label()) * (prediction - point.label());\n }\n return errorSum / validationData.size();\n }\n\n private static List generateRidgeData(int numPoints, int numFeatures, double std) {\n // Pick weights" -"\"\"\"\nARCHES - a program developed to inventory and manage immovable cultural heritage.\nCopyright (C) 2013 J. Paul Getty Trust and World Monuments Fund\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\npublished by the Free Software Foundation, either version 3 of the\nLicense, or (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\n\"\"\"This module contains commands for building Arches.\"\"\"\n\nimport json\nimport os\nimport uuid\nimport shutil\nfrom django.utils.translation import ugettext as _\nfrom django.core.management.base import BaseCommand, CommandError\nfrom django.core.files import File\nfrom django.db import transaction\nfrom arches.app.models import models\n\nfrom arches.app.models.system_settings import settings\n\n# from rdflib import *\nfrom rdflib import Graph, RDF, RDFS\nfrom rdflib.resource import Resource\nfrom rdflib.namespace import Namespace, NamespaceManager\n\n\nclass Command(BaseCommand):\n \"\"\"\n Commands for managing the loading and running of" -"realProducer = $realProducer;\n\n $this->events = new \\SplQueue();\n $this->commands = new \\SplQueue();\n }\n\n public function sendCommand(string $command, $message, bool $needReply = false): ?Promise\n {\n if ($needReply) {\n return $this->realProducer->sendCommand($command, $message, $needReply);\n }\n\n $this->commands->enqueue([$command, $message]);\n\n return null;\n }\n\n public function sendEvent(string $topic, $message): void\n {\n $this->events->enqueue([$topic, $message]);\n }\n\n /**\n * When it is called it sends all previously queued messages.\n */\n public function flush(): void\n {\n while (false == $this->events->isEmpty()) {\n list($topic, $message) = $this->events->dequeue();\n\n $this->realProducer->sendEvent($topic, $message);\n }\n\n while (false == $this->commands->isEmpty()) {\n list($command, $message) = $this->commands->dequeue();\n\n $this->realProducer->sendCommand($command, $message);\n }\n }\n}" -"# Tenko parser autogenerated test case\n\n- From: tests/testcases/assigns/to_keyword/autogen.md\n- Path: tests/testcases/assigns/to_keyword/gen/assign_to_paren-wrapped_keyword_inside_delete_in_param_default/in.md\n\n> :: assigns : to keyword : gen : assign to paren-wrapped keyword inside delete in param default\n>\n> ::> in\n\n## Input\n\n\n`````js\nasync (x = delete ((in) = f)) => {}\n`````\n\n## Output\n\n_Note: the whole output block is auto-generated. Manual changes will be overwritten!_\n\nBelow follow outputs in five parsing modes: sloppy, sloppy+annexb, strict script, module, module+annexb.\n\nNote that the output parts are auto-generated by the test runner to reflect actual result.\n\n### Sloppy mode\n\nParsed with script goal and as if the code did not start with strict mode header.\n\n`````\nthrows: Parser error!\n Cannot use this name (`in`) as a variable name because: Cannot never use this reserved word as a variable name\n\nstart@1:0, error@1:20\n\u2554\u2550\u2550\u2566\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\n 1 \u2551 async (x = delete ((in) = f)) => {}\n \u2551 ^^------- error\n\u255a\u2550\u2550\u2569\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\n\n`````\n\n### Strict mode\n\nParsed with script goal but as if it was starting with `\"use strict\"` at the top.\n\n_Output same as sloppy mode._\n\n### Module goal\n\nParsed with the module goal.\n\n_Output same as sloppy mode._\n\n### Sloppy mode with AnnexB\n\nParsed with script goal with AnnexB rules" -"\n\n\n\n{#if items}\n\t{#each items as item, i}\n\t\t\n\t{/each}\n\n\tpage {page + 1}\n{:else}\n\t

    loading...

    \n{/if}" -"/**\n * Copyright (C) 2014 MongoDB Inc.\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, version 3,\n * as published by the Free Software Foundation.\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 * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see .\n *\n * As a special exception, the copyright holders give permission to link the\n * code of portions of this program with the OpenSSL library under certain\n * conditions as described in each individual source file and distribute\n * linked combinations including the program with the OpenSSL library. You\n * must comply with the GNU Affero General Public License in all respects for\n * all of the code used other than as permitted herein. If you modify file(s)\n * with this exception, you may extend this exception to your version" -"3AZ, Monaco (Principality of)\n3BZ, Mauritius (Republic of)\n3CZ, Equatorial Guinea (Republic of)\n3DM, Swaziland (Kingdom of)\n3DZ, Fiji (Republic of)\n3FZ, Panama (Republic of)\n3GZ, Chile\n3UZ, China (People's Republic of)\n3VZ, Tunisia\n3WZ, Viet Nam (Socialist Republic of)\n3XZ, Guinea (Republic of)\n3YZ, Norway\n3ZZ, Poland (Republic of)\n4CZ, Mexico\n4IZ, Philippines (Republic of the)\n4KZ, Azerbaijani Republic\n4LZ, Georgia (Republic of)\n4MZ, Venezuela (Republic of)\n4OZ, Montenegro (Republic of)\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 \t(WRC-07)\n4SZ, Sri Lanka (Democratic Socialist Republic of)\n4TZ, Peru\n4UZ, United Nations\n4VZ, Haiti (Republic of)\n4WZ, Democratic Republic of Timor-Leste\u00a0\u00a0 (WRC-03)\n4XZ, Israel (State of)\n4YZ, International Civil Aviation Organization\n4ZZ, Israel (State of)\n5AZ, Libya (Socialist People's Libyan Arab Jamahiriya)\n5BZ, Cyprus (Republic of)\n5GZ, Morocco (Kingdom of)\n5IZ, Tanzania (United Republic of)\n5KZ, Colombia (Republic of)\n5MZ, Liberia (Republic of)\n5OZ, Nigeria (Federal Republic of)\n5QZ, Denmark\n5SZ, Madagascar (Republic of)\n5TZ, Mauritania (Islamic Republic of)\n5UZ, Niger (Republic of the)\n5VZ, Togolese Republic\n5WZ, Samoa (Independent State of)\n5XZ, Uganda (Republic of)\n5ZZ, Kenya (Republic of)\n6BZ, Egypt (Arab Republic of)\n6CZ, Syrian Arab Republic\n6JZ, Mexico\n6NZ, Korea (Republic of)\n6OZ, Somali Democratic Republic\n6SZ, Pakistan (Islamic Republic of)\n6UZ, Sudan (Republic" -"#include\t\t\t/* for definition of errno */\n#include\t\t\t/* ANSI C header file */\n#include\t\"ourhdr.h\"\n\nstatic void\terr_doit(int, const char *, va_list);\n\nchar\t*pname = NULL;\t\t/* caller can set this from argv[0] */\n\n/* Nonfatal error related to a system call.\n * Print a message and return. */\n\nvoid\n/* $f err_ret $ */\nerr_ret(const char *fmt, ...)\n{\n\tva_list\t\tap;\n\n\tva_start(ap, fmt);\n\terr_doit(1, fmt, ap);\n\tva_end(ap);\n\treturn;\n}\n\n/* Fatal error related to a system call.\n * Print a message and terminate. */\n\nvoid\n/* $f err_sys $ */\nerr_sys(const char *fmt, ...)\n{\n\tva_list\t\tap;\n\n\tva_start(ap, fmt);\n\terr_doit(1, fmt, ap);\n\tva_end(ap);\n\texit(1);\n}\n\n/* Fatal error related to a system call.\n * Print a message, dump core, and terminate. */\n\nvoid\n/* $f err_dump $ */\nerr_dump(const char *fmt, ...)\n{\n\tva_list\t\tap;\n\n\tva_start(ap, fmt);\n\terr_doit(1, fmt, ap);\n\tva_end(ap);\n\tabort();\t\t/* dump core and terminate */\n\texit(1);\t\t/* shouldn't get here */\n}\n\n/* Nonfatal error unrelated to a system call.\n * Print a message and return. */\n\nvoid\n/* $f err_msg $ */\nerr_msg(const char *fmt, ...)\n{\n\tva_list\t\tap;\n\n\tva_start(ap, fmt);\n\terr_doit(0, fmt, ap);\n\tva_end(ap);\n\treturn;\n}\n\n/* Fatal error unrelated to" -"/*\n * Copyright 2013-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 */\npackage org.springframework.data.cassandra.core.cql.generator;\n\nimport org.springframework.data.cassandra.core.cql.keyspace.DropKeyspaceSpecification;\n\n/**\n * CQL generator for generating a {@code DROP TABLE} statement.\n *\n * @author Matthew T. Adams\n */\npublic class DropKeyspaceCqlGenerator extends KeyspaceNameCqlGenerator {\n\n\tpublic static String toCql(DropKeyspaceSpecification specification) {\n\t\treturn new DropKeyspaceCqlGenerator(specification).toCql();\n\t}\n\n\tpublic DropKeyspaceCqlGenerator(DropKeyspaceSpecification specification) {\n\t\tsuper(specification);\n\t}\n\n\t@Override\n\tpublic StringBuilder toCql(StringBuilder cql) {\n\t\treturn cql.append(\"DROP KEYSPACE \").append(spec().getIfExists() ? \"IF EXISTS \" : \"\")\n\t\t\t\t.append(spec().getName().asCql(true))\n\t\t\t\t.append(\";\");\n\t}\n}" -"\ufeff//Copyright (c) 2016-2020 Diego Settimi - https://github.com/arkypita/\n\n// This program is free software; you can redistribute it and/or modify it under the terms of the GPLv3 General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version.\n// This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GPLv3 General Public License for more details.\n// You should have received a copy of the GPLv3 General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. using System;\n\nusing System;\nusing System.Windows.Forms;\n\nnamespace LaserGRBL\n{\n\tpublic partial class JogForm : System.Windows.Forms.UserControl\n\t{\n\t\tGrblCore Core;\n\n\t\tpublic JogForm()\n\t\t{\n\t\t\tInitializeComponent();\n SettingsForm.SettingsChanged += SettingsForm_SettingsChanged;\n\t\t}\n\n public void SetCore(GrblCore core)\n\t\t{\n\t\t\tCore = core;\n\n\t\t\tUpdateFMax.Enabled = true;\n\t\t\tUpdateFMax_Tick(null, null);\n\n\t\t\tTbSpeed.Value = Math.Max(Math.Min(Settings.GetObject(\"Jog Speed\", 1000), TbSpeed.Maximum), TbSpeed.Minimum);\n \n\t\t\tTbStep.Value = Convert.ToDecimal(Settings.GetObject(\"Jog Step\", 10M));\n\n\t\t\tTbSpeed_ValueChanged(null, null); //set tooltip\n\t\t\tTbStep_ValueChanged(null, null); //set tooltip\n\n Core.JogStateChange += Core_JogStateChange;\n SettingsForm_SettingsChanged(this, null);\n }\n\n private void SettingsForm_SettingsChanged(object sender, EventArgs e)\n {\n TlpStepControl.Visible = !Settings.GetObject(\"Enable Continuous Jog\"," -"/*\n * Copyright (C) 2001 Peter Kelly (pmk@post.com)\n * Copyright (C) 2001 Tobias Anton (anton@stud.fbi.fh-darmstadt.de)\n * Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com)\n * Copyright (C) 2003-2016 Apple Inc. All rights reserved.\n *\n * This library is free software; you can redistribute it and/or\n * modify it under the terms of the GNU Library 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 * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public License\n * along with this library; see the file COPYING.LIB. If not, write to\n * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,\n * Boston, MA 02110-1301, USA.\n *\n */\n\n#pragma once\n\n#include \"MouseEventInit.h\"\n#include \"MouseRelatedEvent.h\"\n\nnamespace WebCore {\n\nclass DataTransfer;\nclass Node;\nclass PlatformMouseEvent;\n\nclass MouseEvent : public MouseRelatedEvent {\npublic:\n WEBCORE_EXPORT static Ref create(const AtomicString& type, CanBubble, IsCancelable, IsComposed, MonotonicTime" -"/**\t@file midl.c\n *\t@brief ldap bdb back-end ID List functions */\n/* $OpenLDAP$ */\n/* This work is part of OpenLDAP Software .\n *\n * Copyright 2000-2019 The OpenLDAP Foundation.\n * Portions Copyright 2001-2018 Howard Chu, Symas Corp.\n * All rights reserved.\n *\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted only as authorized by the OpenLDAP\n * Public License.\n *\n * A copy of this license is available in the file LICENSE in the\n * top-level directory of the distribution or, alternatively, at\n * .\n */\n\n#include \n#include \n#include \n#include \n#include \n#include \"midl.h\"\n\n/** @defgroup internal\tLMDB Internals\n *\t@{\n */\n/** @defgroup idls\tID List Management\n *\t@{\n */\n#define CMP(x,y)\t ( (x) < (y) ? -1 : (x) > (y) )\n\nunsigned mdb_midl_search( MDB_IDL ids, MDB_ID id )\n{\n\t/*\n\t * binary search of id in ids\n\t * if found, returns position of id\n\t * if not found, returns first position greater than id\n\t */\n\tunsigned base = 0;\n\tunsigned cursor = 1;\n\tint val = 0;\n\tunsigned n = ids[0];\n\n\twhile( 0 < n ) {\n\t\tunsigned pivot = n >> 1;" -"/* \r\n * hashlib++ - a simple hash library for C++\r\n * \r\n * Copyright (c) 2007-2010 Benjamin Gr\u00fcdelbach\r\n * \r\n * Redistribution and use in source and binary forms, with or without modification,\r\n * are permitted provided that the following conditions are met:\r\n * \r\n * \t1) Redistributions of source code must retain the above copyright\r\n * \t notice, this list of conditions and the following disclaimer.\r\n * \r\n * \t2) Redistributions in binary form must reproduce the above copyright\r\n * \t notice, this list of conditions and the following disclaimer in\r\n * \t the documentation and/or other materials provided with the\r\n * \t distribution.\r\n * \t \r\n * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\r\n * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\r\n * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\r\n * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR\r\n * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\r\n * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\r\n * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\r\n * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\r\n * (INCLUDING" -"/// Copyright (c) 2012 Ecma International. All rights reserved. \n/**\n * @path ch15/15.4/15.4.4/15.4.4.18/15.4.4.18-3-22.js\n * @description Array.prototype.forEach throws TypeError exception when 'length' is an object with toString and valueOf methods that don\ufffdt return primitive values\n */\n\n\nfunction testcase() {\n\n var accessed = false;\n var firstStepOccured = false;\n var secondStepOccured = false;\n\n function callbackfn(val, idx, obj) {\n accessed = true;\n }\n\n var obj = {\n 1: 11,\n 2: 12,\n\n length: {\n valueOf: function () {\n firstStepOccured = true;\n return {};\n },\n toString: function () {\n secondStepOccured = true;\n return {};\n }\n }\n };\n\n try {\n Array.prototype.forEach.call(obj, callbackfn);\n return false;\n } catch (ex) {\n return ex instanceof TypeError && !accessed;\n }\n }\nrunTestCase(testcase);" -"package reads\n\nimport (\n\t\"context\"\n\n\t\"github.com/influxdata/influxdb/v2/models\"\n\t\"github.com/influxdata/influxdb/v2/tsdb/cursors\"\n\t\"github.com/influxdata/influxql\"\n)\n\ntype SeriesCursor interface {\n\tClose()\n\tNext() *SeriesRow\n\tErr() error\n}\n\ntype SeriesRow struct {\n\tSortKey []byte\n\tName []byte // measurement name\n\tSeriesTags models.Tags // unmodified series tags\n\tTags models.Tags\n\tField string\n\tQuery cursors.CursorIterators\n\tValueCond influxql.Expr\n}\n\ntype limitSeriesCursor struct {\n\tSeriesCursor\n\tn, o, c int64\n}\n\nfunc NewLimitSeriesCursor(ctx context.Context, cur SeriesCursor, n, o int64) SeriesCursor {\n\treturn &limitSeriesCursor{SeriesCursor: cur, o: o, n: n}\n}\n\nfunc (c *limitSeriesCursor) Next() *SeriesRow {\n\tif c.o > 0 {\n\t\tfor i := int64(0); i < c.o; i++ {\n\t\t\tif c.SeriesCursor.Next() == nil {\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\t\tc.o = 0\n\t}\n\n\tif c.c >= c.n {\n\t\treturn nil\n\t}\n\tc.c++\n\treturn c.SeriesCursor.Next()\n}" -"= Contributing to the Tutorial\n\n== Contributing\n\nLike every other open source project, we gladly accept\ncontributions. Sections that need help have been marked with\nFIXMEs. All contributions will be duly credited in the credits page.\n\nThis document's source is maintained in a public git repo located at\nhttps://github.com/bravegnu/gnu-eprog To contribute to the project,\nfork the project on github and send in a pull request.\n\nThe document is written in\nhttp://www.methods.co.nz/asciidoc/[asciidoc], and converted to HTML\nusing the http://docbook.sourceforge.net/[docbook-xsl] stylesheets.\n\n * Fork this repo into your GitHub account.\n \n * Install required software, for Debian / Ubuntu, use the following command.\n+\n------\nsudo apt install asciidoc docbook libsaxon-java libxslthl-java imgsizer dia\n------\n+\n * Clone your repo.\n+\n------\ngit clone -o gh https://github.com/yourname/gnu-eprog\ncd gnu-eprog\n------\n+\n * Make your changes.\n \n * Push you changes with `git`. Do use desriptive comments in your\n commits.\n\n * Send pull request to `gnu-eprog` maintainer, to review your\n changes and merge them into `master` `gnu-eprog` branch." -"/*\n TiMidity++ -- MIDI to WAVE converter and player\n Copyright (C) 1999-2002 Masanao Izumo \n Copyright (C) 1995 Tuukka Toivonen \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 gogo_a.c\n\n Functions to output mp3 by gogo.lib or gogo.dll.\n*/\n\n#ifdef HAVE_CONFIG_H\n#include \"config.h\"\n#endif /* HAVE_CONFIG_H */\n#include \"interface.h\"\n#include \n#include \n\n#ifdef AU_GOGO\n\n#ifdef __W32__\n#include \n#include \n#include \n#endif\n\n#ifdef HAVE_UNISTD_H\n#include \n#endif /* HAVE_UNISTD_H */\n\n#ifndef NO_STRING_H\n#include \n#else\n#include \n#endif\n#include \n\n/* #include \t\t/* for gogo */\n#include \t\t/* for gogo */" -"\n \n\n\n\n\n \n oozie.base.url\n http://localhost:11000/oozie\n Base Oozie URL.\n \n\n \n oozie.system.id\n oozie-${user.name}\n \n The Oozie system ID.\n \n \n\n \n oozie.systemmode\n NORMAL\n \n System mode for Oozie at startup.\n \n \n\n \n oozie.service.AuthorizationService.security.enabled\n true\n \n Specifies whether security (user name/admin role) is enabled or not.\n If disabled any user can manage Oozie system and manage any job.\n \n \n\n \n oozie.service.PurgeService.older.than\n 30\n \n Jobs older than" -"\n * @copyright Sebastian Feldmann \n * @license https://opensource.org/licenses/MIT The MIT License (MIT)\n * @link http://phpbu.de/\n * @since Class available since Release 5.0.0\n */\nclass OnePerGroup implements Keeper\n{\n /**\n * Grouping date format f.e. 'Ymd'.\n *\n * @var string\n */\n private $group;\n\n /**\n * List of groups containing the files.\n *\n * @var \\phpbu\\App\\Backup\\File\\Local[][]\n */\n private $groups = [];\n\n /**\n * OnePerGroup constructor.\n *\n * @param string $group\n */\n public function __construct(string $group)\n {\n $this->group = $group;\n }\n\n /**\n * Decides if given file should be kept.\n *\n * @param \\phpbu\\App\\Backup\\File $file\n * @return bool\n */\n public function keep(File $file) : bool\n {\n $group = date($this->group, $file->getMTime());\n $this->groups[$group][] = $file;\n\n // keep only the first file\n return count($this->groups[$group]) < 2;\n }\n}" -"/* Copyright 2009-2020 David Hadka\r\n *\r\n * This file is part of the MOEA Framework.\r\n *\r\n * The MOEA Framework is free software: you can redistribute it and/or modify\r\n * it under the terms of the GNU Lesser General Public License as published by\r\n * the Free Software Foundation, either version 3 of the License, or (at your\r\n * option) any later version.\r\n *\r\n * The MOEA Framework is distributed in the hope that it will be useful, but\r\n * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY\r\n * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public\r\n * License for more details.\r\n *\r\n * You should have received a copy of the GNU Lesser General Public License\r\n * along with the MOEA Framework. If not, see .\r\n */\r\npackage org.moeaframework.core.operator;\r\n\r\nimport org.moeaframework.core.PRNG;\r\nimport org.moeaframework.core.Population;\r\nimport org.moeaframework.core.Selection;\r\nimport org.moeaframework.core.Solution;\r\n\r\n/**\r\n * Uniform selection operator. Solutions are selected from the population with\r\n * equal probability.\r\n */\r\npublic class UniformSelection implements Selection {\r\n\r\n\t/**\r\n\t * Constructs a uniform selection operator.\r\n\t */\r\n\tpublic UniformSelection() {\r\n\t\tsuper();\r\n\t}\r\n\r\n\t@Override\r\n\tpublic Solution[] select(int arity, Population population) {\r\n\t\tSolution[] result = new Solution[arity];\r\n\r\n\t\tfor (int i = 0; i < arity;" -"package fileutils // import \"github.com/docker/docker/pkg/fileutils\"\n\nimport (\n\t\"errors\"\n\t\"fmt\"\n\t\"io\"\n\t\"os\"\n\t\"path/filepath\"\n\t\"regexp\"\n\t\"strings\"\n\t\"text/scanner\"\n\n\t\"github.com/sirupsen/logrus\"\n)\n\n// PatternMatcher allows checking paths against a list of patterns\ntype PatternMatcher struct {\n\tpatterns []*Pattern\n\texclusions bool\n}\n\n// NewPatternMatcher creates a new matcher object for specific patterns that can\n// be used later to match against patterns against paths\nfunc NewPatternMatcher(patterns []string) (*PatternMatcher, error) {\n\tpm := &PatternMatcher{\n\t\tpatterns: make([]*Pattern, 0, len(patterns)),\n\t}\n\tfor _, p := range patterns {\n\t\t// Eliminate leading and trailing whitespace.\n\t\tp = strings.TrimSpace(p)\n\t\tif p == \"\" {\n\t\t\tcontinue\n\t\t}\n\t\tp = filepath.Clean(p)\n\t\tnewp := &Pattern{}\n\t\tif p[0] == '!' {\n\t\t\tif len(p) == 1 {\n\t\t\t\treturn nil, errors.New(\"illegal exclusion pattern: \\\"!\\\"\")\n\t\t\t}\n\t\t\tnewp.exclusion = true\n\t\t\tp = p[1:]\n\t\t\tpm.exclusions = true\n\t\t}\n\t\t// Do some syntax checking on the pattern.\n\t\t// filepath's Match() has some really weird rules that are inconsistent\n\t\t// so instead of trying to dup their logic, just call Match() for its\n\t\t// error state and if there is an error in the pattern return it.\n\t\t// If this becomes an issue we can remove this since its really only\n\t\t// needed in the error (syntax) case - which isn't really" -"\nCSS Basic User Interface Test: Directional Focus Navigation - property inheritance for 'nav-right'\n\n\n\n\n\n\n\n

    First, use directional navigation to navigate the focus to the \"START\" link below.

    \n \n

    Test passes if navigating right once moves the focus to the \"FINISH\" link.

    \n\n \n\n" -"============\nDomain model\n============\n\nThe different entities in a model reference each other, and input data must\nthus be entered in the correct order. This list show the correct order and\ndependencies. Entities with a higher indentation depend on entities with\nless indentation.\n\nStart populating the entities at the top of the list and work your way down.\n\n| :doc:`customers` (references itself)\n| :doc:`setup-matrices`\n| :doc:`skills`\n| :doc:`calendars`\n| :doc:`Calendar bucket ` (references calendars)\n| :doc:`locations` (references calendars and itself)\n| :doc:`suppliers` (references calendars and itself)\n| :doc:`resources` (references setup matrices, calendars, locations and itself)\n| :doc:`items` (references itself)\n| :doc:`operations` (references items, locations and customers)\n| :doc:`sales-orders` (references items, customers, operations, locations and itself)\n| :doc:`buffers` (references items, locations, calendars and itself)\n| :doc:`operation-resources` (references resources, skills and operations)\n| :doc:`operation-materials` (references items and operations)\n| :doc:`item-suppliers` (references suppliers, items, resources and locations)\n| :doc:`item-distributions` (references locations, items and resources)\n| :doc:`resource-skills` (references skills and resources)\n| :doc:`Sub operation ` (references operations)\n| :doc:`manufacturing-orders` (references operations)\n| :doc:`purchase-orders` (references items, suppliers and locations)\n| :doc:`distribution-orders` (references items and locations)\n| :doc:`buckets`\n| :doc:`parameters`\n\n.. image:: _images/dependencies.png\n :alt: Model dependencies\n\nNote that it is pretty straightforward to extend the data" -"/*\nCopyright (c) 2009-2017 Dave Gamble and cJSON contributors\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:\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\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*/\n\n/* cJSON */\n/* JSON parser in C. */\n\n#ifdef __GNUC__\n #pragma GCC visibility push(default)\n#endif\n\n#include \n#include \n#include \n#include \n#include \n#include " -"/*\n * Copyright (C) 2013-2019 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 * 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 APPLE INC. AND ITS CONTRIBUTORS ``AS IS''\n * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,\n * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS\n * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n * ARISING IN ANY WAY OUT" -"\n\n\n\n\tPreferenceSpecifiers\n\t\n\t\t\n\t\t\tFooterText\n\t\t\tThis application makes use of the following third party libraries:\n\t\t\tTitle\n\t\t\tAcknowledgements\n\t\t\tType\n\t\t\tPSGroupSpecifier\n\t\t\n\t\t\n\t\t\tFooterText\n\t\t\tLicensed under the **MIT** license\n\n> Copyright (c) 2016 Hyper Interaktiv\n>\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\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 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" -"/*\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.fasta;\n\n\n// the imports for unit testing.\n\n\nimport" -"{\n \"TypeName\": \"Copper Hammer\",\n \"MoneyValue\": 200.0,\n \"Description\": \"A hammer made of copper.\",\n \"Category\": \"Tools\",\n \"Tags\": [\n \"Tool\",\n \"Hammer\"\n ],\n \"FoodContent\": 0.0,\n \"DisplayName\": \"Copper Hammer\",\n \"PlantToGenerate\": \"\",\n \"Tint\": [\n 255,\n 255,\n 255,\n 255\n ],\n \"AleName\": \"\",\n\n \"Tool_Breakable\": true,\n \"Tool_Durability\": 192,\n \"Tool_Wear\": 0,\n \"Tool_Effectiveness\": 1.0,\n \"Tool_AttackAnimation\": \"Attacking\",\n \"Tool_AttackTriggerFrame\": 2,\n \"Tool_AttackDamage\": 1,\n \"Tool_AttackHitEffect\": \"Effects\\\\hit\",\n\n \"Equipable\": true,\n \"Equipment_LayerType\": \"Tool\",\n \"Equipment_Palette\": \"Copper Equipment\",\n \"Equipment_LayerName\": \"hammer\",\n \"Equipment_Slot\": \"Tool\",\n\n \"Gui_Graphic\": {\n \"AssetPath\": \"Entities/Dwarf/ToolIcons/equipment\",\n \"Palette\": \"Copper Equipment\",\n \"FrameSize\": \"32, 32\",\n \"Frame\": \"2, 0\"\n },\n\n \"Craft_Craftable\": true,\n \"Craft_Ingredients\": [\n {\n \"Tag\": \"Wood\",\n \"Count\": 1\n },\n {\n \"Tag\": \"Copper\",\n \"Count\": 1\n }\n ],\n \"Craft_ResultsCount\": 1,\n \"Craft_BaseCraftTime\": 16.0,\n \"Craft_Location\": \"Anvil\",\n \"Craft_TaskCategory\": \"CraftItem\",\n \"Craft_Noise\": \"Craft\",\n \"Craft_MetaResourceFactory\": \"Normal\",\n\n \"Tutorial\": \"Dwarves need hammers to craft items.\"\n\n}" -"package convert\n\nimport (\n\t\"bytes\"\n\t\"fmt\"\n\t\"sort\"\n\n\t\"github.com/zclconf/go-cty/cty\"\n)\n\n// MismatchMessage is a helper to return an English-language description of\n// the differences between got and want, phrased as a reason why got does\n// not conform to want.\n//\n// This function does not itself attempt conversion, and so it should generally\n// be used only after a conversion has failed, to report the conversion failure\n// to an English-speaking user. The result will be confusing got is actually\n// conforming to or convertable to want.\n//\n// The shorthand helper function Convert uses this function internally to\n// produce its error messages, so callers of that function do not need to\n// also use MismatchMessage.\n//\n// This function is similar to Type.TestConformance, but it is tailored to\n// describing conversion failures and so the messages it generates relate\n// specifically to the conversion rules implemented in this package.\nfunc MismatchMessage(got, want cty.Type) string {\n\tswitch {\n\n\tcase got.IsObjectType() && want.IsObjectType():\n\t\t// If both types are object types then we may be able to say something\n\t\t// about their respective attributes.\n\t\treturn mismatchMessageObjects(got, want)\n\n\tcase got.IsTupleType() && want.IsListType() && want.ElementType() == cty.DynamicPseudoType:\n\t\t// If conversion from tuple to" -"package com.google.gwt.maps.client;\n\n/*\n * #%L\n * GWT Maps API V3 - Core API\n * %%\n * Copyright (C) 2011 - 2012 GWT Maps API V3\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 * #L%\n */\n\nimport java.io.File;\nimport java.io.IOException;\nimport java.net.URL;\nimport java.util.ArrayList;\nimport java.util.Enumeration;\nimport java.util.List;\n\nimport junit.framework.TestSuite;\n\nimport com.google.gwt.junit.client.GWTTestCase;\nimport com.google.gwt.junit.tools.GWTTestSuite;\nimport com.google.gwt.maps.client.main.LoadApiGwtTest;\n\npublic class RunAllTestsGwtTestSuite extends GWTTestSuite {\n\n public static final String TARGET_CLASS_SUFFIX = \"Test\";\n\n public static TestSuite suite() throws Exception {\n GWTTestSuite suite = new GWTTestSuite();\n\n // be sure the libs get loaded at the beginning b/c they won't want to\n // add the libs during\n suite.addTestSuite(LoadApiGwtTest.class);\n\n // don't run these twice\n ArrayList ignoreTestList = new ArrayList();\n ignoreTestList.add(LoadApiGwtTest.class.getName());\n ignoreTestList.add(AbstractMapsGWTTestHelper.class.getName());\n\n // make sure" -"package org.wikidata.wdtk.datamodel.implementation;\n\n/*\n * #%L\n * Wikidata Toolkit Data Model\n * %%\n * Copyright (C) 2014 Wikidata Toolkit Developers\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 * #L%\n */\n\nimport com.fasterxml.jackson.annotation.*;\nimport org.wikidata.wdtk.datamodel.helpers.Equality;\nimport org.wikidata.wdtk.datamodel.helpers.Hash;\nimport org.wikidata.wdtk.datamodel.helpers.ToString;\nimport org.wikidata.wdtk.datamodel.interfaces.Reference;\nimport org.wikidata.wdtk.datamodel.interfaces.Snak;\nimport org.wikidata.wdtk.datamodel.interfaces.SnakGroup;\nimport org.wikidata.wdtk.util.NestedIterator;\n\nimport java.util.*;\n\n/**\n * Jackson implementation of {@link Reference}.\n *\n * @author Fredo Erxleben\n * @author Markus Kroetzsch\n * @author Antonin Delpeuch\n * \n */\n@JsonIgnoreProperties(ignoreUnknown = true)\npublic class ReferenceImpl implements Reference {\n\n\tprivate List snakGroups;\n\n\t/**\n\t * Map of property id strings to snaks, as used to encode snaks in JSON.\n\t */\n\tprivate final Map> snaks;\n\n\t/**\n\t * List of property string ids that encodes the desired order of" -"// 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,dragonfly\n\npackage unix\n\nimport (\n\t\"syscall\"\n\t\"unsafe\"\n)\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 (msghdr *Msghdr) SetIovlen(length int) {\n\tmsghdr.Iovlen = int32(length)\n}\n\nfunc (cmsg *Cmsghdr) SetLen(length int) {\n\tcmsg.Len = uint32(length)\n}\n\nfunc sendfile(outfd int, infd int, offset *int64, count int) (written int, err error) {\n\tvar writtenOut uint64 = 0\n\t_, _, e1 := Syscall9(SYS_SENDFILE, uintptr(infd), uintptr(outfd), uintptr(*offset), uintptr(count), 0, uintptr(unsafe.Pointer(&writtenOut)), 0, 0, 0)\n\n\twritten = int(writtenOut)\n\n\tif e1 != 0 {\n\t\terr = e1\n\t}\n\treturn\n}\n\nfunc Syscall9(num, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 uintptr, err syscall.Errno)" -"######################## BEGIN LICENSE BLOCK ########################\n# The Original Code is Mozilla Communicator client code.\n#\n# The Initial Developer of the Original Code is\n# Netscape Communications Corporation.\n# Portions created by the Initial Developer are Copyright (C) 1998\n# the Initial Developer. All Rights Reserved.\n#\n# Contributor(s):\n# Mark Pilgrim - port to Python\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\n# 02110-1301 USA\n######################### END LICENSE BLOCK #########################\n\n# Sampling from about 20M text materials include" -"/**\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.io;\n\nimport org.apache.hadoop.io.CompatibleWritable.CompatibleDataInput;\n\nimport java.io.*;\n\n/** A reusable {@link DataInput} implementation that reads from an in-memory\n * buffer.\n *\n *

    This saves memory over creating a new DataInputStream and\n * ByteArrayInputStream each time data is read.\n *\n *

    Typical usage is something like the following:

    \n *\n * DataInputBuffer buffer = new DataInputBuffer();\n * while (... loop condition ...) {\n *   byte[] data = ... get data ...;\n *   int dataLength"
    -"/*\n * Copyright 2017-2020 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 * 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 */\npackage net.cloudopt.next.web.test.validator\n\nimport net.cloudopt.next.logging.Logger\nimport net.cloudopt.next.web.Resource\nimport net.cloudopt.next.web.Validator\n\n\n/*\n * @author: Cloudopt\n * @Time: 2018/2/28\n * @Description: Test Case\n */\nclass TestValidator : Validator {\n\n    val logger = Logger.getLogger(this::class.java.simpleName)\n\n    override fun validate(resource: Resource): Boolean {\n        logger.info(\"TestValidator\")\n        return true\n    }\n\n    override fun error(resource: Resource) {\n\n    }\n\n\n}"
    -"\n\n\n\n\n  \n  \n\n\n\n  

    \n Push in Web components\n

    \n\n \n\n" -"// RUN: %clang_cc1 %s -triple=powerpc-apple-darwin8 -target-feature +altivec -verify -pedantic -fsyntax-only\n\ntypedef int v4 __attribute((vector_size(16)));\ntypedef short v8 __attribute((vector_size(16)));\n\nv8 foo(void) { \n v8 a;\n v4 b;\n a = (v8){4, 2};\n b = (v4)(5, 6, 7, 8, 9); // expected-warning {{excess elements in vector initializer}}\n b = (v4)(5, 6, 8, 8.0f);\n\n vector int vi;\n vi = (vector int)(1);\n vi = (vector int)(1, 2); // expected-error {{number of elements must be either one or match the size of the vector}}\n vi = (vector int)(1, 2, 3, 4);\n vi = (vector int)(1, 2, 3, 4, 5); // expected-warning {{excess elements in vector initializer}}\n vi = (vector int){1};\n vi = (vector int){1, 2};\n vi = (vector int){1, 2, 3, 4, 5}; // expected-warning {{excess elements in vector initializer}}\n vector float vf;\n vf = (vector float)(1.0);\n\n return (v8){0, 1, 2, 3, 1, 2, 3, 4};\n\n // FIXME: test that (type)(fn)(args) still works with -maltivec\n // FIXME: test that c++ overloaded commas still work -maltivec\n}\n\nvoid __attribute__((__overloadable__)) f(v4 a)\n{\n}\n\nvoid __attribute__((__overloadable__)) f(int a)\n{\n}\n\nvoid test()\n{\n v4 vGCC;\n vector int vAltiVec;\n\n f(vAltiVec);\n vGCC = vAltiVec;\n int res = vGCC > vAltiVec;\n vAltiVec = 0 ? vGCC : vGCC;\n}" -"/*\n * Copyright 2017 Martin Winandy\n *\n * Licensed under the Apache License, Version 2.0 (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 distributed under the License is distributed on\n * an \"AS IS\" BASIS, WITHOUT WARRANTIES OR 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\npackage org.tinylog.core;\n\nimport java.util.ArrayList;\nimport java.util.Collection;\nimport java.util.Collections;\nimport java.util.HashMap;\nimport java.util.List;\nimport java.util.Locale;\nimport java.util.Map;\nimport java.util.Map.Entry;\n\nimport org.tinylog.Level;\nimport org.tinylog.configuration.Configuration;\nimport org.tinylog.configuration.ServiceLoader;\nimport org.tinylog.provider.InternalLogger;\nimport org.tinylog.runtime.RuntimeProvider;\nimport org.tinylog.writers.Writer;\n\n/**\n * Parser for properties based configuration.\n *\n * @see Configuration\n */\npublic final class ConfigurationParser {\n\n\t/** */\n\tprivate ConfigurationParser() {\n\t}\n\n\t/**\n\t * Loads the global severity level from configuration.\n\t *\n\t * @return Severity level from configuration or {@link Level#TRACE} if no severity level is configured\n\t */\n\tpublic static Level getGlobalLevel() {\n\t\treturn parse(Configuration.get(\"level\"), Level.TRACE);\n\t}\n\n\t/**\n\t * Loads custom severity levels for packages or classes from configuration.\n\t *\n\t * @return All found custom" -"(** \n Functions to optimize vine expressions.\n \n Basically, constant_fold will only perform constant folding, whereas\n simplify() will also perform alpha substitution.\n \n Original author: Ivan Jager\n *)\n\nopen ExtList\nopen Vine\nopen Vine_util\n\nmodule D = Debug.Make(struct let name = \"Vine_opt\" and default=`NoDebug end)\nopen D\n\nmodule VH = Vine.VarHash\n\n\ntype alias = MayAlias | DoesAlias | PartialAlias | NoAlias\n\n\n(* some helper functions *)\n\n(* These fix* functions are duplicated from\n Execution.exec_utils. That's not ideal, but I'm not sure of a better\n place. *)\nlet fix_u1 x = Int64.logand x 0x1L\nlet fix_u8 x = Int64.logand x 0xffL\nlet fix_u16 x = Int64.logand x 0xffffL\nlet fix_u32 x = Int64.logand x 0xffffffffL\n\nlet fix_s1 x = Int64.shift_right (Int64.shift_left x 63) 63\nlet fix_s8 x = Int64.shift_right (Int64.shift_left x 56) 56\nlet fix_s16 x = Int64.shift_right (Int64.shift_left x 48) 48\nlet fix_s32 x = Int64.shift_right (Int64.shift_left x 32) 32\n\n(* drop high bits *)\nlet to64 v =\n match v with\n\tInt(t,i) -> let bits = 64 - bits_of_width t in\n\t Int64.shift_right_logical (Int64.shift_left i bits) bits\n | _ -> raise (Invalid_argument \"to64 is only for integers\")\n\n(* sign extend to 64 bits*)\nlet tos64 v =\n match v with\n\tInt(t,i) -> let" -"# Changelog\n\n## [v0.11.2]\n\nMinor:\n\n* Switch to standard MIT SPDX license\n\n## [v0.11.0]\n\nFeatures:\n\n* Add support for `Expect-CT` header. Allows excluding domains that will not have the `Expect-CT` header applied. By default, the `Expect-CT` header will not be applied to localhost. It is also only applied to HTTPS requests \n* Add support for `worker-src` directive for `Content-Security-Policy` header\n\n## [v0.10.0]\n\nBreaking Changes:\n\n* Drop support for ASP.NET Core 1.x\n* Add support for ASP.NET Core 3.0\n\n## [v0.9.0]\n\nFeatures:\n\n* Add support for Nonce generation for `Content-Security-Policy` headers. See [README.md](https://github.com/andrewlock/NetEscapades.AspNetCore.SecurityHeaders/blob/master/README.md#using-nonces-and-generated-hashes-with-content-security-policy) for details\n* Add [TagHelpers](https://www.nuget.org/packages/NetEscapades.AspNetCore.SecurityHeaders.TagHelpers/) library for adding nonces and generating hashes for Razor elements. \n* Allow using HSTS preload with `Strict-Transport-Security`\n* Allow excluding domains from `Strict-Transport-Security`. Similar to the [Microsoft `HstsMiddleware`](https://github.com/aspnet/BasicMiddleware/blob/master/src/Microsoft.AspNetCore.HttpsPolicy/HstsMiddleware.cs), you can skip applying `Strict-Transport-Security` to specific hosts\n\nBreaking Changes:\n\n* All obsolete classes have been removed.\n* Many classes have changed namespace to better reflect their location in the project, and also to aid discovery. If you're using the recommended builders and extension methods, you should not have any build-time breaking changes, but the package is not runtime-compatible with previous versions\n* The `Strict-Transport-Security` header is no longer applied to `localhost` by default. Generally" -"\ufeffusing System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading.Tasks;\n\nnamespace HearthstoneAI.State\n{\n enum GameStage\n {\n STAGE_UNKNOWN,\n STAGE_GAME_FLOW,\n STAGE_PLAYER_MULLIGAN,\n STAGE_OPPONENT_MULLIGAN,\n STAGE_PLAYER_CHOICE,\n STAGE_OPPONENT_CHOICE\n }\n\n class GameStageHelper\n {\n static public GameStage GetGameStage(Game game)\n {\n ReadOnlyEntity game_entity;\n if (!game.TryGetGameEntity(out game_entity)) return GameStage.STAGE_UNKNOWN;\n\n ReadOnlyEntity player_entity;\n if (!game.TryGetPlayerEntity(out player_entity)) return GameStage.STAGE_UNKNOWN;\n\n ReadOnlyEntity opponent_entity;\n if (!game.TryGetOpponentEntity(out opponent_entity)) return GameStage.STAGE_UNKNOWN;\n\n if (player_entity.GetTagOrDefault(GameTag.MULLIGAN_STATE, (int)TAG_MULLIGAN.INVALID) == (int)TAG_MULLIGAN.INPUT)\n {\n return GameStage.STAGE_PLAYER_MULLIGAN;\n }\n\n if (opponent_entity.GetTagOrDefault(GameTag.MULLIGAN_STATE, (int)TAG_MULLIGAN.INVALID) == (int)TAG_MULLIGAN.INPUT)\n {\n return GameStage.STAGE_OPPONENT_MULLIGAN;\n }\n\n if (!game_entity.HasTag(GameTag.STEP)) return GameStage.STAGE_UNKNOWN;\n\n TAG_STEP game_entity_step = (TAG_STEP)game_entity.GetTag(GameTag.STEP);\n if (game_entity_step != TAG_STEP.MAIN_ACTION) return GameStage.STAGE_GAME_FLOW;\n\n if (player_entity.GetTagOrDefault(GameTag.CURRENT_PLAYER, 0) == 1) return GameStage.STAGE_PLAYER_CHOICE;\n if (opponent_entity.GetTagOrDefault(GameTag.CURRENT_PLAYER, 0) == 1) return GameStage.STAGE_OPPONENT_CHOICE;\n return GameStage.STAGE_UNKNOWN;\n }\n }\n}" -"/*\n * Intel 5100 Memory Controllers kernel module\n *\n * This file may be distributed under the terms of the\n * GNU General Public License.\n *\n * This module is based on the following document:\n *\n * Intel 5100X Chipset Memory Controller Hub (MCH) - Datasheet\n * http://download.intel.com/design/chipsets/datashts/318378.pdf\n *\n * The intel 5100 has two independent channels. EDAC core currently\n * can not reflect this configuration so instead the chip-select\n * rows for each respective channel are layed out one after another,\n * the first half belonging to channel 0, the second half belonging\n * to channel 1.\n */\n#include \n#include \n#include \n#include \n#include \n#include \n#include \n\n#include \"edac_core.h\"\n\n/* register addresses */\n\n/* device 16, func 1 */\n#define I5100_MC\t\t0x40\t/* Memory Control Register */\n#define \tI5100_MC_SCRBEN_MASK\t(1 << 7)\n#define \tI5100_MC_SCRBDONE_MASK\t(1 << 4)\n#define I5100_MS\t\t0x44\t/* Memory Status Register */\n#define I5100_SPDDATA\t\t0x48\t/* Serial Presence Detect Status Reg */\n#define I5100_SPDCMD\t\t0x4c\t/* Serial Presence Detect Command Reg */\n#define I5100_TOLM\t\t0x6c\t/* Top of Low Memory */\n#define I5100_MIR0\t\t0x80\t/* Memory Interleave Range 0 */\n#define I5100_MIR1\t\t0x84\t/* Memory Interleave Range 1 */\n#define I5100_AMIR_0" -";;;;;;;;;;;;;;;;;;;;;\n; FPM Configuration ;\n;;;;;;;;;;;;;;;;;;;;;\n\n; All relative paths in this configuration file are relative to PHP's install\n; prefix (/usr). This prefix can be dynamically changed by using the\n; '-p' argument from the command line.\n\n;;;;;;;;;;;;;;;;;;\n; Global Options ;\n;;;;;;;;;;;;;;;;;;\n\n[global]\n; Pid file\n; Note: the default prefix is /var\n; Default Value: none\npid = /run/php/php7.4-fpm.pid\n\n; Error log file\n; If it's set to \"syslog\", log is sent to syslogd instead of being written\n; into a local file.\n; Note: the default prefix is /var\n; Default Value: log/php-fpm.log\n;error_log = /var/log/php7.4-fpm.log\nerror_log = /dev/stderr\n\n\n; syslog_facility is used to specify what type of program is logging the\n; message. This lets syslogd specify that messages from different facilities\n; will be handled differently.\n; See syslog(3) for possible values (ex daemon equiv LOG_DAEMON)\n; Default Value: daemon\n;syslog.facility = daemon\n\n; syslog_ident is prepended to every message. If you have multiple FPM\n; instances running on the same server, you can change the default value\n; which must suit common needs.\n; Default Value: php-fpm\n;syslog.ident = php-fpm\n\n; Log level\n; Possible Values: alert, error, warning, notice, debug\n; Default" -".. _tutorial:\n\nTutorial\n========\n\nThis is a step-by-step tutorial to help you configure OnionBalance.\n\nOnionBalance implements `round-robin` like load balancing on top of Tor\nonion services. A typical OnionBalance deployment will incorporate one management\nservers and multiple backend application servers.\n\nAssumptions\n-----------\n\nYou want to run:\n\n- one or more OnionBalance processes, to perform load balancing, on hosts\n named ``obhost1``, ``obhost2``.\n- two or more Tor processes, to run the Onion Services, on hosts named\n ``torhost1``, ``torhost2``.\n- two or more servers (e.g. web servers) or traditional load balancers on\n hosts named ``webserver1``, ``webserver2``.\n\nScaling up:\n\n- the number of ``obhostX`` can be increased but this will not help handling\n more traffic.\n- the number of ``torhostX`` can be increased up to 60 instances to handle\n more traffic.\n- the number of ``webserverX`` can be increased to handle more traffic until\n the Tor daemons in front of them become the bottleneck.\n\nScaling down:\n\n- the three type of services can be run on the same hosts. The number of hosts\n can scale down to one.\n\nReliability:\n\nContrarily to traditional load balancers, the OnionBalance daemon does not\nreceive and forward traffic. As such, ``obhostX`` does not need to be in\nproximity" -"/*\n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements. See the NOTICE file distributed with\n * this work for additional information regarding copyright ownership.\n * The ASF licenses this file to You under the Apache License, Version 2.0\n * (the \"License\"); you may not use this file except in compliance with\n * the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\npackage org.apache.spark.sql.catalyst.expressions\n\n\nprotected class AttributeEquals(val a: Attribute) {\n override def hashCode(): Int = a match {\n case ar: AttributeReference => ar.exprId.hashCode()\n case a => a.hashCode()\n }\n\n override def equals(other: Any): Boolean = (a, other.asInstanceOf[AttributeEquals].a) match {\n case (a1: AttributeReference, a2: AttributeReference) => a1.exprId == a2.exprId\n case (a1, a2) => a1 == a2\n }\n}\n\nobject AttributeSet {\n /** Returns an empty [[AttributeSet]]. */\n val empty = apply(Iterable.empty)\n\n /** Constructs a new [[AttributeSet]]" -"\ufeffusing System.Reflection;\nusing System.Runtime.InteropServices;\n\n// Les informations g\u00e9n\u00e9rales relatives \u00e0 un assembly d\u00e9pendent de \n// l'ensemble d'attributs suivant. Changez les valeurs de ces attributs pour modifier les informations\n// associ\u00e9es \u00e0 un assembly.\n[assembly: AssemblyTitle(\"Wexflow.Tasks.ImagesTransformer\")]\n[assembly: AssemblyDescription(\"\")]\n[assembly: AssemblyConfiguration(\"\")]\n[assembly: AssemblyCompany(\"Wexflow\")]\n[assembly: AssemblyProduct(\"Wexflow.Tasks.ImagesTransformer\")]\n[assembly: AssemblyCopyright(\"Copyright \u00a9 Akram El Assas 2017\")]\n[assembly: AssemblyTrademark(\"\")]\n[assembly: AssemblyCulture(\"\")]\n\n// L'affectation de la valeur false \u00e0 ComVisible rend les types invisibles dans cet assembly \n// aux composants COM. Si vous devez acc\u00e9der \u00e0 un type dans cet assembly \u00e0 partir de \n// COM, affectez la valeur true \u00e0 l'attribut ComVisible sur ce type.\n[assembly: ComVisible(false)]\n\n// Le GUID suivant est pour l'ID de la typelib si ce projet est expos\u00e9 \u00e0 COM\n[assembly: Guid(\"63f38299-90a4-4af7-b535-4dc38743a273\")]\n\n// Les informations de version pour un assembly se composent des quatre valeurs suivantes\u00a0:\n//\n// Version principale\n// Version secondaire \n// Num\u00e9ro de build\n// R\u00e9vision\n//\n// Vous pouvez sp\u00e9cifier toutes les valeurs ou indiquer les num\u00e9ros de build et de r\u00e9vision par d\u00e9faut \n// en utilisant '*', comme indiqu\u00e9 ci-dessous\u00a0:\n// [assembly: AssemblyVersion(\"1.0.*\")]\n[assembly: AssemblyVersion(\"5.8.0.0\")]\n[assembly: AssemblyFileVersion(\"5.8.0.0\")]" -"/*\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 * 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 APPLE INC. ``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 APPLE INC. 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 *" -"# From 3.6 _sitebuiltins.py\n# Bug was in handling double nested kinds of things like:\n# for a in b for c in d\n\n# This required grammar modification and\n# and semantic action changes. LOAD_CLOSUREs are stored\n# inside a MAKE_TUPLE.\n\n# FIXME: test and try additional \"if\" clauses.\ndef __init__(self, path, name, files=(), dirs=(), volumes=()):\n f = [path.join(dir, filename)\n for dir in dirs\n for filename in files]\n f2 = [path.join(drive, dir, filename)\n for dir in dirs\n for filename in files\n for drive in volumes]\n return f, f2\n\n# From 3.6 codeop. The below listcomp is generated still\n# like it was in 3.5\nimport __future__\n_features = [getattr(__future__, fname)\n for fname in __future__.all_feature_names]" -"\n * @author James Brooks \n */\nclass ArtisanCommandTest extends AbstractTestCase\n{\n use DatabaseMigrations;\n\n public function testMigrations()\n {\n $this->assertSame(0, $this->app->make(Kernel::class)->call('migrate', ['--force' => true]));\n }\n\n public function testSeed()\n {\n $this->assertSame(0, $this->app->make(Kernel::class)->call('cachet:seed'));\n }\n\n public function testBeacon()\n {\n $this->assertSame(0, $this->app->make(Kernel::class)->call('cachet:beacon'));\n }\n\n public function testVersion()\n {\n $this->assertSame(0, $this->app->make(Kernel::class)->call('cachet:version'));\n }\n}" -"The MIT License (MIT)\n\nCopyright (c) 2016 LynxIT Digital\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 all\ncopies 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 THE\nSOFTWARE." -"/**************************************************************************\n * Copyright (c) 2009, 2012 IBM Corp.\n *\n * All rights reserved. This program and the accompanying materials\n * are made available under the terms of the Eclipse Public License v2.0\n * and Eclipse Distribution License v1.0 which accompany this distribution. \n *\n * The Eclipse Public License is available at \n * https://www.eclipse.org/legal/epl-2.0\n * and the Eclipse Distribution License is available at \n * https://www.eclipse.org/org/documents/edl-v10.php\n *\n * Contributors:\n * Dave Locke - initial API and implementation and/or initial documentation\n * Ian Craggs - MQTT 3.1.1 support\n */\npackage org.eclipse.paho.mqttv5.client;\n\nimport org.eclipse.paho.mqttv5.common.MqttException;\nimport org.eclipse.paho.mqttv5.common.MqttMessage;\nimport org.eclipse.paho.mqttv5.common.packet.MqttProperties;\nimport org.eclipse.paho.mqttv5.common.packet.MqttWireMessage;\n\n/**\n * Provides a mechanism for tracking the completion of an asynchronous task.\n *\n *

    When using the asynchronous/non-blocking MQTT programming interface all\n * methods/operations that take any time (and in particular those that involve\n * any network operation) return control to the caller immediately. The operation\n * then proceeds to run in the background so as not to block the invoking thread.\n * An IMqttToken is used to track the state of the operation. An application can use the\n * token to wait for an operation to complete. A token is passed to callbacks\n * once the operation completes and provides context linking" -"---\nlayout: relation\ntitle: 'dislocated:vo'\nshortdef: 'dislocated object of verb-object compound'\nudver: '2'\n---\n\nThe `dislocated:vo` relation is used when the object of a verb-object compound (see [compound:vo]()) is fronted to topic position.\n\n~~~ conllu\n# visual-style 5 3 dislocated:vo\tcolor:blue\n# visual-style 5\tbgColor:blue\n# visual-style 5\tfgColor:white\n# visual-style 3\tbgColor:blue\n# visual-style 3\tfgColor:white\n1\t\u4f60\t_\tPRON\t_\t_\t3\tnmod\t_\t2SG\n2\t\u7684\t_\tPART\t_\t_\t1\tcase\t_\tGEN\n3\t\u96fb\u8a71\t_\tNOUN\t_\t_\t5\tdislocated:vo\t_\tphone\n4\t\u600e\u9ebc\t_\tADV\t_\t_\t5\tadvmod\t_\thow\n5\t\u6253\t_\tVERB\t_\t_\t7\tadvcl\t_\thit\n6\t\u90fd\t_\tADV\t_\t_\t7\tadvmod\t_\tstill\n7\t\u6c92\t_\tVERB\t_\t_\t0\troot\t_\tnot-exist\n8\t\u4eba\t_\tNOUN\t_\t_\t7\tobj\t_\tpeople\n9\t\u63a5\t_\tVERB\t_\t_\t8\tacl\t_\treceive\n\n1\t\"Your\t_\t_\t_\t_\t0\t_\t_\t_\n2\tphone,\t_\t_\t_\t_\t0\t_\t_\t_\n3\tno\t_\t_\t_\t_\t0\t_\t_\t_\n4\tmatter\t_\t_\t_\t_\t0\t_\t_\t_\n5\thow\t_\t_\t_\t_\t0\t_\t_\t_\n6\tone\t_" -"{\n \"images\" : [\n {\n \"size\" : \"16x16\",\n \"idiom\" : \"mac\",\n \"filename\" : \"512@16.png\",\n \"scale\" : \"1x\"\n },\n {\n \"size\" : \"16x16\",\n \"idiom\" : \"mac\",\n \"filename\" : \"512@32.png\",\n \"scale\" : \"2x\"\n },\n {\n \"size\" : \"32x32\",\n \"idiom\" : \"mac\",\n \"filename\" : \"512@32-1.png\",\n \"scale\" : \"1x\"\n },\n {\n \"size\" : \"32x32\",\n \"idiom\" : \"mac\",\n \"filename\" : \"512@64.png\",\n \"scale\" : \"2x\"\n },\n {\n \"size\" : \"128x128\",\n \"idiom\" : \"mac\",\n \"filename\" : \"512@128.png\",\n \"scale\" : \"1x\"\n },\n {\n \"size\" : \"128x128\",\n \"idiom\" : \"mac\",\n \"filename\" : \"512@256.png\",\n \"scale\" : \"2x\"\n },\n {\n \"size\" : \"256x256\",\n \"idiom\" : \"mac\",\n \"filename\" : \"512@256-1.png\",\n \"scale\" : \"1x\"\n },\n {\n \"size\" : \"256x256\",\n \"idiom\" : \"mac\",\n \"filename\" : \"512@512.png\",\n \"scale\" : \"2x\"\n },\n {\n \"size\" : \"512x512\",\n \"idiom\" : \"mac\",\n \"filename\" : \"512@512-1.png\",\n \"scale\" : \"1x\"\n },\n {\n \"size\" : \"512x512\",\n \"idiom\" : \"mac\",\n \"filename\" : \"512@1024.png\",\n \"scale\" : \"2x\"\n }\n ],\n \"info\" : {\n \"version\" : 1,\n \"author\" : \"xcode\"\n }\n}" -"/**\n * A simple sonic encoder/decoder for [a-z0-9] => frequency (and back).\n * A way of representing characters with frequency.\n */\nvar ALPHABET = '\\n abcdefghijklmnopqrstuvwxyz0123456789,.!?@*';\n\nfunction SonicCoder(params) {\n params = params || {};\n this.freqMin = params.freqMin || 18500;\n this.freqMax = params.freqMax || 19500;\n this.freqError = params.freqError || 50;\n this.alphabetString = params.alphabet || ALPHABET;\n this.startChar = params.startChar || '^';\n this.endChar = params.endChar || '$';\n // Make sure that the alphabet has the start and end chars.\n this.alphabet = this.startChar + this.alphabetString + this.endChar;\n}\n\n/**\n * Given a character, convert to the corresponding frequency.\n */\nSonicCoder.prototype.charToFreq = function(char) {\n // Get the index of the character.\n var index = this.alphabet.indexOf(char);\n if (index == -1) {\n // If this character isn't in the alphabet, error out.\n console.error(char, 'is an invalid character.');\n index = this.alphabet.length - 1;\n }\n // Convert from index to frequency.\n var freqRange = this.freqMax - this.freqMin;\n var percent = index / this.alphabet.length;\n var freqOffset = Math.round(freqRange * percent);\n return this.freqMin + freqOffset;\n};\n\n/**\n * Given a frequency, convert to the corresponding character.\n */\nSonicCoder.prototype.freqToChar = function(freq) {\n // If the frequency is out of the range.\n if (!(this.freqMin < freq && freq < this.freqMax)) {\n // If" -"package pipe.actions.gui;\n\nimport pipe.controllers.GUIAnimator;\nimport pipe.controllers.PetriNetController;\nimport pipe.controllers.application.PipeApplicationController;\n\nimport java.awt.event.ActionEvent;\n\n/**\n * This action is responsible for firing multiple random enabled\n * transitions when animation mode is on\n */\n@SuppressWarnings(\"serial\")\npublic class MultiRandomAnimateAction extends AnimateAction {\n /**\n * Step backward action, used to set its availability when a step forward has been performed.\n */\n private final GuiAction stepBackwardAction;\n\n /**\n * Main PIPE application controller\n */\n private final PipeApplicationController applicationController;\n\n /**\n * Constructor\n * @param name image name\n * @param tooltip tooltip message\n * @param keystroke shortcut keystroke\n * @param stepBackwardAction step backward action\n * @param applicationController main PIPE application controller\n */\n public MultiRandomAnimateAction(String name, String tooltip, String keystroke, GuiAction stepBackwardAction,\n PipeApplicationController applicationController) {\n super(name, tooltip, keystroke);\n this.stepBackwardAction = stepBackwardAction;\n this.applicationController = applicationController;\n }\n\n\n /**\n * Fires the specified number of enabled transitions\n * @param event event \n */\n @Override\n public void actionPerformed(ActionEvent event) {\n PetriNetController petriNetController = applicationController.getActivePetriNetController();\n GUIAnimator animator = petriNetController.getAnimator();\n if (animator.getNumberSequences() > 0) {\n // stop animation\n animator.setNumberSequences(0);\n setSelected(false);\n } else {\n stepBackwardAction.setEnabled(true);\n setSelected(true);\n animator.startRandomFiring();\n }\n }\n}" -"use core::pin::Pin;\nuse core::task::{Context, Poll};\nuse core::future::Future;\n\nuse crate::stream::Stream;\n\n#[doc(hidden)]\n#[allow(missing_debug_implementations)]\npub struct NthFuture<'a, S> {\n stream: &'a mut S,\n n: usize,\n}\n\nimpl Unpin for NthFuture<'_, S> {}\n\nimpl<'a, S> NthFuture<'a, S> {\n pub(crate) fn new(stream: &'a mut S, n: usize) -> Self {\n Self { stream, n }\n }\n}\n\nimpl<'a, S> Future for NthFuture<'a, S>\nwhere\n S: Stream + Unpin + Sized,\n{\n type Output = Option;\n\n fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll {\n let next = futures_core::ready!(Pin::new(&mut *self.stream).poll_next(cx));\n match next {\n Some(v) => match self.n {\n 0 => Poll::Ready(Some(v)),\n _ => {\n self.n -= 1;\n cx.waker().wake_by_ref();\n Poll::Pending\n }\n },\n None => Poll::Ready(None),\n }\n }\n}" -"; RUN: opt -global-merge -global-merge-max-offset=100 -S -o - %s | FileCheck %s\n\ntarget datalayout = \"e-p:64:64\"\ntarget triple = \"x86_64-unknown-linux-gnu\"\n\n; CHECK: @_MergedGlobals = private global <{ [5 x i8], [3 x i8], [2 x i32] }> <{ [5 x i8] c\"\\01\\01\\01\\01\\01\", [3 x i8] zeroinitializer, [2 x i32] [i32 2, i32 2] }>, align 4\n\n; CHECK: @a = internal alias [5 x i8], getelementptr inbounds (<{ [5 x i8], [3 x i8], [2 x i32] }>, <{ [5 x i8], [3 x i8], [2 x i32] }>* @_MergedGlobals, i32 0, i32 0)\n@a = internal global [5 x i8] [i8 1, i8 1, i8 1, i8 1, i8 1], align 4\n\n; CHECK: @b = internal alias [2 x i32], getelementptr inbounds (<{ [5 x i8], [3 x i8], [2 x i32] }>, <{ [5 x i8], [3 x i8], [2 x i32] }>* @_MergedGlobals, i32 0, i32 2)\n@b = internal global [2 x i32] [i32 2, i32 2]\n\ndefine void @use() {\n ; CHECK: load i32, i32* bitcast (<{ [5 x i8], [3 x i8], [2 x i32] }>* @_MergedGlobals to i32*)\n %x = load i32, i32* bitcast ([5 x i8]* @a to i32*)\n ; CHECK:" -"// Package mapstructure exposes functionality to convert an arbitrary\n// map[string]interface{} into a native Go structure.\n//\n// The Go structure can be arbitrarily complex, containing slices,\n// other structs, etc. and the decoder will properly decode nested\n// maps and so on into the proper structures in the native Go struct.\n// See the examples to see what the decoder is capable of.\npackage mapstructure\n\nimport (\n\t\"encoding/json\"\n\t\"errors\"\n\t\"fmt\"\n\t\"reflect\"\n\t\"sort\"\n\t\"strconv\"\n\t\"strings\"\n)\n\n// DecodeHookFunc is the callback function that can be used for\n// data transformations. See \"DecodeHook\" in the DecoderConfig\n// struct.\n//\n// The type should be DecodeHookFuncType or DecodeHookFuncKind.\n// Either is accepted. Types are a superset of Kinds (Types can return\n// Kinds) and are generally a richer thing to use, but Kinds are simpler\n// if you only need those.\n//\n// The reason DecodeHookFunc is multi-typed is for backwards compatibility:\n// we started with Kinds and then realized Types were the better solution,\n// but have a promise to not break backwards compat so we now support\n// both.\ntype DecodeHookFunc interface{}\n\n// DecodeHookFuncType is a DecodeHookFunc which has complete information about\n// the source and target types.\ntype DecodeHookFuncType" -"\n * @author joelauer\n */\npublic interface RockerOutput {\n \n public ContentType getContentType();\n \n public Charset getCharset();\n \n /**\n * Writes a String to the output. Implementations are responsible for handling\n * the conversion to the correct charset.\n * \n * Note that underlying implementations may be optimized to handle Strings\n * vs. Bytes. \n * \n * @param string The string to write\n * @return This output (so builder pattern can be used)\n * @throws IOException Thrown on exception.\n */\n public T w(String string) throws IOException;\n \n public T w(byte[] bytes) throws IOException;\n \n //public T w(byte[] bytes," -"/*\n *\n * nbody_CPU_SSE.cpp\n *\n * SSE CPU implementation of the O(N^2) N-body calculation.\n * Uses SOA (structure of arrays) representation because it is a much\n * better fit for SSE.\n *\n * Copyright (c) 2011-2012, Archaea Software, LLC.\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 * 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 \n * the documentation and/or other materials provided with the \n * distribution. \n *\n * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \n * \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT \n * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS \n * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE \n * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, \n * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, \n * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n *" -"# Sharing your project\n\nOnce you've made your project, you can save it the cloud, share it, or embed it on another website.\n\n* Click **More...**, then **Embed Project**:\n* Click **Publish project**. This will make the project publicly available\n* You will then see this information:\n\n## Sharing the URL\n\nYou can share the URL for the project with other people, and they will be able to visit that page to see your project, download it, or edit it. \n\n### ~hint\n\n**Developers:** This page supports [OEmbed](https://oembed.com/).\n\n### ~\n\n## Embedding into a blog or web site\n\nRather than just sharing the link, you can also embed the project so that your visitors can use the simulator, edit blocks or code, or download the project without having to leave your site.\n\n### General instructions\n\nSelect the kind of embedding you would like.\n\n* **Screenshot** - a lightweight screenshot of the blocks that links to the snippet\n* **Editor** - embedded editor with minimal UI\n* **Simulator** - embedded simulator only\n* **Command line** - specific instructions to unpack the project using the [command line](/cli) tools\n\nCopy the HTML for embedding the page from the publish dialog. It will look like" -"import Maximilian from \"../../build/maximilian.wasmmodule.js\";\n/**\n * The main Maxi Audio wrapper with a WASM-powered AudioWorkletProcessor.\n *\n * @class MaxiProcessor\n * @extends AudioWorkletProcessor\n */\nclass MaxiProcessor extends AudioWorkletProcessor {\n\n static get parameterDescriptors() {\n return [{ name: 'gain', defaultValue: 0.1 }];\n }\n\n /**\n * @constructor\n */\n constructor() {\n super();\n this.sampleRate = 44100;\n\n this.port.onmessage = (event) => {\n console.log(event.data);\n };\n\n this.mySine = new Maximilian.maxiOsc();\n this.myOtherSine = new Maximilian.maxiOsc();\n }\n\n /**\n * @process\n */\n process(inputs, outputs, parameters) {\n\n const outputsLength = outputs.length;\n for (let outputId = 0; outputId < outputsLength; ++outputId) {\n let output = outputs[outputId];\n const channelLenght = output.length;\n for (let channelId = 0; channelId < channelLenght; ++channelId) {\n let outputChannel = output[channelId];\n for (let i = 0; i < outputChannel.length; ++i) {\n const gain = parameters.gain.length === 1 ? parameters.gain[0] : parameters.gain[i]\n outputChannel[i] = this.mySine.sawn(60) * this.myOtherSine.sinewave(0.4) * gain;\n }\n }\n }\n return true;\n\n }\n\n};\n\nregisterProcessor(\"maxi-processor\", MaxiProcessor);" -"---\ntitle: Help Command (Team Foundation Version Control)\ntitleSuffix: Azure Repos\ndescription: Help Command (Team Foundation Version Control)\nms.assetid: 8cd73edc-8d60-42be-a840-616e6207a1d8\nms.technology: devops-code-tfvc\nms.topic: reference\nms.date: 08/10/2016\nmonikerRange: '>= tfs-2015'\n---\n\n\n# Help Command (Team Foundation Version Control)\n\n**Azure Repos | Azure DevOps Server 2020 | Azure DevOps Server 2019 | TFS 2018 | TFS 2017 | TFS 2015 | VS 2017 | VS 2015 | VS 2013**\n\nDisplays help on the command line that contains information about syntax for a Team Foundation version control command.\n\n```\ntf help commandname\n```\n\n## Parameters\n\n\n\n\n\n\n\n\n\n\n\n\n

    Argument

    Description

    commandname

    Specifies a Team Foundation command for which to display help about the syntax.

    \n## Remarks\nIf you do not know which command you need, type tf help for a list of all commands.\n\nIf you specify the *commandname* parameter, the command line displays information about the arguments and options for that command. If the system cannot find a match for the *commandname*, it searches for aliases and short names. If it cannot find any matching command, alias, or short name, you will get an error.\n\nThe option **/?** is an alias for **help**. If you use" -"import { execDirectoryFiles } from \"@/connector/directory-files\"\nimport { colorizeFile } from \"@/fzf/syntax/colorize\"\nimport { filePreviewCommand } from \"@/fzf/util\"\nimport type { FzfCommandDefinitionDefaultOption, FzfCommandDynamicOption, Resource, SourceFuncArgs } from \"@/type\"\n\n// eslint-disable-next-line @typescript-eslint/require-await\nexport const directoryFiles = async ({ args }: SourceFuncArgs): Promise => {\n const arg = args[0] != null ? args[0] : \"\"\n const lines = (await execDirectoryFiles(arg)).filter((file) => file !== \"\" && !file.includes(\" \"))\n const options: FzfCommandDynamicOption | undefined = arg ? { \"--header\": `\"[Directory] ${arg}\"` } : undefined\n\n return {\n type: \"json\",\n lines: lines.map((line) => ({\n data: {\n command: \"FzfPreviewDirectoryFiles\",\n type: \"file\",\n file: line,\n },\n displayText: colorizeFile(line),\n })),\n options,\n }\n}\n\nexport const directoryFilesDefaultOptions = (): FzfCommandDefinitionDefaultOption => ({\n \"--prompt\": '\"DirectoryFiles> \"',\n \"--multi\": true,\n \"--preview\": filePreviewCommand(),\n})" -"// 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\n// Windows environment variables.\n\npackage windows\n\nimport (\n\t\"syscall\"\n\t\"unsafe\"\n)\n\nfunc Getenv(key string) (value string, found bool) {\n\treturn syscall.Getenv(key)\n}\n\nfunc Setenv(key, value string) error {\n\treturn syscall.Setenv(key, value)\n}\n\nfunc Clearenv() {\n\tsyscall.Clearenv()\n}\n\nfunc Environ() []string {\n\treturn syscall.Environ()\n}\n\n// Returns a default environment associated with the token, rather than the current\n// process. If inheritExisting is true, then this environment also inherits the\n// environment of the current process.\nfunc (token Token) Environ(inheritExisting bool) (env []string, err error) {\n\tvar block *uint16\n\terr = CreateEnvironmentBlock(&block, token, inheritExisting)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer DestroyEnvironmentBlock(block)\n\tblockp := uintptr(unsafe.Pointer(block))\n\tfor {\n\t\tentry := UTF16PtrToString((*uint16)(unsafe.Pointer(blockp)))\n\t\tif len(entry) == 0 {\n\t\t\tbreak\n\t\t}\n\t\tenv = append(env, entry)\n\t\tblockp += 2 * (uintptr(len(entry)) + 1)\n\t}\n\treturn env, nil\n}\n\nfunc Unsetenv(key string) error {\n\treturn syscall.Unsetenv(key)\n}" -"//:\n// \\file\n// This example program shows a typical use of a convolution filter, namely\n// the vepl_sobel (gradient) operator on a greyscale image. The input image\n// (argv[1]) must be a ubyte image, and in that case its vepl_sobel image is\n// written to argv[2] which is always a PGM file image.\n//\n// \\author Peter Vanroose, K.U.Leuven, ESAT/PSI\n// \\date 7 October 2002, from vepl1/examples\n//\n#include \n#include \n\n// for I/O:\n#include \"vil/vil_load.h\"\n#include \"vil/vil_save.h\"\n#ifdef _MSC_VER\n# include \"vcl_msvc_warnings.h\"\n#endif\n\nint\nmain(int argc, char** argv) {\n if (argc < 3)\n {\n std::cerr << \"Syntax: example_sobel file_in file_out\\n\";\n return 1;\n }\n\n // The input image:\n vil_image_resource_sptr in = vil_load_image_resource(argv[1]);\n if (!in) { std::cerr << \"Please use a ubyte image as input\\n\"; return 2; }\n\n // The filter:\n vil_image_resource_sptr out = vepl_sobel(in);\n\n // Write output:\n if (vil_save_image_resource(out, argv[2], \"pnm\"))\n std::cout << \"Written sobel image to PNM image \"<< argv[2]<< '\\n';\n else\n std::cout << \"Could not write sobel image as PNM to \" << argv[2] << '\\n';\n\n return 0;\n}" -" GNU GENERAL PUBLIC LICENSE\n Version 2, June 1991\n\n Copyright (C) 1989, 1991 Free Software Foundation, Inc.,\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n Preamble\n\n The licenses for most software are designed to take away your\nfreedom to share and change it. By contrast, the GNU General Public\nLicense is intended to guarantee your freedom to share and change free\nsoftware--to make sure the software is free for all its users. This\nGeneral Public License applies to most of the Free Software\nFoundation's software and to any other program whose authors commit to\nusing it. (Some other Free Software Foundation software is covered by\nthe GNU Lesser General Public License instead.) You can apply it to\nyour programs, too.\n\n When we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthis service if you wish), that you receive source code or can get it\nif you want it, that you can change the software or" -"---\ntitle: \"Skype for Business Online Plan 1 retirement \"\nms.author: tonysmit\nauthor: tonysmit\nmanager: serdars\nms.reviewer: mikedav\nms.topic: article\nms.tgt.pltfrm: cloud\nms.service: skype-for-business-online\nsearch.appverid: MET150\nms.collection:\n- Adm_Skype4B_Online\n- Strat_SB_PSTN\naudience: Admin\nappliesto:\n- Skype for Business\nlocalization_priority: Normal\nf1.keywords:\n- NOCSH\nms.custom:\n- Licensing\ndescription: \"The Skype for Business Online Plan 1 has been retired. However, if you have a current subscription to Skype for Business Online Plan 1, this change won\u2019t affect you right away. When you are ready to move to a new plan\u2014either now or during renewal\u2014you\u2019ll have three options.\"\n---\n\n# Skype for Business Online Plan 1 retirement \n\nThe Skype for Business Online Plan 1 has been retired. However, if you have a current subscription to Skype for Business Online Plan 1, this change won\u2019t affect you right away. As a global Office 365 admin, you\u2019ll receive email updates and see posts in the message center (part of the Microsoft 365 admin center) with information on when you need to take action. In the meantime, you can continue to use your existing Skype for Business Online Plan 1 licenses.\n\nWhen you are ready to move to a new plan \u2014 either now or during" -"---\ntitle: Orientation Programme\ncategory: Human Resources\ndate: \"2020-03-12\"\ntags: ['orientation', 'mentor', 'welcome-kit','newcomer']\ndescription: Follow the programme to quickly adapt the employee to the Atolye15 culture and own position.\n\n---\n\n- [ ] Complete the groundwork \nPrepare the equipment and the workspace after the offer has been accepted by the candidate (laptop, mouse, keyboard, etc.)\n\n- [ ] Prepare the technical tools and the communication channels \nYou can refer to [this checklist](https://checklist.atolye15.com/checklist/newcomer-accounts-checklist)\n\n- [ ] Determine or prepare an initial project \nInclude an example project in order to introduce Atolye15 and speed up the adaptation process. \n\n- [ ] Assign a mentor \nDetermine mentor who is going to pass information and lead the way about job content. \n\n- [ ] Prepare the welcome kit \nThe content should be a surprise! \ud83d\udce6 \n\n- [ ] Say Hi \ud83d\udc4b\nThe first working day newcomer is introduced to the whole team and the welcome kit unboxes all together.\n\n- [ ] Information trip \nThe new employee stars working according to the planned schedule and acquaints with employees from different departments and gets information. They also receive the HR guide details at the same time.\n\n- [ ] Welcome on board!" -"/*\n * Copyright 2013 Barzan Mozafari\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 dbseer.comp.data;\n\n/**\n * Created by dyoon on 2014. 7. 8..\n */\npublic class TransactionDistance implements Comparable\n{\n\tprivate Transaction transaction;\n\tprivate double distance;\n\n\tpublic TransactionDistance(Transaction transaction, double distance)\n\t{\n\t\tthis.transaction = transaction;\n\t\tthis.distance = distance;\n\t}\n\n\t@Override\n\tpublic int compareTo(TransactionDistance other)\n\t{\n\t\tif (this.distance < other.getDistance()) return -1;\n\t\telse if (this.distance > other.getDistance()) return 1;\n\t\telse return 0;\n\t}\n\n\tpublic Transaction getTransaction()\n\t{\n\t\treturn transaction;\n\t}\n\n\tpublic void setTransaction(Transaction transaction)\n\t{\n\t\tthis.transaction = transaction;\n\t}\n\n\tpublic double getDistance()\n\t{\n\t\treturn distance;\n\t}\n\n\tpublic void setDistance(double distance)\n\t{\n\t\tthis.distance = distance;\n\t}\n}" -"// -*- C++ -*-\n\n// Copyright (C) 2005-2014 Free Software Foundation, Inc.\n//\n// This file is part of the GNU ISO C++ Library. This library is free\n// software; you can redistribute it and/or modify it under the terms\n// of the GNU General Public License as published by the Free Software\n// Foundation; either version 3, or (at your option) any later\n// version.\n\n// This library 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// 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// Copyright (C) 2004 Ami Tavory and Vladimir Dreizin, IBM-HRL.\n\n// Permission to use, copy, modify, sell, and distribute this software" -"/*\n * ccrc4.h\n * corecrypto\n *\n * Created on 12/22/2010\n *\n * Copyright (c) 2010,2011,2012,2013,2014,2015 Apple Inc. All rights reserved.\n *\n */\n\n#ifndef _CORECRYPTO_CCRC4_H_\n#define _CORECRYPTO_CCRC4_H_\n\n#include \n\ncc_aligned_struct(16) ccrc4_ctx;\n\n/* Declare a rc4 key named _name_. Pass the size field of a struct ccmode_ecb\n for _size_. */\n#define ccrc4_ctx_decl(_size_, _name_) cc_ctx_decl(ccrc4_ctx, _size_, _name_)\n#define ccrc4_ctx_clear(_size_, _name_) cc_clear(_size_, _name_)\n\nstruct ccrc4_info {\n size_t size; /* first argument to ccrc4_ctx_decl(). */\n void (*init)(ccrc4_ctx *ctx, size_t key_len, const void *key);\n void (*crypt)(ccrc4_ctx *ctx, size_t nbytes, const void *in, void *out);\n};\n\n\nconst struct ccrc4_info *ccrc4(void);\n\nextern const struct ccrc4_info ccrc4_eay;\n\nstruct ccrc4_vector {\n size_t keylen;\n const void *key;\n size_t datalen;\n const void *pt;\n const void *ct;\n};\n\nint ccrc4_test(const struct ccrc4_info *rc4, const struct ccrc4_vector *v);\n\n#endif /* _CORECRYPTO_CCRC4_H_ */" -"// CodeContracts\n// \n// Copyright (c) Microsoft Corporation\n// \n// All rights reserved. \n// \n// MIT License\n// \n// Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the 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 all copies or substantial portions of the Software.\n// \n// THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n// File System.ServiceModel.Configuration.NetTcpBindingCollectionElement.cs\n// Automatically generated contract file.\nusing System.Collections.Generic;\nusing System.IO;\nusing System.Text;\nusing" -"#\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---\n# Remove kafka and zookeeper containers.\n\n- name: remove old kafka\n docker_container:\n name: kafka\n image: \"{{ docker_registry }}{{ docker.image.prefix }}/kafka:{{ docker.image.tag }}\"\n keep_volumes: False\n state: absent\n ignore_errors: True\n\n- name: remove kafka\n docker_container:\n name: kafka{{ groups['kafkas'].index(inventory_hostname) }}\n image: \"{{ docker_registry }}{{ docker.image.prefix }}/kafka:{{ docker.image.tag }}\"\n keep_volumes: False\n state: absent\n ignore_errors: True" -"// Copyright (c) 2005 DMTF. All rights reserved.\r\n// Add UmlPackagePath\r\n// qualifier values to CIM Schema.\r\n// ==================================================================\r\n// CIM_NFS \r\n// ==================================================================\r\n [Version ( \"2.6.0\" ), \r\n UMLPackagePath ( \"CIM::System::FileElements\" ), \r\n Description ( \r\n \"A class derived from RemoteFileSystem representing that the \"\r\n \"FileSystem is mounted, using the NFS protocol, from a \"\r\n \"ComputerSystem. The properties of the NFS object deal with the \"\r\n \"operational aspects of the mount and represent the client-side \"\r\n \"configuration for NFS access. The FileSystemType (inherited \"\r\n \"from FileSystem) should be set to indicate the type of this \"\r\n \"FileSystem as it appears to the client.\" )]\r\nclass CIM_NFS : CIM_RemoteFileSystem {\r\n\r\n [Description ( \r\n \"If set to true: Once the FileSystem is mounted, NFS \"\r\n \"requests are retried until the hosting System responds. \\n\"\r\n \"If set to false: Once the FileSystem is mounted, an \"\r\n \"error is returned if the hosting System does not \"\r\n \"respond.\" )]\r\n boolean HardMount;\r\n\r\n [Description ( \r\n \"If set to true: Retries are performed in the foreground. \\n\"\r\n \"If set to false: If the first mount attempt fails, \"\r\n \"retries are performed in the background.\" )]\r\n boolean ForegroundMount;\r\n\r\n [Description ( \r\n \"If set to true: Interrupts are permitted for hard \"" -"\r\n// SineFB.h\r\n// ofxPDSP\r\n// Nicola Pisanti, MIT License, 2016\r\n\r\n\r\n#ifndef PDSP_OSC_SINEFB_H_INCLUDED\r\n#define PDSP_OSC_SINEFB_H_INCLUDED\r\n\r\n\r\n#include \"../base/OscillatorVariShape.h\"\r\n\r\n\r\nnamespace pdsp{\r\n\r\n /*!\r\n @brief Wavetable sine oscillator with self-fm\r\n \r\n This is a sine oscillator implemented with a 4096 point linearly interpolated wavetable. It performs really good as sine oscillator and fm operator. It has self-FM, controlled with in_shape() and should go from 0.0f to 4.0f (in_shape() is not clamped, beware).\r\n */\r\n \r\nclass SineFB : public OscillatorVariShape\r\n{\r\n\r\npublic:\r\n\r\n SineFB();\r\n ~SineFB();\r\n /*!\r\n @brief sets the default self-FM amount value and returns the unit ready to be patched.\r\n @param[in] fmFeedback self-FM value, input of this function is clamped to 0.0f-4.0f .\r\n */\r\n Patchable& set(float fmFeedback);\r\n \r\n \r\nprivate:\r\n void prepareOscillator( double sampleRate) override;\r\n void releaseOscillator() override;\r\n\r\n void oscillateShapeCR(float* outputBuffer, const float* phaseBuffer, const float shape, int bufferSize) noexcept override;\r\n void oscillateShapeAR(float* outputBuffer, const float* phaseBuffer, const float* shapeBuffer, int bufferSize) noexcept override;\r\n\r\n float fb_path;\r\n float alpha;\r\n float z1;\r\n\r\n static float* sineTable;\r\n static const double tableFakeSize;\r\n static uint64_t sineOscillatorsCreated;\r\n\r\n};\r\n\r\n}\r\n\r\n\r\n\r\n\r\n\r\n#endif // PDSP_OSC_SINEFB_H_INCLUDED" -"package service\n\nimport (\n\t\"fmt\"\n\t\"testing\"\n\n\t\"go-common/app/service/main/vip/model\"\n\n\t. \"github.com/smartystreets/goconvey/convey\"\n)\n\nfunc TestServiceaddOpenBind(t *testing.T) {\n\tConvey(\" TestServiceaddOpenBind \", t, func() {\n\t\terr := s.addOpenBind(c, 1, \"xxxx\", 2, &model.OpenBindInfo{}, &model.OpenBindInfo{})\n\t\tSo(err, ShouldBeNil)\n\t})\n}\n\nfunc TestServiceOpenBindByOutOpenID(t *testing.T) {\n\tConvey(\" TestServiceOpenBindByOutOpenID \", t, func() {\n\t\terr := s.OpenBindByOutOpenID(c, &model.ArgBind{\n\t\t\tAppID: 32,\n\t\t\tOpenID: \"bdca8b71e7a6726885d40a395bf9ccd1\",\n\t\t\tOutOpenID: \"7a6726885d40a395bf9ccd2\",\n\t\t})\n\t\tSo(err, ShouldBeNil)\n\t})\n}\n\nfunc TestServiceOpenBindByMid(t *testing.T) {\n\tConvey(\" TestServiceOpenBindByMid \", t, func() {\n\t\terr := s.OpenBindByMid(c, &model.ArgOpenBindByMid{\n\t\t\tAppID: 32,\n\t\t\tOutOpenID: \"7a6726885d40a395bf9ccd3\",\n\t\t\tMid: 1,\n\t\t})\n\t\tSo(err, ShouldBeNil)\n\t})\n}\n\nfunc TestServiceBindInfoByMid(t *testing.T) {\n\tConvey(\" TestServiceBindInfoByMid \", t, func() {\n\t\tres, err := s.BindInfoByMid(c, &model.ArgBindInfo{\n\t\t\tAppID: 30,\n\t\t\tMid: 1,\n\t\t})\n\t\tSo(err, ShouldBeNil)\n\t\tfmt.Println(\"res\", res.Account, res.Outer)\n\t\tSo(res, ShouldNotBeNil)\n\t})\n}" -"# 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\nfrom __future__ import absolute_import, print_function, unicode_literals\nfrom corpuscrawler.util import crawl_bibleis\n\n\ndef crawl(crawler):\n out = crawler.get_output(language='cya')\n crawl_bibleis(crawler, out, bible='CYAAVV')" -"# Klamp't Manual: I/O\n\n* [Custom file formats in Klamp't](#custom-file-formats-in-klamp-t)\n + [API summary](#api-summary)\n + [Robot (.rob and .urdf) loading and saving](#robot--rob-and-urdf--loading-and-saving)\n* [ROS Communication](#ros-communication)\n\nKlamp't supports many types of I/O formats:\n- Custom file formats (old-style): Klamp't defines several formats for its custom types. Compared to the JSON custom formats, these are older but are more compatible with C++ backend, especially the RobotPose app.\n- Custom file formats (JSON): We are beginning to use a newer JSON format that will be supported more heavily in the future. \n- URDF files: Klamp't natively supports ROS' Universal Robot Description Format.\n- Geometry files: Klamp't natively supports OFF (Object File Format), OBJ (Wavefront OBJ), and PCD (Point Cloud Data) file formats. If it is built with Assimp support, then any file format that Assimp reads can also be read as a mesh.\n- ROS: Klamp't can publish and subscribe to several ROS message types.\n- Three.js: Klamp't can export Three.js scenes.\n- MPEG: Klamp't's SimTest app and Python vis module can export MPEG videos of simulations, if ffmpeg is installed.\n- HTML: Klamp't's Python vis module can export HTML files for simulation playback.\n\n\n\n## Custom file formats in Klamp't\n\n| Object type |" -"#!/usr/bin/env perl\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# Generate system call table for Darwin from sys/syscall.h\n\nuse strict;\n\nif($ENV{'GOARCH'} eq \"\" || $ENV{'GOOS'} eq \"\") {\n\tprint STDERR \"GOARCH or GOOS not defined in environment\\n\";\n\texit 1;\n}\n\nmy $command = \"mksysnum_darwin.pl \" . join(' ', @ARGV);\n\nprint <){\n\tif(/^#define\\s+SYS_(\\w+)\\s+([0-9]+)/){\n\t\tmy $name = $1;\n\t\tmy $num = $2;\n\t\t$name =~ y/a-z/A-Z/;\n\t\tprint \"\tSYS_$name = $num;\"\n\t}\n}\n\nprint <\r\n\r\n\r\n\t\r\n\tFrame=\"hsides\" and Rules=\"all\"\r\n \r\n\r\n\r\n\r\n\t\r\n\r\n\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\r\n\t\r\n\t\r\n\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\r\n\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\r\n\t\t\r\n\t\t\t\r\n\t\t\r\n\t\r\n\t\r\n\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\r\n\t\r\n
    Frame=\"hsides\" and Rules=\"all\"
    Row 1, Cell 1Row 1, Cell 2Row 1, Cell 3
    Row 2, Cell 1Row 2, Cell 2
    Row 3, Cell 2Row 3, Cell 3
    Row 4, Cell 1
    Row 5, Cell 1Row 5, Cell 2Row 5, Cell 3
    \r\n\r\n\r\n\r\n\r\n" -"// Copyright 2016 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 openbsd\n// +build 386 amd64 arm\n\npackage unix\n\nimport (\n\t\"errors\"\n\t\"fmt\"\n\t\"strconv\"\n\t\"syscall\"\n\t\"unsafe\"\n)\n\n// Pledge implements the pledge syscall.\n//\n// The pledge syscall does not accept execpromises on OpenBSD releases\n// before 6.3.\n//\n// execpromises must be empty when Pledge is called on OpenBSD\n// releases predating 6.3, otherwise an error will be returned.\n//\n// For more information see pledge(2).\nfunc Pledge(promises, execpromises string) error {\n\tmaj, min, err := majmin()\n\tif err != nil {\n\t\treturn err\n\t}\n\n\terr = pledgeAvailable(maj, min, execpromises)\n\tif err != nil {\n\t\treturn err\n\t}\n\n\tpptr, err := syscall.BytePtrFromString(promises)\n\tif err != nil {\n\t\treturn err\n\t}\n\n\t// This variable will hold either a nil unsafe.Pointer or\n\t// an unsafe.Pointer to a string (execpromises).\n\tvar expr unsafe.Pointer\n\n\t// If we're running on OpenBSD > 6.2, pass execpromises to the syscall.\n\tif maj > 6 || (maj == 6 && min > 2) {\n\t\texptr, err := syscall.BytePtrFromString(execpromises)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}" -"/******************************************************************************\n *\n * Module Name: aslprune - Parse tree prune utility\n *\n *****************************************************************************/\n\n/******************************************************************************\n *\n * 1. Copyright Notice\n *\n * Some or all of this work - Copyright (c) 1999 - 2020, Intel Corp.\n * All rights reserved.\n *\n * 2. License\n *\n * 2.1. This is your license from Intel Corp. under its intellectual property\n * rights. You may have additional license terms from the party that provided\n * you this software, covering your right to use that party's intellectual\n * property rights.\n *\n * 2.2. Intel grants, free of charge, to any person (\"Licensee\") obtaining a\n * copy of the source code appearing in this file (\"Covered Code\") an\n * irrevocable, perpetual, worldwide license under Intel's copyrights in the\n * base code distributed originally by Intel (\"Original Intel Code\") to copy,\n * make derivatives, distribute, use and display any portion of the Covered\n * Code in any form, with the right to sublicense such rights; and\n *\n * 2.3. Intel grants Licensee a non-exclusive and non-transferable patent\n * license (with the right to sublicense), under only those claims of Intel\n * patents that are infringed by the Original Intel Code, to make, use, sell,\n * offer to" -"#! /bin/sh\n# Wrapper for compilers which do not understand '-c -o'.\n\nscriptversion=2012-03-05.13; # UTC\n\n# Copyright (C) 1999, 2000, 2003, 2004, 2005, 2009, 2010, 2012 Free\n# Software Foundation, Inc.\n# Written by Tom Tromey .\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, or (at your option)\n# 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\n# As a special exception to the GNU General Public License, if you\n# distribute this file as part of a program that contains a\n# configuration script generated by Autoconf, you may include it under\n# the same distribution terms that you use for the rest of that program.\n\n# This file is" -"// Go support for Protocol Buffers - Google's data interchange format\n//\n// Copyright 2016 The Go Authors. All rights reserved.\n// https://github.com/golang/protobuf\n//\n// Redistribution and use in source and binary forms, with or without\n// modification, are permitted provided that the following conditions are\n// 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\n// copyright notice, this list of conditions and the following disclaimer\n// in the documentation and/or other materials provided with the\n// distribution.\n// * Neither the name of Google Inc. nor the names of its\n// contributors may be used to endorse or promote products derived from\n// this software without specific prior written permission.\n//\n// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n// \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES" -"\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#*\n ClassDef.vm\n\n Template for an AS3 class definition given (MxmlDocument $doc, VelocityUtil $util)\n\n Library macros defined in ClassDefLib.vm\n*#/**\n * Generated by mxmlc 4.0\n *\n * Package: $doc.packageName\n * Class: $doc.className\n * Source: $doc.sourcePath\n * Template: ${util.templatePath}ClassDef.vm\n * Time: $util.timeStamp\n */\n\n##\n## begin package def\n##\npackage $doc.packageName\n{\n\n##\n## imports\n##\n#foreach ($nameInfo in $doc.imports)\n## NOTE: the SWC contains actual, debuggable bytecode for import statements. To avoid unwanted\n## BPs in the debugger, we use an explicitly compile-error-only mapping here.\n#embedTextMapCompileErrorsOnly(\"import $nameInfo.name;\"" -"---\nlayout: page\ntitle: A/B Testing\n---\n\n

    \n# \"True or False\":#tf\n# \"Interpreting the Results\":#interpret\n# \"Multiple Alternatives\":#multiple\n# \"A/B Testing and Code Testing\":#test\n# \"Let the Experiment Decide\":#decide\n
    \n\n\n\"A/B testing\":http://en.wikipedia.org/wiki/A/B_testing (or \"split testing\") are experiments you can run to compare the performance of different alternatives. A classical example is using an A/B test to compare two versions of a landing page, to find out which alternative leads to more registrations.\n\nYou can use A/B tests to gauge interest in a new feature, response to a feature change, improve the site's design and copy, and so forth. In spite of the name, you can use A/B tests to check out more than two alternatives.\n\nbq. \"If you are not embarrassed by the first version of your product, you\u2019ve launched too late\" -- Reid Hoffman, founder of LinkedIn\n\n\nh3(#tf). True or False\n\nLet's start with a simple experiment. We have this idea that a bigger sign-up link will increase the number of people who sign up for our service. Let's see how well our hypothesis holds.\n\nWe already have a \"metric\":metrics.html we're monitoring, and our experiment will measure against it:\n\n
    \nab_test \"Big signup link\" do\n  description \"Testing"
    -"  $ crushtool -i \"$TESTDIR/test-map-vary-r.crushmap\" --test --show-mappings --show-statistics --rule 3 --set-chooseleaf-vary-r 3 --weight 0 0 --weight 4 0 --weight 9 0\n  rule 3 (delltestrule), x = 0..1023, numrep = 2..4\n  CRUSH rule 3 x 0 [94,85]\n  CRUSH rule 3 x 1 [73,78]\n  CRUSH rule 3 x 2 [91,104]\n  CRUSH rule 3 x 3 [51,94]\n  CRUSH rule 3 x 4 [45,28]\n  CRUSH rule 3 x 5 [89,113]\n  CRUSH rule 3 x 6 [91,12]\n  CRUSH rule 3 x 7 [104,71]\n  CRUSH rule 3 x 8 [41,62]\n  CRUSH rule 3 x 9 [46,35]\n  CRUSH rule 3 x 10 [61,60]\n  CRUSH rule 3 x 11 [13,74]\n  CRUSH rule 3 x 12 [83,62]\n  CRUSH rule 3 x 13 [27,117]\n  CRUSH rule 3 x 14 [105,115]\n  CRUSH rule 3 x 15 [18,87]\n  CRUSH rule 3 x 16 [103,60]\n  CRUSH rule 3 x 17 [85,80]\n  CRUSH rule 3 x 18 [11,48]\n  CRUSH rule 3 x 19 [75,114]\n  CRUSH rule 3 x 20 [111,27]\n  CRUSH rule 3 x 21 [84,7]\n  CRUSH rule 3 x 22 [23,66]\n  CRUSH rule 3 x 23 [19,84]\n  CRUSH rule 3 x 24 [83,111]\n  CRUSH rule 3 x 25 [81,108]\n  CRUSH rule 3 x 26 [17,117]\n  CRUSH rule 3 x 27 [33,58]\n  CRUSH rule 3"
    -"defmodule Geolix.Adapter.Fake.Storage do\n  @moduledoc false\n\n  use Agent\n\n  @doc false\n  @spec start_link(map) :: Agent.on_start()\n  def start_link(init_arg) when is_map(init_arg) do\n    Agent.start_link(fn -> init_arg end, name: __MODULE__)\n  end\n\n  @doc \"\"\"\n  Fetches the data for a database.\n  \"\"\"\n  @spec get_data(atom) :: map | nil\n  def get_data(database) do\n    {data, _} = get(database)\n\n    data\n  end\n\n  @doc \"\"\"\n  Fetches the metadata for a database.\n  \"\"\"\n  @spec get_meta(atom) :: map | nil\n  def get_meta(database) do\n    {_, meta} = get(database)\n\n    meta\n  end\n\n  @doc \"\"\"\n  Stores the data for a specific database.\n  \"\"\"\n  @spec set(atom, {map | nil, map | nil}) :: :ok\n  def set(database, dataset) do\n    Agent.update(__MODULE__, &Map.put(&1, database, dataset))\n  end\n\n  defp get(database) do\n    Agent.get(__MODULE__, &Map.get(&1, database, {%{}, %{}}))\n  end\nend"
    -"// Ryzom - MMORPG Framework \n// Copyright (C) 2010  Winch Gate Property Limited\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\n// published by the Free Software Foundation, either version 3 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,\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// You should have received a copy of the GNU Affero General Public License\n// along with this program.  If not, see .\n\n\n\n#ifndef RY_TYPE_SKILL_MOD_H\n#define RY_TYPE_SKILL_MOD_H\n\n#include \"nel/misc/types_nl.h\"\n#include \"people.h\"\n#include \"characteristics.h\"\n#include \"persistent_data.h\"\n\nstruct CTypeSkillMod\n{\n\tCTypeSkillMod() : Modifier(0),Type(EGSPD::CClassificationType::Unknown)\n\t{}\n\n\tvoid serial(NLMISC::IStream &f)\n\t{\n\t\tf.serialEnum( Type );\n\t\tf.serial( Modifier );\n\t}\n\n\tsint32 Modifier;\n\tEGSPD::CClassificationType::TClassificationType Type;\n\n\tDECLARE_PERSISTENCE_METHODS\n};\n\n\n#endif // RY_TYPE_SKILL_MOD_H\n\n/* End of type_skill_mod.h */"
    -"/* Copyright (c) 2017 Jeffrey Massung\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 *\n * 2. Altered source versions must be plainly marked as such, and must not be\n *    misrepresented as being the original software.\n *\n * 3. This notice may not be removed or altered from any source distribution.\n */\n\npackage chip8\n\nimport (\n\t\"fmt\"\n\t\"os\"\n\t\"strconv\"\n\t\"strings\"\n)\n\n// Type for scanned tokens.\ntype tokenType uint\n\n// Lexical assembly tokens.\nconst (\n\tTOKEN_END tokenType = iota\n\tTOKEN_CHAR\n\tTOKEN_LABEL\n\tTOKEN_ID\n\tTOKEN_INSTRUCTION\n\tTOKEN_OPERAND\n\tTOKEN_V\n\tTOKEN_R\n\tTOKEN_I\n\tTOKEN_EFFECTIVE_ADDRESS\n\tTOKEN_F\n\tTOKEN_HF\n\tTOKEN_K\n\tTOKEN_DT\n\tTOKEN_ST\n\tTOKEN_LIT\n\tTOKEN_TEXT"
    -" false,   // Throw an Exception on warnings from dompdf\n    'orientation' => 'portrait',\n    'defines' => array(\n        /**\n         * The location of the DOMPDF font directory\n         *\n         * The location of the directory where DOMPDF will store fonts and font metrics\n         * Note: This directory must exist and be writable by the webserver process.\n         * *Please note the trailing slash.*\n         *\n         * Notes regarding fonts:\n         * Additional .afm font metrics can be added by executing load_font.php from command line.\n         *\n         * Only the original \"Base 14 fonts\" are present on all pdf viewers. Additional fonts must\n         * be embedded in the pdf file or the PDF may not display correctly. This can significantly\n         * increase file size unless font subsetting is enabled. Before embedding a font please\n         * review your rights under the font license.\n         *\n         * Any font specification in the source HTML is translated to the closest font available\n         * in the font directory.\n         *\n         * The pdf standard \"Base"
    -"/*\n * When this file is linked to a DLL, it sets up a delay-load hook that\n * intervenes when the DLL is trying to load the host executable\n * dynamically. Instead of trying to locate the .exe file it'll just\n * return a handle to the process image.\n *\n * This allows compiled addons to work when the host executable is renamed.\n */\n\n#ifdef _MSC_VER\n\n#pragma managed(push, off)\n\n#ifndef WIN32_LEAN_AND_MEAN\n#define WIN32_LEAN_AND_MEAN\n#endif\n\n#include \n\n#include \n#include \n\nstatic FARPROC WINAPI load_exe_hook(unsigned int event, DelayLoadInfo* info) {\n  HMODULE m;\n  if (event != dliNotePreLoadLibrary)\n    return NULL;\n\n  if (_stricmp(info->szDll, HOST_BINARY) != 0)\n    return NULL;\n\n  m = GetModuleHandle(NULL);\n  return (FARPROC) m;\n}\n\ndecltype(__pfnDliNotifyHook2) __pfnDliNotifyHook2 = load_exe_hook;\n\n#pragma managed(pop)\n\n#endif"
    -"/*\n * drivers/net/ethernet/mellanox/mlxsw/spectrum_buffers.c\n * Copyright (c) 2015 Mellanox Technologies. All rights reserved.\n * Copyright (c) 2015 Jiri Pirko \n *\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions are met:\n *\n * 1. Redistributions of source code must retain the above copyright\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 * 3. Neither the names of the copyright holders nor the names of its\n *    contributors may be used to endorse or promote products derived from\n *    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 * 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"
    -"auditLogConfigs = $auditLogConfigs;\n  }\n  /**\n   * @return Google_Service_CloudKMS_AuditLogConfig\n   */\n  public function getAuditLogConfigs()\n  {\n    return $this->auditLogConfigs;\n  }\n  public function setService($service)\n  {\n    $this->service = $service;\n  }\n  public function getService()\n  {\n    return $this->service;\n  }\n}"
    -"\ufeffusing DotNet;\r\n\r\nusing Nemerle.Collections;\r\n\r\nusing Nitra.AstUtils;\r\nusing Nitra.Declarations;\r\nusing Nitra.Utils;\r\n\r\nusing System.Drawing;\r\n\r\nusing R = Nitra.Ast.RegexExpressions;\r\n\r\nnamespace Nitra.Ast.RegexExpressions\r\n{\r\n  abstract ast Expression : BindableAst\r\n  {\r\n  }\r\n\r\n  abstract ast Unary : R.Expression\r\n  {\r\n    Expression.Scope = Scope;\r\n    Expression : R.Expression;\r\n  }\r\n\r\n  abstract ast Binary : R.Expression\r\n  {\r\n    Expression1.Scope = Scope;\r\n    Expression2.Scope = Scope;\r\n\r\n    Expression1 : R.Expression;\r\n    Expression2 : R.Expression;\r\n  }\r\n\r\n  abstract ast List : R.Unary\r\n  {\r\n    Expressions.Scope = Scope;\r\n\r\n    Expressions : R.Expression*;\r\n  }\r\n\r\n  ast Sequence            : R.List { }\r\n  ast Choice              : R.List { }\r\n  ast Subtract            : R.Binary { }\r\n  ast Optional            : R.Unary { }\r\n  ast Repeat              : R.Unary { }\r\n  ast RepeatWithSeparator : R.Unary\r\n  {\r\n    Separator.Scope = Scope;\r\n    Separator : R.Expression;\r\n  }\r\n\r\n  ast Call            : R.Expression\r\n  {\r\n    RuleReference.Scope = Scope;\r\n\r\n    RuleReference : QualifiedReference;\r\n  }\r\n\r\n  ast Char            : R.Expression { Literal : CharLiteral; }\r\n  ast String          : R.Expression { Literal : StringLiteral; }\r\n  ast Range           : R.Expression {  }\r\n  ast InvertedRange   : R.Expression {  }\r\n}"
    -"# Building forms with FormState\n\n## Basic\n\nWhen using ``, you express your form's component tree as a function of the generated field state objects provided by `` into its `children` function as `formDetails`.\n\n```typescript\ninterface FormDetails {\n  fields: FieldDescriptors;\n  dirty: boolean;\n  valid: boolean;\n  submitting: boolean;\n  errors: RemoteError[];\n  reset(): void;\n  submit(): void;\n}\n```\n\nThe `formDetails` object passed into `children` contains a `fields` dictionary, which includes all the state and handlers you need to render your form.\n\n```typescript\ninterface FieldState {\n  name: string;\n  initialValue: Value;\n  value: Value;\n  dirty: boolean;\n  error?: any;\n  onBlur(): void;\n}\n```\n\nThe simplest way to use `` is to pass it some `initialValues` and render some `input`s in its `children` render prop.\n\n```typescript\nimport FormState from '@shopify/react-form-state';\n\nfunction MyComponent() {\n  return (\n    \n      {formDetails => {\n        const {fields} = formDetails;\n        const {title, description} = fields;\n\n        return (\n          
    \n \n {\n // our onChange expects just a value, no event needed\n title.onChange(currentTarget.value);\n }}\n />\n\n \n {\n description.onChange(currentTarget.value);\n }}\n />\n \n );\n }}\n
    \n );\n}\n```\n\n## Reducing boilerplate with custom inputs\n\nThe previous" -"/*\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 lister-gen. DO NOT EDIT.\n\npackage v1beta2\n\nimport (\n\tv1beta2 \"k8s.io/api/apps/v1beta2\"\n\t\"k8s.io/apimachinery/pkg/api/errors\"\n\t\"k8s.io/apimachinery/pkg/labels\"\n\t\"k8s.io/client-go/tools/cache\"\n)\n\n// DeploymentLister helps list Deployments.\ntype DeploymentLister interface {\n\t// List lists all Deployments in the indexer.\n\tList(selector labels.Selector) (ret []*v1beta2.Deployment, err error)\n\t// Deployments returns an object that can list and get Deployments.\n\tDeployments(namespace string) DeploymentNamespaceLister\n\tDeploymentListerExpansion\n}\n\n// deploymentLister implements the DeploymentLister interface.\ntype deploymentLister struct {\n\tindexer cache.Indexer\n}\n\n// NewDeploymentLister returns a new DeploymentLister.\nfunc NewDeploymentLister(indexer cache.Indexer) DeploymentLister {\n\treturn &deploymentLister{indexer: indexer}\n}\n\n// List lists all Deployments in the indexer.\nfunc (s *deploymentLister) List(selector labels.Selector) (ret []*v1beta2.Deployment, err error) {\n\terr = cache.ListAll(s.indexer, selector, func(m interface{}) {\n\t\tret = append(ret, m.(*v1beta2.Deployment))\n\t})\n\treturn" -"// go run mksyscall.go -l32 -tags darwin,arm,go1.13 syscall_darwin.1_13.go\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build darwin,arm,go1.13\n\npackage unix\n\nimport (\n\t\"syscall\"\n\t\"unsafe\"\n)\n\nvar _ syscall.Errno\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc closedir(dir uintptr) (err error) {\n\t_, _, e1 := syscall_syscall(funcPC(libc_closedir_trampoline), uintptr(dir), 0, 0)\n\tif e1 != 0 {\n\t\terr = errnoErr(e1)\n\t}\n\treturn\n}\n\nfunc libc_closedir_trampoline()\n\n//go:linkname libc_closedir libc_closedir\n//go:cgo_import_dynamic libc_closedir closedir \"/usr/lib/libSystem.B.dylib\"\n\n// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT\n\nfunc readdir_r(dir uintptr, entry *Dirent, result **Dirent) (res Errno) {\n\tr0, _, _ := syscall_syscall(funcPC(libc_readdir_r_trampoline), uintptr(dir), uintptr(unsafe.Pointer(entry)), uintptr(unsafe.Pointer(result)))\n\tres = Errno(r0)\n\treturn\n}\n\nfunc libc_readdir_r_trampoline()\n\n//go:linkname libc_readdir_r libc_readdir_r\n//go:cgo_import_dynamic libc_readdir_r readdir_r \"/usr/lib/libSystem.B.dylib\"" -"# frozen_string_literal: true\n\nclass Pry\n class Command\n class Ls < Pry::ClassCommand\n module MethodsHelper\n include Pry::Command::Ls::JRubyHacks\n\n private\n\n # Get all the methods that we'll want to output.\n def all_methods(instance_methods = false)\n methods = if instance_methods || @instance_methods_switch\n Pry::Method.all_from_class(@interrogatee)\n else\n Pry::Method.all_from_obj(@interrogatee)\n end\n\n if Pry::Helpers::Platform.jruby? && !@jruby_switch\n methods = trim_jruby_aliases(methods)\n end\n\n methods.select { |method| @ppp_switch || method.visibility == :public }\n end\n\n def resolution_order\n if @instance_methods_switch\n Pry::Method.instance_resolution_order(@interrogatee)\n else\n Pry::Method.resolution_order(@interrogatee)\n end\n end\n\n def format(methods)\n methods.sort_by(&:name).map do |method|\n if method.name == 'method_missing'\n color(:method_missing, 'method_missing')\n elsif method.visibility == :private\n color(:private_method, method.name)\n elsif method.visibility == :protected\n color(:protected_method, method.name)\n else\n color(:public_method, method.name)\n end\n end\n end\n end\n end\n end\nend" -"/*\n * <-- Copyright Giesecke & Devrient GmbH 2009 - 2012 -->\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#ifndef _MC_KAPI_SESSION_H_\n#define _MC_KAPI_SESSION_H_\n\n#include \"common.h\"\n\n#include \n#include \"connection.h\"\n\n\nstruct bulk_buffer_descriptor {\n\tvoid\t\t*virt_addr;\t/* The VA of the Bulk buffer */\n\tuint32_t\tlen;\t\t/* Length of the Bulk buffer */\n\tuint32_t\thandle;\n\n\t/* The physical address of the L2 table of the Bulk buffer*/\n\tvoid\t\t*phys_addr_wsm_l2;\n\n\t/* The list param for using the kernel lists*/\n\tstruct list_head list;\n};\n\nstruct bulk_buffer_descriptor *bulk_buffer_descriptor_create(\n\tvoid\t\t*virt_addr,\n\tuint32_t\tlen,\n\tuint32_t\thandle,\n\tvoid\t\t*phys_addr_wsm_l2\n);\n\n/*\n * Session states.\n * At the moment not used !!\n */\nenum session_state {\n\tSESSION_STATE_INITIAL,\n\tSESSION_STATE_OPEN,\n\tSESSION_STATE_TRUSTLET_DEAD\n};\n\n#define SESSION_ERR_NO\t0\t\t/* No session error */\n\n/*\n * Session information structure.\n * The information structure is used to hold the state of the session, which\n * will limit further actions for the session.\n * Also the last error code will be stored till it's read.\n */\nstruct session_information {\n\tenum session_state state;\t/* Session state */\n\tint32_t\t\tlast_error;\t/*" -";;; TOOL: run-objdump\n;;; ARGS0: -v --no-canonicalize-leb128s\n(module\n (import \"stdio\" \"print\" (func (param i32)))\n (memory 100)\n (export \"f1\" (func $f1))\n (table anyfunc (elem $f2 $f3))\n (type $t (func (param i32) (result i32)))\n (func $f1 (param i32 i32)\n get_local 0\n get_local 1\n call_indirect (type $t)\n drop)\n (func $f2 (param i32)\n get_local 0\n i32.const 1\n i32.add\n drop)\n (func $f3 (param i32)\n get_local 0\n i32.const 2\n i32.mul\n drop))\n(;; STDOUT ;;;\n0000000: 0061 736d ; WASM_BINARY_MAGIC\n0000004: 0100 0000 ; WASM_BINARY_VERSION\n; section \"Type\" (1)\n0000008: 01 ; section code\n0000009: 0000 0000 00 ; section size (guess)\n000000e: 03 ; num types\n; type 0\n000000f: 60 ; func\n0000010: 01 ; num params\n0000011: 7f ; i32\n0000012: 01 ; num results\n0000013: 7f ; i32\n; type 1\n0000014: 60 ; func\n0000015: 01 ; num params\n0000016: 7f ; i32\n0000017: 00 ; num results\n; type 2\n0000018: 60 ; func\n0000019: 02 ; num params\n000001a: 7f ; i32\n000001b: 7f ; i32\n000001c: 00 ; num results\n0000009: 8f80 8080 00 ; FIXUP section size\n; section \"Import\" (2)\n000001d: 02 ; section code\n000001e: 0000 0000 00 ; section size (guess)\n0000023: 01 ; num" -"/**\n * Copyright (c) 2016-2017 Netflix, Inc. All rights reserved.\n * \n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n/**\n *

    Test identity provisioning service.

    \n * \n *

    This class creates entity identities from a prefix set equal to the\n * current time in milliseconds since the UNIX epoch and a suffix set equal a\n * random long number. The prefix and suffix are separated by a colon.

    \n * \n * @author Wesley Miaw \n */\n(function(require, module) {\n \"use strict\";\n \n var ProvisionedAuthenticationFactory = require('msl-core/entityauth/ProvisionedAuthenticationFactory.js');\n \n var MockIdentityProvisioningService = module.exports = ProvisionedAuthenticationFactory.IdentityProvisioningService.extend({\n /**\n *

    Create a new test identity provisioning service using the random\n * number generator from the provided MSL context.

    \n * \n * @param {MslContext} ctx MSL context.\n */\n init:" -"// Copyright (c) 2003-present, Jodd Team (http://jodd.org)\n// All rights reserved.\n//\n// Redistribution and use in source and binary forms, with or without\n// modification, are permitted provided that the following conditions are met:\n//\n// 1. Redistributions of source code must retain the above copyright notice,\n// this list of conditions and the following disclaimer.\n//\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 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 HOLDER OR CONTRIBUTORS BE\n// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n// ARISING IN ANY" -"/*\n * Sonatype Nexus (TM) Open Source Version\n * Copyright (c) 2008-present Sonatype, Inc.\n * All rights reserved. Includes the third-party code listed at http://links.sonatype.com/products/nexus/oss/attributions.\n *\n * This program and the accompanying materials are made available under the terms of the Eclipse Public License Version 1.0,\n * which accompanies this distribution and is available at http://www.eclipse.org/legal/epl-v10.html.\n *\n * Sonatype Nexus (TM) Professional Version is available from Sonatype, Inc. \"Sonatype\" and \"Sonatype Nexus\" are trademarks\n * of Sonatype, Inc. Apache Maven is a trademark of the Apache Software Foundation. M2eclipse is a trademark of the\n * Eclipse Foundation. All other trademarks are the property of their respective owners.\n */\npackage org.sonatype.nexus.security.authc.apikey;\n\nimport javax.annotation.Nullable;\n\nimport org.sonatype.goodies.lifecycle.Lifecycle;\n\nimport org.apache.shiro.subject.PrincipalCollection;\n\n/**\n * Persistent mapping between principals (such as user IDs) and API-Keys.\n *\n * @since 3.0\n */\npublic interface ApiKeyStore\n extends Lifecycle\n{\n /**\n * Creates an API-Key and assigns it to the given principals in given domain.\n */\n char[] createApiKey(String domain, PrincipalCollection principals);\n\n /**\n * Persists an API-Key with a predetermined value.\n *\n * @since 3.1\n */\n void persistApiKey(String domain, PrincipalCollection principals, char[] apiKey);\n\n /**\n * Gets the current API-Key assigned to the given principals in given domain.\n *\n * @return {@code null}" -"//\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// * Neither the name of NVIDIA CORPORATION nor the names of its\n// contributors may be used to endorse or promote products derived\n// from this software without specific prior written permission.\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" -"/**\n * Obsidian theme\n *\n * Adapted from a theme based on:\n * http://studiostyl.es/schemes/son-of-obsidian\n *\n * @author Dan Stewart \n * @version 1.0\n */\npre {\n background: #22282A;\n word-wrap: break-word;\n margin: 0px;\n padding: 10px;\n color: #F1F2F3;\n font-size: 14px;\n margin-bottom: 20px;\n}\n\npre, code {\n font-family: 'Monaco', courier, monospace;\n}\n\npre .comment {\n\tcolor: #66747B;\n}\n\npre .constant {\n\tcolor: #EC7600;\n}\n\npre .storage {\n\tcolor: #EC7600;\n}\n\npre .string, pre .comment.docstring {\n\tcolor: #EC7600;\n}\n\npre .string.regexp, pre .support.tag.script, pre .support.tag.style {\n color: #fff;\n}\n\n\npre .keyword, pre .selector {\n\tcolor: #93C763;\n}\n\npre .inherited-class {\n font-style: italic;\n}\n\npre .entity {\n\tcolor: #93C763;\n}\n\npre .integer {\n\tcolor: #FFCD22;\n}\n\npre .support, *[data-language=\"csharp\"] .function.call {\n\tcolor: #FACD22;\n}\n\npre .variable.global, pre .variable.class, pre .variable.instance {\n\tcolor: #CCC;\n}\n\n/* C# specific rule */\npre .preprocessor {\n\tcolor: #66747B;\n}" -"// Copyright (c) 2008 Max-Planck-Institute Saarbruecken (Germany)\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) : Arno Eigenwillig \n// Michael Hemmer \n//\n// ============================================================================\n\n// TODO: The comments are all original EXACUS comments and aren't adapted. So\n// they may be wrong now.\n\n\n#ifndef CGAL_POLYNOMIAL_ALGEBRAIC_STRUCTURE_TRAITS_H\n#define CGAL_POLYNOMIAL_ALGEBRAIC_STRUCTURE_TRAITS_H\n\n#include \n#include \n#include \n\nnamespace CGAL {\n\n// Extend to a UFDomain as coefficient range\n// Forward declaration for for NT_traits::Gcd\nnamespace internal {\ntemplate inline\nPolynomial gcd_(const Polynomial&, const Polynomial&);\n} // namespace internal\n\n\n// Now we wrap up all of this in the" -"The log file contents are a sequence of 32KB blocks. The only\nexception is that the tail of the file may contain a partial block.\n\nEach block consists of a sequence of records:\n block := record* trailer?\n record :=\n\tchecksum: uint32\t// crc32c of type and data[] ; little-endian\n\tlength: uint16\t\t// little-endian\n\ttype: uint8\t\t// One of FULL, FIRST, MIDDLE, LAST\n\tdata: uint8[length]\n\nA record never starts within the last six bytes of a block (since it\nwon't fit). Any leftover bytes here form the trailer, which must\nconsist entirely of zero bytes and must be skipped by readers. \n\nAside: if exactly seven bytes are left in the current block, and a new\nnon-zero length record is added, the writer must emit a FIRST record\n(which contains zero bytes of user data) to fill up the trailing seven\nbytes of the block and then emit all of the user data in subsequent\nblocks.\n\nMore types may be added in the future. Some Readers may skip record\ntypes they do not understand, others may report that some data was\nskipped.\n\nFULL == 1\nFIRST == 2\nMIDDLE == 3\nLAST == 4\n\nThe FULL record contains the contents of an" -"name);\n $lesson->content = \\File::get($path);\n $lesson->save();\n $lesson->touch();\n\n $this->info(sprintf('Success updating %d: %s', $lesson->id, $lesson->name));\n }\n\n return $this->warn('Finished.');\n }\n}" -"/* TREZORv1 firmware linker script */\n\nENTRY(reset_handler)\n\nMEMORY {\n FLASH (rx) : ORIGIN = 0x08010000, LENGTH = 1024K - 64K\n SRAM (wal) : ORIGIN = 0x20000000, LENGTH = 128K\n}\n\nmain_stack_base = ORIGIN(SRAM) + LENGTH(SRAM); /* 8-byte aligned full descending stack */\n_estack = main_stack_base;\n\n/* used by the startup code to populate variables used by the C code */\ndata_lma = LOADADDR(.data);\ndata_vma = ADDR(.data);\ndata_size = SIZEOF(.data);\n\n/* used by the startup code to wipe memory */\n/* we have no CCMRAM, so erase the first word of SRAM as hack */\nccmram_start = ORIGIN(SRAM);\nccmram_end = ORIGIN(SRAM) + 4;\n\n/* used by the startup code to wipe memory */\nsram_start = ORIGIN(SRAM);\nsram_end = ORIGIN(SRAM) + LENGTH(SRAM);\n_ram_start = sram_start;\n_ram_end = sram_end;\n\n_codelen = LENGTH(FLASH);\n_flash_start = ORIGIN(FLASH);\n_flash_end = ORIGIN(FLASH) + LENGTH(FLASH);\n_heap_start = ADDR(.heap);\n_heap_end = ADDR(.heap) + SIZEOF(.heap);\n\nSECTIONS {\n .flash : ALIGN(512) {\n KEEP(*(.vector_table));\n . = ALIGN(4);\n *(.text*);\n . = ALIGN(4);\n *(.rodata*);\n . = ALIGN(512);\n } >FLASH AT>FLASH\n\n .data : ALIGN(4) {\n *(.data*);\n . = ALIGN(512);\n } >SRAM AT>FLASH\n\n .bss : ALIGN(4) {\n *(.bss*);\n . = ALIGN(4);\n } >SRAM\n\n .heap : ALIGN(4) {\n . = 37K; /* this acts as a build" -"/**\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.renderer.math;\r\n\r\nimport java.awt.Component;\r\n\r\nimport com.rapidminer.datatable.DataTable;\r\nimport com.rapidminer.gui.renderer.AbstractDataTablePlotterRenderer;\r\nimport com.rapidminer.operator.IOContainer;\r\nimport com.rapidminer.operator.visualization.dependencies.NumericalMatrix;\r\n\r\n\r\n/**\r\n * \r\n * @author Sebastian Land\r\n * @deprecated since 9.2.1\r\n */\r\n@Deprecated\r\npublic class NumericalMatrixPlotRenderer extends AbstractDataTablePlotterRenderer {\r\n\r\n\t@Override\r\n\tpublic Component getVisualizationComponent(Object renderable, IOContainer ioContainer) {\r\n\t\treturn addWarningPanel(super.getVisualizationComponent(renderable, ioContainer), ((NumericalMatrix) renderable).isUseless(), \"numerical_matrix.not_enough_attributes.label\");\r\n\t}\r\n\r\n\t@Override\r\n\tpublic DataTable getDataTable(Object renderable, IOContainer ioContainer) {\r\n\t\tNumericalMatrix matrix = (NumericalMatrix) renderable;\r\n\t\treturn matrix.createPairwiseDataTable(false);\r\n\t}\r\n\r\n}" -"/*\n * util.c\n *\n * ORIGINAL AUTHOR: Savio Lam (lam836@cs.cuhk.hk)\n * MODIFIED FOR LINUX KERNEL CONFIG BY: William Roadcap (roadcap@cfw.com)\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 * 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\n * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.\n */\n\n#include \"dialog.h\"\n\n/* use colors by default? */\nbool use_colors = 1;\n\nconst char *backtitle = NULL;\n\n/*\n * Attribute values, default is for mono display\n */\nchtype attributes[] = {\n\tA_NORMAL,\t\t/* screen_attr */\n\tA_NORMAL,\t\t/* shadow_attr */\n\tA_NORMAL,\t\t/* dialog_attr */\n\tA_BOLD,\t\t\t/* title_attr */\n\tA_NORMAL,\t\t/* border_attr */\n\tA_REVERSE,\t\t/* button_active_attr" -"/*\n * Copyright (C) 2019 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 */\npackage com.android.settingslib.drawer;\n\nimport android.app.ActivityManager;\nimport android.content.ContentResolver;\nimport android.content.Context;\nimport android.content.IContentProvider;\nimport android.content.Intent;\nimport android.content.pm.ActivityInfo;\nimport android.content.pm.ComponentInfo;\nimport android.content.pm.PackageManager;\nimport android.content.pm.ProviderInfo;\nimport android.content.pm.ResolveInfo;\nimport android.net.Uri;\nimport android.os.Bundle;\nimport android.os.RemoteException;\nimport android.os.UserHandle;\nimport android.os.UserManager;\nimport android.provider.Settings.Global;\nimport android.text.TextUtils;\nimport android.util.ArrayMap;\nimport android.util.Log;\nimport android.util.Pair;\n\nimport androidx.annotation.VisibleForTesting;\n\nimport java.util.ArrayList;\nimport java.util.HashMap;\nimport java.util.List;\nimport java.util.Map;\n\n/**\n * Utils is a helper class that contains profile key, meta data, settings action\n * and static methods for get icon or text from uri.\n */\npublic class TileUtils {\n\n private static final boolean DEBUG_TIMING = false;\n\n private static final String LOG_TAG = \"TileUtils\";\n @VisibleForTesting\n static" -"\\n\"\n\"Language-Team: Librezale.org \\n\"\n\"MIME-Version: 1.0\\n\"\n\"Content-Type: text/plain; charset=UTF-8\\n\"\n\"Content-Transfer-Encoding: 8bit\\n\"\n\"X-Generator: Pootle 0.6.3.20060126\\n\"\n\nmsgid \"Image Block\"\nmsgstr \"Irudi Blokea\"\n\nmsgid \"Random, Most Recent" -"GalleryJqueryFileUpload::Application.configure do\n # Settings specified here will take precedence over those in config/application.rb\n\n # In the development environment your application's code is reloaded on\n # every request. This slows down response time but is perfect for development\n # since you don't have to restart the web server when you make code changes.\n config.cache_classes = false\n\n # Log error messages when you accidentally call methods on nil.\n config.whiny_nils = true\n\n # Show full error reports and disable caching\n config.consider_all_requests_local = true\n config.action_controller.perform_caching = false\n\n # Don't care if the mailer can't send\n config.action_mailer.raise_delivery_errors = false\n\n # Print deprecation notices to the Rails logger\n config.active_support.deprecation = :log\n\n # Only use best-standards-support built into browsers\n config.action_dispatch.best_standards_support = :builtin\n\n # Raise exception on mass assignment protection for Active Record models\n config.active_record.mass_assignment_sanitizer = :strict\n\n # Log the query plan for queries taking more than this (works\n # with SQLite, MySQL, and PostgreSQL)\n config.active_record.auto_explain_threshold_in_seconds = 0.5\n\n # Do not compress assets\n config.assets.compress = false\n\n # Expands the lines which load the assets\n config.assets.debug = true\nend" -"///////////////////////////////////////////////////////////////////////\n// File: imagefind.h\n// Description: Class to find image and drawing regions in an image\n// and create a corresponding list of empty blobs.\n// Author: Ray Smith\n//\n// (C) Copyright 2008, Google Inc.\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///////////////////////////////////////////////////////////////////////\n\n#ifndef TESSERACT_TEXTORD_IMAGEFIND_H_\n#define TESSERACT_TEXTORD_IMAGEFIND_H_\n\n#include \"debugpixa.h\"\n\n#include \n\nstruct Boxa;\nstruct Pix;\nstruct Pixa;\nclass TBOX;\nclass FCOORD;\nclass TO_BLOCK;\nclass BLOBNBOX_LIST;\n\nnamespace tesseract {\n\nclass ColPartitionGrid;\nclass ColPartition_LIST;\nclass TabFind;\n\n// The ImageFind class is a simple static function wrapper class that\n// exposes the FindImages function and some useful helper functions.\nclass ImageFind {\n public:\n // Finds image regions within the BINARY source pix (page image) and returns\n // the image regions as" -"/*\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) 2011 Blender Foundation.\n * All rights reserved.\n */\n\n#ifndef LIBMV_IMAGE_H_\n#define LIBMV_IMAGE_H_\n\n#ifdef __cplusplus\n# include \"libmv/image/image.h\"\nvoid libmv_byteBufferToFloatImage(const unsigned char* buffer,\n int width,\n int height,\n int channels,\n libmv::FloatImage* image);\n\nvoid libmv_floatBufferToFloatImage(const float* buffer,\n int width,\n int height,\n int channels,\n libmv::FloatImage* image);\n\nvoid libmv_floatImageToFloatBuffer(const libmv::FloatImage& image,\n float *buffer);\n\nvoid libmv_floatImageToByteBuffer(const libmv::FloatImage& image,\n unsigned char* buffer);\n\nbool libmv_saveImage(const libmv::FloatImage& image,\n const char* prefix,\n int x0,\n int" -" [-h hostname] [-p port]\")\n print(\" -h hostname hostname to connect to, \\\"localhost\\\" by default\")\n print(\" -p port port to use for connection, \\\"4433\\\" by default\")\n print(\" -e probe-name exclude the probe from the list of the ones run\")\n print(\" may be specified multiple times\")\n print(\" -n num run 'num' or all(if 0) tests instead of default(all)\")\n print(\" (excluding \\\"sanity\\\" tests)\")\n print(\" -x probe-name expect the probe to fail. When such probe passes despite being marked like this\")\n print(\" it will be reported in the test summary and the whole script will fail.\")\n print(\" May be specified multiple times.\")\n print(\" -X message expect the `message` substring in exception raised" -" 'Dashboard',\n 'writeable_settings' => 'The Cachet settings directory is not writeable. Please make sure that ./bootstrap/cachet is writeable by the web server.',\n\n // Incidents\n 'incidents' => [\n 'title' => 'Incidents & Schedule',\n 'incidents' => 'Incidents',\n 'logged' => '{0} There are no incidents, good work.|You have logged one incident.|You have reported :count incidents.',\n 'incident-create-template' => 'Create Template',\n 'incident-templates' => 'Incident Templates',\n 'updates' => '{0} Zero Updates|One Update|:count Updates',\n 'add' => [\n 'title' => 'Report an incident',\n 'success' => 'Incident added.',\n 'failure' => 'There was an error adding the incident, please try again.',\n ],\n 'edit' => [\n 'title' => 'Edit an incident',\n 'success' => 'Incident updated.',\n 'failure' => 'There was an error editing the incident, please try again.',\n ],\n 'delete' => [\n 'success' => 'The incident has been deleted and will not show on your status page.',\n 'failure' => 'The incident could not be deleted, please try again.',\n ],\n 'update' => [\n 'title' => 'Create new incident update',\n 'subtitle' =>" -"/**\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\npackage org.waveprotocol.wave.model.supplement;\n\nimport org.waveprotocol.wave.model.conversation.ConversationThread;\n\n/**\n * A simple {@link PresentationPolicy}.\n *\n * @author kalman@google.com (Benjamin Kalman)\n */\npublic final class SimplePresentationPolicy implements PresentationPolicy {\n\n private final ThreadState defaultState;\n\n /**\n * Creates a simple presentation policy with a default thread state to return\n * in {@link #getThreadState} when none is given.\n *\n * @param defaultState the default thread state\n */\n public SimplePresentationPolicy(ThreadState defaultState) {\n this.defaultState = defaultState;\n }\n\n @Override\n public ThreadState" -"/*\n * Copyright 2020 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 * 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/**\n * External dependencies\n */\nimport PropTypes from 'prop-types';\nimport styled from 'styled-components';\n\n/**\n * Internal dependencies\n */\nimport useLayoutContext from './useLayoutContext';\n\nconst ScrollContent = styled.div`\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n overflow-x: hidden;\n overflow-y: scroll;\n\n /**\n * Adds inertial scrolling to iOS\n * devices like iPad\n */\n -webkit-overflow-scrolling: touch;\n`;\n\nconst Inner = styled.div`\n position: relative;\n padding-top: ${(props) => props.paddingTop || 0}px;\n width: ${({ scrollbarWidth }) => `calc(100% + ${scrollbarWidth}px)`};\n`;\n\nInner.propTypes = {\n paddingTop: PropTypes.number,\n};\n\nconst Scrollable = ({ children }) => {\n const {\n state: { scrollFrameRef, squishContentHeight },\n } = useLayoutContext();\n\n const scrollbarWidth =" -"# -*- coding: utf-8 -*-\n\n# Max-Planck-Gesellschaft zur F\u00f6rderung der Wissenschaften e.V. (MPG) is\n# holder of all proprietary rights on this computer program.\n# You can only use this computer program if you have closed\n# a license agreement with MPG or you get the right to use the computer\n# program from someone who is authorized to grant you that right.\n# Any use of the computer program without a valid license is prohibited and\n# liable to prosecution.\n#\n# Copyright\u00a92019 Max-Planck-Gesellschaft zur F\u00f6rderung\n# der Wissenschaften e.V. (MPG). acting on behalf of its Max Planck Institute\n# for Intelligent Systems. All rights reserved.\n#\n# Contact: ps-license@tuebingen.mpg.de\n\nimport sys\nsys.path.append('.')\n\nimport os\nimport cv2\nimport torch\nimport joblib\nimport argparse\nimport numpy as np\nimport pickle as pkl\nimport os.path as osp\nfrom tqdm import tqdm\n\nfrom lib.models import spin\nfrom lib.data_utils.kp_utils import *\nfrom lib.core.config import VIBE_DB_DIR, VIBE_DATA_DIR\nfrom lib.utils.smooth_bbox import get_smooth_bbox_params\nfrom lib.models.smpl import SMPL, SMPL_MODEL_DIR, H36M_TO_J14\nfrom lib.data_utils.feature_extractor import extract_features\nfrom lib.utils.geometry import batch_rodrigues, rotation_matrix_to_angle_axis\n\nNUM_JOINTS = 24\nVIS_THRESH = 0.3\nMIN_KP = 6\n\ndef read_data(folder, set, debug=False):\n\n dataset = {\n 'vid_name': [],\n 'frame_id': [],\n 'joints3D': [],\n 'joints2D': [],\n 'shape': [],\n 'pose': []," -"struct intx {\n intx() { normalize(1); }\n intx(string n) { init(n); }\n intx(int n) { stringstream ss; ss << n; init(ss.str()); }\n intx(const intx& other)\n : sign(other.sign), data(other.data) { }\n int sign;\n vector data;\n static const int dcnt = 9;\n static const unsigned int radix = 1000000000U;\n int size() const { return data.size(); }\n void init(string n) {\n intx res; res.data.clear();\n if (n.empty()) n = \"0\";\n if (n[0] == '-') res.sign = -1, n = n.substr(1);\n for (int i = n.size() - 1; i >= 0; i -= intx::dcnt) {\n unsigned int digit = 0;\n for (int j = intx::dcnt - 1; j >= 0; j--) {\n int idx = i - j;\n if (idx < 0) continue;\n digit = digit * 10 + (n[idx] - '0'); }\n res.data.push_back(digit); }\n data = res.data;\n normalize(res.sign); }\n intx& normalize(int nsign) {\n if (data.empty()) data.push_back(0);\n for (int i = data.size() - 1; i > 0 && data[i] == 0; i--)\n data.erase(data.begin() + i);\n sign = data.size() == 1 && data[0] == 0 ? 1 : nsign;\n return *this; }\n friend ostream& operator <<(ostream& outs, const intx& n) {\n if (n.sign < 0) outs << '-';\n bool first = true;\n for (int i" -"; RUN: opt -gvn-hoist -S < %s | FileCheck %s\n\n; Check that urem is not hoisted.\n; CHECK-LABEL: @main\n; CHECK: urem\n; CHECK: urem\n; CHECK: urem\n\n@g_x_s = global i32 -470211272, align 4\n@g_z_s = global i32 2007237709, align 4\n@g_x_u = global i32 282475249, align 4\n@g_z_u = global i32 984943658, align 4\n@g_m = global i32 16807, align 4\n@res = common global i32 0, align 4\n\n; Function Attrs:\ndefine i64 @func() #0 {\nentry:\n ret i64 1\n}\n\n; Function Attrs:\ndefine i32 @main() {\nentry:\n %0 = load volatile i32, i32* @g_x_s, align 4\n %1 = load volatile i32, i32* @g_z_s, align 4\n %2 = load volatile i32, i32* @g_x_u, align 4\n %3 = load volatile i32, i32* @g_z_u, align 4\n %4 = load volatile i32, i32* @g_m, align 4\n %call = call i64 @func() #4\n %conv = sext i32 %1 to i64\n %cmp = icmp ne i64 %call, %conv\n br i1 %cmp, label %if.end, label %lor.lhs.false\n\nlor.lhs.false:\n %div = udiv i32 %4, %1\n %rem = urem i32 %0, %div\n %cmp2 = icmp eq i32 %rem, 0\n br i1 %cmp2, label %if.end, label %if.then\n\nif.then:\n br label %cleanup\n\nif.end:\n %call4 = call" -"{% extends \"InvenTree/settings/settings.html\" %}\n\n{% block tabs %}\n{% include \"InvenTree/settings/tabs.html\" with tab='user' %}\n{% endblock %}\n\n{% block settings %}\n\n

    \n
    \n

    User Information

    \n
    \n
    \n
    \n
    Edit
    \n
    Set Password
    \n
    \n
    \n
    \n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    Username{{ user.username }}
    First Name{{ user.first_name }}
    Last Name{{ user.last_name }}
    Email Address{{ user.email }}
    \n\n{% endblock %}\n\n{% block js_ready %}\n{{ block.super }}\n\n $(\"#edit-user\").on('click', function() {\n launchModalForm(\n \"{% url 'edit-user' %}\",\n {\n reload: true,\n }\n );\n });\n\n $(\"#edit-password\").on('click', function() {\n launchModalForm(\n \"{% url 'set-password' %}\",\n {\n reload: true,\n }\n );\n });\n\n{% endblock %}" -"/*\n * Copyright 2013, Michael Ellerman, IBM Corp.\n * Licensed under GPLv2.\n */\n\n#ifndef _SELFTESTS_POWERPC_PMU_EVENT_H\n#define _SELFTESTS_POWERPC_PMU_EVENT_H\n\n#include \n#include \n\n#include \"utils.h\"\n\n\nstruct event {\n\tstruct perf_event_attr attr;\n\tchar *name;\n\tint fd;\n\t/* This must match the read_format we use */\n\tstruct {\n\t\tu64 value;\n\t\tu64 running;\n\t\tu64 enabled;\n\t} result;\n};\n\nvoid event_init(struct event *e, u64 config);\nvoid event_init_named(struct event *e, u64 config, char *name);\nvoid event_init_opts(struct event *e, u64 config, int type, char *name);\nint event_open_with_options(struct event *e, pid_t pid, int cpu, int group_fd);\nint event_open_with_group(struct event *e, int group_fd);\nint event_open_with_pid(struct event *e, pid_t pid);\nint event_open_with_cpu(struct event *e, int cpu);\nint event_open(struct event *e);\nvoid event_close(struct event *e);\nint event_enable(struct event *e);\nint event_disable(struct event *e);\nint event_reset(struct event *e);\nint event_read(struct event *e);\nvoid event_report_justified(struct event *e, int name_width, int result_width);\nvoid event_report(struct event *e);\n\n#endif /* _SELFTESTS_POWERPC_PMU_EVENT_H */" -"#\n# NOTE:\n# This file is NOT loaded by the PostgreSQL database. It just serves as\n# a template for timezones you could need. See the `Date/Time Support'\n# appendix in the PostgreSQL documentation for more information.\n#\n# $PostgreSQL$\n#\n\nACSST 37800 D # Central Australia (not in zic)\n# CONFLICT! ACST is not unique\n# Other timezones:\n# - ACST: Acre Summer Time (America)\nACST 34200 # Central Australia Standard Time (not in zic)\nAESST 39600 D # Australia Eastern Summer Standard Time (not in zic)\nAEST 36000 # Australia Eastern Standard Time (not in zic)\nAWSST 32400 D # Australia Western Summer Standard Time (not in zic)\nAWST 28800 # Australia Western Standard Time (not in zic)\nCADT 37800 D # Central Australia Daylight-Saving Time (not in zic)\nCAST 34200 # Central Australia Standard Time (not in zic)\n# CONFLICT! CST is not unique\n# Other timezones:\n# - CST: Central Standard Time (America)\n# - CST: Cuba Central Standard Time (America)\nCST 34200 # Central Standard Time (Australia)\n # (Australia/Adelaide)\n # (Australia/Broken_Hill)\nCWST 31500 # Central Western Standard Time (Australia)\n # (Australia/Eucla)\n# CONFLICT! EAST is not unique\n# Other timezones:\n# - EAST: Easter" -"/*\n This file is licensed 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\n/**\n * XMLUnit helps testing code that creates XML.\n * @see \"https://www.xmlunit.org/\"\n */\npackage org.xmlunit;" -"package container // import \"github.com/docker/docker/api/types/container\"\n\nimport (\n\t\"time\"\n\n\t\"github.com/docker/docker/api/types/strslice\"\n\t\"github.com/docker/go-connections/nat\"\n)\n\n// MinimumDuration puts a minimum on user configured duration.\n// This is to prevent API error on time unit. For example, API may\n// set 3 as healthcheck interval with intention of 3 seconds, but\n// Docker interprets it as 3 nanoseconds.\nconst MinimumDuration = 1 * time.Millisecond\n\n// HealthConfig holds configuration settings for the HEALTHCHECK feature.\ntype HealthConfig struct {\n\t// Test is the test to perform to check that the container is healthy.\n\t// An empty slice means to inherit the default.\n\t// The options are:\n\t// {} : inherit healthcheck\n\t// {\"NONE\"} : disable healthcheck\n\t// {\"CMD\", args...} : exec arguments directly\n\t// {\"CMD-SHELL\", command} : run command with system's default shell\n\tTest []string `json:\",omitempty\"`\n\n\t// Zero means to inherit. Durations are expressed as integer nanoseconds.\n\tInterval time.Duration `json:\",omitempty\"` // Interval is the time to wait between checks.\n\tTimeout time.Duration `json:\",omitempty\"` // Timeout is the time to wait before considering the check to have hung.\n\tStartPeriod time.Duration `json:\",omitempty\"` // The start period for the container to initialize before the retries starts to count down.\n\n\t// Retries is the number of consecutive failures needed to consider a" -"// Copyright (c) 2001,2002,2003,2006 INRIA Sophia-Antipolis (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// Author(s) : Radu Ursu and Laurent Rineau\n\n/* XPM */\nextern const char * nearest_vertex_xpm[];\n/* XPM */\nextern const char * nearest_vertex_small_xpm[];" -"// Copyright 2013 Matt T. Proud\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 pbutil\n\nimport (\n\t\"encoding/binary\"\n\t\"errors\"\n\t\"io\"\n\n\t\"github.com/golang/protobuf/proto\"\n)\n\nvar errInvalidVarint = errors.New(\"invalid varint32 encountered\")\n\n// ReadDelimited decodes a message from the provided length-delimited stream,\n// where the length is encoded as 32-bit varint prefix to the message body.\n// It returns the total number of bytes read and any applicable error. This is\n// roughly equivalent to the companion Java API's\n// MessageLite#parseDelimitedFrom. As per the reader contract, this function\n// calls r.Read repeatedly as required until exactly one message including its\n// prefix is read and decoded (or an error has occurred). The function never\n// reads more bytes from the stream" -"\ufeff/*******************************************************************************\n * You may amend and distribute as you like, but don't remove this header!\n *\n * EPPlus provides server-side generation of Excel 2007/2010 spreadsheets.\n * See http://www.codeplex.com/EPPlus for details.\n *\n * Copyright (C) 2011 Jan K\u00e4llman\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. \n * See the GNU Lesser General Public License for more details.\n *\n * The GNU Lesser General Public License can be viewed at http://www.opensource.org/licenses/lgpl-license.php\n * If you unfamiliar with this license or have questions about it, here is an http://www.gnu.org/licenses/gpl-faq.html\n *\n * All code and executables are provided \"as is\" with no warranty either express or implied. \n * The author accepts no liability for any damage or loss of business that this product may cause.\n *\n * Code change notes:\n * \n * Author\t\t\t\t\t\t\tChange" -"// Copyright 2015 go-swagger maintainers\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 swag\n\nimport (\n\t\"fmt\"\n\t\"io/ioutil\"\n\t\"log\"\n\t\"net/http\"\n\t\"path/filepath\"\n\t\"strings\"\n\t\"time\"\n)\n\n// LoadHTTPTimeout the default timeout for load requests\nvar LoadHTTPTimeout = 30 * time.Second\n\n// LoadFromFileOrHTTP loads the bytes from a file or a remote http server based on the path passed in\nfunc LoadFromFileOrHTTP(path string) ([]byte, error) {\n\treturn LoadStrategy(path, ioutil.ReadFile, loadHTTPBytes(LoadHTTPTimeout))(path)\n}\n\n// LoadFromFileOrHTTPWithTimeout loads the bytes from a file or a remote http server based on the path passed in\n// timeout arg allows for per request overriding of the request timeout\nfunc LoadFromFileOrHTTPWithTimeout(path string, timeout time.Duration) ([]byte, error) {\n\treturn LoadStrategy(path, ioutil.ReadFile, loadHTTPBytes(timeout))(path)\n}\n\n// LoadStrategy returns a loader" -"/*\nCopyright (c) 2010, Yahoo! Inc. All rights reserved.\nCode licensed under the BSD License:\nhttp://developer.yahoo.com/yui/license.html\nversion: 2.8.2r1\n*/\n.yui-carousel {\n visibility: hidden;\n overflow: hidden;\n position: relative;\n text-align: left;\n zoom: 1;\n}\n \n.yui-carousel.yui-carousel-visible {\n visibility: visible;\n}\n \n.yui-carousel-content {\n overflow: hidden;\n position: relative;\n text-align:center;\n}\n \n.yui-carousel-element li {\n border: 1px solid #ccc;\n list-style: none;\n margin: 1px; \n overflow: hidden;\n padding: 0;\n position: absolute;\n text-align: center;\n}\n\n.yui-carousel-vertical .yui-carousel-element li {\n display: block;\n float: none;\n}\n \n.yui-log .carousel {\n background: #f2e886;\n}\n \n.yui-carousel-nav {\n zoom: 1;\n}\n \n.yui-carousel-nav:after {\n content: \".\";\n display: block;\n height: 0;\n clear: both;\n visibility: hidden; \n}\n \n.yui-carousel-button-focus {\n outline: 1px dotted #000;\n}\n\n.yui-carousel-min-width {\n min-width: 115px;\n}\n\n.yui-carousel-element {\n overflow: hidden;\n position:relative;\n\tmargin: 0 auto;\n padding:0;\n text-align:left;\n *margin:0;\n}\n\n.yui-carousel-horizontal .yui-carousel-element {\n width: 320000px;\n}\n\n.yui-carousel-vertical .yui-carousel-element {\n height:320000px;\n}\n\n.yui-skin-sam .yui-carousel-nav select {\n position:static;\n}\n\n.yui-carousel .yui-carousel-item-selected {\n border: 1px dashed #000;\n margin: 1px;\n}" -"// Copyright 2012-present Oliver Eilhard. All rights reserved.\n// Use of this source code is governed by a MIT-license.\n// See http://olivere.mit-license.org/license.txt for details.\n\npackage elastic\n\nimport (\n\t\"encoding/json\"\n\t\"fmt\"\n\t\"strings\"\n)\n\n// BulkIndexRequest is a request to add a document to Elasticsearch.\n//\n// See https://www.elastic.co/guide/en/elasticsearch/reference/5.2/docs-bulk.html\n// for details.\ntype BulkIndexRequest struct {\n\tBulkableRequest\n\tindex string\n\ttyp string\n\tid string\n\topType string\n\trouting string\n\tparent string\n\tversion int64 // default is MATCH_ANY\n\tversionType string // default is \"internal\"\n\tdoc interface{}\n\tpipeline string\n\tretryOnConflict *int\n\tttl string\n\n\tsource []string\n}\n\n// NewBulkIndexRequest returns a new BulkIndexRequest.\n// The operation type is \"index\" by default.\nfunc NewBulkIndexRequest() *BulkIndexRequest {\n\treturn &BulkIndexRequest{\n\t\topType: \"index\",\n\t}\n}\n\n// Index specifies the Elasticsearch index to use for this index request.\n// If unspecified, the index set on the BulkService will be used.\nfunc (r *BulkIndexRequest) Index(index string) *BulkIndexRequest {\n\tr.index = index\n\tr.source = nil\n\treturn r\n}\n\n// Type specifies the Elasticsearch type to use for this index request.\n// If unspecified, the type set on the BulkService will be used.\nfunc (r *BulkIndexRequest) Type(typ string) *BulkIndexRequest {\n\tr.typ = typ\n\tr.source = nil\n\treturn r\n}\n\n// Id specifies the identifier of" -"// 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\npackage jpeg\n\n// This is a Go translation of idct.c from\n//\n// http://standards.iso.org/ittf/PubliclyAvailableStandards/ISO_IEC_13818-4_2004_Conformance_Testing/Video/verifier/mpeg2decode_960109.tar.gz\n//\n// which carries the following notice:\n\n/* Copyright (C) 1996, MPEG Software Simulation Group. All Rights Reserved. */\n\n/*\n * Disclaimer of Warranty\n *\n * These software programs are available to the user without any license fee or\n * royalty on an \"as is\" basis. The MPEG Software Simulation Group disclaims\n * any and all warranties, whether express, implied, or statuary, including any\n * implied warranties or merchantability or of fitness for a particular\n * purpose. In no event shall the copyright-holder be liable for any\n * incidental, punitive, or consequential damages of any kind whatsoever\n * arising from the use of these programs.\n *\n * This disclaimer of warranty extends to the user of these programs and user's\n * customers, employees, agents, transferees, successors, and assigns.\n *\n * The MPEG Software Simulation Group does not represent or warrant that the\n * programs furnished hereunder are free of infringement of any third-party\n * patents.\n *" -"// RUN: %clang_cc1 -emit-llvm -fblocks -debug-info-kind=limited -triple x86_64-apple-darwin14 -x objective-c < %s -o - | FileCheck %s\n// CHECK: !DIDerivedType(tag: DW_TAG_member, name: \"__FuncPtr\"\n// CHECK-SAME: baseType: ![[PTR:[0-9]+]]\n// CHECK: ![[PTR]] = !DIDerivedType(tag: DW_TAG_pointer_type,\n// CHECK-SAME: baseType: ![[FNTYPE:[0-9]+]]\n// CHECK: ![[FNTYPE]] = !DISubroutineType(types: ![[ARGS:[0-9]+]])\n// CHECK: ![[ARGS]] = !{![[BOOL:.*]], ![[ID:.*]]}\n#define nil ((void*) 0)\ntypedef signed char BOOL;\n// CHECK: ![[BOOL]] = !DIDerivedType(tag: DW_TAG_typedef, name: \"BOOL\"\n// CHECK-SAME: line: [[@LINE-2]]\n// CHECK: ![[ID]] = !DIDerivedType(tag: DW_TAG_typedef, name: \"id\"\n\ntypedef BOOL (^SomeKindOfPredicate)(id obj);\nint main()\n{\n SomeKindOfPredicate p = ^BOOL(id obj) { return obj != nil; };\n // CHECK: !DIDerivedType(tag: DW_TAG_member, name: \"__FuncPtr\",\n // CHECK-SAME: line: [[@LINE-2]]\n // CHECK-SAME: size: 64, offset: 128,\n return p(nil);\n}" -" TODO list for libpcap\n=======================\n\nImportant stuff (to be done before the next release)\n---------------\n\nGeneral\n\n- configure should not be in Git. Most open source projects have an \n autogen.sh script to run autoconf etc. after checkout. I think we \n should stick to the standard. \n\n- The source files should be better documented. There is no official \n design guideline for what is done where. There should be a common coding\n style (okay, you can guess that by looking at the code) and a guide for\n what needs to be documented.\n\nLess urgent items\n-----------------\n\n- Better documentation and cleanup of the interface. I am seeing a few \n problems at the first glance which needs fixing:\n + pcap_lookupnet makes little to no sense with protocols != IPv4\n + not very well suited for interactive programs (think ethereal). There\n should be a way for the application to get a file descriptor which it\n has to monitor and a callback in pcap which has to be called on\n activity (XXX - \"pcap_fileno()\" handles the first part, although\n \"select()\" and \"poll()\" don't work on BPF devices on most BSDs, and\n you can call \"pcap_dispatch()\" as the dispatch routine after putting\n the descriptor into non-blocking" -"// Copyright (c) Microsoft Corporation. All rights reserved.\n// Licensed under the MIT License.\n\nnamespace Microsoft.Quantum.Math {\n open Microsoft.Quantum.Intrinsic;\n open Microsoft.Quantum.Canon;\n open Microsoft.Quantum.Convert;\n open Microsoft.Quantum.Random;\n\n @Deprecated(\"Microsoft.Quantum.Random.DrawRandomInt\")\n operation RandomIntPow2 (maxBits : Int) : Int {\n return DrawRandomInt(0, 2^maxBits - 1);\n }\n \n @Deprecated(\"Microsoft.Quantum.Random.DrawRandomInt\")\n operation RandomInt (maxInt : Int) : Int {\n return DrawRandomInt(0, maxInt - 1);\n }\n \n \n @Deprecated(\"Microsoft.Quantum.Random.DrawRandomDouble\")\n operation RandomReal (bitsRandom : Int) : Double {\n if (bitsRandom < 1) {\n fail $\"Number of random bits must be greater than 0.\";\n }\n \n return IntAsDouble(RandomIntPow2(bitsRandom)) / PowD(2.0, IntAsDouble(bitsRandom));\n }\n\n @Deprecated(\"Microsoft.Quantum.Random.DrawRandomPauli\")\n operation RandomSingleQubitPauli() : Pauli {\n return Snd(MaybeChooseElement([PauliI, PauliX, PauliY, PauliZ], DiscreteUniformDistribution(0, 3)));\n }\n\n}" -"/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */\n/* ***** BEGIN LICENSE BLOCK *****\n * Version: MPL 1.1/GPL 2.0/LGPL 2.1\n *\n * The contents of this file are subject to the Mozilla Public License Version\n * 1.1 (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 * http://www.mozilla.org/MPL/\n *\n * Software distributed under the License is distributed on an \"AS IS\" basis,\n * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License\n * for the specific language governing rights and limitations under the\n * License.\n *\n * The Original Code is JavaScript Engine testing utilities.\n *\n * The Initial Developer of the Original Code is\n * Mozilla Foundation.\n * Portions created by the Initial Developer are Copyright (C) 2007\n * the Initial Developer. All Rights Reserved.\n *\n * Contributor(s): Brendan Eich\n *\n * Alternatively, the contents of this file may be used under the terms of\n * either the GNU General Public License Version 2 or later (the \"GPL\"), or\n * the GNU Lesser General Public License Version 2.1 or later (the \"LGPL\"),\n * in which case the" -"/* Copyright 2013-2015 MongoDB 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\nusing System;\nusing MongoDB.Driver.Core.Clusters;\nusing MongoDB.Driver.Core.Connections;\nusing MongoDB.Driver.Core.Servers;\n\nnamespace MongoDB.Driver.Core.Events\n{\n /// \n /// \n /// Occurs after a connection is checked out of the pool.\n /// \n public struct ConnectionPoolCheckedOutConnectionEvent\n {\n private readonly ConnectionId _connectionId;\n private readonly TimeSpan _duration;\n private readonly long? _operationId;\n\n /// \n /// Initializes a new instance of the struct.\n /// \n /// The connection identifier.\n /// The duration of time it took to check out the connection.\n /// The operation identifier.\n public ConnectionPoolCheckedOutConnectionEvent(ConnectionId connectionId, TimeSpan duration, long? operationId)\n {\n _connectionId = connectionId;\n _duration = duration;\n _operationId = operationId;\n }\n\n /// \n /// Gets" -"/*\n * Copyright (c) 2016 Nordic Semiconductor ASA\n * All rights reserved.\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 *\n * 1. Redistributions of source code must retain the above copyright notice, this\n * list of conditions and the following disclaimer.\n *\n * 2. Redistributions in binary form must reproduce the above copyright notice, this\n * list of conditions and the following disclaimer in the documentation and/or\n * other materials provided with the distribution.\n *\n * 3. Neither the name of Nordic Semiconductor ASA nor the names of other\n * contributors to this software may be used to endorse or promote products\n * derived from this software without specific prior written permission.\n *\n * 4. This software must only be used in or with a processor manufactured by Nordic\n * Semiconductor ASA, or in or with a processor manufactured by a third party that\n * is used in combination with a processor manufactured by Nordic Semiconductor.\n *\n * 5. Any software provided in binary or object form under this license must not be\n * reverse engineered, decompiled, modified and/or disassembled.\n *\n * THIS" -"# -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-\n# ***** BEGIN LICENSE BLOCK *****\n# Version: MPL 1.1/GPL 2.0/LGPL 2.1\n#\n# The contents of this file are subject to the Mozilla Public License Version\n# 1.1 (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# http://www.mozilla.org/MPL/\n#\n# Software distributed under the License is distributed on an \"AS IS\" basis,\n# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License\n# for the specific language governing rights and limitations under the\n# License.\n#\n# The Original Code is mozilla.org code.\n#\n# The Initial Developer of the Original Code is\n# Netscape Communications Corporation.\n# Portions created by the Initial Developer are Copyright (C) 1998\n# the Initial Developer. All Rights Reserved.\n#\n# Contributor(s):\n# Alec Flett (original author of history.js)\n# Seth Spitzer (port to Places)\n# Asaf Romano \n#\n# Alternatively, the contents of this file may be used under the terms of\n# either the GNU General Public License Version 2 or later (the \"GPL\"), or\n# the GNU" -"/* rc-technisat-usb2.c - Keytable for SkyStar HD USB\n *\n * Copyright (C) 2010 Patrick Boettcher,\n * Kernel Labs Inc. PO Box 745, St James, NY 11780\n *\n * Development was sponsored by Technisat Digital UK Limited, whose\n * registered office is Witan Gate House 500 - 600 Witan Gate West,\n * Milton Keynes, MK9 1SH\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 *\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., 675 Mass Ave, Cambridge, MA 02139, USA.\n *\n * THIS PROGRAM IS PROVIDED \"AS IS\" AND BOTH THE COPYRIGHT HOLDER AND\n * TECHNISAT DIGITAL UK LTD DISCLAIM ALL WARRANTIES WITH REGARD TO\n * THIS PROGRAM INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY OR\n * FITNESS FOR A PARTICULAR PURPOSE. NEITHER THE COPYRIGHT HOLDER\n * NOR TECHNISAT DIGITAL UK LIMITED SHALL BE LIABLE FOR ANY SPECIAL,\n * DIRECT, INDIRECT OR CONSEQUENTIAL" -"// Copyright 2014 The Prometheus Authors\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// Build only when actually fuzzing\n// +build gofuzz\n\npackage expfmt\n\nimport \"bytes\"\n\n// Fuzz text metric parser with with github.com/dvyukov/go-fuzz:\n//\n// go-fuzz-build github.com/prometheus/common/expfmt\n// go-fuzz -bin expfmt-fuzz.zip -workdir fuzz\n//\n// Further input samples should go in the folder fuzz/corpus.\nfunc Fuzz(in []byte) int {\n\tparser := TextParser{}\n\t_, err := parser.TextToMetricFamilies(bytes.NewReader(in))\n\n\tif err != nil {\n\t\treturn 0\n\t}\n\n\treturn 1\n}" -"/**\n * @fileoverview Comments inside children section of tag should be placed inside braces.\n * @author Ben Vinegar\n * @deprecated\n */\n'use strict';\n\n// ------------------------------------------------------------------------------\n// Rule Definition\n// ------------------------------------------------------------------------------\n\nvar util = require('util');\nvar jsxNoCommentTextnodes = require('./jsx-no-comment-textnodes');\nvar isWarnedForDeprecation = false;\n\nmodule.exports = {\n meta: {\n docs: {\n description: 'Comments inside children section of tag should be placed inside braces',\n category: 'Possible Errors',\n recommended: false\n },\n\n schema: [{\n type: 'object',\n properties: {},\n additionalProperties: false\n }]\n },\n\n create: function(context) {\n return util._extend(jsxNoCommentTextnodes.create(context), {\n Program: function() {\n if (isWarnedForDeprecation || /\\=-(f|-format)=/.test(process.argv.join('='))) {\n return;\n }\n\n /* eslint-disable no-console */\n console.log('The react/no-comment-textnodes rule is deprecated. Please ' +\n 'use the react/jsx-no-comment-textnodes rule instead.');\n /* eslint-enable no-console */\n isWarnedForDeprecation = true;\n }\n });\n }\n};" -"China's exports climbed again in October due to sluggish domestic demand, faster payment of export tax rebates and an expansion of credit to exporters, newspapers and a government economist said on Wednesday.\r\nThe upturn in exports was expected to continue through the first half of 1997, said Wang Jian, a researcher with the cabinet's State Planning Commission.\r\nExports rose for the fourth consecutive month in October, jumping 23.3 percent to $15.22 billion from a year ago, said the International Business Daily, a newspaper published by the Ministry of Foreign Trade and Economic Cooperation.\r\nThe healthy exports performance helped the nation register its biggest monthly trade surplus of the year. The surplus stood at $3.91 billion in October compared with $3.2 billion in September, the newspaper said.\r\n\"This kind of rebound in exports ... is estimated to last until the first half of next year,\" Wang told Reuters in a telephone interview.\r\nWang attributed the upturn to slow domestic demand, forcing manufacturers to look to overseas markets.\r\nAlso, domestic enterprises had adjusted to a cut in government-paid export tax rebates, he said. The government slashed the rebate on exports of industrial products to 9.0 percent from 14.0 percent on January 1," -"\n\n\n\n \n true\n" -"/* -*- linux-c -*-\n * drivers/char/viotape.c\n *\n * iSeries Virtual Tape\n *\n * Authors: Dave Boutcher \n * Ryan Arnold \n * Colin Devilbiss \n * Stephen Rothwell \n *\n * (C) Copyright 2000-2004 IBM Corporation\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) anyu 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 Foundation,\n * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n *\n * This routine provides access to tape drives owned and managed by an OS/400\n * partition running on the same box as this Linux partition.\n *\n * All tape operations are performed by sending messages back" -"#!/usr/bin/env python\n# -*- coding: utf-8 -*-\n#\n# An example of a standalone application using the internal API of Gunicorn.\n#\n# $ python standalone_app.py\n#\n# This file is part of gunicorn released under the MIT license.\n# See the NOTICE for more information.\n\nfrom __future__ import unicode_literals\n\nimport multiprocessing\n\nimport gunicorn.app.base\n\nfrom gunicorn.six import iteritems\n\n\ndef number_of_workers():\n return (multiprocessing.cpu_count() * 2) + 1\n\n\ndef handler_app(environ, start_response):\n response_body = b'Works fine'\n status = '200 OK'\n\n response_headers = [\n ('Content-Type', 'text/plain'),\n ]\n\n start_response(status, response_headers)\n\n return [response_body]\n\n\nclass StandaloneApplication(gunicorn.app.base.BaseApplication):\n\n def __init__(self, app, options=None):\n self.options = options or {}\n self.application = app\n super(StandaloneApplication, self).__init__()\n\n def load_config(self):\n config = dict([(key, value) for key, value in iteritems(self.options)\n if key in self.cfg.settings and value is not None])\n for key, value in iteritems(config):\n self.cfg.set(key.lower(), value)\n\n def load(self):\n return self.application\n\n\nif __name__ == '__main__':\n options = {\n 'bind': '%s:%s' % ('127.0.0.1', '8080'),\n 'workers': number_of_workers(),\n }\n StandaloneApplication(handler_app, options).run()" -"/*\n * * Copyright (C) 2013-2020 Matt Baxter https://kitteh.org\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, copy,\n * modify, merge, publish, distribute, sublicense, and/or sell copies\n * 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\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 OF\n * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS\n * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\n * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\npackage org.kitteh.irc.client.library.util;\n\nimport org.checkerframework.checker.nullness.qual.NonNull;\nimport org.kitteh.irc.client.library.element.User;\n\n/**\n *" -"/*\n===========================================================================\n\nDoom 3 GPL Source Code\nCopyright (C) 1999-2011 id Software LLC, a ZeniMax Media company.\n\nThis file is part of the Doom 3 GPL Source Code (\"Doom 3 Source Code\").\n\nDoom 3 Source Code 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 3 of the License, or\n(at your option) any later version.\n\nDoom 3 Source Code 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 Doom 3 Source Code. If not, see .\n\nIn addition, the Doom 3 Source Code is also subject to certain additional terms. You should have received a copy of these additional terms immediately following the terms and conditions of the GNU General Public License which accompanied the Doom 3 Source Code. If not, please request a copy in writing from id Software at the address below.\n\nIf you have questions concerning" -"---\ntitle: \"Registering Extensions of the .NET Framework | Microsoft Docs\"\nms.date: 11/15/2016\nms.prod: \"visual-studio-dev14\"\nms.technology: msbuild\nms.topic: conceptual\nhelpviewer_keywords: \n - \"Add References dialog box, registering extensions of the .NET Framework\"\n - \"MSBuild, registering extensions of the .NET Framework\"\n - \".NET Framework extensions, registering\"\nms.assetid: deee6f53-ea87-4b88-a120-bea589822e03\ncaps.latest.revision: 8\nauthor: mikejo5000\nms.author: mikejo\nmanager: jillfra\n---\n# Registering Extensions of the .NET Framework\n[!INCLUDE[vs2017banner](../includes/vs2017banner.md)]\n\nYou can develop an assembly that extends a specific version of the .NET Framework. To enable the assembly to appear in the Visual Studio **Add References** dialog box, you must add the folder that contains it to the system registry. \n \n For example, assume that the Trey Research company has developed a library that extends the .NET Framework 4, and wants the library assemblies to appear in the **Add References** dialog box when a project targets the .NET Framework 4. Also assume that the assemblies are 32-bit assemblies running on a 32-bit computer or 64-bit assemblies running on a 64-bit computer, and that they will be installed in the C:\\TreyResearch\\Extensions4\\ folder. \n \n Register this folder by using this key: HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\\\.NETFramework\\v4.0.21006\\AssemblyFoldersEx\\TreyResearch\\\\. Give the key this default value: C:\\TreyResearch\\Extensions4. \n \n> [!NOTE]\n> The build number of the .NET Framework version may" -"// { dg-do run { target c++11 } }\n// { dg-require-cstdint \"\" }\n//\n// 2010-02-16 Paolo Carlini \n//\n// Copyright (C) 2010-2019 Free Software Foundation, Inc.\n//\n// This file is part of the GNU ISO C++ Library. This library is free\n// software; you can redistribute it and/or modify it under the\n// terms of the GNU General Public License as published by the\n// Free Software Foundation; either version 3, or (at your option)\n// 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\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 library; see the file COPYING3. If not see\n// .\n\n#include \n\nvoid\ntest01()\n{\n std::shuffle_order_engine\n <\n std::linear_congruential_engine,\n 256\n > e(1);\n\n const auto f(e);\n auto g(f);\n g = g; // Suppress unused warning.\n}\n\nint main()\n{\n test01();\n return 0;\n}" -"/*\n * Copyright (C) 2017 Open Whisper Systems\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 * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see .\n */\n\npackage org.whispersystems.contactdiscovery.util;\n\nimport java.io.IOException;\nimport java.io.InputStream;\nimport java.io.OutputStream;\n\npublic class FileUtils {\n\n public static void copy(InputStream in, OutputStream out) throws IOException {\n byte[] buffer = new byte[4096];\n int read;\n\n while ((read = in.read(buffer)) != -1) {\n out.write(buffer, 0, read);\n }\n\n in.close();\n out.close();\n }\n\n}" -"//\n// SnapKit\n//\n// Copyright (c) 2011-Present SnapKit Team - https://github.com/SnapKit\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#if os(iOS) || os(tvOS)\n import UIKit\n#else\n import" -"// Copyright 2011 The Closure Library 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/**\n * @fileoverview An interface for transition animation. This is a simple\n * interface that allows for playing and stopping a transition. It adds\n * a simple event model with BEGIN and END event.\n *\n */\n\ngoog.provide('goog.fx.Transition');\ngoog.provide('goog.fx.Transition.EventType');\n\n\n\n/**\n * An interface for programmatic transition. Must extend\n * {@code goog.events.EventTarget}.\n * @interface\n */\ngoog.fx.Transition = function() {};\n\n\n/**\n * Transition event types.\n * @enum {string}\n */\ngoog.fx.Transition.EventType = {\n /** Dispatched when played for the first time OR when it is resumed. */\n PLAY: 'play',\n\n /** Dispatched only when the animation starts from the beginning. */\n BEGIN: 'begin',\n\n /** Dispatched only" -"open Core.Std\nopen Async.Std\n\n(* Generate a DuckDuckGo search URI from a query string *)\nlet query_uri ~server query =\n let base_uri =\n Uri.of_string (String.concat [\"http://\";server;\"/?format=json\"])\n in\n Uri.add_query_param base_uri (\"q\", [query])\n\n(* Extract the \"Definition\" or \"Abstract\" field from the DuckDuckGo results *)\nlet get_definition_from_json json =\n match Yojson.Safe.from_string json with\n | `Assoc kv_list ->\n let find key =\n begin match List.Assoc.find kv_list key with\n | None | Some (`String \"\") -> None\n | Some s -> Some (Yojson.Safe.to_string s)\n end\n in\n begin match find \"Abstract\" with\n | Some _ as x -> x\n | None -> find \"Definition\"\n end\n | _ -> None\n(* part 1 *)\n(* Execute the DuckDuckGo search *)\nlet get_definition ~server ~interrupt word =\n try_with (fun () ->\n Cohttp_async.Client.get ~interrupt (query_uri ~server word)\n >>= fun (_, body) ->\n Pipe.to_list body\n >>| fun strings ->\n (word, get_definition_from_json (String.concat strings)))\n >>| function\n | Ok (word,result) -> (word, Ok result)\n | Error exn -> (word, Error exn)\n(* part 2 *)\nlet get_definition_with_timeout ~server ~timeout word =\n get_definition ~server ~interrupt:(after timeout) word\n >>| fun (word,result) ->\n let result' = match result with\n | Ok _ as x -> x\n | Error _ -> Error \"Unexpected failure\"\n in" -"\n#pragma once\n\n#include \"PluginInterface.h\"\n#include \"ExportPyPlugin.h\"\n#include \"InputData.h\"\n#include \"CatalogItem.h\"\n\nnamespace pluginpy {\n\nclass PluginWrapper : public launchy::PluginInterface {\n\npublic:\n PluginWrapper(exportpy::Plugin* plugin);\n virtual ~PluginWrapper();\n\npublic:\n virtual int msg(int msgId, void* wParam = nullptr, void* lParam = nullptr);\n\nprivate:\n void init();\n void setPath(const QString* path);\n void getLabels(QList* inputData);\n void getID(uint* id);\n void getName(QString* name);\n void getResults(QList* inputData, QList* result);\n void getCatalog(QList* catItem);\n void launchItem(QList* inputData, launchy::CatItem* catItem);\n bool hasDialog();\n void doDialog(QWidget* parent, QWidget** dialog);\n void endDialog(bool accept);\n void launchyShow();\n void launchyHide();\n\n //! Does the actual work of calling a Python function\n int dispatchFunction(int msgId, void* wParam, void* lParam);\n\nprivate:\n exportpy::Plugin* m_plugin;\n static QMutex s_inPythonLock;\n};\n\n}" -"# Website for Deep Learning Camp Jeju\n\n- [Website for Deep Learning Camp Jeju](#website-for-deep-learning-camp-jeju)\n - [Requirements](#requirements)\n - [Development](#development)\n - [Deployment](#deployment)\n - [Project Structures](#project-structures)\n\n## Requirements\n\n1. Install [bundler](http://bundler.io/)\n2. Run `bundle install`\n\n## Development\n\n```bash\n# Run local server\n$ make serve\n```\n\n## Deployment\n\n- Install ghp-import (`pip install ghp-import`)\n\n```bash\n# it will push everything inside of _site to origin/master_\nmake github\n```\n\n## Project Structures\n\n- `_includes` contains components\n- `_layouts` contains page template\n- `_sass` contains sass\n- `2018` contains actual contents\n\n```bash\ntree -L 1 -I '*.org' .\n```\n\n .\n \u251c\u2500\u2500 2017\n \u251c\u2500\u2500 2018\n \u251c\u2500\u2500 assets\n \u251c\u2500\u2500 _config_dev.yml\n \u251c\u2500\u2500 _config.yml\n \u251c\u2500\u2500 favicon.ico\n \u251c\u2500\u2500 Gemfile\n \u251c\u2500\u2500 Gemfile.lock\n \u251c\u2500\u2500 _includes\n \u251c\u2500\u2500 index.md\n \u251c\u2500\u2500 _layouts\n \u251c\u2500\u2500 Makefile\n \u251c\u2500\u2500 README.md\n \u251c\u2500\u2500 _sass\n \u2514\u2500\u2500 _site\n\n 7 directories, 8 files" -"# Using Distillery with systemd\n\n!!! warning\n You need to be aware that when running `bin/myapp upgrade `,\n this command will be executed in the *callers* environment, not\n the environment defined by the systemd unit. If you need environment\n variables to be available during the upgrade, then you need to either\n execute it with the same environment as the systemd unit, or export those\n environment variables in the calling environment.\n\nHere are two general approaches to running a Distillery release with systemd:\n\n## Run app as daemon using `start` and a `forking` Systemd service *with* pidfile\n\nProperties of this approach:\n\n * Your app will be automatically restarted if it crashes\n * Logs will be written to the `var/log` directory in your release\n * If your app is killed suddenly (on Linux this would mean receiving a `SIGKILL`,as used by \"OOM Killer\") then your app may not get a chance to remove the pidfile and so it may not be restarted. If this is a concern kill your app with `pkill -9 beam.smp` and ensure that the pifile is removed and that the systemd detects strats it again.\n\n```systemd\n[Unit]\nDescription=My App\nAfter=network.target\n\n[Service]\nType=forking\nUser=appuser\nGroup=appuser\nWorkingDirectory=/home/appuser/myapp\nExecStart=/home/appuser/myapp/bin/myapp start\nExecStop=/home/appuser/myapp/bin/myapp" -"/*******************************************************************************\n * Copyright (c) 2012 GigaSpaces Technologies Ltd. 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 *******************************************************************************/\npackage org.cloudifysource.domain.scalingrules;\n\n/**************************\n * Domain Objects used by the Cloudify scaling rules.\n * \n * @author itaif.\n *****************************/" -"# Windows Terminal Sequences\n\nThis library allow for enabling Windows terminal color support for Go.\n\nSee [Console Virtual Terminal Sequences](https://docs.microsoft.com/en-us/windows/console/console-virtual-terminal-sequences) for details.\n\n## Usage\n\n```go\nimport (\n\t\"syscall\"\n\t\n\tsequences \"github.com/konsorten/go-windows-terminal-sequences\"\n)\n\nfunc main() {\n\tsequences.EnableVirtualTerminalProcessing(syscall.Stdout, true)\n}\n\n```\n\n## Authors\n\nThe tool is sponsored by the [marvin + konsorten GmbH](http://www.konsorten.de).\n\nWe thank all the authors who provided code to this library:\n\n* Felix Kollmann\n\n## License\n\n(The MIT License)\n\nCopyright (c) 2018 marvin + konsorten GmbH (open-source@konsorten.de)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR" -"/***\n*chandler4.c - Structured Exception Handling part of _except_handler4\n*\n* Copyright (c) Microsoft Corporation. All rights reserved.\n*\n*Purpose:\n* Defines _except_handler4, the language specific handler for structured\n* exception handling on x86. First created for Visual C++ 2005, replacing\n* _except_handler3, with the addition of security cookie checks.\n*\n* For the CRT DLL, this actually defines _except_handler4_common, which\n* performs the real processing for chandler4gs.c's stub routine\n* _except_handler4. We need a stub that is linked statically into an\n* image, so it can access the image-local global security cookie. But all\n* it needs to do is pass through to this code, sending in the address of\n* the global cookie and the image's __security_check_cookie routine. This\n* larger routine can then be placed in the CRT DLL.\n*\n*******************************************************************************/\n\n#include \n#include \n\n// copied from ntxcapi.h\n#define EXCEPTION_UNWINDING 0x2 // Unwind is in progress\n#define EXCEPTION_EXIT_UNWIND 0x4 // Exit unwind is in progress\n#define EXCEPTION_STACK_INVALID 0x8 // Stack out of limits or unaligned\n#define EXCEPTION_NESTED_CALL 0x10 // Nested exception handler call\n#define EXCEPTION_TARGET_UNWIND 0x20 // Target unwind in progress\n#define EXCEPTION_COLLIDED_UNWIND 0x40 // Collided exception handler call\n\n#define EXCEPTION_UNWIND (EXCEPTION_UNWINDING | EXCEPTION_EXIT_UNWIND | \\" -"/* \n * Reference Huffman coding\n * Copyright (c) Project Nayuki\n * \n * https://www.nayuki.io/page/reference-huffman-coding\n * https://github.com/nayuki/Reference-Huffman-coding\n */\n\n#pragma once\n\n#include \"BitIoStream.hpp\"\n#include \"CodeTree.hpp\"\n\n\n/* \n * Reads from a Huffman-coded bit stream and decodes symbols.\n */\nclass HuffmanDecoder final {\n\t\n\t/*---- Fields ----*/\n\t\n\t// The underlying bit input stream.\n\tprivate: BitInputStream &input;\n\t\n\t// The code tree to use in the next read() operation. Must be given a non-null value\n\t// before calling read(). The tree can be changed after each symbol decoded, as long\n\t// as the encoder and decoder have the same tree at the same point in the code stream.\n\tpublic: const CodeTree *codeTree;\n\t\n\t\n\t/*---- Constructor ----*/\n\t\n\t// Constructs a Huffman decoder based on the given bit input stream.\n\tpublic: explicit HuffmanDecoder(BitInputStream &in);\n\t\n\t\n\t/*---- Method ----*/\n\t\n\t// Reads from the input stream to decode the next Huffman-coded symbol.\n\tpublic: int read();\n\t\n};\n\n\n\n/* \n * Encodes symbols and writes to a Huffman-coded bit stream.\n */\nclass HuffmanEncoder final {\n\t\n\t/*---- Fields ----*/\n\t\n\t// The underlying bit output stream.\n\tprivate: BitOutputStream &output;\n\t\n\t// The code tree to use in the next write(uint32_t) operation. Must be given a non-null\n\t// value before calling write(). The tree can be changed after each symbol encoded," -"import _ from \"lodash\";\nimport React, { Component } from \"react\";\nimport PropTypes from \"prop-types\";\nimport TaxonThumbnail from \"../../../taxa/show/components/taxon_thumbnail\";\n\nclass SpeciesNoAPI extends Component {\n secondaryNodeList( ) {\n const {\n lifelist, detailsTaxon, setScrollPage, config, zoomToTaxon,\n search, setSpeciesPlaceFilter, setDetailsTaxon\n } = this.props;\n let nodeShouldDisplay;\n const nodeIsDescendant = ( !detailsTaxon || detailsTaxon === \"root\" )\n ? ( ) => true\n : node => node.left >= detailsTaxon.left && node.right <= detailsTaxon.right;\n const obsCount = node => {\n if ( lifelist.speciesPlaceFilter\n && search\n && search.searchResponse\n && search.loaded\n ) {\n return search.searchResponse.results[node.id] || 0;\n }\n return node.descendant_obs_count;\n };\n if ( lifelist.speciesViewRankFilter === \"all\" ) {\n if ( !detailsTaxon || detailsTaxon === \"root\" ) {\n nodeShouldDisplay = nodeIsDescendant;\n } else {\n nodeShouldDisplay = node => (\n ( detailsTaxon.left === detailsTaxon.right - 1 && node.id === detailsTaxon.id )\n || ( node.left > detailsTaxon.left && node.right < detailsTaxon.right )\n );\n }\n } else if ( lifelist.speciesViewRankFilter === \"children\" ) {\n nodeShouldDisplay = node => node.parent_id === ( !detailsTaxon || detailsTaxon === \"root\" ? 0 : detailsTaxon.id );\n } else if ( lifelist.speciesViewRankFilter === \"major\" ) {\n nodeShouldDisplay = node => node.rank_level % 10 === 0;\n } else if ( lifelist.speciesViewRankFilter === \"kingdoms\" ) {\n nodeShouldDisplay = node => node.rank_level" -"// Code generated by cmd/cgo -godefs; DO NOT EDIT.\n// cgo -godefs defs_darwin.go\n\npackage socket\n\ntype iovec struct {\n\tBase *byte\n\tLen uint64\n}\n\ntype msghdr struct {\n\tName *byte\n\tNamelen uint32\n\tPad_cgo_0 [4]byte\n\tIov *iovec\n\tIovlen int32\n\tPad_cgo_1 [4]byte\n\tControl *byte\n\tControllen uint32\n\tFlags int32\n}\n\ntype cmsghdr struct {\n\tLen uint32\n\tLevel int32\n\tType int32\n}\n\ntype sockaddrInet struct {\n\tLen uint8\n\tFamily uint8\n\tPort uint16\n\tAddr [4]byte /* in_addr */\n\tZero [8]int8\n}\n\ntype sockaddrInet6 struct {\n\tLen uint8\n\tFamily uint8\n\tPort uint16\n\tFlowinfo uint32\n\tAddr [16]byte /* in6_addr */\n\tScope_id uint32\n}\n\nconst (\n\tsizeofIovec = 0x10\n\tsizeofMsghdr = 0x30\n\tsizeofCmsghdr = 0xc\n\n\tsizeofSockaddrInet = 0x10\n\tsizeofSockaddrInet6 = 0x1c\n)" -"#!/usr/bin/env python\n\"\"\"\nThis script should behave the same as the `nosetests` command.\n\nThe reason for its existence is that on some systems, it may not be obvious to\nfind where nosetests is installed in order to run it in a different process.\n\nIt is also used to load the KnownFailure plugin, in order to hide\nKnownFailureTests error messages. Use --without-knownfailure to\ndisable that plugin.\n\n`run_tests_in_batch.py` will in turn call back this script in another process.\n\"\"\"\nfrom __future__ import print_function\n\n__authors__ = \"Olivier Delalleau, Pascal Lamblin, Eric Larsen\"\n__contact__ = \"delallea@iro\"\n\nimport logging\n_logger = logging.getLogger('theano.bin.theano-nose')\n\nimport os\nimport nose\nimport textwrap\nimport sys\nfrom nose.plugins import Plugin\n\ndef main():\n # Handle the --theano arguments\n if \"--theano\" in sys.argv:\n i = sys.argv.index(\"--theano\")\n import theano\n sys.argv[i] = theano.__path__[0]\n\n # Many Theano tests suppose device=cpu, so we need to raise an\n # error if device==gpu.\n # I don't know how to do this check only if we use theano-nose on\n # Theano tests. So I make an try..except in case the script get\n # reused elsewhere.\n # We should not import theano before call nose.main()\n # As this cause import problem with nosetests.\n # Should we find a way to don't" -"\ufeffusing System;\nusing System.Runtime.Serialization;\n\nnamespace FourthCoffee.ExceptionLogger\n{\n /// \n /// Represents the class in the object model.\n /// \n [Serializable]\n public class ExceptionEntry\n : ISerializable\n {\n /// \n /// Represents the exception title.\n /// \n public string Title { get; set; }\n\n /// \n /// Represents the exception details.\n /// \n public string Details { get; set; }\n\n /// \n /// Create an instance of the ExceptionEntry class.\n /// \n public ExceptionEntry()\n {\n }\n\n public ExceptionEntry(SerializationInfo info, StreamingContext context)\n {\n this.Title = info.GetString(\"Title\");\n this.Details = info.GetString(\"Details\");\n }\n\n public void GetObjectData(SerializationInfo info, StreamingContext context)\n {\n info.AddValue(\"Title\", this.Title);\n info.AddValue(\"Details\", this.Details);\n }\n }\n}" -"var data = [{\n name: \"creativity\",\n weight: 31\n}, {\n name: \"creative\",\n weight: 22\n}, {\n name: \"intelligence\",\n weight: 15\n}, {\n name: \"more\",\n weight: 12\n}, {\n name: \"people\",\n weight: 12\n}, {\n name: \"theory\",\n weight: 11\n}, {\n name: \"problem\",\n weight: 11\n}, {\n name: \"thinking\",\n weight: 11\n}, {\n name: \"been\",\n weight: 11\n}, {\n name: \"can\",\n weight: 11\n}, {\n name: \"process\",\n weight: 11\n}, {\n name: \"new\",\n weight: 10\n}, {\n name: \"individual\",\n weight: 10\n}, {\n name: \"model\",\n weight: 10\n}, {\n name: \"ideas\",\n weight: 9\n}, {\n name: \"levels\",\n weight: 9\n}, {\n name: \"processes\",\n weight: 9\n}, {\n name: \"different\",\n weight: 9\n}, {\n name: \"high\",\n weight: 9\n}, {\n name: \"motivation\",\n weight: 9\n}, {\n name: \"research\",\n weight: 9\n}, {\n name: \"work\",\n weight: 8\n}, {\n name: \"cognitive\",\n weight: 8\n}, {\n name: \"team\",\n weight: 8\n}, {\n name: \"divergent\",\n weight: 8\n}, {\n name: \"tests\",\n weight: 8\n}, {\n name: \"study\",\n weight: 8\n}, {\n name: \"measures\",\n weight: 8\n}, {\n name: \"theories\",\n weight: 8\n}, {\n name: \"found\",\n weight: 8\n}, {\n name: \"solving\",\n weight: 7\n}, {\n name: \"knowledge\",\n weight: 7\n}, {\n name: \"iq\",\n weight: 7" -"// Copyright 2017 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 ignore\n\n// +godefs map struct_in_addr [4]byte /* in_addr */\n// +godefs map struct_in6_addr [16]byte /* in6_addr */\n\npackage socket\n\n/*\n#include \n\n#include \n*/\nimport \"C\"\n\nconst (\n\tsysAF_UNSPEC = C.AF_UNSPEC\n\tsysAF_INET = C.AF_INET\n\tsysAF_INET6 = C.AF_INET6\n\n\tsysSOCK_RAW = C.SOCK_RAW\n)\n\ntype iovec C.struct_iovec\n\ntype msghdr C.struct_msghdr\n\ntype cmsghdr C.struct_cmsghdr\n\ntype sockaddrInet C.struct_sockaddr_in\n\ntype sockaddrInet6 C.struct_sockaddr_in6\n\nconst (\n\tsizeofIovec = C.sizeof_struct_iovec\n\tsizeofMsghdr = C.sizeof_struct_msghdr\n\tsizeofCmsghdr = C.sizeof_struct_cmsghdr\n\n\tsizeofSockaddrInet = C.sizeof_struct_sockaddr_in\n\tsizeofSockaddrInet6 = C.sizeof_struct_sockaddr_in6\n)" -"var common = require('../../common');\nvar connection = common.createConnection();\nvar assert = require('assert');\n\ncommon.useTestDb(connection);\n\nvar table = 'escape_test';\nconnection.query([\n 'CREATE TEMPORARY TABLE `' + table + '` (',\n '`id` int(11) unsigned NOT NULL AUTO_INCREMENT,',\n '`example` varchar(255),',\n 'PRIMARY KEY (`id`)',\n ') ENGINE=InnoDB DEFAULT CHARSET=utf8'\n].join('\\n'));\n\nconnection.query('INSERT INTO ' + table + ' SET id = ?, example = ?', [1, 'array escape']);\nconnection.query('INSERT INTO ' + table + ' SET ?', {\n id: 2,\n example: 'object escape'\n});\n\nvar rows;\nconnection.query('SELECT * FROM escape_test', function(err, _rows) {\n if (err) throw err;\n\n rows = _rows;\n});\n\nconnection.end();\n\n\nprocess.on('exit', function() {\n assert.equal(rows.length, 2);\n assert.deepEqual(rows[0], {id: 1, example: 'array escape'});\n assert.deepEqual(rows[1], {id: 2, example: 'object escape'});\n});" -"aaron\nadam\nadrian\naiden\nalan\nalbert\nalberto\nalex\nalexander\nalfred\nalfredo\nallan\nallen\nalvin\nandre\nandrew\nandy\nangel\nanthony\nantonio\narmando\narnold\narron\narthur\naustin\nbarry\nben\nbenjamin\nbernard\nbill\nbilly\nbob\nbobby\nbrad\nbradley\nbrandon\nbrayden\nbrennan\nbrent\nbrett\nbrian\nbruce\nbryan\nbyron\ncaleb\ncalvin\ncameron\ncarl\ncarlos\ncarter\ncecil\nchad\ncharles\ncharlie\nchester\nchris\nchristian\nchristopher\nclarence\nclaude\nclayton\nclifford\nclifton\nclinton\nclyde\ncody\nconnor\ncorey\ncory\ncraig\ncurtis\ndale\ndan\ndaniel\ndanny\ndarrell\ndarren\ndarryl\ndaryl\ndave\ndavid\ndean\ndennis\nderek\nderrick\ndevon\ndon\ndonald\ndouglas\nduane\ndustin\ndwayne\ndwight\ndylan\nearl\neddie\nedgar\neduardo\nedward\nedwin\neli\nelijah\nelmer\nenrique\neric\nerik\nernest\nethan\neugene\nevan\neverett\nfelix\nfernando\nflenn\nfloyd\nfrancis\nfrancisco\nfrank\nfranklin\nfred\nfreddie\nfrederick\ngabe\ngabriel\ngary\ngavin\ngene\ngeorge\ngerald\ngilbert\nglen\ngordon\ngreg\ngregory\nguy\nharold\nharry\nharvey\nhector\nhenry\nherbert\nherman\nhoward\nhugh\nhunter\nian\nisaac\nisaiah\nivan\njack\njackson\njacob\njames\njamie\njar\njared\njason\njavier\njayden\njeff\njeffery\njeffrey\njeremiah\njeremy\njerome\njerry\njesse\njessie\njesus\njim\njimmie\njimmy\njoe\njoel\njohn\njohnni\njohnny\njon\njonathan\njordan\njorge\njose\njoseph\njoshua\njuan\njudd\njulian\njulio\njustin\nkarl\nkeith\nkelly\nken\nkenneth\nkent\nkevin\nkirk\nkurt\nkyle\nlance" -"text = '''\nThe Zen of Python, by Tim Peters\nBeautiful is better than ugly.\nExplicit is better than implicit.\nSimple is better than complex.\nComplex is better than complicated.\nFlat is better than nested.\nSparse is better than dense.\nReadability counts.\nSpecial cases aren't special enough to break the rules.\nAlthough practicality beats purity.\nErrors should never pass silently.\nUnless explicitly silenced.\nIn the face of ambxiguity, refuse the temptation to guess.\nThere should be one-- and preferably only one --obvious way to do it.\nAlthough that way may not be obvious at first unless you're Dutch.\nNow is better than never.\nAlthough never is often better than *right* now.\nIf the implementation is hard to explain, it's a bad idea.\nIf the implementation is easy to explain, it may be a good idea.\nNamespaces are one honking great idea -- let's do more of those!\n'''\n#\u5c06\u5b57\u7b26\u8f6c\u6362\u4e3a\u7a7a\u683c\ntext=text.replace(',',' ').replace('.',' ').replace('--',' ').replace('!',' ').replace('*',' ')\n\n#\u7edf\u4e00\u5355\u8bcd\u6210\u5c0f\u5199\ntext=text.lower()\n\n#\u62c6\u5206\u5355\u8bcd\ntext=text.split()\n\n#\u8f6c\u6362\u5b57\u7b26\u4e32\u4e3a\u5b57\u5178\na={}\nfor i in text: \n a.update({i:text.count(i)})#update\u8bed\u6cd5\u7528\u6765\u6dfb\u52a0\uff0ccount\u7528\u6765\u8ba1\u7b97\u51fa\u73b0\u6b21\u6570\nprint(a)\n\n#\u628a\u5355\u8bcd\u6309\u51fa\u73b0\u6b21\u6570\u6392\u5e8f,key=lambda c:c[1]\u4ee3\u8868\u4ee5\u5b57\u5178\u7b2c\u4e8c\u4e2a\u6570\u636e\u4e3a\u4f9d\u636e\u6392\u5217\uff0creverse=ture\u4ee3\u8868\u5012\u5e8f\uff0cfalse\u4ee3\u8868\u6b63\u5e8f\nb=sorted(a.items(),key=lambda c:c[1],reverse=True) \nprint(b)" -"#\n# Copyright (c) 2005, 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" -"/* split a file.zip file into 1MB pieces called file.z1, file.z2 etc */\n\n#include \n#include \n#include \n\nvoid main(int argc, char** argv) {\n\tlong i, j, n, done;\n\tFILE* fi, *fo;\n\tchar* buf;\n\tbuf = (char*)malloc(1024*16);\n\tif (argc != 2) {\n\t\tprintf(\"usage: splitnrn nrndisk2\\n\");\n\t\texit(1);\n\t}\n\tsprintf(buf, \"%s.zip\", argv[1]);\n\tif ((fi = fopen(buf, \"rb\")) == (FILE*)0) {\n\t\tprintf(\"can't open %s\\n\", buf);\n\t\texit(1);\n\t}\n\tn=1;\n done = 0;\n\twhile (!done) {\n\t\tsprintf(buf, \"%s.z%d\", argv[1], n);\n\t\tif ((fo = fopen(buf, \"wb\")) == (FILE*)0) {\n\t\t\tprintf(\"can't open %s\\n\", buf);\n\t\t\texit(1);\n\t\t}\n\t\tfor (j=0; j < 88; ++j) { /* 88*1024*16 = 1441792 */\n\t\t\ti = fread(buf, sizeof(char), 1024*16, fi);\n\t\t\tprintf(\"read %d\\n\", i);\n\t\t\ti = fwrite(buf, sizeof(char), i, fo);\n printf(\"write %d\\n\", i);\n\t\t\tif (i < 1024*16) {\n\t\t\t\tdone = 1;\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t\t++n;\n\t\tfclose(fo);\n\t}\n}" -"/*\n Copyright 2013 Adobe Systems Inc.;\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\npackage com.adobe.plugins;\n\npublic class FastCanvasJNI {\n\t// Native methods\n\tpublic static native void setBackgroundColor(int red, int green, int blue);\n\tpublic static native void setOrtho(int width, int height);\n\tpublic static native void addTexture(int id, int glID, int width, int height); // id's must be from 0 to numTextures-1\n\tpublic static native boolean addPngTexture(Object mgr, String path, int id, FastCanvasTextureDimension dim); // id's must be from 0 to numTextures-1\n\tpublic static native void removeTexture(int id); // id must have been passed to addTexture in the past\n public static native void render(String renderCommands);\n\tpublic static native void surfaceChanged( int width, int height );\n\tpublic static native void captureGLLayer(String callbackID, int x, int y, int width, int height, String" -"---\nauthors: Josh Wilsdon , Angela Fong \nstate: publish\n---\n\n# RFD 18 Support for using labels to select networks and packages\n\n## Current support for packages/networks in sdc-docker\n\nCurrently a user creating a docker container does not select their networks in\ntheir `docker run` commandline though they can specify the -P in order to get a\nan external NIC. The external NIC is based on the default network configured\nfor the data center. The fabric network they're given is always the network\nconfigured in UFDS as the default for their account.\n\nUsers also do not directly select their package. The package is chosen based on\nthe `-m` parameter if passed (if not, we treat as 1024m). We'll find the\nsmallest package that fits their memory limit, and since all the packages have\nthe same ratios of cpu/disk/memory all the other parameters are scaled\nappropriately.\n\n\n## Impetus\n\nIn order to allow customers to specify non-default networks, we'd like the\nability for them to add these at container creation. This will allow them to use\ndifferent network setups for different containers without needing to interact\nwith cloudapi, except to create and manage the networks themselves.\n\nIn order to support SDC" -"{\n \"cells\": [\n {\n \"cell_type\": \"markdown\",\n \"metadata\": {\n \"ExecuteTime\": {\n \"end_time\": \"2019-02-12T22:17:19.603440Z\",\n \"start_time\": \"2019-02-12T22:17:19.523397Z\"\n }\n },\n \"source\": [\n \"

    Facial Emotion Recognition - Simple Architecture

    \\n\",\n \"
    A project for the French Employment Agency
    \\n\",\n \"
    Telecom ParisTech 2018-2019
    \"\n ]\n },\n {\n \"cell_type\": \"markdown\",\n \"metadata\": {},\n \"source\": [\n \"# I. Context\"\n ]\n },\n {\n \"cell_type\": \"markdown\",\n \"metadata\": {},\n \"source\": [\n \"The aim of this notebook is to explore facial emotion recognition techniques from a live webcam video stream. \\n\",\n \"\\n\",\n \"The data set used for training is the Kaggle FER2013 emotion recognition data set : https://www.kaggle.com/c/challenges-in-representation-learning-facial-expression-recognition-challenge/data\\n\",\n \"\\n\",\n \"The models explored include :\\n\",\n \"- Manual filters \\n\",\n \"- Deep Learning Architectures\\n\",\n \"- DenseNet Inspired Architectures\\n\",\n \"\\n\",\n \"This model will be combined with voice emotion recongition as well as psychological traits extracted from text inputs, and should provide a benchmark and a deep analysis of both verbal and non-verbal insights for candidates seeking for a job and their performance during an interview.\"\n ]\n },\n {\n \"cell_type\": \"markdown\",\n \"metadata\": {},\n \"source\": [\n \"# II. General imports\"\n ]\n },\n {\n \"cell_type\": \"markdown\",\n \"metadata\": {},\n \"source\": [\n \"Versions used :\"\n ]\n },\n {\n \"cell_type\": \"raw\",\n \"metadata\": {},\n \"source\": [\n \"Python : 3.6.5\\n\",\n \"Tensorflow :" -"/* A substitute for POSIX 2008 , for platforms that have issues.\n\n Copyright (C) 2009-2017 Free Software Foundation, Inc.\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 3, or (at your option)\n 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\n/* Written by Eric Blake. */\n\n/*\n * POSIX 2008 for platforms that have issues.\n * \n */\n\n#if __GNUC__ >= 3\n@PRAGMA_SYSTEM_HEADER@\n#endif\n@PRAGMA_COLUMNS@\n\n#if defined __need_wchar_t || defined __need_size_t \\\n || defined __need_ptrdiff_t || defined __need_NULL \\\n || defined __need_wint_t\n/* Special invocation convention inside gcc header files. In\n particular, gcc provides a version of that blindly\n redefines NULL even when __need_wint_t was defined, even though\n wint_t is not normally provided by . Hence, we must\n remember if special invocation" -"/*M///////////////////////////////////////////////////////////////////////////////////////\n//\n// IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.\n//\n// By downloading, copying, installing or using the software you agree to this license.\n// If you do not agree to this license, do not download, install,\n// copy or use the software.\n//\n//\n// Intel License Agreement\n// For Open Source Computer Vision Library\n//\n// Copyright (C) 2000, Intel Corporation, all rights reserved.\n// Third party copyrights are property of their respective owners.\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//\n// * Redistribution's of source code must retain the above copyright notice,\n// this list of conditions and the following disclaimer.\n//\n// * Redistribution's 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//\n// * The name of Intel Corporation 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 copyright holders and contributors \"as is\" and\n//" -"/*\n * CCBigImage Tests\n *\n * cocos2d-extensions\n * https://github.com/cocos2d/cocos2d-iphone-extensions\n *\n * Copyright (c) 2011 Stepan Generalov\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\n// When" -"# This workflow uses actions that are not certified by GitHub.\n# They are provided by a third-party and are governed by\n# separate terms of service, privacy policy, and support\n# documentation.\n\n# This workflow will build, test, sign and package a WPF or Windows Forms desktop application\n# built on .NET Core.\n# To learn how to migrate your existing application to .NET Core,\n# refer to https://docs.microsoft.com/en-us/dotnet/desktop-wpf/migration/convert-project-from-net-framework\n#\n# To configure this workflow:\n#\n# 1. Configure environment variables\n# GitHub sets default environment variables for every workflow run. \n# Replace the variables relative to your project in the \"env\" section below.\n# \n# 2. Signing\n# Generate a signing certificate in the Windows Application \n# Packaging Project or add an existing signing certificate to the project.\n# Next, use PowerShell to encode the .pfx file using Base64 encoding\n# by running the following Powershell script to generate the output string:\n# \n# $pfx_cert = Get-Content '.\\SigningCertificate.pfx' -Encoding Byte\n# [System.Convert]::ToBase64String($pfx_cert) | Out-File 'SigningCertificate_Encoded.txt'\n#\n# Open the output file, SigningCertificate_Encoded.txt, and copy the\n# string inside. Then, add the string to the repo as a GitHub secret\n# and name it \"Base64_Encoded_Pfx.\"\n# For more information" -"Naming Conventions\n==================\n\nWelcome to the next level, naming stuff. Naming is one of the hardest things to do when developing\nand the Eclipse project has offered us the following guidelines.\n\nConventions from Eclipse Plug-in Developers Guide\n-------------------------------------------------\n\nThe following package name segments are reserved:\n\n* internal - indicates an internal implementation package that contains no API\n* tests - indicates a non-API package that contains only test suites\n* examples - indicates a non-API package that contains only examples\n\nThese name are used as qualifiers, and must only appear following the major package name. For\nexample,\n\n* org.eclipse.core.internal.resources - Correct usage\n* org.eclipse.internal.core.resources - Incorrect. internal precedes major package name.\n* org.eclipse.core.resources.internal - Incorrect. internal does not immediately follow major\n package name.\n\nThey also have a convention of seperating out model from ui, so ui plugins get a **.ui** package\nname segment.\n\nThere is an example from udig:\n\n* org.locationtech.udig (model or core)\n* org.locationtech.udig.ui (user interface)\n\nAs a clue anything that is *core* can run in headless mode.\n\nRelated reference\n-----------------\n\n* :doc:`api_rules_of_engagement`\n* `Naming Conventions (eclipse.org) `_" -"///////////////////////////////////////////////////////////////////////////////////\n/// OpenGL Mathematics (glm.g-truc.net)\n///\n/// Copyright (c) 2005 - 2014 G-Truc Creation (www.g-truc.net)\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/// @ref core\n/// @file" -"// TODO: Remove these globals by rewriting gamedescription.js\nconst g_MapSizes = prepareForDropdown(g_Settings && g_Settings.MapSizes);\nconst g_MapTypes = prepareForDropdown(g_Settings && g_Settings.MapTypes);\nconst g_PopulationCapacities = prepareForDropdown(g_Settings && g_Settings.PopulationCapacities);\nconst g_WorldPopulationCapacities = prepareForDropdown(g_Settings && g_Settings.WorldPopulationCapacities);\nconst g_StartingResources = prepareForDropdown(g_Settings && g_Settings.StartingResources);\nconst g_VictoryConditions = g_Settings && g_Settings.VictoryConditions;\n\n/**\n * Offer users to select playable civs only.\n * Load unselectable civs as they could appear in scenario maps.\n */\nconst g_CivData = loadCivData(false, false);\n\n/**\n * Whether this is a single- or multiplayer match.\n */\nconst g_IsNetworked = Engine.HasNetClient();\n\n/**\n * Is this user in control of game settings (i.e. is a network server, or offline player).\n */\nconst g_IsController = !g_IsNetworked || Engine.HasNetServer();\n\n/**\n * Central data storing all settings relevant to the map generation and simulation.\n */\nvar g_GameAttributes = {};\n\n/**\n * Remembers which clients are assigned to which player slots and whether they are ready.\n * The keys are GUIDs or \"local\" in single-player.\n */\nvar g_PlayerAssignments = {};\n\n/**\n * This instance owns all handlers that control the two synchronized states g_GameAttributes and g_PlayerAssignments.\n */\nvar g_SetupWindow;\n\n// TODO: Remove these two global functions by specifying the JS class name in the XML of the GUI page.\n\nfunction init(initData," -"#!/usr/bin/env perl\n\nuse strict;\nuse warnings;\nuse Test::More;\nuse DDG::Test::Spice;\n\nddg_spice_test(\n [qw( DDG::Spice::SalesTax )],\n 'sales tax for pennsylvania' => test_spice(\n '/js/spice/sales_tax/PA',\n call_type => 'include',\n caller => 'DDG::Spice::SalesTax',\n ),\n 'what is sales tax for mississippi' => test_spice(\n '/js/spice/sales_tax/MS',\n call_type => 'include',\n caller => 'DDG::Spice::SalesTax',\n ),\n 'what is the sales tax in kansas' => test_spice(\n '/js/spice/sales_tax/KS',\n call_type => 'include',\n caller => 'DDG::Spice::SalesTax',\n ),\n 'sales tax pa' => test_spice(\n '/js/spice/sales_tax/pa',\n call_type => 'include',\n caller => 'DDG::Spice::SalesTax',\n ),\n 'sales tax connecticut' => test_spice(\n '/js/spice/sales_tax/CT',\n call_type => 'include',\n caller => 'DDG::Spice::SalesTax',\n ),\n 'sales tax delaware' => test_spice(\n '/js/spice/sales_tax/DE',\n call_type => 'include',\n caller => 'DDG::Spice::SalesTax',\n ),\n 'sales tax in japan' => undef,\n 'what is the sales tax in china' => undef,\n 'sales tax in connecticut what is' => undef\n );\ndone_testing;" -"\n\n \n \n \n \n \n \n \n \n \n" -"package toolbox\n\nimport (\n\t\"bufio\"\n\t\"bytes\"\n\t\"crypto/tls\"\n\t\"errors\"\n\t\"fmt\"\n\t\"io\"\n\t\"math/rand\"\n\t\"net\"\n\t\"net/textproto\"\n\t\"regexp\"\n\t\"strconv\"\n\t\"strings\"\n\t\"sync\"\n\t\"time\"\n\n\t\"github.com/HouzuoGuo/laitos/inet\"\n)\n\nconst (\n\tMailboxList = \"l\" // Prefix string to trigger listing messages.\n\tMailboxRead = \"r\" // Prefix string to trigger reading message body.\n\tIMAPTimeoutSec = 30 // IMAPTimeoutSec is the IO timeout (in seconds) used for each IMAP conversation.\n)\n\nvar (\n\tRegexMailboxAndNumber = regexp.MustCompile(`(\\w+)[^\\w]+(\\d+)`) // Capture one mailbox shortcut name and a number\n\tRegexMailboxAndTwoNumbers = regexp.MustCompile(`(\\w+)[^\\w]+(\\d+)[^\\d]+(\\d+)`) // Capture one mailbox shortcut name and two numbers\n\tErrBadMailboxParam = fmt.Errorf(\"%s box skip# count# | %s box to-read#\", MailboxList, MailboxRead)\n)\n\n// IMAPSConnection is an established TLS client connection that is ready for IMAP conversations.\ntype IMAPSConnection struct {\n\ttlsConn *tls.Conn // tlsConn is a TLS client opened toward IMAP host. It had gone through handshake external to IMAPSConnection.\n\tmutex *sync.Mutex // mutex allows only one conversation to take place at a time.\n}\n\n/*\nconverse sends an IMAP request and waits for a response, then return IMAP response status and body.\nIf the response status is not OK, an error will be returned. If IO error occurs, client connection will be closed and an\nerror will be returned.\n*/\nfunc (conn" -"/**\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.tez.analyzer.plugins;\n\nimport com.google.common.base.Strings;\nimport com.google.common.collect.Lists;\n\nimport org.apache.hadoop.conf.Configuration;\nimport org.apache.hadoop.util.ToolRunner;\nimport org.apache.tez.analyzer.Analyzer;\nimport org.apache.tez.analyzer.CSVResult;\nimport org.apache.tez.common.counters.TaskCounter;\nimport org.apache.tez.common.counters.TezCounter;\nimport org.apache.tez.dag.api.TezException;\nimport org.apache.tez.history.parser.datamodel.DagInfo;\nimport org.apache.tez.history.parser.datamodel.TaskAttemptInfo;\nimport org.apache.tez.history.parser.datamodel.VertexInfo;\n\nimport java.util.List;\nimport java.util.Map;\n\n\n/**\n * Analyze the time taken by merge phase, shuffle phase, time taken to do realistic work etc in\n * tasks.\n *\n * Just dump REDUCE_INPUT_GROUPS, REDUCE_INPUT_RECORDS, its ratio and SHUFFLE_BYTES for tasks\n * grouped by vertices. Provide time" -"/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)\n * All rights reserved.\n *\n * This package is an SSL implementation written\n * by Eric Young (eay@cryptsoft.com).\n * The implementation was written so as to conform with Netscapes SSL.\n *\n * This library is free for commercial and non-commercial use as long as\n * the following conditions are aheared to. The following conditions\n * apply to all code found in this distribution, be it the RC4, RSA,\n * lhash, DES, etc., code; not just the SSL code. The SSL documentation\n * included with this distribution is covered by the same copyright terms\n * except that the holder is Tim Hudson (tjh@cryptsoft.com).\n *\n * Copyright remains Eric Young's, and as such any Copyright notices in\n * the code are not to be removed.\n * If this package is used in a product, Eric Young should be given attribution\n * as the author of the parts of the library used.\n * This can be in the form of a textual message at program startup or\n * in documentation (online or textual) provided with the package.\n *\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that" -"# Additional ClusterShell group source config file\n#\n# Please see `man 5 groups.conf` for further details.\n#\n\n#\n# SLURM partition bindings\n#\n[slurmpart,sp]\nmap: sinfo -h -o \"%N\" -p $GROUP\nall: sinfo -h -o \"%N\"\nlist: sinfo -h -o \"%R\"\nreverse: sinfo -h -N -o \"%R\" -n $NODE\n\n#\n# SLURM state bindings\n#\n[slurmstate,st]\nmap: sinfo -h -o \"%N\" -t $GROUP\nall: sinfo -h -o \"%N\"\nlist: sinfo -h -o \"%T\" | tr -d '*~#$@+'\nreverse: sinfo -h -N -o \"%T\" -n $NODE | tr -d '*~#$@+'\ncache_time: 60\n\n#\n# SLURM job bindings\n#\n[slurmjob,sj]\nmap: squeue -h -j $GROUP -o \"%N\"\nlist: squeue -h -o \"%i\" -t R\nreverse: squeue -h -w $NODE -o \"%i\"\ncache_time: 60\n\n#\n# SLURM user bindings for running jobs\n#\n[slurmuser,su]\nmap: squeue -h -u $GROUP -o \"%N\" -t R\nlist: squeue -h -o \"%u\" -t R\nreverse: squeue -h -w $NODE -o \"%u\"\ncache_time: 60" -"#' @section Uniqueness:\n#'\n#' By default the tree IDs are numbered from 1 to n, n being the number of trees found. The problem\n#' with such incremental numbering is that, while it ensures a unique ID is assigned for each tree in\n#' a given point-cloud, it also guarantees duplication of tree IDs in different tiles or chunks when\n#' processing a `LAScatalog`. This is because each file is processed independently of the others and potentially\n#' in parallel on different computers. Thus, the index always restarts at 1 on each file or chunk. Worse,\n#' in a tree segmentation process, a tree that is located exactly between 2 files will have two different\n#' IDs for its two halves.\n#'\n#' This is why we introduced some uniqueness strategies that are all imperfect and that should be seen\n#' as experimental. Please report any troubleshooting. Using a uniqueness-safe strategy ensures that\n#' trees from different files will not share the same IDs. Moreover, it also means that two halves of a tree\n#' on the edge of a processing chunk will be assigned the same ID.\n#'\n#' \\describe{\n#' \\item{incremental}{Number from 0 to n. This method" -"/*\n * Copyright (c) 2011, 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" -"# visibility.m4 serial 6\ndnl Copyright (C) 2005, 2008, 2010-2020 Free Software Foundation, Inc.\ndnl This file is free software; the Free Software Foundation\ndnl gives unlimited permission to copy and/or distribute it,\ndnl with or without modifications, as long as this notice is preserved.\n\ndnl From Bruno Haible.\n\ndnl Tests whether the compiler supports the command-line option\ndnl -fvisibility=hidden and the function and variable attributes\ndnl __attribute__((__visibility__(\"hidden\"))) and\ndnl __attribute__((__visibility__(\"default\"))).\ndnl Does *not* test for __visibility__(\"protected\") - which has tricky\ndnl semantics (see the 'vismain' test in glibc) and does not exist e.g. on\ndnl Mac OS X.\ndnl Does *not* test for __visibility__(\"internal\") - which has processor\ndnl dependent semantics.\ndnl Does *not* test for #pragma GCC visibility push(hidden) - which is\ndnl \"really only recommended for legacy code\".\ndnl Set the variable CFLAG_VISIBILITY.\ndnl Defines and sets the variable HAVE_VISIBILITY.\n\nAC_DEFUN([gl_VISIBILITY],\n[\n AC_REQUIRE([AC_PROG_CC])\n CFLAG_VISIBILITY=\n HAVE_VISIBILITY=0\n if test -n \"$GCC\"; then\n dnl First, check whether -Werror can be added to the command line, or\n dnl whether it leads to an error because of some other option that the\n dnl user has put into $CC $CFLAGS $CPPFLAGS.\n AC_CACHE_CHECK([whether the -Werror option is usable],\n [gl_cv_cc_vis_werror],\n [gl_save_CFLAGS=\"$CFLAGS\"\n CFLAGS=\"$CFLAGS -Werror\"\n AC_COMPILE_IFELSE(\n [AC_LANG_PROGRAM([[]]," -"/*\n * OMAP5xxx bandgap registers, bitfields and temperature definitions\n *\n * Copyright (C) 2013 Texas Instruments Incorporated - http://www.ti.com/\n * Contact:\n * Eduardo Valentin \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 as published by the Free Software Foundation.\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 St, Fifth Floor, Boston, MA\n * 02110-1301 USA\n *\n */\n#ifndef __OMAP5XXX_BANDGAP_H\n#define __OMAP5XXX_BANDGAP_H\n\n/**\n * *** OMAP5430 ***\n *\n * Below, in sequence, are the Register definitions,\n * the bitfields and the temperature definitions for OMAP5430.\n */\n\n/**\n * OMAP5430 register definitions\n *\n * Registers are defined as offsets. The offsets are\n * relative to FUSE_OPP_BGAP_GPU on 5430.\n *\n * Register below are grouped by domain" -"\nstruct list_chooser;\n\n}\n\nnamespace aux {\n\ntemplate<>\nstruct list_chooser<0>\n{\n template<\n typename T0, typename T1, typename T2, typename T3, typename T4\n , typename T5, typename T6, typename T7, typename T8, typename T9\n , typename T10, typename T11, typename T12, typename T13, typename T14\n , typename T15, typename T16, typename T17, typename T18, typename T19\n >\n struct result_\n {\n typedef list0<\n \n >::type type;\n\n };\n};\n\n} // namespace aux\n\nnamespace aux {\n\ntemplate<>\nstruct list_chooser<1>\n{\n template<\n typename T0, typename T1, typename T2, typename T3, typename T4\n , typename T5, typename T6, typename T7, typename T8, typename T9\n , typename T10, typename T11, typename T12, typename T13, typename T14\n , typename T15, typename T16, typename T17, typename T18, typename T19\n >\n struct result_\n {\n typedef typename list1<\n T0\n >::type type;\n\n };\n};\n\n} // namespace aux\n\nnamespace aux {\n\ntemplate<>\nstruct list_chooser<2>\n{\n template<\n typename T0, typename T1, typename" -"id;\n }\n\n /**\n * @param User $user\n *\n * @return AggregateToken\n */\n public function setUser(User $user)\n {\n $this->user = $user;\n\n return $this;\n }\n\n /**\n * @return User\n */\n public function getUser()\n {\n return $this->user;\n }\n\n /**\n * Set value\n *\n * @param string $value\n * @return AggregateToken\n */\n public function setValue($value)\n {\n $this->value = $value;\n\n return $this;\n }\n\n /**\n * Get value\n *\n * @return string\n */\n public function getValue()\n {\n return $this->value;\n }\n}" -"/*\r\n* Copyright (c) 2006-2009 Erin Catto http://www.box2d.org\r\n*\r\n* This software is provided 'as-is', without any express or implied\r\n* warranty. In no event will the authors be held liable for any damages\r\n* arising from the use of this software.\r\n* Permission is granted to anyone to use this software for any purpose,\r\n* including commercial applications, and to alter it and redistribute it\r\n* freely, subject to the following restrictions:\r\n* 1. The origin of this software must not be misrepresented; you must not\r\n* claim that you wrote the original software. If you use this software\r\n* in a product, an acknowledgment in the product documentation would be\r\n* appreciated but is not required.\r\n* 2. Altered source versions must be plainly marked as such, and must not be\r\n* misrepresented as being the original software.\r\n* 3. This notice may not be removed or altered from any source distribution.\r\n*/\r\n\r\n#ifndef B2_SETTINGS_H\r\n#define B2_SETTINGS_H\r\n\r\n#include \r\n#include \r\n\r\n#define B2_NOT_USED(x) ((void)(x))\r\n#define b2Assert(A) assert(A)\r\n\r\ntypedef signed char\tint8;\r\ntypedef signed short int16;\r\ntypedef signed int int32;\r\ntypedef unsigned char uint8;\r\ntypedef unsigned short uint16;\r\ntypedef unsigned int uint32;\r\ntypedef float float32;\r\ntypedef double float64;\r\n\r\n#define" -"/**\n * @license\n * Copyright 2014 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nrequire('../core/bootFOAMnode.js');\nvar fs = require('fs');\n\nif ( process.argv.length < 4 ) {\n console.log(\"USAGE: node genproto.js SOURCE_FILE MODEL_NAME [OUTPUT_FILE]\")\n}\n\nvar file = fs.readFileSync(process.argv[2]).toString();\neval(file);\n\nvar model = X[process.argv[3]];\n\nvar outfile = process.argv[4] || (model.name + '.proto');\n\nfs.writeFileSync(outfile, model.protobufSource());\n\nprocess.exit();" -"/*\n * NASA Docket No. GSC-18,370-1, and identified as \"Operating System Abstraction Layer\"\n *\n * Copyright (c) 2019 United States Government as represented by\n * the Administrator of the National Aeronautics and Space Administration.\n * 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\n/**\n * \\file ut-adaptor-filesys.c\n * \\ingroup adaptors\n * \\author joseph.p.hickey@nasa.gov\n *\n */\n/* pull in the OSAL configuration */\n#include \"osconfig.h\"\n#include \"ut-adaptor-filesys.h\"\n\n#include \n#include \n\n\n\nvoid* const UT_Ref_OS_impl_filesys_table = OS_impl_filesys_table;\nsize_t const UT_Ref_OS_impl_filesys_table_SIZE = sizeof(OS_impl_filesys_table);\n\nvoid UT_FileSysTest_SetupFileSysEntry(uint32 id, OCS_BLK_DEV *blkdev, OCS_device_t xbddev, uint32 MaxParts)\n{\n OS_impl_filesys_table[id].blkDev = blkdev;\n OS_impl_filesys_table[id].xbd = xbddev;\n OS_impl_filesys_table[id].xbdMaxPartitions = MaxParts;\n}" -"diff --git a/lib/util.js b/lib/util.js\nindex a03e874..9074e8e 100644\n--- a/lib/util.js\n+++ b/lib/util.js\n@@ -19,430 +19,6 @@\n // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n // USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n-var formatRegExp = /%[sdj%]/g;\n-exports.format = function(f) {\n- if (!isString(f)) {\n- var objects = [];\n- for (var i = 0; i < arguments.length; i++) {\n- objects.push(inspect(arguments[i]));\n- }\n- return objects.join(' ');\n- }\n-\n- var i = 1;\n- var args = arguments;\n- var len = args.length;\n- var str = String(f).replace(formatRegExp, function(x) {\n- if (x === '%%') return '%';\n- if (i >= len) return x;\n- switch (x) {\n- case '%s': return String(args[i++]);\n- case '%d': return Number(args[i++]);\n- case '%j':\n- try {\n- return JSON.stringify(args[i++]);\n- } catch (_) {\n- return '[Circular]';\n- }\n- default:\n- return x;\n- }\n- });\n- for (var x = args[i]; i < len; x = args[++i]) {\n- if (isNull(x) || !isObject(x)) {\n- str += ' ' + x;\n- } else {\n- str += ' ' + inspect(x);\n- }\n- }\n- return str;\n-};\n-" -"processor = $processor;\n $this->logger = $logger ?: new NullLogger();\n }\n\n /**\n * {@inheritdoc}\n */\n public function process(Message $message, array $options): bool\n {\n $return = $this->processor->process($message, $options);\n\n if (null !== $options['memory_limit'] && memory_get_usage() >= $options['memory_limit'] * 1024 * 1024) {\n $this->logger->info(\n '[MemoryLimit] Memory limit has been reached',\n [\n 'memory_limit' => $options['memory_limit'],\n 'swarrot_processor' => 'memory_limit',\n ]\n );\n\n return false;\n }\n\n return $return;\n }\n\n /**\n * {@inheritdoc}\n */\n public function setDefaultOptions(OptionsResolver $resolver): void\n {\n $resolver->setDefaults([\n 'memory_limit' => null,\n ]);\n\n $resolver->setAllowedTypes('memory_limit', ['integer', 'null']);\n }\n}" -"---\ndraft: true\ntitle: \"EXPLAIN in Riak TS\"\ndescription: \"Using the EXPLAIN statement in Riak TS\"\nmenu:\n riak_ts-1.4.0:\n name: \"EXPLAIN\"\n identifier: \"explain_riakts\"\n weight: 400\n parent: \"querying_data_riakts\"\nproject: \"riak_ts\"\nproject_version: \"1.4.0\"\ntoc: true\naliases:\n - /riakts/1.4.0/using/querying/explain\ncanonical_link: \"https://docs.basho.com/riak/ts/latest/using/querying/explain\"\n---\n\n[creating-activating]: /riak/ts/1.4.0/using/creating-activating\n[develop]: /riak/ts/1.4.0/developing\n[planning]: /riak/ts/1.4.0/using/planning\n[riak shell]: /riak/ts/1.4.0/using/riakshell\n\nYou can use the EXPLAIN statement to better understand how a query you would like to run will be executed. This document will show you how to use `EXPLAIN` in Riak TS.\n\n## EXPLAIN Guidelines\n\n`EXPLAIN` takes a SELECT statement as an argument and shows information about each subquery. The constraints placed upon the WHERE clause in the SELECT statement determine the subquery values. \n\nThe details about each subquery include:\n\n* A subquery number which is a unique integer,\n* The range scan start key which shows the value of the fields at the beginning of that quantum,\n* A flag indicating if that flag is inclusive (less than or greater than or equal),\n* The range scan end key,\n* Another inclusive flag for the end key, and\n* The value of the filter, i.e. constrained columns which are not a part of the partition key\n\nTo use `EXPLAIN`, the table in" -"This tool tries to reconstruct the internal cross references that existed\nin the Word document that was used to originally create the draft spec.\n\nIf we are lucky, this will only need to be run once as we convert from .docx\nto .md.\n\nWe first manually grab all of the section numbers from the Word file and\npaste them into a CSV-aware file (like an Excel file). Now we have a\ncolumn of section numbers\n\nThen we run xreference.php. This does the following:\n\n1. Goes through our Table of Contents and maps, in line order, the current\nGitHub link anchor to the section number in our CSV file. This is fragile\nbecause it assumes that the section numbers in the CSV file map 1:1 in\nlocation to that in the ToC.\n\n2. Then it uses our final CSV mapping to replace the Word section numbers\nwith the numbers and GitHub anchor links.\n\n\u00a711.7.5 => \u00a711_7_5(#the-return-statement)\n\n3. Optionally, the numbers text can be changed to a constant character string\n\n\u00a711.7.5 => \u00a7\u00a7(#the-return-statement)" -"---\nlayout: tour\ntitle: Currying\npartof: scala-tour\n\nnum: 9\nnext-page: case-classes\nprevious-page: nested-functions\nlanguage: pt-br\n---\n\n_Nota de tradu\u00e7\u00e3o: Currying \u00e9 uma t\u00e9cnica de programa\u00e7\u00e3o Funcional nomeada em honra ao matem\u00e1tico e l\u00f3gico Haskell Curry. Por essa raz\u00e3o a palavra Currying n\u00e3o ser\u00e1 traduzida. Entende-se que \u00e9 uma a\u00e7\u00e3o, uma t\u00e9cnica b\u00e1sica de Programa\u00e7\u00e3o Funcional._\n\nM\u00e9todos podem definir m\u00faltiplas listas de par\u00e2metros. Quando um m\u00e9todo \u00e9 chamado com uma lista menor de par\u00e2metros, ent\u00e3o ser\u00e1 retornada uma fun\u00e7\u00e3o que recebe a lista que par\u00e2metros que falta como argumentos.\n\nAqui um exemplo:\n\n```tut\nobject CurryTest extends App {\n\n def filter(xs: List[Int], p: Int => Boolean): List[Int] =\n if (xs.isEmpty) xs\n else if (p(xs.head)) xs.head :: filter(xs.tail, p)\n else filter(xs.tail, p)\n\n def modN(n: Int)(x: Int) = ((x % n) == 0)\n\n val nums = List(1, 2, 3, 4, 5, 6, 7, 8)\n println(filter(nums, modN(2)))\n println(filter(nums, modN(3)))\n}\n```\n\n_Nota: o m\u00e9todo `modN` \u00e9 parcialmente aplicado em duas chamadas de `filter`; por exemplo: somente o primeiro argumento \u00e9 realmente aplicado. O termo `modN(2)` retorna uma fun\u00e7\u00e3o do tipo `Int => Boolean` e esta se torna uma poss\u00edvel candidata a segundo argumento da fun\u00e7\u00e3o `filter`._\n\nA sa\u00edda do programa acima produz:\n\n```\nList(2,4,6,8)\nList(3,6)" -"/*\n * Copyright (c) 2015 - 2017, Nordic Semiconductor ASA\n * All rights reserved.\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 *\n * 1. Redistributions of source code must retain the above copyright notice, this\n * list of conditions and the following disclaimer.\n *\n * 2. Redistributions in binary form, except as embedded into a Nordic\n * Semiconductor ASA integrated circuit in a product or a software update for\n * such product, must reproduce the above copyright notice, this list of\n * conditions and the following disclaimer in the documentation and/or other\n * materials provided with the distribution.\n *\n * 3. Neither the name of Nordic Semiconductor ASA nor the names of its\n * contributors may be used to endorse or promote products derived from this\n * software without specific prior written permission.\n *\n * 4. This software, with or without modification, must only be used with a\n * Nordic Semiconductor ASA integrated circuit.\n *\n * 5. Any software provided in binary form under this license must not be reverse\n * engineered, decompiled, modified and/or disassembled.\n *\n * THIS SOFTWARE IS PROVIDED BY" -"# Copyright 2016 The TensorFlow 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\"\"\"The OneHotCategorical distribution class.\"\"\"\n\nfrom __future__ import absolute_import\nfrom __future__ import division\nfrom __future__ import print_function\n\nfrom tensorflow.python.framework import dtypes\nfrom tensorflow.python.framework import ops\nfrom tensorflow.python.ops import array_ops\nfrom tensorflow.python.ops import check_ops\nfrom tensorflow.python.ops import control_flow_ops\nfrom tensorflow.python.ops import math_ops\nfrom tensorflow.python.ops import nn_ops\nfrom tensorflow.python.ops import random_ops\nfrom tensorflow.python.ops.distributions import distribution\nfrom tensorflow.python.ops.distributions import kullback_leibler\nfrom tensorflow.python.ops.distributions import util as distribution_util\nfrom tensorflow.python.util import deprecation\n\n\nclass OneHotCategorical(distribution.Distribution):\n \"\"\"OneHotCategorical distribution.\n\n The categorical distribution is parameterized by the log-probabilities\n of a set of classes. The difference between OneHotCategorical and Categorical\n distributions is that OneHotCategorical is a discrete distribution over\n one-hot" -" Tensor[]`` which" -"\n\n\n\n\n\n \n \n \n" -"/*\n * FUJITSU Extended Socket Network Device driver\n * Copyright (c) 2015 FUJITSU LIMITED\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 along with\n * this program; if not, see .\n *\n * The full GNU General Public License is included in this distribution in\n * the file called \"COPYING\".\n *\n */\n\n#ifndef FJES_REGS_H_\n#define FJES_REGS_H_\n\n#include \n\n#define XSCT_DEVICE_REGISTER_SIZE 0x1000\n\n/* register offset */\n/* Information registers */\n#define XSCT_OWNER_EPID 0x0000 /* Owner EPID */\n#define XSCT_MAX_EP 0x0004 /* Maximum EP */\n\n/* Device Control registers */\n#define XSCT_DCTL 0x0010 /* Device Control */\n\n/* Command Control registers */\n#define XSCT_CR 0x0020 /* Command request */\n#define XSCT_CS 0x0024 /* Command status */\n#define XSCT_SHSTSAL" -"// cgo -godefs -- -Wall -Werror -static -I/tmp/include linux/types.go | go run mkpost.go\n// Code generated by the command above; see README.md. DO NOT EDIT.\n\n// +build sparc64,linux\n\npackage unix\n\nconst (\n\tSizeofPtr = 0x8\n\tSizeofShort = 0x2\n\tSizeofInt = 0x4\n\tSizeofLong = 0x8\n\tSizeofLongLong = 0x8\n\tPathMax = 0x1000\n)\n\ntype (\n\t_C_short int16\n\t_C_int int32\n\t_C_long int64\n\t_C_long_long int64\n)\n\ntype Timespec struct {\n\tSec int64\n\tNsec int64\n}\n\ntype Timeval struct {\n\tSec int64\n\tUsec int32\n\t_ [4]byte\n}\n\ntype Timex struct {\n\tModes uint32\n\tOffset int64\n\tFreq int64\n\tMaxerror int64\n\tEsterror int64\n\tStatus int32\n\tConstant int64\n\tPrecision int64\n\tTolerance int64\n\tTime Timeval\n\tTick int64\n\tPpsfreq int64\n\tJitter int64\n\tShift int32\n\tStabil int64\n\tJitcnt int64\n\tCalcnt int64\n\tErrcnt int64\n\tStbcnt int64\n\tTai int32\n\t_ [44]byte\n}\n\ntype Time_t int64\n\ntype Tms struct {\n\tUtime int64\n\tStime int64\n\tCutime int64\n\tCstime int64\n}\n\ntype Utimbuf struct {\n\tActime int64\n\tModtime int64\n}\n\ntype Rusage struct {\n\tUtime Timeval\n\tStime Timeval\n\tMaxrss int64\n\tIxrss int64\n\tIdrss int64\n\tIsrss int64\n\tMinflt int64\n\tMajflt int64\n\tNswap int64\n\tInblock int64\n\tOublock int64\n\tMsgsnd int64\n\tMsgrcv int64\n\tNsignals int64\n\tNvcsw int64\n\tNivcsw int64\n}\n\ntype Rlimit struct {\n\tCur uint64\n\tMax uint64\n}" -"// Copyright 2016 Google Inc. All Rights Reserved.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\n\npackage bigquery\n\nimport (\n\t\"golang.org/x/net/context\"\n\tbq \"google.golang.org/api/bigquery/v2\"\n)\n\n// CopyConfig holds the configuration for a copy job.\ntype CopyConfig struct {\n\t// Srcs are the tables from which data will be copied.\n\tSrcs []*Table\n\n\t// Dst is the table into which the data will be copied.\n\tDst *Table\n\n\t// CreateDisposition specifies the circumstances under which the destination table will be created.\n\t// The default is CreateIfNeeded.\n\tCreateDisposition TableCreateDisposition\n\n\t// WriteDisposition specifies how existing data in the destination table is treated.\n\t// The default is WriteEmpty.\n\tWriteDisposition TableWriteDisposition\n\n\t// The labels associated with this job.\n\tLabels map[string]string\n}\n\nfunc (c *CopyConfig) toBQ() *bq.JobConfiguration" -"# edit the \"button =\" part for each entry according to your remote, and stick\n# this stuff in ~/.lircrc\n\nbegin\n\tprog = Rhythmbox\n\tremote = *\n\tbutton = KEY_PLAY\n\trepeat = 1\n\tconfig = play\nend\n\nbegin\n\tprog = Rhythmbox\n\tremote = *\n\tbutton = KEY_PAUSE\n\trepeat = 0\n\tconfig = pause\nend\n\nbegin\n\tprog = Rhythmbox\n\tremote = *\n\tbutton = KEY_PLAYPAUSE\n\trepeat = 1\n\tconfig = playpause\nend\n\nbegin\n\tprog = Rhythmbox\n\tremote = *\n\tbutton = KEY_STOP\n\trepeat = 1\n\tconfig = stop\nend\n\n#FIXME\n#begin\n#\tprog = Rhythmbox\n#\tremote = *\n#\tbutton = \n#\trepeat = 1\n#\tconfig = shuffle\n#end\n\n#FIXME\n#begin\n#\tprog = Rhythmbox\n#\tremote = *\n#\tbutton = \n#\trepeat = 1\n#\tconfig = repeat\n#end\n\nbegin\n\tprog = Rhythmbox\n\tremote = *\n\tbutton = KEY_NEXT\n\trepeat = 1\n\tconfig = next\nend\n\nbegin\n\tprog = Rhythmbox\n\tremote = *\n\tbutton = KEY_PREVIOUS\n\trepeat = 1\n\tconfig = previous\nend\n\nbegin\n\tprog = Rhythmbox\n\tremote = *\n\tbutton = KEY_FASTFORWARD\n\trepeat = 1\n\tconfig = seek_forward\nend\n\nbegin\n\tprog = Rhythmbox\n\tremote = *\n\tbutton = KEY_REWIND\n\trepeat = 1\n\tconfig = seek_backward\nend" -"/*\n * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.\n *\n *\n *\n *\n *\n *\n *\n *\n *\n *\n *\n *\n *\n *\n *\n *\n *\n *\n *\n *\n */\n\n/*\n *\n *\n *\n *\n *\n * Copyright (c) 2000 World Wide Web Consortium,\n * (Massachusetts Institute of Technology, Institut National de\n * Recherche en Informatique et en Automatique, Keio University). All\n * Rights Reserved. This program is distributed under the W3C's Software\n * Intellectual Property License. This program is distributed in the\n * hope that it will be useful, but WITHOUT ANY WARRANTY; without even\n * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR\n * PURPOSE. See W3C License http://www.w3.org/Consortium/Legal/ for more\n * details.\n */\n\npackage org.w3c.dom.html;\n\n/**\n * Form control. Note. Depending upon the environment in which the page is\n * being viewed, the value property may be read-only for the file upload\n * input type. For the \"password\" input type, the actual value returned may\n * be masked to prevent unauthorized use. See the INPUT element definition\n * in HTML 4.0.\n *

    See also the Document Object Model (DOM) Level 2 Specification.\n *\n * @since 1.4, DOM Level 2\n */\npublic interface HTMLInputElement" -"# Makefile for Sphinx documentation\n#\n\n# You can set these variables from the command line.\nSPHINXOPTS =\nSPHINXBUILD = sphinx-build\nPAPER =\nBUILDDIR = _build\n\n# Internal variables.\nPAPEROPT_a4 = -D latex_paper_size=a4\nPAPEROPT_letter = -D latex_paper_size=letter\nALLSPHINXOPTS = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) .\n# the i18n builder cannot share the environment and doctrees with the others\nI18NSPHINXOPTS = $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) .\n\n.PHONY: help\nhelp:\n\t@echo \"Please use \\`make ' where is one of\"\n\t@echo \" html to make standalone HTML files\"\n\t@echo \" dirhtml to make HTML files named index.html in directories\"\n\t@echo \" singlehtml to make a single large HTML file\"\n\t@echo \" pickle to make pickle files\"\n\t@echo \" json to make JSON files\"\n\t@echo \" htmlhelp to make HTML files and a HTML help project\"\n\t@echo \" qthelp to make HTML files and a qthelp project\"\n\t@echo \" applehelp to make an Apple Help Book\"\n\t@echo \" devhelp to make HTML files and a Devhelp project\"\n\t@echo \" epub to make an epub\"\n\t@echo \" epub3 to make an epub3\"\n\t@echo \" latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter\"\n\t@echo \" latexpdf to make LaTeX files and run them through pdflatex\"" -"/* SPDX-License-Identifier: GPL-2.0 */\n\n/* Driver for the Iomega MatchMaker parallel port SCSI HBA embedded in \n * the Iomega ZIP Plus drive\n * \n * (c) 1998 David Campbell\n *\n * Please note that I live in Perth, Western Australia. GMT+0800\n */\n\n#ifndef _IMM_H\n#define _IMM_H\n\n#define IMM_VERSION \"2.05 (for Linux 2.4.0)\"\n\n/* \n * 10 Apr 1998 (Good Friday) - Received EN144302 by email from Iomega.\n * Scarry thing is the level of support from one of their managers.\n * The onus is now on us (the developers) to shut up and start coding.\n * 11Apr98 [ 0.10 ]\n *\n * --- SNIP ---\n *\n * It manages to find the drive which is a good start. Writing data during\n * data phase is known to be broken (due to requirements of two byte writes).\n * Removing \"Phase\" debug messages.\n *\n * PS: Took four hours of coding after I bought a drive.\n * ANZAC Day (Aus \"War Veterans Holiday\") 25Apr98 [ 0.14 ]\n *\n * Ten minutes later after a few fixes.... (LITERALLY!!!)\n * Have mounted disk, copied file, dismounted disk, remount disk, diff file\n * ----- It actually works!!! -----\n * 25Apr98 [ 0.15 ]\n *\n * Twenty minutes" -"append('UrL');\n\n\t\t$this->assertTrue($attributeList->contains('url'));\n\t}\n\n\t/**\n\t* @testdox Attribute names are normalized during retrieval\n\t*/\n\tpublic function testNamesAreNormalizedDuringRetrieval()\n\t{\n\t\t$attributeList = new AttributeList;\n\t\t$attributeList->append('UrL');\n\n\t\t$this->assertTrue($attributeList->contains('uRl'));\n\t}\n\n\t/**\n\t* @testdox asConfig() returns a deduplicated list of attribute names\n\t*/\n\tpublic function testAsConfigDedupes()\n\t{\n\t\t$attributeList = new AttributeList;\n\t\t$attributeList->append('url');\n\t\t$attributeList->append('url');\n\n\t\t$this->assertSame(\n\t\t\t['url'],\n\t\t\t$attributeList->asConfig()\n\t\t);\n\t}\n\n\t/**\n\t* @testdox asConfig() returns a list of attribute names in alphabetical order\n\t*/\n\tpublic function testAsConfigSort()\n\t{\n\t\t$attributeList = new AttributeList;\n\t\t$attributeList->append('url');\n\t\t$attributeList->append('title');\n\t\t$attributeList->append('width');\n\n\t\t$this->assertSame(\n\t\t\t['title', 'url', 'width'],\n\t\t\t$attributeList->asConfig()\n\t\t);\n\t}\n}" -"// Copyright 2013 the V8 project authors. All rights reserved.\n// Copyright (C) 2005, 2006, 2007, 2008, 2009 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// 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 APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' AND ANY\n// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n// DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY\n// DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n// (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n// LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\n// ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY," -"/*\n * Copyright 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.server.location;\n\nimport static android.content.pm.PackageManager.PERMISSION_GRANTED;\n\nimport android.Manifest;\nimport android.content.Context;\nimport android.hardware.contexthub.V1_0.ContextHub;\nimport android.hardware.contexthub.V1_0.ContextHubMsg;\nimport android.hardware.contexthub.V1_0.HostEndPoint;\nimport android.hardware.contexthub.V1_0.HubAppInfo;\nimport android.hardware.contexthub.V1_0.Result;\nimport android.hardware.location.ContextHubInfo;\nimport android.hardware.location.ContextHubTransaction;\nimport android.hardware.location.NanoAppBinary;\nimport android.hardware.location.NanoAppMessage;\nimport android.hardware.location.NanoAppState;\nimport android.util.Log;\n\nimport java.util.ArrayList;\nimport java.util.Collection;\nimport java.util.HashMap;\nimport java.util.List;\n\n/**\n * A class encapsulating helper functions used by the ContextHubService class\n */\n/* package */ class ContextHubServiceUtil {\n private static final String TAG = \"ContextHubServiceUtil\";\n private static final String HARDWARE_PERMISSION = Manifest.permission.LOCATION_HARDWARE;\n private static final String CONTEXT_HUB_PERMISSION = Manifest.permission.ACCESS_CONTEXT_HUB;\n\n /**\n * Creates a ConcurrentHashMap of the Context Hub ID to the ContextHubInfo object given an\n * ArrayList of HIDL ContextHub" -"#pragma parameter percent \"Interlacing Scanline Bright %\" 0.0 0.0 1.0 0.05\n#pragma parameter force_240p \"Force 240p Mode\" 0.0 0.0 1.0 1.0\n#pragma parameter top_field_first \"Top Field First Enable\" 0.0 0.0 1.0 1.0\n#ifdef PARAMETER_UNIFORM\nuniform float percent;\nuniform float force_240p;\nuniform float top_field_first;\n#else\n#define percent 0.0\n#define force_240p 0.0\n#define top_field_first 0.0\n#endif\n\n/*\n Interlacing\n Author: hunterk\n License: Public domain\n \n Note: This shader is designed to work with the typical interlaced output from an emulator, which displays both even and odd fields twice.\n This shader will un-weave the image, resulting in a standard, alternating-field interlacing.\n*/\n\n/* COMPATIBILITY \n - HLSL compilers\n - Cg compilers\n - FX11 compilers\n*/\n\n#include \"../compat_includes.inc\"\nuniform COMPAT_Texture2D(decal) : TEXUNIT0;\nuniform float4x4 modelViewProj;\n\nstruct out_vertex\n{\n\tfloat4 position : COMPAT_POS;\n\tfloat2 texCoord : TEXCOORD0;\n#ifndef HLSL_4\n\tfloat4 Color : COLOR;\n#endif\n};\n\nout_vertex main_vertex(COMPAT_IN_VERTEX)\n{\n\tout_vertex OUT;\n#ifdef HLSL_4\n\tfloat4 position = VIN.position;\n\tfloat2 texCoord = VIN.texCoord;\n#else\n\tOUT.Color = color;\n#endif\n\tOUT.position = mul(modelViewProj, position);\n\tOUT.texCoord = texCoord;\n\t\n\treturn OUT;\n}\n\nfloat4 interlacing(float2 texture_size, float2 video_size, float frame_count, float2 texCoord, COMPAT_Texture2D(decal))\n{\n float4 res = COMPAT_Sample(decal, texCoord);\n float y = 0.0;\n\n // assume anything with a vertical resolution greater than 400 lines is interlaced" -"secuvera-SA-2014-01: Reflected XSS in W3 Total Cache\n\nAffected Products\n W3 Total Cache 0.9.4 (older releases have not been tested)\n\n \"The only WordPress Performance Optimization (WPO) framework; \n designed to improve user experience and page speed. (..)\n W3 Total Cache improves the user experience of your site by \n increasing server performance, reducing the download times \n and providing transparent content delivery network (CDN) \n integration.\"\n\nReferences\n https://wordpress.org/plugins/w3-total-cache/\n https://www.secuvera.de/advisories/secuvera-SA-2014-01.txt\n https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2014-8724\n\nSummary:\n If the option \"Page cache debug info\" is enabled, W3 Total \n Cache adds some HTML-Comments including the \"Cache key\" which \n is the URL itself. The URL is just reflected without any output \n encoding.\n\nEffect:\n An attacker could include clientside Scriptcode in a request, \n which will be reflected by the application. Using some social \n engineering an attacker would be able to compromise users of \n the application.\n\nVulnerable Scripts:\n Debug Function\n\nExamples:\n https://$victim/nothing--\n\nSolution:\n Install bug fix release. Always make sure to disable debug function \n in productive environments.\n\nDisclosure Timeline:\n 2014/09/17 vendor contacted via https://www.w3-edge.com/contact/\n 2014/10/07 vendor reacted including a first patch preview\n 2014/10/14 notified vendor the patch does not address the issue\n 2014/10/24 vendor sent a second patch preview \n 2014/12/10 vendor published 0.9.4.1 release\n 2014/12/16 public disclosure\n\nCredits:\n Tobias Glemser, secuvera GmbH\n tglemser@secuvera.de\n https://www.secuvera.de\n\nDisclaimer:" -"/*\n * errno.c\n *\n * Description:\n * This translation unit implements routines associated with spawning a new\n * thread.\n *\n * --------------------------------------------------------------------------\n *\n * Pthreads-win32 - POSIX Threads Library for Win32\n * Copyright(C) 1998 John E. Bossom\n * Copyright(C) 1999,2003 Pthreads-win32 contributors\n * \n * Contact Email: rpj@callisto.canberra.edu.au\n * \n * The current list of contributors is contained\n * in the file CONTRIBUTORS included with the source\n * code distribution. The list can also be seen at the\n * following World Wide Web location:\n * http://sources.redhat.com/pthreads-win32/contributors.html\n * \n * This library is free software; you can redistribute it and/or\n * modify it under the terms of the GNU Lesser General Public\n * License as published by the Free Software Foundation; either\n * version 2 of the License, or (at your option) any later version.\n * \n * This library is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n * Lesser General Public License for more details.\n * \n * You should have received a copy of the GNU Lesser General Public\n * License along with this library in the file COPYING.LIB;\n *" -"/*\n * Copyright 2002-2012 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.tests.transaction;\n\nimport org.springframework.transaction.TransactionDefinition;\nimport org.springframework.transaction.support.AbstractPlatformTransactionManager;\nimport org.springframework.transaction.support.DefaultTransactionStatus;\n\n/**\n * @author Rod Johnson\n * @author Juergen Hoeller\n */\n@SuppressWarnings(\"serial\")\npublic class CallCountingTransactionManager extends AbstractPlatformTransactionManager {\n\n\tpublic TransactionDefinition lastDefinition;\n\tpublic int begun;\n\tpublic int commits;\n\tpublic int rollbacks;\n\tpublic int inflight;\n\n\t@Override\n\tprotected Object doGetTransaction() {\n\t\treturn new Object();\n\t}\n\n\t@Override\n\tprotected void doBegin(Object transaction, TransactionDefinition definition) {\n\t\tthis.lastDefinition = definition;\n\t\t++begun;\n\t\t++inflight;\n\t}\n\n\t@Override\n\tprotected void doCommit(DefaultTransactionStatus status) {\n\t\t++commits;\n\t\t--inflight;\n\t}\n\n\t@Override\n\tprotected void doRollback(DefaultTransactionStatus status) {\n\t\t++rollbacks;\n\t\t--inflight;\n\t}\n\n\tpublic void clear() {\n\t\tbegun = commits = rollbacks = inflight = 0;\n\t}\n\n}" -"package demo.javafx_samples.src.3DViewer.src.main.java.com.javafx.experiments.importers.dae;\n/*\n * Copyright (c) 2010, 2014, Oracle and/or its affiliates.\n * All rights reserved. Use is subject to license terms.\n *\n * This file is available and licensed under the following license:\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\n * the documentation and/or other materials provided with the distribution.\n * - Neither the name of Oracle Corporation nor the names of its\n * contributors may be used to endorse or promote products derived\n * from this software without specific prior written permission.\n *\n * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n * \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n * OWNER OR CONTRIBUTORS BE LIABLE FOR" -"/* libguestfs - the guestfsd daemon\n * Copyright (C) 2011 Red Hat Inc.\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\n#include \n\n#include \n#include \n#include \n#include \n#include \n#include \n\n#ifdef HAVE_LINUX_RAID_MD_U_H\n#include \n#include \n#include \n#endif /* HAVE_LINUX_RAID_MD_U_H */\n\n#include \n\n#include \"daemon.h\"\n#include \"actions.h\"\n#include \"optgroups.h\"\n#include \"c-ctype.h\"\n\nint\noptgroup_mdadm_available (void)\n{\n return prog_exists (\"mdadm\");\n}\n\n/* Check if 'dev' is a real RAID device, because in the case where md" -"/*\n\n Copyright (C) 2014, The University of Texas at Austin\n\n This file is part of libflame and is available under the 3-Clause\n BSD license, which can be found in the LICENSE file at the top-level\n directory, or at http://opensource.org/licenses/BSD-3-Clause\n\n*/\n\n#include \"FLAME.h\"\n\n#ifdef FLA_ENABLE_NON_CRITICAL_CODE\n\nFLA_Error FLA_Trsm_lut_unb_var3( FLA_Diag diagA, FLA_Obj alpha, FLA_Obj A, FLA_Obj B )\n{\n FLA_Obj BL, BR, B0, b1, B2;\n\n FLA_Scal_external( alpha, B );\n\n FLA_Part_1x2( B, &BL, &BR, 0, FLA_LEFT );\n\n while ( FLA_Obj_width( BL ) < FLA_Obj_width( B ) ){\n\n FLA_Repart_1x2_to_1x3( BL, /**/ BR, &B0, /**/ &b1, &B2,\n 1, FLA_RIGHT );\n\n /*------------------------------------------------------------*/\n\n /* b1 = triu( A' ) \\ b1 */\n FLA_Trsv_external( FLA_UPPER_TRIANGULAR, FLA_TRANSPOSE, diagA, A, b1 );\n\n /*------------------------------------------------------------*/\n\n FLA_Cont_with_1x3_to_1x2( &BL, /**/ &BR, B0, b1, /**/ B2,\n FLA_LEFT );\n\n }\n\n return FLA_SUCCESS;\n}\n\n#endif" -"/*\n * Copyright (c) 2011-2020, Peter Abeles. All Rights Reserved.\n *\n * This file is part of BoofCV (http://boofcv.org).\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 boofcv.gui.controls;\n\nimport boofcv.gui.StandardAlgConfigPanel;\nimport boofcv.misc.BoofLambdas;\nimport boofcv.visualize.*;\nimport lombok.Setter;\n\nimport javax.swing.*;\nimport java.awt.*;\n\n/**\n * Control panel for adjusting how point clouds are visualzied\n *\n * @author Peter Abeles\n */\npublic class ControlPanelPointCloud extends StandardAlgConfigPanel {\n\n\t// which color in colorizers should it use\n\tint colorScheme = 0;\n\n\t// clip distance for rendering. Disabled if <= 0\n\tpublic double clipDistance = 0;\n\t// If it should use \"fog\" when rendering the cloud\n\tpublic boolean fog = false;\n\n\t// range 0 to 1000\n\tpublic int periodAdjust=500;\n\tpublic int offsetAdjust=500;\n\tpublic" -"package cn.aihama.sys.constant;\r\n\r\nimport java.util.HashMap;\r\nimport java.util.Map;\r\n\r\n/**\r\n * \r\n * @author wwx\r\n * @since 2016-08\r\n * @version v1.0\r\n * \u7528\u4e8e\u5b58\u653eweb\u6a21\u5757\u5e38\u7528\u53d8\u91cf\uff0c\u4fbf\u4e8e\u7ba1\u7406\r\n *\r\n */\r\npublic interface BusiConstant {\r\n\t\r\n\t/**\r\n\t * \u53d1\u5e03\u72b6\u6001\r\n\t * @author Administrator\r\n\t *\r\n\t */\r\n\tpublic abstract class PublishState{\r\n\t\t/*** \u8349\u7a3f */\r\n\t\tpublic static final int DRAFT = 0;\r\n\t\t/*** \u5df2\u53d1\u5e03*/\r\n\t\tpublic static final int PUBLISH = 1;\r\n\t\t/*** \u5df2\u4e0b\u7ebf*/\r\n\t\tpublic static final int OFFLINE = 2;\r\n\t\t\r\n\t\tpublic static Map PublishStateMap = new HashMap();\r\n\t\tstatic {\r\n\t\t\tPublishStateMap.put(DRAFT, \"\u8349\u7a3f\");\r\n\t\t\tPublishStateMap.put(PUBLISH, \"\u5df2\u53d1\u5e03\");\r\n\t\t\tPublishStateMap.put(OFFLINE, \"\u8f6c\u8d26\u5931\u8d25 \");\r\n\t\t}\r\n\t}\r\n\t\r\n\t/**\r\n\t * \u9644\u4ef6\u6765\u6e90\r\n\t * @author Administrator\r\n\t *\r\n\t */\r\n\tpublic abstract class AttachSource{\r\n\t\t/*** \u77e5\u8bc6\u70b9 */\r\n\t\tpublic static final int KNOWLEDGE = 1;\r\n\t\t/*** \u9884\u7b97\u7533\u8bf7 */\r\n\t\tpublic static final int BUDGET = 2;\r\n\t\t/*** \u6f0f\u6253\u5361\u7533\u8bf7 */\r\n\t\tpublic static final int MISS_CLOCK = 3;\r\n\t\t/*** \u8bf7\u5047\u7533\u8bf7 */\r\n\t\tpublic static final int LEAVE = 4;\r\n\t\t/*** \u52a0\u73ed\u7533\u8bf7 */\r\n\t\tpublic static final int OVERTIME = 5;\r\n\t\t/*** \u5408\u540c\u5ba1\u6279 */\r\n\t\tpublic static final int CONTRACT = 6;\r\n\t\t/*** \u79bb\u804c\u7533\u8bf7 */\r\n\t\tpublic static final int DIMISSION = 7;\r\n\t\t/*** \u516c\u544a\u901a\u77e5 */\r\n\t\tpublic static final int NOTICE = 8;\r\n\t\t/*** \u4ed8\u6b3e\u7533\u8bf7 */\r\n\t\tpublic static final int PAYMENT = 9;\r\n\t\t/*** \u91c7\u8d2d\u7533\u8bf7 */\r\n\t\tpublic static final int PURCHASE = 10;\r\n\t\t/*** \u7533\u8d2d\u7533\u8bf7 */" -"

    \n \n \n \n

    \n\n# vinyl\n\n[![NPM version][npm-image]][npm-url] [![Downloads][downloads-image]][npm-url] [![Build Status][travis-image]][travis-url] [![AppVeyor Build Status][appveyor-image]][appveyor-url] [![Coveralls Status][coveralls-image]][coveralls-url] [![Gitter chat][gitter-image]][gitter-url]\n\nVirtual file format.\n\n## What is Vinyl?\n\nVinyl is a very simple metadata object that describes a file. When you think of a file, two attributes come to mind: `path` and `contents`. These are the main attributes on a Vinyl object. A file does not necessarily represent something on your computer\u2019s file system. You have files on S3, FTP, Dropbox, Box, CloudThingly.io and other services. Vinyl can be used to describe files from all of these sources.\n\n## What is a Vinyl Adapter?\n\nWhile Vinyl provides a clean way to describe a file, we also need a way to access these files. Each file source needs what I call a \"Vinyl adapter\". A Vinyl adapter simply exposes a `src(globs)` and a `dest(folder)` method. Each return a stream. The `src` stream produces Vinyl objects, and the `dest` stream consumes Vinyl objects. Vinyl adapters can expose extra methods that might be specific to their input/output medium, such as the `symlink` method [`vinyl-fs`][vinyl-fs] provides.\n\n## Usage\n\n```js\nvar Vinyl = require('vinyl');\n\nvar jsFile = new Vinyl({\n cwd: '/',\n base:" -"# get-stdin [![Build Status](https://travis-ci.org/sindresorhus/get-stdin.svg?branch=master)](https://travis-ci.org/sindresorhus/get-stdin)\n\n> Get [stdin](https://nodejs.org/api/process.html#process_process_stdin) as a string or buffer\n\n\n## Install\n\n```\n$ npm install get-stdin\n```\n\n\n## Usage\n\n```js\n// example.js\nconst getStdin = require('get-stdin');\n\n(async () => {\n\tconsole.log(await getStdin());\n\t//=> 'unicorns'\n})();\n```\n\n```\n$ echo unicorns | node example.js\nunicorns\n```\n\n\n## API\n\nBoth methods returns a promise that is resolved when the `end` event fires on the `stdin` stream, indicating that there is no more data to be read.\n\n### getStdin()\n\nGet `stdin` as a `string`.\n\nIn a TTY context, a promise that resolves to an empty `string` is returned.\n\n### getStdin.buffer()\n\nGet `stdin` as a `Buffer`.\n\nIn a TTY context, a promise that resolves to an empty `Buffer` is returned.\n\n\n## Related\n\n- [get-stream](https://github.com/sindresorhus/get-stream) - Get a stream as a string or buffer\n\n\n## License\n\nMIT \u00a9 [Sindre Sorhus](https://sindresorhus.com)" -".\\\" $FreeBSD$\n.\\\" $MCom: portlint/portlint.1,v 1.14 2020/05/30 13:03:55 jclarke Exp $\n.\\\"\n.\\\" Copyright (c) 1997 by Jun-ichiro Hagino .\n.\\\" All Rights Reserved. Absolutely no warranty.\n.\\\"\n.Dd April 1, 2010\n.Dt PORTLINT 1\n.Os\n.Sh NAME\n.Nm portlint\n.Nd a verifier for port directories\n.Sh SYNOPSIS\n.Nm portlint\n.Op Fl abcghvtACNV\n.Op Fl M Ar ENV\n.Op Fl B Ar n\n.Op Ar dir\n.Sh DESCRIPTION\n.Nm\ntries to verify the content of a port directory.\nThe purpose of\n.Nm\ncan be separated into two parts:\n.Pq 1\nto let the submitters easily polish their own port directory, and\n.Pq 2\nto decrease the labor of the committers.\n.Pp\n.Nm\nuses very simple regular-expression matching for verifying\nfiles that make up a port directory.\nNote that it does NOT implement a complete parser for those files.\nBecause of this the user may see some extra warnings,\nespecially when checking complex\n.Pa Makefile Ns No s .\n.Pp\n.Sy Options\n.Bl -tag -width Fl\n.It Fl a\nPerform additional checks for extra files, such as\n.Pa scripts/*\nand\n.Pa pkg-* .\n.It Fl b\nWarn the use of\n.Pa $(VARIABLE) .\nSome of the committers prefer\n.Pa ${VARIABLE}\ninstead" -"/**\n * @file\n */\n\n#pragma once\n\n#include \"tb_widgets_common.h\"\n\nnamespace tb {\n\n/** TBToggleContainer is a widget that toggles a property when its value\n\tchange between 0 and 1. TOGGLE specifies what property will toggle.\n\tThis is useful f.ex to toggle a whole group of child widgets depending\n\ton the value of some other widget. By connecting the TBToggleContainer\n\twith a widget connection, this can happen completly automatically. */\nclass TBToggleContainer : public TBWidget {\npublic:\n\t// For safe typecasting\n\tTBOBJECT_SUBCLASS(TBToggleContainer, TBWidget);\n\n\tTBToggleContainer();\n\n\t/** Defines what should toggle when the value changes. */\n\tenum TOGGLE {\n\t\tTOGGLE_NOTHING, ///< Nothing happens (the default)\n\t\tTOGGLE_ENABLED, ///< Enabled/disabled state\n\t\tTOGGLE_OPACITY, ///< Opacity 1/0\n\t\tTOGGLE_EXPANDED ///< Expanded/collapsed (In parent axis direction)\n\t};\n\n\t/** Set what should toggle when the value changes. */\n\tvoid setToggle(TOGGLE toggle);\n\tTOGGLE getToggle() const {\n\t\treturn m_toggle;\n\t}\n\n\t/** Set if the toggle state should be inverted. */\n\tvoid setInvert(bool invert);\n\tbool getInvert() const {\n\t\treturn m_invert;\n\t}\n\n\t/** Get the current value, after checking the invert mode. */\n\tbool getIsOn() const {\n\t\treturn m_invert ? m_value == 0 : !(m_value == 0);\n\t}\n\n\t/** Set the value of this widget. 1 will turn on the toggle, 0 will turn it" -"/* Copyright (C) 2002 Jean-Marc Valin */\n/**\n @file ltp.h\n @brief Long-Term Prediction functions\n*/\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 \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 - Neither the name of the Xiph.org Foundation nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n \n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION 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 OF\n LIABILITY," -"package com.gentics.mesh.core.data.root;\n\nimport com.gentics.mesh.core.data.Branch;\nimport com.gentics.mesh.core.data.branch.HibBranch;\nimport com.gentics.mesh.core.data.project.HibProject;\nimport com.gentics.mesh.core.data.user.HibUser;\nimport com.gentics.mesh.core.rest.branch.BranchReference;\nimport com.gentics.mesh.core.rest.branch.BranchResponse;\nimport com.gentics.mesh.event.EventQueueBatch;\n\n/**\n * Aggregation vertex for Branches.\n */\npublic interface BranchRoot extends RootVertex, TransformableElementRoot {\n\n\tpublic static final String TYPE = \"branches\";\n\n\t/**\n\t * Get the project of this branch root.\n\t * \n\t * @return\n\t */\n\tHibProject getProject();\n\n\t/**\n\t * Create a new branch and make it the latest The new branch will be the initial branch, if it is the first created.\n\t *\n\t * @param name\n\t * branch name\n\t * @param creator\n\t * creator\n\t * @param batch\n\t * @return new Branch\n\t */\n\tdefault Branch create(String name, HibUser creator, EventQueueBatch batch) {\n\t\treturn create(name, creator, null, true, getLatestBranch(), batch);\n\t}\n\n\t/**\n\t * Create a new branch. The new branch will be the initial branch, if it is the first created.\n\t *\n\t * @param name\n\t * branch name\n\t * @param creator\n\t * creator\n\t * @param uuid\n\t * Optional uuid\n\t * @param setLatest\n\t * True to make it the latest branch\n\t * @param baseBranch\n\t * optional base branch. This can only be null if this is the first branch in the project.\n\t * @param batch\n\t * @return new Branch\n\t */\n\tBranch create(String name, HibUser creator, String uuid," -"/**\n* This file is part of RESLAM.\n*\n* Copyright (C) 2014-2019 Schenk Fabian (Graz University of Technology)\n* For more information see \n*\n* RESLAM 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* RESLAM 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 RESLAM. If not, see .\n* \n*\n* If you use this software please cite at least one of the following publications:\n* - RESLAM: A robust edge-based SLAM system, Schenk Fabian, Fraundorfer Friedrich, ICRA 2019\n* - Robust Edge-based Visual Odometry using Machine-Learned Edges, Schenk Fabian, Fraundorfer Friedrich, IROS 2017\n* - Combining Edge Images and Depth Maps for Robust Visual Odometry, Schenk" -"[en]\nCMD_MENU = Commands Menu\nCONF_MENU = Configs Menu\nSPE_MENU = Speech Menu\n\n[de]\nCMD_MENU = Men\u00fc > Befehle\nCONF_MENU = Men\u00fc > Konfiguration\nSPE_MENU = Men\u00fc > Sprechen\n\n[sr]\nCMD_MENU = Komandne\nCONF_MENU = Podesavanja\nSPE_MENU = Govorne Komande\n\n[tr]\nCMD_MENU = Komut Menu\nCONF_MENU = Config Menu\nSPE_MENU = Konusma Menusu\n\n[fr]\nCMD_MENU = Menu Commandes\nCONF_MENU = Menu Configurations\nSPE_MENU = Menu Voix/Paroles\n\n[sv]\nCMD_MENU = Kommandomeny\nCONF_MENU = Konfigurationsmeny\nSPE_MENU = Talmeny\n\n[da]\nCMD_MENU = Kommando Menu\nCONF_MENU = Konfigurations Menu\nSPE_MENU = Tale Menu\n\n[pl]\nCMD_MENU = Menu komend\nCONF_MENU = Menu konfiguracji\nSPE_MENU = Menu rozmowy\n\n[nl]\nCMD_MENU = Commandomenu\nCONF_MENU = Configuratiemenu\nSPE_MENU = Spraakmenu\n\n[es]\nCMD_MENU = Menu de Comandos\nCONF_MENU = Menu de Configuracion\nSPE_MENU = Menu de Voz\n\n[bp]\nCMD_MENU = Menu de Comandos\nCONF_MENU = Menu de Configs\nSPE_MENU = Menu de Vozes\n\n[cz]\nCMD_MENU = Menu prikazu\nCONF_MENU = Menu nastaveni\nSPE_MENU = Nastaveni reci\n\n[fi]\nCMD_MENU = Komentovalikko\nCONF_MENU = Saatovalikko\nSPE_MENU = Puhevalikko\n\n[bg]\nCMD_MENU = Menu s komandi\nCONF_MENU = Konfiguracionno menu\nSPE_MENU = Menu za govorene\n\n[ro]\nCMD_MENU = Menu Comenzi\nCONF_MENU = Menu Configuratie\nSPE_MENU = Menu Speech\n\n[hu]\nCMD_MENU = Parancs Men\u00fc" -"// Copyright 2016 Google Inc. 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 uuid\n\nimport (\n\t\"encoding/binary\"\n\t\"sync\"\n\t\"time\"\n)\n\n// A Time represents a time as the number of 100's of nanoseconds since 15 Oct\n// 1582.\ntype Time int64\n\nconst (\n\tlillian = 2299160 // Julian day of 15 Oct 1582\n\tunix = 2440587 // Julian day of 1 Jan 1970\n\tepoch = unix - lillian // Days between epochs\n\tg1582 = epoch * 86400 // seconds between epochs\n\tg1582ns100 = g1582 * 10000000 // 100s of a nanoseconds between epochs\n)\n\nvar (\n\ttimeMu sync.Mutex\n\tlasttime uint64 // last time we returned\n\tclockSeq uint16 // clock sequence for this run\n\n\ttimeNow = time.Now // for testing\n)\n\n// UnixTime converts t the number of seconds and nanoseconds using the Unix\n// epoch of 1 Jan 1970.\nfunc (t Time) UnixTime() (sec, nsec int64) {\n\tsec = int64(t - g1582ns100)\n\tnsec = (sec % 10000000) * 100\n\tsec /= 10000000\n\treturn sec, nsec\n}\n\n// GetTime returns the current Time (100s of nanoseconds since 15 Oct 1582) and\n// clock sequence" -"# ARGO\n\n[![NPM version](https://badge.fury.io/js/argo-trading.svg)](http://badge.fury.io/js/argo-trading)\n![](https://github.com/albertosantini/argo/workflows/CI/badge.svg)\n\n**Argo** is an open source trading platform, connecting directly with [OANDA][]\nthrough the powerful [API][] to develop trading strategies.\n\n## Installation\n\nAfter installing [Node.js](https://nodejs.org/) (required), you can install **Argo**.\n\n- Release 3.x for legacy accounts: if your account id contains only digits (ie. 2534233), it is a legacy account.\n- Release 4.x (or higher) for v20 accounts.\n\n```\n$ npm install -g argo-trading\n```\n\n## Starting Web App\n\n```\n$ argo-trading\n```\nEventually point your web brower to `http://localhost:8000`.\n\nFinally you need to point to the `host` and `port` defined by `ARGO_PORT` environment variable (`8000` is the default) where you started `argo` \n\n## Starting Standalone App\n\n```\n$ argo-trading-standalone\n```\n\nTested locally with Node.js 10.x, hyperHTML 2.x.\n\n## Basic features\n\n- Account summary updated for each event.\n- Quotes and spreads list updated tick-by-tick.\n- Charts with different time frames updated tick-by-tick.\n- Market and limit orders with stop loss, take profit and trailing stop.\n- Trades list with current and profit updated tick-by-tick.\n- Orders list with distance updated tick-by-tick.\n- Positions summary.\n- Expositions summary.\n- Transactions history.\n- Economic calendar.\n\n## Advanced features\n\n- Executing trading strategies with [plugins](https://github.com/albertosantini/argo-trading-plugin-seed).\n\n## [Documentation](http://argo.js.org/docs/)\n\n##" -"/*\n * Copyright ConsenSys AG.\n *\n * Licensed under the Apache License, Version 2.0 (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 distributed under the License is distributed on\n * an \"AS IS\" BASIS, WITHOUT WARRANTIES OR 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 * SPDX-License-Identifier: Apache-2.0\n */\npackage org.hyperledger.besu.tests.acceptance.dsl.transaction.privacy;\n\nimport static org.assertj.core.api.Assertions.assertThat;\n\nimport org.hyperledger.besu.tests.acceptance.dsl.transaction.NodeRequests;\nimport org.hyperledger.besu.tests.acceptance.dsl.transaction.Transaction;\n\nimport java.io.IOException;\n\npublic class PrivGetEeaTransactionCountTransaction implements Transaction {\n\n private final Object[] params;\n\n public PrivGetEeaTransactionCountTransaction(\n final String accountAddress, final String privateFrom, final String[] privateFor) {\n this.params = new Object[] {accountAddress, privateFrom, privateFor};\n }\n\n @Override\n public Integer execute(final NodeRequests node) {\n try {\n final PrivacyRequestFactory.GetTransactionCountResponse result =\n node.privacy().privGetEeaTransactionCount(params).send();\n assertThat(result).isNotNull();\n return result.getCount();\n } catch (final IOException e) {\n throw new RuntimeException(e);\n }\n }\n}" -"package org.kframework.kdoc\n\nimport org.kframework.attributes.Att\nimport org.kframework.definition.{Module, NonTerminal, RegexTerminal, Terminal}\nimport org.kframework.frontend.K\nimport org.kframework.frontend.Unapply._\n\n/**\n * Takes a K term with the grammar described by Module module, and unparses it to its latex representation.\n * For each term:\n * - when its production has latex attribute, it uses that attribute for unparsing\n * - otherwise, it unparses by concatenating the Production's items with the separator parameter as a separator\n * @param module\n * @param separator\n */\nclass KtoLatex(module: Module, separator: String = \" \") extends ((K) => String) {\n var x = 0\n def apply(k: K): String = k match {\n case KApply(l, children) =>\n val latexAtts = module.productionsFor(l).flatMap(_.att.get[String](Att.latex))\n val latex = latexAtts.size match {\n case 0 => // no latex annotation\n val possibleLatexes = module.productionsFor(l).map(_.items.foldLeft((Seq[String](), 1)) {\n case ((r, i), t: Terminal) => (r :+ t.value, i)\n case ((r, i), t: RegexTerminal) => (r :+ t.regex, i) //TODO: we probably want something better here\n case ((r, i), nt: NonTerminal) => (r :+ \"#\" + i, i + 1)\n }).map(_._1.mkString(separator))\n possibleLatexes.size match {\n case 0 => throw new AssertionError(\"Could not find a label for \" + l)\n case 1 => possibleLatexes.head\n case _ => throw new AssertionError(\"Too productions for klabel \"" -"/* mpn_sub_n -- Subtract equal length limb vectors.\n\nCopyright 1992-1994, 1996, 2000, 2002, 2009 Free Software Foundation, Inc.\n\nThis file is part of the GNU MP Library.\n\nThe GNU MP Library is free software; you can redistribute it and/or modify\nit under the terms of either:\n\n * the GNU Lesser General Public License as published by the Free\n Software Foundation; either version 3 of the License, or (at your\n option) any later version.\n\nor\n\n * the GNU General Public License as published by the Free Software\n Foundation; either version 2 of the License, or (at your option) any\n later version.\n\nor both in parallel, as here.\n\nThe GNU MP Library is distributed in the hope that it will be useful, but\nWITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY\nor FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License\nfor more details.\n\nYou should have received copies of the GNU General Public License and the\nGNU Lesser General Public License along with the GNU MP Library. If not,\nsee https://www.gnu.org/licenses/. */\n\n#include \"gmp-impl.h\"\n\n\n#if GMP_NAIL_BITS == 0\n\nmp_limb_t\nmpn_sub_n (mp_ptr rp, mp_srcptr up, mp_srcptr vp, mp_size_t n)\n{\n mp_limb_t ul, vl, sl, rl, cy, cy1, cy2;" -"var baseSlice = require('../internal/baseSlice'),\n isIterateeCall = require('../internal/isIterateeCall');\n\n/**\n * Creates a slice of `array` with `n` elements taken from the beginning.\n *\n * @static\n * @memberOf _\n * @category Array\n * @param {Array} array The array to query.\n * @param {number} [n=1] The number of elements to take.\n * @param- {Object} [guard] Enables use as a callback for functions like `_.map`.\n * @returns {Array} Returns the slice of `array`.\n * @example\n *\n * _.take([1, 2, 3]);\n * // => [1]\n *\n * _.take([1, 2, 3], 2);\n * // => [1, 2]\n *\n * _.take([1, 2, 3], 5);\n * // => [1, 2, 3]\n *\n * _.take([1, 2, 3], 0);\n * // => []\n */\nfunction take(array, n, guard) {\n var length = array ? array.length : 0;\n if (!length) {\n return [];\n }\n if (guard ? isIterateeCall(array, n, guard) : n == null) {\n n = 1;\n }\n return baseSlice(array, 0, n < 0 ? 0 : n);\n}\n\nmodule.exports = take;" -"package com.aricneto.twistytimer.stats;\n\nimport android.util.Log;\n\nimport com.aricneto.twistytimer.items.AverageComponent;\nimport com.aricneto.twistytimer.utils.PuzzleUtils;\nimport com.aricneto.twistytimer.utils.StatUtils;\n\nimport java.util.ArrayList;\nimport java.util.Arrays;\nimport java.util.Collections;\nimport java.util.List;\n\n/**\n * Calculates the average time of a number of puzzle solves. Running averages are easily calculated\n * as each new solve is added. If the number of solve times is five or greater, the best and worst\n * times are discarded before returning the truncated arithmetic mean (aka \"trimmed mean\" or\n * \"modified mean) of the remaining times. All times and averages are in milliseconds. The mean,\n * minimum (best) and maximum (worst) of all added times, and the best average from all values of\n * the running average are also made available.\n *\n * @author damo\n */\npublic final class AverageCalculator {\n // NOTE: This implementation is reasonably efficient, as it can calculate an average without\n // iterating over the array of recorded times. Iteration is only required when the known best\n // or worst values are ejected to make room for new times. Storing times in sorted order would\n // reduce this explicit iteration, but a second data structure would be required to record the\n // insertion order and the insertion operations would be more costly, as the sort" -"# Copyright 2013 the V8 project authors. All rights reserved.\n# Copyright (C) 2005, 2006, 2007, 2008, 2009 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# 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 APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' AND ANY\n# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n# DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY\n# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\n# ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY," -"# Raft library\n\nRaft is a protocol with which a cluster of nodes can maintain a replicated state machine.\nThe state machine is kept in sync through the use of a replicated log.\nFor more details on Raft, see \"In Search of an Understandable Consensus Algorithm\"\n(https://raft.github.io/raft.pdf) by Diego Ongaro and John Ousterhout.\n\nThis Raft library is stable and feature complete. As of 2016, it is **the most widely used** Raft library in production, serving tens of thousands clusters each day. It powers distributed systems such as etcd, Kubernetes, Docker Swarm, Cloud Foundry Diego, CockroachDB, TiDB, Project Calico, Flannel, and more.\n\nMost Raft implementations have a monolithic design, including storage handling, messaging serialization, and network transport. This library instead follows a minimalistic design philosophy by only implementing the core raft algorithm. This minimalism buys flexibility, determinism, and performance.\n\nTo keep the codebase small as well as provide flexibility, the library only implements the Raft algorithm; both network and disk IO are left to the user. Library users must implement their own transportation layer for message passing between Raft peers over the wire. Similarly, users must implement their own storage layer to persist the Raft log and state.\n\nIn order to" -"/*\n * Copyright (c) 1999, 2008, 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" -"%SJGET_EXAMPLE a demo for SJget.\n% This example script gets the index file of the SJSU Singular matrix collection,\n% and then loads in all symmetric non-binary matrices, in increasing order of\n% number of rows in the matrix.\n%\n% Example:\n% type SJget_example ; % to see an example of how to use SJget\n%\n% See also SJget, SJweb, SJgrep.\n\n% Derived from the UFget toolbox on March 18, 2008.\n% Copyright 2007, Tim Davis, University of Florida.\n\n% modified by L. Foster 09/17/2008\n\ntype SJget_example ;\n\nindex = SJget ;\n% find all symmetric matrices that are not binary,\n% have at least 4000 column and have a gap in the singular\n% values at the numerical rank of at least 1000\nf = find (index.numerical_symmetry == 1 & ~index.isBinary & ...\n index.ncols >= 4000 & index.gap >= 1000 );\n% sort by the dimension of the numerical null space\n[y, j] = sort (index.ncols (f) - index.numrank (f) ) ;\nf = f (j) ;\n\nfor i = f\n fprintf ('Loading %s%s%s, please wait ...\\n', ...\n\tindex.Group {i}, filesep, index.Name {i}) ;\n Problem = SJget (i,index) ;\n %display the problem structure\n disp (Problem) ;\n %" -"//\n// IOS8SwiftHeaderFooterTutorialTests.swift\n// IOS8SwiftHeaderFooterTutorialTests\n//\n// Created by Arthur Knopper on 08/12/14.\n// Copyright (c) 2014 Arthur Knopper. All rights reserved.\n//\n\nimport UIKit\nimport XCTest\n\nclass IOS8SwiftHeaderFooterTutorialTests: XCTestCase {\n \n override func setUp() {\n super.setUp()\n // Put setup code here. This method is called before the invocation of each test method in the class.\n }\n \n override func tearDown() {\n // Put teardown code here. This method is called after the invocation of each test method in the class.\n super.tearDown()\n }\n \n func testExample() {\n // This is an example of a functional test case.\n XCTAssert(true, \"Pass\")\n }\n \n func testPerformanceExample() {\n // This is an example of a performance test case.\n self.measureBlock() {\n // Put the code you want to measure the time of here.\n }\n }\n \n}" -"/* Conversion from and to IBM1153.\n Copyright (C) 2005-2018 Free Software Foundation, Inc.\n This file is part of the GNU C Library.\n Contributed by Jiro SEKIBA , 2005.\n\n The GNU C 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 The GNU C 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 the GNU C Library; if not, see\n . */\n\n#include \n\n/* Get the conversion table. */\n#define TABLES \n\n#define CHARSET_NAME\t\"IBM1153//\"\n#define HAS_HOLES\t0\t/* All 256 character are defined. */\n\n#include <8bit-gap.c>" -"\ufeff/*\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#ifndef SELECTSERVANT_H\n#define SELECTSERVANT_H\n\n#include \"redisservantgroup.h\"\n\n#define POLICY_READ_BALANCE \"read_balance\"\n#define POLICY_MASTER_ONLY \"master_only\"\n\nclass ServantSelect\n{\npublic:\n ServantSelect(void);\n ~ServantSelect(void);\n RedisServant* selectMaster(RedisServantGroup* g);\n RedisServant* selectSlave(RedisServantGroup* g);\nprivate:\n RedisServant* oneMaster(RedisServantGroup* g);\n RedisServant* oneSlave(RedisServantGroup* g);\nprivate:\n unsigned int m_masterCallNum;\n unsigned int m_slaveCallNum;\n};\n\n\nclass ReadBalancePolicy : public RedisServantGroupPolicy\n{\npublic:\n ReadBalancePolicy(void);\n ~ReadBalancePolicy(void);\n virtual RedisServant* selectServant(RedisServantGroup* g, ClientPacket* p);\nprivate:\n ServantSelect m_servantSelect;\n unsigned int m_readCnt;\n};\n\n\nclass MasterOnlyPolicy : public RedisServantGroupPolicy\n{\npublic:\n MasterOnlyPolicy(void){}\n ~MasterOnlyPolicy(void){}" -"#ifndef SAGE_FLINT_WRAP_H\n#define SAGE_FLINT_WRAP_H\n/* Using flint headers together in the same module as headers from some other\n * libraries (zn_poly, pari, possibly others) as it defines the macros ulong\n * and slong all over the place.\n *\n * What's worse is they are defined to types from GMP (mp_limb_t and\n * mp_limb_signed_t respectively) which themselves can have system-dependent\n * typedefs, so there is no guarantee that all these 'ulong' definitions from\n * different libraries' headers will be compatible.\n *\n * When including flint headers in Sage it should be done through this wrapper\n * to prevent confusion. We rename flint's ulong and slong to fulong and\n * fslong. This is consistent with flint's other f-prefixed typedefs.\n */\n\n#include \n\n/* Save previous definition of ulong if any, as zn_poly and pari also use it */\n/* Should work on GCC, clang, MSVC */\n#pragma push_macro(\"ulong\")\n#undef ulong\n\n#include \n\n/* If flint was already previously included via another header (e.g.\n * arb_wrap.h) then it may be necessary to redefine ulong and slong again */\n\n#ifndef ulong\n#define ulong mp_limb_t\n#define slong mp_limb_signed_t\n#endif\n\n#include \n#include \n#include \n#include \n#include \n#include \n#include \n#include " -"--- GNUmakefile.orig\t2019-01-02 03:35:46 UTC\n+++ GNUmakefile\n@@ -3,7 +3,7 @@\n \n CPPFLAGS = -std=c++14 -O3 -DNDEBUG -ffast-math -fno-builtin-malloc -Wall -Wextra -Wshadow -Wconversion -Wuninitialized\n #CPPFLAGS = -std=c++14 -g -O0 -ffast-math -fno-builtin-malloc -Wall -Wextra -Wshadow -Wconversion -Wuninitialized\n-CXX = clang++\n+#CXX = clang++\n \n # Prefix for installations (Unix / Mac)\n \n@@ -80,7 +80,7 @@ WIN_INCLUDES = /I. /Iinclude /Iinclude/util /Iinclude/\n # Compile commands for individual targets.\n #\n \n-FREEBSD_COMPILE = $(CXX) -g $(CPPFLAGS) -DNDEBUG -fPIC $(INCLUDES) -D_REENTRANT=1 -shared $(SUNW_SRC) -Bsymbolic -o libhoard.so -lpthread\n+FREEBSD_COMPILE = $(CXX) $(CXXFLAGS) -DNDEBUG -fPIC $(INCLUDES) -D_REENTRANT=1 -shared $(SUNW_SRC) -Bsymbolic -o libhoard.so -pthread\n \n DEBIAN_COMPILE = $(CXX) -g -O3 -fPIC -DNDEBUG -I. -Iinclude -Iinclude/util -Iinclude/hoard -Iinclude/superblocks -IHeap-Layers -D_REENTRANT=1 -shared source/libhoard.cpp source/unixtls.cpp Heap-Layers/wrappers/wrapper.cpp -Bsymbolic -o libhoard.so -lpthread -lstdc++ -ldl" -"// 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 arm,linux\n\npackage unix\n\nimport (\n\t\"syscall\"\n\t\"unsafe\"\n)\n\nfunc Getpagesize() int { return 4096 }\n\nfunc TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int64(ts.Nsec) }\n\nfunc NsecToTimespec(nsec int64) (ts Timespec) {\n\tts.Sec = int32(nsec / 1e9)\n\tts.Nsec = int32(nsec % 1e9)\n\treturn\n}\n\nfunc NsecToTimeval(nsec int64) (tv Timeval) {\n\tnsec += 999 // round up to microsecond\n\ttv.Sec = int32(nsec / 1e9)\n\ttv.Usec = int32(nsec % 1e9 / 1e3)\n\treturn\n}\n\nfunc Pipe(p []int) (err error) {\n\tif len(p) != 2 {\n\t\treturn EINVAL\n\t}\n\tvar pp [2]_C_int\n\terr = pipe2(&pp, 0)\n\tp[0] = int(pp[0])\n\tp[1] = int(pp[1])\n\treturn\n}\n\n//sysnb pipe2(p *[2]_C_int, flags int) (err error)\n\nfunc Pipe2(p []int, flags int) (err error) {\n\tif len(p) != 2 {\n\t\treturn EINVAL\n\t}\n\tvar pp [2]_C_int\n\terr = pipe2(&pp, flags)\n\tp[0] = int(pp[0])\n\tp[1] = int(pp[1])\n\treturn\n}\n\n// Underlying system call writes to newoffset via pointer.\n// Implemented in assembly to avoid allocation.\nfunc seek(fd int, offset int64, whence int) (newoffset int64, err syscall.Errno)\n\nfunc Seek(fd int," -"# Configuration for probot-stale - https://github.com/probot/stale\n\n# Number of days of inactivity before an Issue or Pull Request becomes stale\ndaysUntilStale: 30\n\n# Number of days of inactivity before a stale Issue or Pull Request is closed.\n# Set to false to disable. If disabled, issues still need to be closed manually, but will remain marked as stale.\ndaysUntilClose: 7\n\n# Issues or Pull Requests with these labels will never be considered stale. Set to `[]` to disable\nexemptLabels:\n - pinned\n - security\n - wip\n\n# Set to true to ignore issues in a project (defaults to false)\nexemptProjects: false\n\n# Set to true to ignore issues in a milestone (defaults to false)\nexemptMilestones: false\n\n# Label to use when marking as stale\nstaleLabel: wontfix\n\n# Comment to post when marking as stale. Set to `false` to disable\nmarkComment: >\n This issue has been automatically marked as stale because it has not had\n recent activity. It will be closed if no further activity occurs. Thank you\n for your contributions.\n\n# Comment to post when removing the stale label.\n# unmarkComment: >\n# Your comment here.\n\n# Comment to post when closing a stale Issue or Pull Request.\n# closeComment: >" -"#ifndef __SOUND_EMU10K1_H\n#define __SOUND_EMU10K1_H\n\n#include \n\n/*\n * Copyright (c) by Jaroslav Kysela ,\n *\t\t Creative Labs, Inc.\n * Definitions for EMU10K1 (SB Live!) chips\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\n\n/*\n * ---- FX8010 ----\n */\n\n#define EMU10K1_CARD_CREATIVE\t\t\t0x00000000\n#define EMU10K1_CARD_EMUAPS\t\t\t0x00000001\n\n#define EMU10K1_FX8010_PCM_COUNT\t\t8\n\n/* instruction set */\n#define iMAC0\t 0x00\t/* R = A + (X * Y >> 31) ; saturation */\n#define iMAC1\t 0x01\t/* R = A + (-X *" -"---\n\"Response format for search failures\":\n - do:\n indices.create:\n index: source\n body:\n settings:\n index.number_of_shards: 2\n\n - do:\n index:\n index: source\n id: 1\n body: { \"text\": \"test\" }\n - do:\n indices.refresh: {}\n\n - do:\n catch: bad_request\n reindex:\n body:\n source:\n index: source\n query:\n script:\n script:\n lang: painless\n source: throw new IllegalArgumentException(\"Cats!\")\n dest:\n index: dest\n - match: {error.type: search_phase_execution_exception}\n - match: {error.reason: \"Partial shards failure\"}\n - match: {error.phase: query}\n - match: {error.root_cause.0.type: script_exception}\n - match: {error.root_cause.0.reason: runtime error}\n - match: {error.failed_shards.0.shard: 0}\n - match: {error.failed_shards.0.index: source}\n - is_true: error.failed_shards.0.node\n - match: {error.failed_shards.0.reason.type: script_exception}\n - match: {error.failed_shards.0.reason.reason: runtime error}\n - match: {error.failed_shards.0.reason.caused_by.type: illegal_argument_exception}\n - match: {error.failed_shards.0.reason.caused_by.reason: Cats!}" -"/*++\r\n\r\nCopyright (c) 2004, 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\nModule Name:\r\n\r\n Ia32EfiRuntimeDriverLib.h\r\n\r\nAbstract:\r\n\r\n Light weight lib to support IA32 EFI Libraries.\r\n\r\n--*/\r\n\r\n#ifndef _IA32_EFI_RUNTIME_LIB_H_\r\n#define _IA32_EFI_RUNTIME_LIB_H_\r\n\r\n#include \"Tiano.h\"\r\n#include \"EfiRuntimeLib.h\"\r\n#include EFI_PROTOCOL_DEFINITION (ExtendedSalGuid)\r\n\r\ntypedef\r\nEFI_STATUS\r\n(EFIAPI *COMMON_PROC_ENTRY) (\r\n IN UINTN FunctionId,\r\n IN UINTN Arg2,\r\n IN UINTN Arg3,\r\n IN UINTN Arg4,\r\n IN UINTN Arg5,\r\n IN UINTN Arg6,\r\n IN UINTN Arg7,\r\n IN UINTN Arg8\r\n );\r\n\r\ntypedef struct {\r\n COMMON_PROC_ENTRY CommonProcEntry;\r\n} COMMON_PROC_ENTRY_STRUCT;\r\n\r\nEFI_STATUS\r\nInstallPlatformRuntimeLib (\r\n IN EFI_GUID *Guid,\r\n IN COMMON_PROC_ENTRY_STRUCT *CommonEntry\r\n )\r\n/*++\r\n\r\nRoutine Description:\r\n\r\n Install platform runtime lib.\r\n\r\nArguments:\r\n\r\n Guid - Guid for runtime lib\r\n CommonEntry - Common entry\r\n\r\nReturns: \r\n\r\n Status code\r\n\r\n--*/\r\n;\r\n\r\nEFI_STATUS\r\nGetPlatformRuntimeLib (\r\n IN EFI_SYSTEM_TABLE *SystemTable\r\n )\r\n/*++\r\n\r\nRoutine Description:\r\n\r\n Get platform runtime lib.\r\n\r\nArguments:\r\n\r\n SystemTable - Pointer to system table\r\n\r\nReturns: \r\n\r\n Status code\r\n\r\n--*/\r\n;\r\n\r\nEFI_STATUS\r\nConvertPlatformRuntimeLibPtr (\r\n IN EFI_RUNTIME_SERVICES *mRT\r\n )\r\n/*++\r\n\r\nRoutine Description:\r\n\r\n Convert platform" -".. _configuration.layers.parameterfilters:\n\nParameter Filters\n=================\n\nParameter filters provide templates for extracting arbitrary parameters from requests. This allows using GeoWebCache in scenarios such as time series data, multiple styles for the same layer or with CQL filters set by the client.\n\nThere are four types of parameter filters:\n\n#. **String filters** (````)\n#. **Floating point number filters** (````)\n#. **Integer filters** (````)\n#. **Regular expression filters** (````)\n\nA given layer can have multiple types of parameter filters.\n\nIf a request does not comply with the allowed values of the set parameter, the request will fail, usually with an error such as::\n\n 400: violates filter for parameter \n\nString filter\n-------------\n\nGeoWebCache can also use an allowable list of string values in a parameter filter for a given key. If the string in the request matches one of the string specified in the parameter filter, the request will proceed.\n\nWhen specifying a string filter, three pieces of information are required:\n\n* **Key** (````). The key is not case sensitive.\n* **Default value** (````).\n* **List of strings** (````, ````). The strings are case sensitive.\n\nThis information is presented in the following schema inside the ```` tag:\n\n.. code-block:: xml\n\n \n " -"/*\n** $Id: lpcap.c,v 1.4 2013/03/21 20:25:12 roberto Exp $\n** Copyright 2007, Lua.org & PUC-Rio (see 'lpeg.html' for license)\n*/\n\n#include \"lua.h\"\n#include \"lauxlib.h\"\n\n#include \"lpcap.h\"\n#include \"lptypes.h\"\n\n\n#define captype(cap)\t((cap)->kind)\n\n#define isclosecap(cap)\t(captype(cap) == Cclose)\n\n#define closeaddr(c)\t((c)->s + (c)->siz - 1)\n\n#define isfullcap(cap)\t((cap)->siz != 0)\n\n#define getfromktable(cs,v)\tlua_rawgeti((cs)->L, ktableidx((cs)->ptop), v)\n\n#define pushluaval(cs)\t\tgetfromktable(cs, (cs)->cap->idx)\n\n\n\n/*\n** Put at the cache for Lua values the value indexed by 'v' in ktable\n** of the running pattern (if it is not there yet); returns its index.\n*/\nstatic int updatecache (CapState *cs, int v) {\n int idx = cs->ptop + 1; /* stack index of cache for Lua values */\n if (v != cs->valuecached) { /* not there? */\n getfromktable(cs, v); /* get value from 'ktable' */\n lua_replace(cs->L, idx); /* put it at reserved stack position */\n cs->valuecached = v; /* keep track of what is there */\n }\n return idx;\n}\n\n\nstatic int pushcapture (CapState *cs);\n\n\n/*\n** Goes back in a list of captures looking for an open capture\n** corresponding to a close\n*/\nstatic Capture *findopen (Capture *cap) {\n int n = 0; /* number of closes waiting an open */\n for (;;) {" -"# HCL Native Syntax Specification\n\nThis is the specification of the syntax and semantics of the native syntax\nfor HCL. HCL is a system for defining configuration languages for applications.\nThe HCL information model is designed to support multiple concrete syntaxes\nfor configuration, but this native syntax is considered the primary format\nand is optimized for human authoring and maintenance, as opposed to machine\ngeneration of configuration.\n\nThe language consists of three integrated sub-languages:\n\n- The _structural_ language defines the overall hierarchical configuration\n structure, and is a serialization of HCL bodies, blocks and attributes.\n\n- The _expression_ language is used to express attribute values, either as\n literals or as derivations of other values.\n\n- The _template_ language is used to compose values together into strings,\n as one of several types of expression in the expression language.\n\nIn normal use these three sub-languages are used together within configuration\nfiles to describe an overall configuration, with the structural language\nbeing used at the top level. The expression and template languages can also\nbe used in isolation, to implement features such as REPLs, debuggers, and\nintegration into more limited HCL syntaxes such as the JSON profile.\n\n## Syntax Notation\n\nWithin this specification a" -".\\\" Copyright (c) 2002\\-2006 Szabolcs Szakacsits.\n.\\\" Copyright (c) 2005 Richard Russon.\n.\\\" Copyright (c) 2011\\-2013 Jean-Pierre Andre.\n.\\\" This file may be copied under the terms of the GNU Public License.\n.\\\"\n.TH NTFSRESIZE 8 \"July 2013\" \"ntfs-3g @VERSION@\"\n.SH NAME\nntfsresize \\- resize an NTFS filesystem without data loss\n.SH SYNOPSIS\n.B ntfsresize\n[\\fIOPTIONS\\fR]\n.B \\-\\-info(\\-mb\\-only)\n.I DEVICE\n.br\n.B ntfsresize\n[\\fIOPTIONS\\fR]\n[\\fB\\-\\-size \\fISIZE\\fR[\\fBk\\fR|\\fBM\\fR|\\fBG\\fR]]\n.I DEVICE\n.SH DESCRIPTION\nThe\n.B ntfsresize\nprogram safely resizes Windows XP, Windows Server 2003, Windows 2000, Windows\nNT4 and Longhorn NTFS filesystems without data loss. All NTFS versions are\nsupported, used by 32\\-bit and 64\\-bit Windows.\n.B Defragmentation is NOT required prior to resizing\nbecause the program can relocate any data if needed, without risking data\nintegrity.\n.PP\nNtfsresize can be used to shrink or enlarge any NTFS filesystem located\non an unmounted\n.I DEVICE\n(usually a disk partition). The new filesystem will fit in a DEVICE\nwhose desired size is\n.I SIZE\nbytes.\nThe\n.I SIZE\nparameter may have one of the optional modifiers\n.BR k ,\n.BR M ,\n.BR G ,\nwhich means the\n.I SIZE\nparameter is given in kilo\\-, mega\\- or gigabytes respectively.\n.B Ntfsresize\nconforms to the" -"

    bootstrap_completed

    \n
    \n

    \nServer Interface - Inform bootstrap server that\ninitialization is complete.\n

    SYNOPSIS

    \n
    \nkern_return_t   bootstrap_completed\n                (mach_port_t                     bootstrap_port,\n                 task_t                                    task);\n
    \n

    PARAMETERS

    \n
    \n

    \n

    bootstrap_port \n
    \nThe port representing the calling task's bootstrap server.\n

    \n

    task \n
    \nThis parameter represents the calling task.\n
    \n

    DESCRIPTION

    \n

    \nThis interface allows a given server task to inform the bootstrap\nserver that it is fully initialized and ready to handle requests.\nUpon receiving such notification, the bootstrap server can initialize\nany additional servers that may require services provided by the\npreviously initialized server.\n

    \nNote the following: not all servers that may be invoked by the bootstrap server\nsend this message upon startup. If the bootstrap server is told to\nwait for this message before spawning further servers (via setting a\nflag in the bootstrap.conf file) and the server just invoked never\nsends this message, the bootstrap server will wait forever.\n

    NOTES

    \n

    \nCurrently, this interface is used exclusively by the default\npager server so that the bootstrap server can defer initializing the\nOS server until the default pager is in place. (In small memory\nconfigurations, an OS server may not be able to initialize\nsuccessfully unless the default pager" -"/***********************************************************\n\nCopyright 1987, 1998 The Open Group\n\nPermission to use, copy, modify, distribute, and sell this software and its\ndocumentation for any purpose is hereby granted without fee, provided that\nthe above copyright notice appear in all copies and that both that\ncopyright notice and this permission notice appear in supporting\ndocumentation.\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\nOPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\nAN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nExcept as contained in this notice, the name of The Open Group shall not be\nused in advertising or otherwise to promote the sale, use or other dealings\nin this Software without prior written authorization from The Open Group.\n\n\nCopyright 1987 by Digital Equipment Corporation, Maynard, Massachusetts.\n\n All Rights Reserved\n\nPermission to use, copy," -"# frozen_string_literal: true\n\nrequire \"spec_helper\"\n\nmodule Decidim::Elections::Admin\n describe PublishElection do\n subject { described_class.new(election, user) }\n\n let!(:user) { create(:user, :admin, :confirmed, organization: participatory_process.organization) }\n let!(:participatory_process) { election.component.participatory_space }\n let(:step) { participatory_process.steps.first }\n let!(:election) { create(:election) }\n\n it \"publishes the election\" do\n expect { subject.call }.to change(election, :published?).from(false).to(true)\n end\n\n it \"traces the action\", versioning: true do\n expect(Decidim.traceability)\n .to receive(:perform_action!)\n .with(:publish, election, user, visibility: \"all\")\n .and_call_original\n\n expect { subject.call }.to change(Decidim::ActionLog, :count)\n action_log = Decidim::ActionLog.last\n expect(action_log.version).to be_present\n end\n\n it \"fires an event\" do\n create :follow, followable: participatory_process, user: user\n\n expect(Decidim::EventsManager)\n .to receive(:publish)\n .with(\n event: \"decidim.events.elections.election_published\",\n event_class: Decidim::Elections::ElectionPublishedEvent,\n resource: election,\n followers: [user]\n )\n\n subject.call\n end\n end\nend" -"/*\n * Copyright (C) 2008 Michael Niedermayer\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#include \"parser.h\"\n\nstatic int parse(AVCodecParserContext *s,\n AVCodecContext *avctx,\n const uint8_t **poutbuf, int *poutbuf_size,\n const uint8_t *buf, int buf_size)\n{\n if (avctx->codec_id == AV_CODEC_ID_THEORA)\n s->pict_type = (buf[0] & 0x40) ? AV_PICTURE_TYPE_P : AV_PICTURE_TYPE_I;\n else\n s->pict_type = (buf[0] & 0x80) ? AV_PICTURE_TYPE_P : AV_PICTURE_TYPE_I;\n\n *poutbuf = buf;\n *poutbuf_size = buf_size;\n return buf_size;\n}\n\nAVCodecParser ff_vp3_parser = {\n .codec_ids =" -"/*\n * Copyright (c) 2020, NVIDIA CORPORATION.\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#include \n\nnamespace HugeCTR {\n\nnamespace diagnose {\n\n__device__ float atomicMin(float* address, float val) {\n float old = val;\n do {\n val = old;\n old = atomicExch(address, val);\n } while (old < val);\n return old;\n}\n\n__device__ float atomicMax(float* address, float val) {\n float old = val;\n do {\n val = old;\n old = atomicExch(address, val);\n } while (old > val);\n return old;\n}\n\ntemplate \n__global__ void histogram_kernel(const T* arr, size_t len, float* range) {\n for (int i = blockIdx.x * blockDim.x + threadIdx.x; i < len; i += blockDim.x * gridDim.x) {\n float val =" -"// Copyright 2016 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 bpf\n\nimport \"fmt\"\n\n// Assemble converts insts into raw instructions suitable for loading\n// into a BPF virtual machine.\n//\n// Currently, no optimization is attempted, the assembled program flow\n// is exactly as provided.\nfunc Assemble(insts []Instruction) ([]RawInstruction, error) {\n\tret := make([]RawInstruction, len(insts))\n\tvar err error\n\tfor i, inst := range insts {\n\t\tret[i], err = inst.Assemble()\n\t\tif err != nil {\n\t\t\treturn nil, fmt.Errorf(\"assembling instruction %d: %s\", i+1, err)\n\t\t}\n\t}\n\treturn ret, nil\n}\n\n// Disassemble attempts to parse raw back into\n// Instructions. Unrecognized RawInstructions are assumed to be an\n// extension not implemented by this package, and are passed through\n// unchanged to the output. The allDecoded value reports whether insts\n// contains no RawInstructions.\nfunc Disassemble(raw []RawInstruction) (insts []Instruction, allDecoded bool) {\n\tinsts = make([]Instruction, len(raw))\n\tallDecoded = true\n\tfor i, r := range raw {\n\t\tinsts[i] = r.Disassemble()\n\t\tif _, ok := insts[i].(RawInstruction); ok {\n\t\t\tallDecoded = false\n\t\t}\n\t}\n\treturn insts, allDecoded\n}" -"'use strict';\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\n\nvar _concat = require('./internal/concat');\n\nvar _concat2 = _interopRequireDefault(_concat);\n\nvar _doParallel = require('./internal/doParallel');\n\nvar _doParallel2 = _interopRequireDefault(_doParallel);\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n/**\n * Applies `iteratee` to each item in `coll`, concatenating the results. Returns\n * the concatenated list. The `iteratee`s are called in parallel, and the\n * results are concatenated as they return. There is no guarantee that the\n * results array will be returned in the original order of `coll` passed to the\n * `iteratee` function.\n *\n * @name concat\n * @static\n * @memberOf module:Collections\n * @method\n * @category Collection\n * @param {Array|Iterable|Object} coll - A collection to iterate over.\n * @param {Function} iteratee - A function to apply to each item in `coll`.\n * The iteratee is passed a `callback(err, results)` which must be called once\n * it has completed with an error (which can be `null`) and an array of results.\n * Invoked with (item, callback).\n * @param {Function} [callback(err)] - A callback which is called after all the\n * `iteratee` functions have finished, or an error occurs. Results is an array\n * containing the concatenated results of the" -"\"\"\"\nBase class for Tasks so that the core INIT functions are based.\nPurely for inheritance\n\nAllows the new task to expand the constructor\n\"\"\"\n\n__author__ = \"Matt Lorentzen @lorentzenman\"\n__license__ = \"MIT\"\n\n\n#######################################################################\n# Base Task Class Definition\n#######################################################################\n\nclass BaseTask:\n \"\"\"\n # Uniform Task Constructor Arguments\n : interactive > boolean value from --interactive switch \n : counter > counter tracker\n : csh > Current Instantiated Sheepl Object\n : cl > Colour Object\n : **kargs > additional constructor keyword arguments\n \"\"\"\n\n \"\"\"\n Note about **kwds if this works\n \"\"\"\n\n def __init__(self, interactive, counter, csh, cl, **kwds):\n\n # uniform variable declarations\n self.interactive = interactive\n ## look at the ID to see if this can be encapsulated into the 'csh' object\n self.counter = counter\n self.csh = csh\n self.cl = cl\n super().__init__(**kwds)" -"/*\r\n *\r\n * Copyright (c) 1994\r\n * Hewlett-Packard Company\r\n *\r\n * Copyright (c) 1996,1997\r\n * Silicon Graphics Computer Systems, Inc.\r\n *\r\n * Copyright (c) 1999 \r\n * Boris Fomitchev\r\n *\r\n * This material is provided \"as is\", with absolutely no warranty expressed\r\n * or implied. Any use is at your own risk.\r\n *\r\n * Permission to use or copy this software for any purpose is hereby granted \r\n * without fee, provided the above notices are retained on all copies.\r\n * Permission to modify the code and to distribute modified code is granted,\r\n * provided the above notices are retained, and a notice that the code was\r\n * modified is included with the above copyright notice.\r\n *\r\n */\r\n\r\n#ifndef _STLP_VECTOR\r\n#define _STLP_VECTOR\r\n\r\n# ifndef _STLP_OUTERMOST_HEADER_ID\r\n# define _STLP_OUTERMOST_HEADER_ID 0x77\r\n# include \r\n# endif\r\n\r\n# ifdef _STLP_PRAGMA_ONCE\r\n# pragma once\r\n# endif\r\n\r\n# ifndef _STLP_INTERNAL_ALGOBASE_H\r\n# include \r\n# endif\r\n\r\n#ifndef _STLP_INTERNAL_VECTOR_H\r\n# include \r\n#endif\r\n\r\n#if defined (_STLP_IMPORT_VENDOR_STD) && ! defined (_STLP_MINIMUM_IMPORT_STD)\r\n# include _STLP_NATIVE_HEADER(vector)\r\n#endif\r\n\r\n# if (_STLP_OUTERMOST_HEADER_ID == 0x77)\r\n# include \r\n# undef _STLP_OUTERMOST_HEADER_ID\r\n# endif\r\n\r\n#endif /* _STLP_VECTOR */\r\n\r\n// Local Variables:\r\n// mode:C++\r\n// End:" -"/*\n * arch/arm/plat-omap/include/mach/omap24xx.h\n *\n * This file contains the processor specific definitions\n * of the TI OMAP24XX.\n *\n * Copyright (C) 2007 Texas Instruments.\n * Copyright (C) 2007 Nokia Corporation.\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#ifndef __ASM_ARCH_OMAP2_H\n#define __ASM_ARCH_OMAP2_H\n\n/*\n * Please place only base defines here and put the rest in device\n * specific headers. Note also that some of these defines are needed\n * for omap1 to compile without adding ifdefs.\n */\n\n#define L4_24XX_BASE" -"/*! ColReorder 1.1.2\n * \u00c2\u00a92010-2014 SpryMedia Ltd - datatables.net/license\n */\n\n/**\n * @summary ColReorder\n * @description Provide the ability to reorder columns in a DataTable\n * @version 1.1.2\n * @file dataTables.colReorder.js\n * @author SpryMedia Ltd (www.sprymedia.co.uk)\n * @contact www.sprymedia.co.uk/contact\n * @copyright Copyright 2010-2014 SpryMedia Ltd.\n *\n * This source file is free software, available under the following license:\n * MIT license - http://datatables.net/license/mit\n *\n * This source file is distributed in the hope that it will be useful, but\n * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY\n * or FITNESS FOR A PARTICULAR PURPOSE. See the license files for details.\n *\n * For details please refer to: http://www.datatables.net\n */\n\n(function(window, document, undefined) {\n\n\n /**\n * Switch the key value pairing of an index array to be value key (i.e. the old value is now the\n * key). For example consider [ 2, 0, 1 ] this would be returned as [ 1, 2, 0 ].\n * @method fnInvertKeyValues\n * @param array aIn Array to switch around\n * @returns array\n */\n function fnInvertKeyValues( aIn )\n {\n var aRet=[];\n for ( var i=0, iLen=aIn.length ; i\n#include \n\nint main(int argc, char* argv[]) {\n QApplication app(argc, argv);\n QTextStream cout(stdout); \n CardDeck deck;\n\n\n CardHand hand;\n int handSize, playerScore, progScore;\n cout << \"How many cards in a hand? \" << flush;\n handSize = QInputDialog::getInt(0, QString(\"getInt()\"),\n QString(\"How many cards in hand?\"), 1, 5);\n QMessageBox::StandardButton sb;\n do {\n hand = deck.deal(handSize);\n cout << \"Here is your hand:\" << endl;\n cout << hand.toString() << endl;\n playerScore = hand.getValue();\n cout << QString(\"Your score is: %1 points.\")\n .arg(playerScore) << endl;\n // Now a hand for the dealer:\n hand = deck.deal(handSize);\n progScore = hand.getValue();\n cout << \"Here is my hand:\" << endl;\n cout << hand.toString() << endl;\n cout << QString(\"My score is: %1 points.\")\n .arg(progScore) << endl;\n cout << QString(\"%1 win!!\")\n .arg((playerScore > progScore)?\"You\":\"I\") << endl;\n sb = QMessageBox::question(0, QString(\"QMessageBox::question()\"),\n QString(\"Another hand?\"), QMessageBox::Yes | QMessageBox::No);\n } while (sb == QMessageBox::Yes);\n return 0;\n}" -"# -*- coding: utf-8 -*-\nimport cherrypy\nimport datetime\nimport dateutil.parser\nimport errno\nfrom functools import wraps\nimport json\nimport os\nimport pytz\nimport re\nimport string\n\nimport girder\nimport girder.events\n\ntry:\n from random import SystemRandom\n random = SystemRandom()\n random.random() # potentially raises NotImplementedError\nexcept NotImplementedError:\n girder.logprint.warning(\n 'WARNING: using non-cryptographically secure PRNG.')\n import random\n\n\ndef parseTimestamp(x, naive=True):\n \"\"\"\n Parse a datetime string using the python-dateutil package.\n\n If no timezone information is included, assume UTC. If timezone information\n is included, convert to UTC.\n\n If naive is True (the default), drop the timezone information such that a\n naive datetime is returned.\n \"\"\"\n dt = dateutil.parser.parse(x)\n if dt.tzinfo:\n dt = dt.astimezone(pytz.utc).replace(tzinfo=None)\n if naive:\n return dt\n else:\n return pytz.utc.localize(dt)\n\n\ndef genToken(length=64):\n \"\"\"\n Use this utility function to generate a random string of a desired length.\n \"\"\"\n return ''.join(random.choice(string.ascii_letters + string.digits)\n for _ in range(length))\n\n\ndef camelcase(value):\n \"\"\"\n Convert a module name or string with underscores and periods to camel case.\n\n :param value: the string to convert\n :type value: str\n :returns: the value converted to camel case.\n \"\"\"\n return ''.join(x.capitalize() if x else '_' for x in\n re.split('[._]+', value))\n\n\ndef mkdir(path, mode=0o777, recurse=True, existOk=True):\n \"\"\"\n Create a new directory or ensure a directory already exists." -"// PersistenceSecretsStorageTests.swift\n// Copyright (C) 2020 Presidenza del Consiglio dei Ministri.\n// Please refer to the AUTHORS file for more information.\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\n// published by the Free Software Foundation, either version 3 of the\n// License, or (at your option) any later version.\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// You should have received a copy of the GNU Affero General Public License\n// along with this program. If not, see .\n\n// swiftlint:disable superfluous_disable_command force_try implicitly_unwrapped_optional force_unwrapping force_cast\n\nimport Foundation\nimport Persistence\nimport XCTest\n\nprivate struct Dog: Codable, Equatable {\n let name: String\n let age: Int\n}\n\nfinal class PersistenceSecretsStorageTests: XCTestCase {\n var storage: SecretsStorage!\n\n override func setUp() {\n super.setUp()\n\n self.storage = SecretsStorage(bundle: .main)\n }\n\n override func tearDown() {\n super.tearDown()\n\n let secItemClasses = [\n kSecClassGenericPassword,\n kSecClassInternetPassword,\n kSecClassCertificate,\n kSecClassKey,\n kSecClassIdentity\n ]\n\n for secItemClass in secItemClasses {\n let spec =" -"// Copyright (c) 2004 \n// Utrecht University (The Netherlands),\n// ETH Zurich (Switzerland),\n// INRIA Sophia-Antipolis (France),\n// Max-Planck-Institute Saarbruecken (Germany),\n// and Tel-Aviv University (Israel). 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// SPDX-License-Identifier: LGPL-3.0+\n// \n//\n// Author(s) : various\n\n// Tests if QT is available.\n\n#include \n#include \n#include \n\nQArray fib( int num ) // returns fibonacci array\n{\n ASSERT( num > 2 );\n QArray f( num ); // array of ints\n\n f[0] = f[1] = 1; // initialize first two numbers\n for ( int i=2; i $router->uParameters[1]), 60, true);\n}\ncatch (NotFoundException $e)\n{\n\thttp_status_code(404);\n\t$sPageTitle = \"Document not found\";\n\t$sPageContents = \"No document exists at this URL. It may have been removed, or it may never have existed in the first place.\";\n\treturn;\n}\n\n/* We use a custom layout here, so we don't need the regular layout wrapper. Just kill off execution here. */\necho(NewTemplater::Render(\"view\", $locale->strings, array(\n\t\"slug\" => $document->sSlugId,\n\t\"filename\" => $document->sOriginalFilename,\n\t\"views\" => $document->sViews,\n\t\"private\" => !$document->sIsPublic\n)));\ndie();" -"### Skydock - Automagic Service Discovery for [Docker](https://github.com/dotcloud/docker)\n[![Build Status](https://travis-ci.org/crosbymichael/skydock.png)](https://travis-ci.org/crosbymichael/skydock)\n\n\n## NOTICE\n\nI plan on making some breaking changes soon to help skydns and skydock scale better. To stay up-to-date either\nwatch this repo or follow me on twitter @crosbymichael. \n\n\nSkydock monitors docker events when containers start, stop, die, kill, etc and inserts records into a dynamic\nDNS server [skydns](https://github.com/skynetservices/skydns1). This allows standard DNS queries for services\nrunning inside docker containers. Because lets face it, if you have to modify your application code to work\nwith other service discovery solutions you might as well just give up. DNS just works and it works well. \nAlso you cannot be expected to modify application code that you don't own. Passing service urls via the\ncli or in static config files (nginx) will not be possible if your service discovery solution requires\na client library just to fetch an IP. \n\n\n[Skydns](https://github.com/skynetservices/skydns1) is a very small and simple server that does DNS for \ndiscovery very well. The authors and contributors to skydns helped a lot to make this project possible.\nSkydns exposes a very simple REST API to add, update, and remove services.\n\n\n#### The Details\n\nWhen you start a container with docker an" -"/*\nCopyright 2017 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 v1beta2\n\nimport (\n\t\"fmt\"\n\n\tapps \"k8s.io/api/apps/v1beta2\"\n\t\"k8s.io/api/core/v1\"\n\tmetav1 \"k8s.io/apimachinery/pkg/apis/meta/v1\"\n\t\"k8s.io/apimachinery/pkg/labels\"\n)\n\n// DaemonSetListerExpansion allows custom methods to be added to\n// DaemonSetLister.\ntype DaemonSetListerExpansion interface {\n\tGetPodDaemonSets(pod *v1.Pod) ([]*apps.DaemonSet, error)\n\tGetHistoryDaemonSets(history *apps.ControllerRevision) ([]*apps.DaemonSet, error)\n}\n\n// DaemonSetNamespaceListerExpansion allows custom methods to be added to\n// DaemonSetNamespaceLister.\ntype DaemonSetNamespaceListerExpansion interface{}\n\n// GetPodDaemonSets returns a list of DaemonSets that potentially match a pod.\n// Only the one specified in the Pod's ControllerRef will actually manage it.\n// Returns an error only if no matching DaemonSets are found.\nfunc (s *daemonSetLister) GetPodDaemonSets(pod *v1.Pod) ([]*apps.DaemonSet, error) {\n\tvar selector labels.Selector\n\tvar daemonSet *apps.DaemonSet\n\n\tif len(pod.Labels) == 0 {\n\t\treturn nil, fmt.Errorf(\"no daemon sets found for pod %v because" -"// AttributeTypeCode.cs\n//\n\nusing System;\nusing System.Collections.Generic;\nusing System.Runtime.CompilerServices;\n\nnamespace Xrm.Sdk.Metadata\n{\n // Summary:\n // Describes the type of an attribute.\n //[DataContract(Name = \"AttributeTypeCode\", Namespace = \"http://schemas.microsoft.com/xrm/2011/Metadata\")]\n [NamedValues]\n [ScriptNamespace(\"SparkleXrm.Sdk.Metadata\")]\n public enum AttributeTypeCode\n {\n // Summary:\n // A Boolean attribute. Value = 0.\n [ScriptName(\"Boolean\")]\n Boolean_ = 0,\n //\n // Summary:\n // An attribute that represents a customer. Value = 1.\n [ScriptName(\"Customer\")]\n Customer = 1,\n //\n // Summary:\n // A date/time attribute. Value = 2.\n [ScriptName(\"DateTime\")]\n DateTime = 2,\n //\n // Summary:\n // A decimal attribute. Value = 3.\n [ScriptName(\"Decimal\")]\n Decimal = 3,\n //\n // Summary:\n // A double attribute. Value = 4.\n [ScriptName(\"Double\")]\n Double_ = 4,\n //\n // Summary:\n // An integer attribute. Value = 5.\n [ScriptName(\"Integer\")]\n Integer = 5,\n //\n // Summary:\n // A lookup attribute. Value = 6.\n [ScriptName(\"Lookup\")]\n Lookup = 6,\n //\n // Summary:\n // A memo attribute. Value = 7.\n [ScriptName(\"Memo\")]\n Memo = 7,\n //\n // Summary:\n // A money attribute. Value = 8.\n [ScriptName(\"None\")]\n Money = 8,\n //\n // Summary:\n // An owner attribute. Value = 9.\n [ScriptName(\"Owner\")]\n Owner = 9,\n //\n // Summary:\n // A partylist attribute. Value = 10.\n [ScriptName(\"PartyList\")]\n PartyList = 10,\n //\n // Summary:\n // A picklist attribute. Value = 11.\n [ScriptName(\"Picklist\")]" -"/*\n * Copyright (c) 1997, 2019, Oracle and/or its affiliates. All rights reserved.\n * Copyright (c) 2012, 2015 SAP SE. 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\n#include \"precompiled.hpp\"\n#include" -"// vim:ts=4:sts=4:sw=4:\n/*!\n *\n * Copyright 2009-2012 Kris Kowal under the terms of the MIT\n * license found at http://github.com/kriskowal/q/raw/master/LICENSE\n *\n * With parts by Tyler Close\n * Copyright 2007-2009 Tyler Close under the terms of the MIT X license found\n * at http://www.opensource.org/licenses/mit-license.html\n * Forked at ref_send.js version: 2009-05-11\n *\n * With parts by Mark Miller\n * Copyright (C) 2011 Google 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\n(function (definition) {\n // Turn off strict mode for this function so we can assign to global.Q\n /*jshint strict: false*/\n\n // This file will function properly as a \n/* Alternatives for top of application */\n\n```\n\n## Develop / Demo\nRun `yarn start` will start a local development server, open your default browser to display it, open your finder to the correct window and start watching the `/src` directory for changes and automatically rebuilding the element and documentation site for the demo.\n```bash\n$ yarn start\n```\n\n## Test\n\n```bash\n$ yarn run test\n```\n\n## Build\nBuilds ensure that wcfactory can correctly compile your web component project to\nwork on the maximum number of browsers possible.\n```bash\n$ yarn run build\n```\n\n## Contributing\n\n1. Fork it! `git clone git@github.com/elmsln/lrnwebcomponents.git`\n2. Create your feature branch: `git checkout -b my-new-feature`\n3. Commit your changes: `git commit -m 'Add some feature'`\n4. Push to the branch: `git push origin my-new-feature`\n5. Submit a pull request :D\n\n## Code style\n\nContentblock" -"// Copyright 2017 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// Package errd simplifies error and defer handling.\n//\n// Overview\n//\n// Package errd allows returning form a block of code without using the usual if\n// clauses, while properly intercepting errors and passing them to code called\n// at defer time.\n//\n// The following piece of idiomatic Go writes the contents of a reader to a file\n// on Google Cloud Storage:\n//\n// func writeToGS(ctx context.Context, bucket, dst string, r io.Reader) (err error) {\n// client, err := storage.NewClient(ctx)\n// if err != nil {\n// return err\n// }\n// defer client.Close()\n//\n// w := client.Bucket(bucket).Object(dst).NewWriter(ctx)\n// defer func() {\n// if r := recover(); r != nil {\n// w.CloseWithError(fmt.Errorf(\"panic: %v\", r))\n// panic(r)\n// }\n// if err != nil {\n// _ = w.CloseWithError(err)\n// } else {\n// err = w.Close()\n// }\n// }\n// _, err = io.Copy(w, r)\n// return err\n// }\n//\n// Google Cloud Storage allows files to be written atomically. This code\n//" -"// Copyright 2009 the Sputnik authors. All rights reserved.\n// This code is governed by the BSD license found in the LICENSE file.\n\n/**\n * EscapeSequence :: HexEscapeSequence :: x HexDigit HexDigit\n *\n * @path ch07/7.8/7.8.4/S7.8.4_A6.1_T2.js\n * @description HexEscapeSequence :: ENGLISH CAPITAL ALPHABET\n */\n\n//CHECK#A-Z\nvar hex = [\"\\x41\", \"\\x42\", \"\\x43\", \"\\x44\", \"\\x45\", \"\\x46\", \"\\x47\", \"\\x48\", \"\\x49\", \"\\x4A\", \"\\x4B\", \"\\x4C\", \"\\x4D\", \"\\x4E\", \"\\x4F\", \"\\x50\", \"\\x51\", \"\\x52\", \"\\x53\", \"\\x54\", \"\\x55\", \"\\x56\", \"\\x57\", \"\\x58\", \"\\x59\", \"\\x5A\"];\nvar character = [\"A\", \"B\", \"C\", \"D\", \"E\", \"F\", \"G\", \"H\", \"I\", \"J\", \"K\", \"L\", \"M\", \"N\", \"O\", \"P\", \"Q\", \"R\", \"S\", \"T\", \"U\", \"V\", \"W\", \"X\", \"Y\", \"Z\"];\nfor (var index = 0; index <= 25; index++) {\n if (hex[index] !== character[index]) {\n $ERROR('#' + character[index] + ' ');\n }\n}" -"// Copyright 2015 The Prometheus Authors\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 expfmt\n\nimport (\n\t\"fmt\"\n\t\"io\"\n\t\"net/http\"\n\n\t\"github.com/golang/protobuf/proto\"\n\t\"github.com/matttproud/golang_protobuf_extensions/pbutil\"\n\t\"github.com/prometheus/common/internal/bitbucket.org/ww/goautoneg\"\n\n\tdto \"github.com/prometheus/client_model/go\"\n)\n\n// Encoder types encode metric families into an underlying wire protocol.\ntype Encoder interface {\n\tEncode(*dto.MetricFamily) error\n}\n\n// Closer is implemented by Encoders that need to be closed to finalize\n// encoding. (For example, OpenMetrics needs a final `# EOF` line.)\n//\n// Note that all Encoder implementations returned from this package implement\n// Closer, too, even if the Close call is a no-op. This happens in preparation\n// for adding a Close method to the Encoder interface directly in a (mildly\n// breaking) release in the future.\ntype Closer interface" -"ccs = ccs or {}\n\nrequire \"cocos.cocostudio.StudioConstants\"\n\nlocal function class(classname, super)\n local superType = type(super)\n local cls\n\n if superType ~= \"function\" and superType ~= \"table\" then\n superType = nil\n super = nil\n end\n\n if superType == \"function\" or (super and super.__ctype == 1) then\n -- inherited from native C++ Object\n cls = {}\n\n if superType == \"table\" then\n -- copy fields from super\n for k,v in pairs(super) do cls[k] = v end\n cls.__create = super.__create\n cls.super = super\n else\n cls.__create = super\n cls.ctor = function() end\n end\n\n cls.__cname = classname\n cls.__ctype = 1\n\n function cls.new(...)\n local instance = cls.__create(...)\n -- copy fields from class to native object\n for k,v in pairs(cls) do instance[k] = v end\n instance.class = cls\n instance:ctor(...)\n return instance\n end\n\n else\n -- inherited from Lua Object\n if super then\n cls = {}\n setmetatable(cls, {__index = super})\n cls.super = super\n else\n cls = {ctor = function() end}\n end\n\n cls.__cname = classname\n cls.__ctype = 2 -- lua\n cls.__index = cls\n\n function cls.new(...)\n local instance = setmetatable({}, cls)\n instance.class = cls\n instance:ctor(...)\n return instance\n end\n end\n\n return cls\nend\n\nfunction ccs.sendTriggerEvent(event)\n local triggerObjArr = ccs.TriggerMng.getInstance():get(event)\n\n if nil == triggerObjArr then\n return\n end\n\n for i = 1, table.getn(triggerObjArr) do\n local triObj" -"// +build amd64,linux\n// Created by cgo -godefs - DO NOT EDIT\n// cgo -godefs types_linux.go\n\npackage unix\n\nconst (\n\tsizeofPtr = 0x8\n\tsizeofShort = 0x2\n\tsizeofInt = 0x4\n\tsizeofLong = 0x8\n\tsizeofLongLong = 0x8\n\tPathMax = 0x1000\n)\n\ntype (\n\t_C_short int16\n\t_C_int int32\n\t_C_long int64\n\t_C_long_long int64\n)\n\ntype Timespec struct {\n\tSec int64\n\tNsec int64\n}\n\ntype Timeval struct {\n\tSec int64\n\tUsec int64\n}\n\ntype Timex struct {\n\tModes uint32\n\tPad_cgo_0 [4]byte\n\tOffset int64\n\tFreq int64\n\tMaxerror int64\n\tEsterror int64\n\tStatus int32\n\tPad_cgo_1 [4]byte\n\tConstant int64\n\tPrecision int64\n\tTolerance int64\n\tTime Timeval\n\tTick int64\n\tPpsfreq int64\n\tJitter int64\n\tShift int32\n\tPad_cgo_2 [4]byte\n\tStabil int64\n\tJitcnt int64\n\tCalcnt int64\n\tErrcnt int64\n\tStbcnt int64\n\tTai int32\n\tPad_cgo_3 [44]byte\n}\n\ntype Time_t int64\n\ntype Tms struct {\n\tUtime int64\n\tStime int64\n\tCutime int64\n\tCstime int64\n}\n\ntype Utimbuf struct {\n\tActime int64\n\tModtime int64\n}\n\ntype Rusage struct {\n\tUtime Timeval\n\tStime Timeval\n\tMaxrss int64\n\tIxrss int64\n\tIdrss int64\n\tIsrss int64\n\tMinflt int64\n\tMajflt int64\n\tNswap int64\n\tInblock int64\n\tOublock int64\n\tMsgsnd int64\n\tMsgrcv int64\n\tNsignals int64\n\tNvcsw int64\n\tNivcsw int64\n}\n\ntype Rlimit struct {\n\tCur uint64\n\tMax uint64\n}\n\ntype _Gid_t uint32\n\ntype Stat_t struct {\n\tDev" -"/*\n *\tAdaptec AAC series RAID controller driver\n *\t(c) Copyright 2001 Red Hat Inc.\n *\n * based on the old aacraid driver that is..\n * Adaptec aacraid device driver for Linux.\n *\n * Copyright (c) 2000-2010 Adaptec, Inc.\n * 2010-2015 PMC-Sierra, Inc. (aacraid@pmc-sierra.com)\n *\t\t 2016-2017 Microsemi Corp. (aacraid@microsemi.com)\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, or (at your option)\n * 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, 675 Mass Ave, Cambridge, MA 02139, USA.\n *\n * Module Name:\n * commsup.c\n *\n * Abstract: Contain all routines that are required for FSA host/adapter\n * communication.\n *\n */\n\n#include \n#include " -"/*-------------------------------------------------------------------------\n * C-Pluff, a plug-in framework for C\n * Copyright 2007 Johannes Lehtinen\n * \n * Permission is hereby granted, free of charge, to any person obtaining a\n * copy of this software and associated documentation files (the \"Software\"),\n * to deal in the Software without restriction, including without limitation\n * the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the\n * Software is furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included\n * in all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\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/** @file \n * C-Pluff C API" -"/*\n * eXist-db Open Source Native XML Database\n * Copyright (C) 2001 The eXist-db Authors\n *\n * info@exist-db.org\n * http://www.exist-db.org\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 Street, Fifth Floor, Boston, MA 02110-1301 USA\n */\npackage org.exist.security.realm.ldap;\n\nimport org.exist.config.Configurable;\nimport org.exist.config.Configuration;\nimport org.exist.config.Configurator;\nimport org.exist.config.annotation.ConfigurationClass;\n\n/**\n * @author aretter\n */\n\n@ConfigurationClass(\"blacklist\")\npublic class LDAPPrincipalBlackList extends AbstractLDAPPrincipalRestrictionList implements Configurable {\n\n public LDAPPrincipalBlackList(final Configuration config) {\n super(config);\n\n //it require, because class's fields initializing after super constructor\n if (this.configuration != null) {\n this.configuration = Configurator.configure(this, this.configuration);\n }" -"import log from \"loglevel\";\nimport prompts from \"prompts\";\n\nimport { clean } from \"./clean\";\nimport { libsize } from \"./libsize\";\nimport { ammendCommit, getLernaVersion, git, replaceTag, run } from \"./utils\";\nimport { variables } from \"./variables\";\n\nexport type ReleaseType =\n | \"major\"\n | \"minor\"\n | \"patch\"\n | \"premajor\"\n | \"preminor\"\n | \"prepatch\"\n | \"prerelease\"\n | \"\";\n\nexport const RELEASE_TYPES: ReadonlyArray = [\n \"major\",\n \"minor\",\n \"patch\",\n \"premajor\",\n \"preminor\",\n \"prepatch\",\n \"prerelease\",\n];\n\nexport function toReleaseType(value: string): ReleaseType {\n if (RELEASE_TYPES.includes(value as ReleaseType)) {\n return value as ReleaseType;\n }\n\n return \"\";\n}\n\nasync function rollback(): Promise {\n log.error(\"Cancelling this release...\");\n const version = await getLernaVersion();\n git(`reset HEAD^`);\n git(`tag -d v${version}`);\n git(\"checkout .\");\n\n return process.exit(1);\n}\n\nasync function verify(): Promise {\n const { complete } = await prompts({\n type: \"confirm\",\n name: \"complete\",\n message: \"Continue the release?\",\n initial: false,\n });\n\n if (!complete) {\n await rollback();\n }\n\n log.info();\n}\n\nexport async function release(\n type: ReleaseType = \"\",\n blog: boolean = !type.startsWith(\"pre\"),\n autoYes: boolean = false\n): Promise {\n const yes = autoYes ? \" --yes\" : \"\";\n\n // first, update the version since I'll be ammending this commit and tag with\n // libsize changes, prettier changelogs, and adding the themes specifically\n // for the tag only" -"from __future__ import absolute_import, division, print_function\n\nimport platform\nimport sys\nimport types\nimport warnings\n\n\nPY2 = sys.version_info[0] == 2\nPYPY = platform.python_implementation() == \"PyPy\"\n\n\nif PYPY or sys.version_info[:2] >= (3, 6):\n ordered_dict = dict\nelse:\n from collections import OrderedDict\n\n ordered_dict = OrderedDict\n\n\nif PY2:\n from UserDict import IterableUserDict\n\n # We 'bundle' isclass instead of using inspect as importing inspect is\n # fairly expensive (order of 10-15 ms for a modern machine in 2016)\n def isclass(klass):\n return isinstance(klass, (type, types.ClassType))\n\n # TYPE is used in exceptions, repr(int) is different on Python 2 and 3.\n TYPE = \"type\"\n\n def iteritems(d):\n return d.iteritems()\n\n # Python 2 is bereft of a read-only dict proxy, so we make one!\n class ReadOnlyDict(IterableUserDict):\n \"\"\"\n Best-effort read-only dict wrapper.\n \"\"\"\n\n def __setitem__(self, key, val):\n # We gently pretend we're a Python 3 mappingproxy.\n raise TypeError(\n \"'mappingproxy' object does not support item assignment\"\n )\n\n def update(self, _):\n # We gently pretend we're a Python 3 mappingproxy.\n raise AttributeError(\n \"'mappingproxy' object has no attribute 'update'\"\n )\n\n def __delitem__(self, _):\n # We gently pretend we're a Python 3 mappingproxy.\n raise TypeError(\n \"'mappingproxy' object does not support item deletion\"\n )\n\n def clear(self):\n # We gently pretend we're a Python 3 mappingproxy.\n raise" -"package org.geogebra.common.kernel.arithmetic.variable;\n\nimport org.geogebra.common.kernel.Kernel;\nimport org.geogebra.common.kernel.arithmetic.ExpressionValue;\nimport org.geogebra.common.kernel.arithmetic.FunctionVariable;\nimport org.geogebra.common.kernel.geos.GeoElement;\nimport org.geogebra.common.kernel.parser.FunctionParser;\n\nclass DerivativeCreator {\n\n\tprivate Kernel kernel;\n\n\tDerivativeCreator(Kernel kernel) {\n\t\tthis.kernel = kernel;\n\t}\n\n\tExpressionValue getDerivative(String funcName) {\n\t\tint index = funcName.length() - 1;\n\t\tint order = 0;\n\t\twhile (index >= 0 && funcName.charAt(index) == '\\'') {\n\t\t\torder++;\n\t\t\tindex--;\n\t\t}\n\t\tGeoElement geo = null;\n\t\tboolean hasGeoDerivative = false;\n\t\twhile (index < funcName.length() && !hasGeoDerivative) {\n\t\t\tString label = funcName.substring(0, index + 1);\n\t\t\tgeo = kernel.lookupLabel(label);\n\t\t\thasGeoDerivative = geo != null && hasDerivative(geo);\n\t\t\t// stop if f' is defined but f is not defined, see #1444\n\t\t\tif (!hasGeoDerivative) {\n\t\t\t\torder--;\n\t\t\t\tindex++;\n\t\t\t}\n\t\t}\n\n\t\tif (hasGeoDerivative) {\n\t\t\treturn FunctionParser.derivativeNode(kernel, geo, order,\n\t\t\t\t\tgeo.isGeoCurveCartesian(), new FunctionVariable(kernel));\n\t\t}\n\t\treturn null;\n\t}\n\n\tprivate boolean hasDerivative(GeoElement geoElement) {\n\t\treturn geoElement.isRealValuedFunction() || geoElement.isGeoCurveCartesian();\n\t}\n}" -"// class template regex -*- C++ -*-\n\n// Copyright (C) 2010-2019 Free Software Foundation, Inc.\n//\n// This file is part of the GNU ISO C++ Library. This library is free\n// software; you can redistribute it and/or modify it under the\n// terms of the GNU General Public License as published by the\n// Free Software Foundation; either version 3, or (at your option)\n// 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\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/**\n * @file bits/regex_error.h\n * @brief Error and exception objects for the std regex library.\n *\n * This" -"/*\n * Copyright Milian Wolff \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\n * the License or (at your option) version 3 or any later version\n * accepted by the membership of KDE e.V. (or its successor approved\n * by the membership of KDE e.V.), which shall act as a proxy\n * defined in Section 14 of version 3 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 * You should have received a copy of the GNU General Public License\n * along with this program. If not, see .\n */\n\n#ifndef KDEVPLATFORM_PLUGIN_BENCH_QUICKOPEN_H\n#define KDEVPLATFORM_PLUGIN_BENCH_QUICKOPEN_H\n\n#include \"quickopentestbase.h\"\n\nclass BenchQuickOpen\n : public QuickOpenTestBase\n{\n Q_OBJECT\npublic:\n explicit BenchQuickOpen(QObject* parent = nullptr);\nprivate:\n void getData();\nprivate Q_SLOTS:\n void benchProjectFileFilter_addRemoveProject();\n void benchProjectFileFilter_addRemoveProject_data();\n void benchProjectFileFilter_reset();\n void benchProjectFileFilter_reset_data();\n void benchProjectFileFilter_setFilter();\n void benchProjectFileFilter_setFilter_data();\n void benchProjectFileFilter_providerData();\n void benchProjectFileFilter_providerData_data();\n void" -"/*******************************************************************************\n * Copyright (C) 2018, OpenRefine contributors\n * All rights reserved.\n * \n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions are met:\n * \n * 1. Redistributions of source code must retain the above copyright notice,\n * this list of conditions and the following disclaimer.\n * \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 * \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 HOLDER OR CONTRIBUTORS BE\n * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n * ARISING IN ANY" -"//\n// VROAnimationGroup.h\n// ViroRenderer\n//\n// Created by Raj Advani on 12/28/16.\n// Copyright \u00a9 2016 Viro Media. All rights reserved.\n//\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,\n// EXPRESS 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" -"/*\n * jcparam.c\n *\n * Copyright (C) 1991-1998, Thomas G. Lane.\n * This file is part of the Independent JPEG Group's software.\n * For conditions of distribution and use, see the accompanying README file.\n *\n * This file contains optional default-setting code for the JPEG compressor.\n * Applications do not have to use this file, but those that don't use it\n * must know a lot more about the innards of the JPEG code.\n */\n\n#define JPEG_INTERNALS\n#include \"jinclude.h\"\n#include \"jpeglib.h\"\n\n\n/*\n * Quantization table setup routines\n */\n\nGLOBAL(void)\njpeg_add_quant_table (j_compress_ptr cinfo, int which_tbl,\n\t\t const unsigned int *basic_table,\n\t\t int scale_factor, boolean force_baseline)\n/* Define a quantization table equal to the basic_table times\n * a scale factor (given as a percentage).\n * If force_baseline is TRUE, the computed quantization table entries\n * are limited to 1..255 for JPEG baseline compatibility.\n */\n{\n JQUANT_TBL ** qtblptr;\n int i;\n long temp;\n\n /* Safety check to ensure start_compress not called yet. */\n if (cinfo->global_state != CSTATE_START)\n ERREXIT1(cinfo, JERR_BAD_STATE, cinfo->global_state);\n\n if (which_tbl < 0 || which_tbl >= NUM_QUANT_TBLS)\n ERREXIT1(cinfo, JERR_DQT_INDEX, which_tbl);\n\n qtblptr = & cinfo->quant_tbl_ptrs[which_tbl];\n\n if (*qtblptr == NULL)\n *qtblptr = jpeg_alloc_quant_table((j_common_ptr) cinfo);\n\n for (i = 0; i < DCTSIZE2; i++) {\n temp = ((long)" -"/*\n * Copyright \u00a9 2012 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.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, see .\n *\n * Authors: Benjamin Otte \n */\n\n#include \"config.h\"\n\n#include \"gtkcsstransitionprivate.h\"\n\n#include \"gtkcsseasevalueprivate.h\"\n#include \"gtkprogresstrackerprivate.h\"\n\nstruct _GtkCssTransition\n{\n GtkStyleAnimation parent;\n\n guint property;\n guint finished;\n GtkCssValue *start;\n GtkCssValue *ease;\n GtkProgressTracker tracker;\n};\n\n\nstatic GtkStyleAnimation * gtk_css_transition_advance (GtkStyleAnimation *style_animation,\n gint64 timestamp);\n\n\n\nstatic void\ngtk_css_transition_apply_values (GtkStyleAnimation *style_animation,\n GtkCssAnimatedStyle *style)\n{\n GtkCssTransition *transition = (GtkCssTransition *)style_animation;\n GtkCssValue *value, *end;\n double progress;\n GtkProgressState state;\n\n if (transition->finished)\n return;\n\n end = gtk_css_animated_style_get_intrinsic_value (style, transition->property);\n state = gtk_progress_tracker_get_state (&transition->tracker);\n\n if (state == GTK_PROGRESS_STATE_BEFORE)\n value =" -"Go 1.5 is released\n19 Aug 2015\n\nAndrew Gerrand\nadg@golang.org\n\n* Introduction\n\nToday the Go project is proud to release Go 1.5,\nthe sixth major stable release of Go.\n\nThis release includes significant changes to the implementation.\nThe compiler tool chain was [[https://golang.org/doc/go1.5#c][translated from C to Go]],\nremoving the last vestiges of C code from the Go code base.\nThe garbage collector was [[https://golang.org/doc/go1.5#gc][completely redesigned]],\nyielding a [[https://talks.golang.org/2015/go-gc.pdf][dramatic reduction]]\nin garbage collection pause times.\nRelated improvements to the scheduler allowed us to change the default\n[[https://golang.org/pkg/runtime/#GOMAXPROCS][GOMAXPROCS]]\u00a0value\n(the number of concurrently executing goroutines)\nfrom 1 to the number of logical CPUs.\nChanges to the linker enable distributing Go packages as shared libraries to\nlink into Go programs, and building Go packages into archives or shared\nlibraries that may be linked into or loaded by C programs\n([[https://golang.org/s/execmodes][design doc]]).\n\nThe release also includes [[https://golang.org/doc/go1.5#go_command][improvements to the developer tools]].\nSupport for [[https://golang.org/s/go14internal][\"internal\" packages]]\npermits sharing implementation details between packages.\n[[https://golang.org/s/go15vendor][Experimental support]] for \"vendoring\"\nexternal dependencies is a step toward a standard mechanism for managing\ndependencies in Go programs.\nThe new \"[[https://golang.org/cmd/trace/][go tool trace]]\"\u00a0command enables the\nvisualisation of \u00a0program traces generated by new tracing infrastructure in the\nruntime.\nThe new \"[[https://golang.org/cmd/go/#hdr-Show_documentation_for_package_or_symbol][go doc]]\"" -"/*\n * Copyright 2019-Present Okta, 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.okta.spring.tests.oauth2\n\nimport com.okta.test.mock.application.ApplicationUnderTest\nimport org.slf4j.Logger\nimport org.slf4j.LoggerFactory\nimport org.springframework.boot.SpringApplication\nimport org.springframework.context.ConfigurableApplicationContext\n\nclass SpringApplicationUnderTest implements ApplicationUnderTest {\n\n private final Logger logger = LoggerFactory.getLogger(SpringApplicationUnderTest)\n\n private ConfigurableApplicationContext applicationContext\n\n static {\n System.setProperty(\"codeFlow.redirectPath\", \"/login/oauth2/code/okta\")\n }\n\n @Override\n void start() {\n\n testScenario.args.stream()\n .filter {it.startsWith(\"-D\")}\n .map {it.substring(2)}\n .map {it.split(\"=\")}\n .forEach {\n System.setProperty(it[0], it[1])\n }\n\n applicationContext = SpringApplication.run(\n Class.forName(testScenario.command),\n testScenario.args.toArray(new String[testScenario.args.size()]))\n }\n\n @Override\n int stop() {\n\n if (applicationContext != null && applicationContext.isRunning()) {\n applicationContext.stop()\n return 0\n } else {\n logger.warn(\"Spring Application was not running\")\n return 1\n }\n }\n}" -"[\n {\n \"time\": \"20:20\",\n \"quote_first\": \"\",\n \"quote_time_case\": \"8.20 p.m.\",\n \"quote_last\": \" Play computer games\",\n \"title\": \"The Curious Incident of the Dog in the Night-time\",\n \"author\": \"Mark Haddon\"\n },\n {\n \"time\": \"20:20\",\n \"quote_first\": \"At \",\n \"quote_time_case\": \"20.20\",\n \"quote_last\": \" all ships had completed oiling. Hove to, they had had the utmost difficulty in keeping position in that great wind; but they were infinitely safer than in the open sea\",\n \"title\": \"H.M.S. Ulysses\",\n \"author\": \"Alistair MacLean\"\n },\n {\n \"time\": \"20:20\",\n \"quote_first\": \"Knowing that the dinner was only for us six, we never dreamed it would be a full dress affair. I had no appetite. It was quite \",\n \"quote_time_case\": \"twenty minutes past eight\",\n \"quote_last\": \" before we sat down to dinner.\",\n \"title\": \"Diary of a Nobody\",\n \"author\": \"George and Weedon Grossmith\"\n }\n]" -"/*\n * Copyright (C) 2007 iptelorg GmbH\n *\n * This file is part of Kamailio, a free SIP server.\n *\n * Kamailio 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 * Kamailio 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/*!\n* \\file\n* \\brief Kamailio core :: local timer routines\n* \\ingroup core\n* \\author andrei\n* Module: \\ref core\n*\n * WARNING: this should be used only from within the same process.\n * The local timers are not multi-process or multi-thread safe \n * (there are no locks)\n *\n */\n\n#ifndef _local_timer_h\n#define _local_timer_h" -"function dis = distancematrix(city)\n% DISTANCEMATRIX\n% dis = DISTANCEMATRIX(city) return the distance matrix, dis(i,j) is the \n% distance between city_i and city_j\n\nnumberofcities = length(city);\nR = 6378.137; % The radius of the Earth\nfor i = 1:numberofcities\n for j = i+1:numberofcities\n dis(i,j) = distance(city(i).lat, city(i).long, ...\n city(j).lat, city(j).long, R);\n dis(j,i) = dis(i,j);\n end\nend\n\n\nfunction d = distance(lat1, long1, lat2, long2, R)\n% DISTANCE\n% d = DISTANCE(lat1, long1, lat2, long2, R) compute distance between points\n% on sphere with radians R.\n%\n% Latitude/Longitude Distance Calculation:\n% http://www.mathforum.com/library/drmath/view/51711.html\n \ny1 = lat1/180*pi; x1 = long1/180*pi;\ny2 = lat2/180*pi; x2 = long2/180*pi;\ndy = y1-y2; dx = x1-x2;\nd = 2*R*asin(sqrt(sin(dy/2)^2+sin(dx/2)^2*cos(y1)*cos(y2)));" -"/*\n * Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved.\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.0,\n * as published by the Free Software Foundation.\n *\n * This program is also distributed with certain software (including\n * but not limited to OpenSSL) that is licensed under separate terms,\n * as designated in a particular file or component or in included license\n * documentation. The authors of MySQL hereby grant you an additional\n * permission to link the program and your derivative works with the\n * separately licensed software that they have included with MySQL.\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, version 2.0, for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program; if not, write to the Free Software\n * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\n */" -"#!/usr/bin/env bash\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#\nset -o pipefail\n\n# Parse arguments\nargc=$#\nif [ ${argc} != 1 ]; then\n message=$(basename \"$0\")\n\techo \" Usage: ${message} Full-JDK-path\"\n\texit 1\nfi\n\n# Validate prerequisites(tools) necessary for making a slim build\ntools=\"jar jarsigner pack200 strip\"\nfor tool in ${tools};\ndo\n command -v \"${tool}\" >/dev/null 2>&1 || { echo >&2 \"${tool} not found, please add ${tool} into PATH\"; exit 1; }\ndone\n\n# Set input of this script\nsrc=\"$1\"\n# Store necessary directories paths\nbasedir=$(dirname \"${src}\")\nscriptdir=$(dirname \"$0\")\ntarget=\"${basedir}\"/slim\n\n# Files for Keep and Del list of classes in rt.jar\nkeep_list=\"${scriptdir}/slim-java_rtjar_keep.list\"\ndel_list=\"${scriptdir}/slim-java_rtjar_del.list\"\n# jmod files to be deleted\ndel_jmod_list=\"${scriptdir}/slim-java_jmod_del.list\"\n# bin files to be deleted\ndel_bin_list=\"${scriptdir}/slim-java_bin_del.list\"" -"/*-\n * Copyright (c) 2001-2007, by Cisco Systems, Inc. All rights reserved.\n * Copyright (c) 2008-2012, by Randall Stewart. All rights reserved.\n * Copyright (c) 2008-2012, by Michael Tuexen. 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 * a) Redistributions of source code must retain the above copyright notice,\n * this list of conditions and the following disclaimer.\n *\n * b) Redistributions in binary form must reproduce the above copyright\n * notice, this list of conditions and the following disclaimer in\n * the documentation and/or other materials provided with the distribution.\n *\n * c) Neither the name of Cisco Systems, Inc. nor the names of its\n * contributors may be used to endorse or promote products derived\n * from this software without specific prior written permission.\n *\n * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n * \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,\n * THE 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" -"// Copyright 2018 Google 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 dom\n\nimport (\n\t\"math\"\n\n\t\"github.com/gopherjs/gopherjs/js\"\n)\n\n// Ace editor modes and themes.\nconst (\n\t// Ace modes.\n\tAceGoMode = \"ace/mode/golang\"\n\tAceJSONMode = \"ace/mode/json\"\n\n\t// Ace themes.\n\tAceChromeTheme = \"ace/theme/chrome\"\n\tAceTomorrowNightBrightTheme = \"ace/theme/tomorrow_night_bright\"\n)\n\n// Ace wraps an \"ace\" object (usually global).\ntype Ace struct {\n\tObject\n}\n\n// GlobalAce returns the global \"ace\" object.\nfunc GlobalAce() *Ace {\n\to := js.Global.Get(\"ace\")\n\tif o == nil {\n\t\treturn nil\n\t}\n\treturn &Ace{WrapObject(o)}\n}\n\n// AceEditor is an Ace editor.\ntype AceEditor struct {\n\tObject\n}\n\n// Edit attaches an Ace edit session to an element and returns the editor object,\n// or nil (if ace.edit" -"/*\n * Copyright 2014 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\n.crumbs {\n display: inline-block;\n pointer-events: auto;\n cursor: default;\n font-size: 11px;\n line-height: 17px;\n}\n\n.crumbs .crumb {\n display: inline-block;\n padding: 0 7px;\n height: 18px;\n white-space: nowrap;\n}\n\n.crumbs .crumb.collapsed > * {\n display: none;\n}\n\n.crumbs .crumb.collapsed::before {\n content: \"\\2026\";\n font-weight: bold;\n}\n\n.crumbs .crumb.compact .extra {\n display: none;\n}\n\n.crumbs .crumb.selected, .crumbs .crumb.selected:hover {\n background-color: rgb(56, 121, 217);\n color: white;\n text-shadow: rgba(255, 255, 255, 0.5) 0 0 0;\n}\n\n.crumbs .crumb:hover {\n background-color: rgb(216, 216, 216);\n}" -"/* libtiff/tiffconf.h. Generated from tiffconf.h.in by configure. */\n/*\n Configuration defines for installed libtiff.\n This file maintained for backward compatibility. Do not use definitions\n from this file in your programs.\n*/\n\n#ifndef _TIFFCONF_\n#define _TIFFCONF_\n\n/* Signed 16-bit type */\n#define TIFF_INT16_T signed short\n\n/* Signed 32-bit type */\n#define TIFF_INT32_T signed int\n\n/* Signed 64-bit type */\n#define TIFF_INT64_T signed long long\n\n/* Signed 8-bit type */\n#define TIFF_INT8_T signed char\n\n/* Unsigned 16-bit type */\n#define TIFF_UINT16_T unsigned short\n\n/* Unsigned 32-bit type */\n#define TIFF_UINT32_T unsigned int\n\n/* Unsigned 64-bit type */\n#define TIFF_UINT64_T unsigned long long\n\n/* Unsigned 8-bit type */\n#define TIFF_UINT8_T unsigned char\n\n/* Signed size type */\n#define TIFF_SSIZE_T signed long\n\n/* Pointer difference type */\n#define TIFF_PTRDIFF_T ptrdiff_t\n\n/* Define to 1 if the system has the type `int16'. */\n/* #undef HAVE_INT16 */\n\n/* Define to 1 if the system has the type `int32'. */\n/* #undef HAVE_INT32 */\n\n/* Define to 1 if the system has the type `int8'. */\n/* #undef HAVE_INT8 */\n\n/* Compatibility stuff. */\n\n/* Define as 0 or 1 according to the floating point format suported by the\n machine */\n#define HAVE_IEEEFP 1\n\n/* Set" -"/*\n * Copyright 2010-2019 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\npackage com.amazonaws.services.pinpoint.model.transform;\n\nimport com.amazonaws.services.pinpoint.model.*;\nimport com.amazonaws.transform.SimpleTypeJsonUnmarshallers.*;\nimport com.amazonaws.transform.*;\nimport com.amazonaws.util.json.AwsJsonReader;\n\n/**\n * JSON unmarshaller for response DeleteGcmChannelResult\n */\npublic class DeleteGcmChannelResultJsonUnmarshaller implements\n Unmarshaller {\n\n public DeleteGcmChannelResult unmarshall(JsonUnmarshallerContext context) throws Exception {\n DeleteGcmChannelResult deleteGcmChannelResult = new DeleteGcmChannelResult();\n\n return deleteGcmChannelResult;\n }\n\n private static DeleteGcmChannelResultJsonUnmarshaller instance;\n\n public static DeleteGcmChannelResultJsonUnmarshaller getInstance() {\n if (instance == null)\n instance = new DeleteGcmChannelResultJsonUnmarshaller();\n return instance;\n }\n}" -"package soot.jimple.spark.ondemand.genericutil;\n\n/*-\n * #%L\n * Soot - a J*va Optimization Framework\n * %%\n * Copyright (C) 2007 Manu Sridharan\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 as\n * published by the Free Software Foundation, either version 2.1 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,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU General Lesser Public License for more details.\n * \n * You should have received a copy of the GNU General Lesser Public\n * License along with this program. If not, see\n * .\n * #L%\n */\n\nimport java.util.Arrays;\n\npublic class ImmutableStack {\n\n private static final ImmutableStack EMPTY = new ImmutableStack(new Object[0]);\n\n private static final int MAX_SIZE = Integer.MAX_VALUE;\n\n public static int getMaxSize() {\n return MAX_SIZE;\n }\n\n @SuppressWarnings(\"unchecked\")\n public static final ImmutableStack emptyStack() {\n return (ImmutableStack) EMPTY;\n }\n\n final private T[] entries;\n\n private ImmutableStack(T[] entries) {\n this.entries = entries;\n }\n\n public boolean equals(Object o) {\n if" -"csvImportOptions = $csvImportOptions;\n }\n public function getCsvImportOptions()\n {\n return $this->csvImportOptions;\n }\n public function setDatabase($database)\n {\n $this->database = $database;\n }\n public function getDatabase()\n {\n return $this->database;\n }\n public function setFileType($fileType)\n {\n $this->fileType = $fileType;\n }\n public function getFileType()\n {\n return $this->fileType;\n }\n public function setKind($kind)\n {\n $this->kind = $kind;\n }\n public function getKind()\n {\n return $this->kind;\n }\n public function setUri($uri)\n {\n $this->uri = $uri;\n }\n public function getUri()\n {\n return $this->uri;\n }\n}" -"define( [\n\t\"../../core\",\n\t\"../../selector\"\n\n\t// css is assumed\n], function( jQuery ) {\n\t\"use strict\";\n\n\t// isHiddenWithinTree reports if an element has a non-\"none\" display style (inline and/or\n\t// through the CSS cascade), which is useful in deciding whether or not to make it visible.\n\t// It differs from the :hidden selector (jQuery.expr.pseudos.hidden) in two important ways:\n\t// * A hidden ancestor does not force an element to be classified as hidden.\n\t// * Being disconnected from the document does not force an element to be classified as hidden.\n\t// These differences improve the behavior of .toggle() et al. when applied to elements that are\n\t// detached or contained within hidden ancestors (gh-2404, gh-2863).\n\treturn function( elem, el ) {\n\n\t\t// isHiddenWithinTree might be called from jQuery#filter function;\n\t\t// in that case, element will be second argument\n\t\telem = el || elem;\n\n\t\t// Inline style trumps all\n\t\treturn elem.style.display === \"none\" ||\n\t\t\telem.style.display === \"\" &&\n\n\t\t\t// Otherwise, check computed style\n\t\t\t// Support: Firefox <=43 - 45\n\t\t\t// Disconnected elements can have computed display: none, so first confirm that elem is\n\t\t\t// in the document.\n\t\t\tjQuery.contains( elem.ownerDocument, elem ) &&\n\n\t\t\tjQuery.css( elem, \"display\" ) === \"none\";\n\t};\n} );" -"Copyright 2011-2012 Jeff Verkoeyen\nhttp://NimbusKit.info\nFor a list of contributors see https://github.com/jverkoey/nimbus/graphs/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\nSee the AUTHORS and DONORS files for more information about Nimbus\ncontributors." -"/*\n * This file is part of the Scale2x project.\n *\n * Copyright (C) 2001, 2002, 2003, 2004 Andrea Mazzoleni\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\n#ifndef __SCALE3X_H\n#define __SCALE3X_H\n\n// OpenJazz modification\n#ifndef restrict\n#define restrict\n#endif\n\ntypedef unsigned char scale3x_uint8;\ntypedef unsigned short scale3x_uint16;\ntypedef unsigned scale3x_uint32;\n\nvoid scale3x_8_def(scale3x_uint8* dst0, scale3x_uint8* dst1, scale3x_uint8* dst2, const scale3x_uint8* src0, const scale3x_uint8* src1, const scale3x_uint8* src2, unsigned count);\nvoid scale3x_16_def(scale3x_uint16* dst0, scale3x_uint16* dst1, scale3x_uint16* dst2, const scale3x_uint16* src0, const scale3x_uint16* src1, const scale3x_uint16* src2, unsigned count);\nvoid scale3x_32_def(scale3x_uint32* dst0, scale3x_uint32* dst1, scale3x_uint32* dst2, const scale3x_uint32* src0, const scale3x_uint32* src1, const scale3x_uint32* src2, unsigned count);\n\n#endif" -"// Copyright 2008 The Closure Library 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/**\n * @fileoverview SpriteInfo implementation. This is a simple wrapper class to\n * hold CSS metadata needed for sprited emoji.\n *\n * @see ../demos/popupemojipicker.html or emojipicker_test.html for examples\n * of how to use this class.\n *\n */\ngoog.provide('goog.ui.emoji.SpriteInfo');\n\n\n\n/**\n * Creates a SpriteInfo object with the specified properties. If the image is\n * sprited via CSS, then only the first parameter needs a value. If the image\n * is sprited via metadata, then the first parameter should be left null.\n *\n * @param {?string} cssClass CSS class to properly display the sprited image.\n * @param {string=} opt_url Url of the sprite" -"package tfconfig\n\n// Module is the top-level type representing a parsed and processed Terraform\n// module.\ntype Module struct {\n\t// Path is the local filesystem directory where the module was loaded from.\n\tPath string `json:\"path\"`\n\n\tVariables map[string]*Variable `json:\"variables\"`\n\tOutputs map[string]*Output `json:\"outputs\"`\n\n\tRequiredCore []string `json:\"required_core,omitempty\"`\n\tRequiredProviders map[string][]string `json:\"required_providers\"`\n\n\tManagedResources map[string]*Resource `json:\"managed_resources\"`\n\tDataResources map[string]*Resource `json:\"data_resources\"`\n\tModuleCalls map[string]*ModuleCall `json:\"module_calls\"`\n\n\t// Diagnostics records any errors and warnings that were detected during\n\t// loading, primarily for inclusion in serialized forms of the module\n\t// since this slice is also returned as a second argument from LoadModule.\n\tDiagnostics Diagnostics `json:\"diagnostics,omitempty\"`\n}\n\nfunc newModule(path string) *Module {\n\treturn &Module{\n\t\tPath: path,\n\t\tVariables: make(map[string]*Variable),\n\t\tOutputs: make(map[string]*Output),\n\t\tRequiredProviders: make(map[string][]string),\n\t\tManagedResources: make(map[string]*Resource),\n\t\tDataResources: make(map[string]*Resource),\n\t\tModuleCalls: make(map[string]*ModuleCall),\n\t}\n}" -"/*\n (c) Copyright 2012-2013 DirectFB integrated media GmbH\n (c) Copyright 2001-2013 The world wide DirectFB Open Source Community (directfb.org)\n (c) Copyright 2000-2004 Convergence (integrated media) GmbH\n\n All rights reserved.\n\n Written by Denis Oliver Kropp ,\n Andreas Shimokawa ,\n Marek Pikarski ,\n Sven Neumann ,\n Ville Syrj\u00e4l\u00e4 and\n Claudio Ciccani .\n\n This file is subject to the terms and conditions of the MIT License:\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 restriction,\n including without limitation the rights to use, copy, modify, merge,\n publish, distribute, sublicense, and/or sell copies of the Software,\n and to permit persons to whom the Software is furnished to do so,\n subject to the following 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 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" -"/***************************************************************************\n * Copyright (C) 2009 by Gunter Weiss, Bui Quang Minh, Arndt von Haeseler *\n * minh.bui@univie.ac.at *\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 *\n * Free Software Foundation, Inc., *\n * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *\n ***************************************************************************/\n\n#ifndef RANDOM_H\n#define RANDOM_H\n\n#define ranDum dkiss\n#define starTup start_kiss\n\n\ndouble dkiss(void);\nvoid start_kiss(int seed);\nvoid restart_kiss(unsigned int *vals);\nvoid kiss_state(unsigned int *vals);\n\ndouble rgamma(double a, double scale); \n#endif" -"#' Tools for Models Available in \\code{train}\n#'\n#' These function show information about models and packages that are\n#' accessible via \\code{\\link{train}}\n#'\n#' \\code{modelLookup} is good for getting information related to the tuning\n#' parameters for a model. \\code{getModelInfo} will return all the functions\n#' and metadata associated with a model. Both of these functions will only\n#' search within the models bundled in this package.\n#'\n#' \\code{checkInstall} will check to see if packages are installed. If they are\n#' not and the session is interactive, an option is given to install the\n#' packages using \\code{\\link[utils]{install.packages}} using that functions\n#' default arguments (the missing packages are listed if you would like to\n#' install them with other options). If the session is not interactive, an\n#' error is thrown.\n#'\n#' @aliases modelLookup getModelInfo checkInstall\n#' @param model a character string associated with the \\code{method} argument\n#' of \\code{\\link{train}}. If no value is passed, all models are returned. For\n#' \\code{getModelInfo}, regular expressions can be used.\n#' @param regex a logical: should a regular expressions be used? If\n#' \\code{FALSE}, a simple match is conducted against the whole name of the\n#' model.\n#' @param pkg" -"createTime = $createTime;\n }\n public function getCreateTime()\n {\n return $this->createTime;\n }\n public function setDownloadUrl($downloadUrl)\n {\n $this->downloadUrl = $downloadUrl;\n }\n public function getDownloadUrl()\n {\n return $this->downloadUrl;\n }\n public function setName($name)\n {\n $this->name = $name;\n }\n public function getName()\n {\n return $this->name;\n }\n public function setType($type)\n {\n $this->type = $type;\n }\n public function getType()\n {\n return $this->type;\n }\n}" -"\ufeff--random sample from msdn library: http://msdn.microsoft.com/en-us/library/bb630263.aspx\r\nwith paths (\r\n\tpath\r\n\t,EmployeeID\r\n\t)\r\nas (\r\n\t-- This section provides the value for the root of the hierarchy\r\n\tselect hierarchyid::GetRoot() as OrgNode\r\n\t\t,EmployeeID\r\n\tfrom #Children as C\r\n\twhere ManagerID is null\r\n\t\r\n\tunion all\r\n\t\r\n\t-- This section provides values for all nodes except the root\r\n\tselect CAST(p.path.ToString() + CAST(C.Num as varchar(30)) + '/' as hierarchyid)\r\n\t\t,C.EmployeeID\r\n\tfrom #Children as C\r\n\tjoin paths as p on C.ManagerID = P.EmployeeID\r\n\t)\r\ninsert NewOrg (\r\n\tOrgNode\r\n\t,O.EmployeeID\r\n\t,O.LoginID\r\n\t,O.ManagerID\r\n\t)\r\nselect P.path\r\n\t,O.EmployeeID\r\n\t,O.LoginID\r\n\t,O.ManagerID\r\nfrom EmployeeDemo as O\r\njoin Paths as P on O.EmployeeID = P.EmployeeID\r\ngo\r\n\r\n--similar sample, with 2 CTEs in the same query\r\nbegin\r\n\twith FirstCTE\r\n\tas (\r\n\t\tselect 1 as FirstColumn\r\n\t\t)\r\n\t\t,SecondCTE (AnotherColumn)\r\n\tas (\r\n\t\tselect 2\r\n\t\t)\r\n\tselect *\r\n\tfrom FirstCTE\r\n\t\r\n\tunion\r\n\t\r\n\tselect *\r\n\tfrom SecondCTE\r\nend\r\ngo" -"#include \n#include \n#include \n#include \n#include \n#include \n#include \n\nint main(int argc, char *argv[])\n{\n char *p, *q = 0, *program;\n\n p = strrchr(argv[0], '/');\n if (!p)\n p = strrchr(argv[0], '\\\\');\n#ifdef OPENSSL_SYS_VMS\n if (!p)\n p = strrchr(argv[0], ']');\n if (p)\n q = strrchr(p, '>');\n if (q)\n p = q;\n if (!p)\n p = strrchr(argv[0], ':');\n q = 0;\n#endif\n if (p)\n p++;\n if (!p)\n p = argv[0];\n if (p)\n q = strchr(p, '.');\n if (p && !q)\n q = p + strlen(p);\n\n if (!p)\n program = BUF_strdup(\"(unknown)\");\n else {\n program = OPENSSL_malloc((q - p) + 1);\n strncpy(program, p, q - p);\n program[q - p] = '\\0';\n }\n\n for (p = program; *p; p++)\n if (islower((unsigned char)(*p)))\n *p = toupper((unsigned char)(*p));\n\n q = strstr(program, \"TEST\");\n if (q > p && q[-1] == '_')\n q--;\n *q = '\\0';\n\n printf(\"No %s support\\n\", program);\n\n OPENSSL_free(program);\n return (0);\n}" -"// Copyright (c) 2016, 2018, 2020, Oracle and/or its affiliates. All rights reserved.\n// This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.\n// Code generated. DO NOT EDIT.\n\n// Big Data Service API\n//\n// API for the Big Data Service. Use this API to build, deploy, and manage fully elastic Big Data Service\n// build on Hadoop, Spark and Data Science distribution, which can be fully integrated with existing enterprise\n// data in Oracle Database and Oracle Applications..\n//\n\npackage bds\n\nimport (\n\t\"github.com/oracle/oci-go-sdk/v25/common\"\n)\n\n// BdsInstance Description of the BDS instance\ntype BdsInstance struct {\n\n\t// The OCID of the BDS resource\n\tId *string `mandatory:\"true\" json:\"id\"`\n\n\t// The OCID of the compartment\n\tCompartmentId *string `mandatory:\"true\" json:\"compartmentId\"`\n\n\t// Name of the BDS instance\n\tDisplayName *string `mandatory:\"true\" json:\"displayName\"`\n\n\t// The state of the BDS instance\n\tLifecycleState BdsInstanceLifecycleStateEnum `mandatory:\"true\" json:\"lifecycleState\"`\n\n\t// Boolean flag specifying whether or not the cluster is HA\n\tIsHighAvailability *bool `mandatory:\"true\" json:\"isHighAvailability\"`\n\n\t// Boolean flag specifying whether or not the cluster should be setup as secure.\n\tIsSecure *bool `mandatory:\"true\" json:\"isSecure\"`\n\n\t// Boolean flag specifying whether we" -"When your application starts, the router matches the current URL to the _routes_\nthat you've defined. The routes, in turn, are responsible for displaying\ntemplates, loading data, and setting up application state.\n\nTo define a route, run\n\n```bash\nember generate route route-name\n```\n\nThis creates a route file at `app/routes/route-name.js`, a template for the route at `app/templates/route-name.hbs`,\nand a unit test file at `tests/unit/routes/route-name-test.js`.\nIt also adds the route to the router.\n\n## Basic Routes\n\nThe [`map()`](https://api.emberjs.com/ember/2.16/classes/Router/methods/map?anchor=map) method\nof your Ember application's router can be invoked to define URL mappings. When\ncalling `map()`, you should pass a function that will be invoked with the value\n`this` set to an object which you can use to create routes.\n\n```javascript {data-filename=app/router.js}\nRouter.map(function() {\n this.route('about', { path: '/about' });\n this.route('favorites', { path: '/favs' });\n});\n```\n\nNow, when the user visits `/about`, Ember will render the `about`\ntemplate. Visiting `/favs` will render the `favorites` template.\n\nYou can leave off the path if it is the same as the route\nname. In this case, the following is equivalent to the above example:\n\n```javascript {data-filename=app/router.js}\nRouter.map(function() {\n this.route('about');\n this.route('favorites', { path: '/favs' });\n});\n```\n\nInside your templates, you can use [`{{link-to}}`](https://api.emberjs.com/ember/2.16/classes/Ember.Templates.helpers/methods/link-to?anchor=link-to) to navigate between" -"/*\n * Copyright (C) 2004, 2005, 2006 Nikolas Zimmermann \n * Copyright (C) 2004, 2005, 2006, 2008 Rob Buis \n * Copyright (C) 2013 Samsung Electronics. All rights reserved.\n *\n * This library is free software; you can redistribute it and/or\n * modify it under the terms of the GNU Library 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 * Library General Public License for more details.\n *\n * You should have received a copy of the GNU Library General Public License\n * along with this library; see the file COPYING.LIB. If not, write to\n * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,\n * Boston, MA 02110-1301, USA.\n */\n\n#ifndef SVGPathSegCurvetoQuadraticRel_h\n#define SVGPathSegCurvetoQuadraticRel_h\n\n#include \"SVGPathSegCurvetoQuadratic.h\"\n\nnamespace WebCore {\n\nclass SVGPathSegCurvetoQuadraticRel : public SVGPathSegCurvetoQuadratic {\npublic:\n static Ref create(const SVGPathElement& element, SVGPathSegRole role, float x, float y, float x1, float y1)\n {\n return adoptRef(*new SVGPathSegCurvetoQuadraticRel(element," -"\"use strict\";\n\nvar isPrototype = require(\"../prototype/is\")\n , isPlainObject = require(\"../plain-object/is\");\n\nvar objectToString = Object.prototype.toString;\n\n// Recognize host specific errors (e.g. DOMException)\nvar errorTaggedStringRe = /^\\[object .*(?:Error|Exception)\\]$/\n , errorNameRe = /^[^\\s]*(?:Error|Exception)$/;\n\nmodule.exports = function (value) {\n\tif (!value) return false;\n\n\tvar name;\n\t// Sanity check (reject objects which do not expose common Error interface)\n\ttry {\n\t\tname = value.name;\n\t\tif (typeof name !== \"string\") return false;\n\t\tif (typeof value.message !== \"string\") return false;\n\t} catch (error) {\n\t\treturn false;\n\t}\n\n\t// Ensure its a native-like Error object\n\t// (has [[ErrorData]] slot, or was created to resemble one)\n\t// Note: It's not a 100% bulletproof check of confirming that as:\n\t// - In ES2015+ string tag can be overriden via Symbol.toStringTag property\n\t// - Host errors do not share native error tag. Still we rely on assumption that\n\t// tag for each error will end either with `Error` or `Exception` string\n\t// - In pre ES2015 era, no custom errors will share the error tag.\n\tif (!errorTaggedStringRe.test(objectToString.call(value))) {\n\t\t// Definitely not an ES2015 error instance, but could still be an error\n\t\t// (created via e.g. CustomError.prototype = Object.create(Error.prototype))\n\t\ttry {\n\t\t\tif (name !== value.constructor.name) return false;\n\t\t} catch (error) {\n\t\t\treturn false;" -"// This file is part of OpenCV project.\n// It is subject to the license terms in the LICENSE file found in the top-level directory\n// of this distribution and at http://opencv.org/license.html.\n\n#ifndef OPENCV_QUALITYBASE_HPP\n#define OPENCV_QUALITYBASE_HPP\n\n#include \n\n/**\n@defgroup quality Image Quality Analysis (IQA) API\n*/\n\nnamespace cv\n{\nnamespace quality\n{\n\n//! @addtogroup quality\n//! @{\n\n/************************************ Quality Base Class ************************************/\nclass CV_EXPORTS_W QualityBase\n : public virtual Algorithm\n{\npublic:\n\n /** @brief Destructor */\n virtual ~QualityBase() = default;\n\n /**\n @brief Compute quality score per channel with the per-channel score in each element of the resulting cv::Scalar. See specific algorithm for interpreting result scores\n @param img comparison image, or image to evalute for no-reference quality algorithms\n */\n virtual CV_WRAP cv::Scalar compute( InputArray img ) = 0;\n\n /** @brief Returns output quality map that was generated during computation, if supported by the algorithm */\n virtual CV_WRAP void getQualityMap(OutputArray dst) const\n {\n if (!dst.needed() || _qualityMap.empty() )\n return;\n dst.assign(_qualityMap);\n }\n\n /** @brief Implements Algorithm::clear() */\n CV_WRAP void clear() CV_OVERRIDE { _qualityMap = _mat_type(); Algorithm::clear(); }\n\n /** @brief Implements Algorithm::empty() */\n CV_WRAP bool empty() const CV_OVERRIDE { return _qualityMap.empty(); }\n\nprotected:\n\n /** @brief internal mat type default */\n using _mat_type = cv::UMat;" -"\"\nI am ZnMessageBenchmark helps to test the benchmarking and profiling of ZnMessage writing and reading.\n\nInstance Variables\n\tbuffer:\t\t\t\t\t\n\tmessage:\t\t\t\t\n\trepresentation:\t\t\n\nZnMessageBenchmark new\n\tsimpleRequest;\n\twrite: 10000.\n\nZnMessageBenchmark new\n\tsimpleRequest;\n\twriteRepresentation;\n\tread: 10000.\n\nZnMessageBenchmark new\n\tsimpleResponse;\n\twrite: 10000.\n\nZnMessageBenchmark new\n\tsimpleResponse;\n\twriteRepresentation;\n\tread: 10000.\n\n\"\nClass {\n\t#name : #ZnMessageBenchmark,\n\t#superclass : #Object,\n\t#instVars : [\n\t\t'message',\n\t\t'representation',\n\t\t'buffer'\n\t],\n\t#category : #'Zinc-Tests'\n}\n\n{ #category : #accessing }\nZnMessageBenchmark class >> bench: messages [\n\t| results |\n\tresults := Dictionary new.\n\tmessages \n\t\tdo: [ :each | | bench report |\n\t\t\tbench := self new.\n\t\t\tbench perform: each.\n\t\t\tbench writeRepresentation.\n\t\t\treport := 'Writing {1} - Reading {2}' format: { bench benchWrite. bench benchRead }.\n\t\t\tresults at: each put: report ] \n\t\tdisplayingProgress: 'Benchmarking...'.\n\t^ results\n]\n\n{ #category : #accessing }\nZnMessageBenchmark class >> benchAll [\n\t^ self bench: self messages\n]\n\n{ #category : #accessing }\nZnMessageBenchmark class >> messages [\n\t^ self requests , self responses\n]\n\n{ #category : #accessing }\nZnMessageBenchmark class >> requests [\n\t^ #( simpleRequest standardRequest postRequest )\n]\n\n{ #category : #accessing }\nZnMessageBenchmark class >> responses [\n\t^ #( \n\t\tsimpleResponse \n\t\ttextResponse8k textResponse64k textResponse256k\n\t\ttextResponseWide8k textResponseWide64k textResponseWide256k\n\t\tasciiResponse8k asciiResponse64k asciiResponse256k\n\t\tbinaryResponse8k" -"using System;\r\nusing System.Collections.Generic;\r\nusing Server.Items;\r\n\r\nnamespace Server.Mobiles\r\n{\r\n\tpublic class SBMiner: SBInfo\r\n\t{\r\n\t\tprivate List m_BuyInfo = new InternalBuyInfo();\r\n\t\tprivate IShopSellInfo m_SellInfo = new InternalSellInfo();\r\n\r\n\t\tpublic SBMiner()\r\n\t\t{\r\n\t\t}\r\n\r\n\t\tpublic override IShopSellInfo SellInfo { get { return m_SellInfo; } }\r\n\t\tpublic override List BuyInfo { get { return m_BuyInfo; } }\r\n\r\n\t\tpublic class InternalBuyInfo : List\r\n\t\t{\r\n\t\t\tpublic InternalBuyInfo()\r\n\t\t\t{\r\n\t\t\t\tAdd( new GenericBuyInfo( typeof( Bag ), 6, 20, 0xE76, 0 ) );\r\n\t\t\t\tAdd( new GenericBuyInfo( typeof( Candle ), 6, 10, 0xA28, 0 ) );\r\n\t\t\t\tAdd( new GenericBuyInfo( typeof( Torch ), 8, 10, 0xF6B, 0 ) );\r\n\t\t\t\tAdd( new GenericBuyInfo( typeof( Lantern ), 2, 10, 0xA25, 0 ) );\r\n\t\t\t\t//Add( new GenericBuyInfo( typeof( OilFlask ), 8, 10, 0x####, 0 ) );\r\n\t\t\t\tAdd( new GenericBuyInfo( typeof( Pickaxe ), 25, 10, 0xE86, 0 ) );\r\n\t\t\t\tAdd( new GenericBuyInfo( typeof( Shovel ), 12, 10, 0xF39, 0 ) );\r\n\t\t\t}\r\n\t\t}\r\n\r\n\t\tpublic class InternalSellInfo : GenericSellInfo\r\n\t\t{\r\n\t\t\tpublic InternalSellInfo()\r\n\t\t\t{\r\n\t\t\t\tAdd( typeof( Pickaxe ), 12 );\r\n\t\t\t\tAdd( typeof( Shovel ), 6 );\r\n\t\t\t\tAdd( typeof( Lantern ), 1 );\r\n\t\t\t\t//Add( typeof( OilFlask ), 4 );\r\n\t\t\t\tAdd( typeof( Torch ), 3 );\r\n\t\t\t\tAdd( typeof( Bag ), 3 );\r\n\t\t\t\tAdd( typeof( Candle ), 3 );\r\n\t\t\t}\r\n\t\t}" -"//\n// memory.c\n//\n// USPi - An USB driver for Raspberry Pi written in C\n// Copyright (C) 2014-2015 R. Stange \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 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//\n#include \n#include \n#include \n#include \n#include \n#include \n#include \n\n#if RASPPI == 1\n#define MMU_MODE\t( ARM_CONTROL_MMU\t\t\t\\\n\t\t\t | ARM_CONTROL_L1_CACHE\t\t\t\\\n\t\t\t | ARM_CONTROL_L1_INSTRUCTION_CACHE\t\\\n\t\t\t | ARM_CONTROL_BRANCH_PREDICTION\t\\\n\t\t\t | ARM_CONTROL_EXTENDED_PAGE_TABLE)\n\n#define TTBCR_SPLIT\t3\n#else\n#define MMU_MODE\t( ARM_CONTROL_MMU\t\t\t\\\n\t\t\t | ARM_CONTROL_L1_CACHE\t\t\t\\\n\t\t\t | ARM_CONTROL_L1_INSTRUCTION_CACHE\t\\\n\t\t\t | ARM_CONTROL_BRANCH_PREDICTION)\n\n#define TTBCR_SPLIT\t2\n#endif\n\nvoid MemorySystemEnableMMU (TMemorySystem *pThis);\n\nvoid MemorySystem (TMemorySystem *pThis, boolean" -"// --------------------------------------------------------------------------\n// OpenMS -- Open-Source Mass Spectrometry\n// --------------------------------------------------------------------------\n// Copyright The OpenMS Team -- Eberhard Karls University Tuebingen,\n// ETH Zurich, and Freie Universitaet Berlin 2002-2020.\n//\n// This software is released under a three-clause BSD license:\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// * Neither the name of any author or any participating institution\n// may be used to endorse or promote products derived from this software\n// without specific prior written permission.\n// For a full list of authors, refer to the file AUTHORS.\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 ANY OF THE AUTHORS OR THE CONTRIBUTING\n// INSTITUTIONS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n// EXEMPLARY," -"// Boost.Bimap\n//\n// Copyright (c) 2006-2007 Matias Capeletto\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/// \\file support/key_type_by.hpp\n/// \\brief Metafunction to access the set types of a bimap\n\n#ifndef BOOST_BIMAP_SUPPORT_KEY_TYPE_BY_HPP\n#define BOOST_BIMAP_SUPPORT_KEY_TYPE_BY_HPP\n\n#if defined(_MSC_VER)\n#pragma once\n#endif\n\n#include \n\n#include \n\n/** \\struct boost::bimaps::support::key_type_by\n\n\\brief Metafunction to obtain the key type of one of the sides in a bimap\n\nThe tag parameter can be either a user defined tag or \\c member_at::{side}.\nThe returned type is one of the {SetType}_of definition classes.\n\n\\code\n\ntemplate< class Tag, class Bimap >\nstruct key_type_by\n{\n typedef typename Bimap::{side}_key_type type;\n};\n\n\\endcode\n\nSee also member_at.\n\\ingroup bimap_group\n **/\n\n\nnamespace boost {\nnamespace bimaps {\nnamespace support {\n\n// Implementation of key type type of metafunction\n\nBOOST_BIMAP_SYMMETRIC_METADATA_ACCESS_BUILDER\n(\n key_type_by,\n left_key_type,\n right_key_type\n)\n\n\n} // namespace support\n} // namespace bimaps\n} // namespace boost\n\n#endif // BOOST_BIMAP_SUPPORT_KEY_TYPE_BY_HPP" -"#\n# Generated Makefile - do not edit!\n#\n#\n# This file contains information about the location of compilers and other tools.\n# If you commmit this file into your revision control server, you will be able to \n# to checkout the project and build it from the command line with make. However,\n# if more than one person works on the same project, then this file might show\n# conflicts since different users are bound to have compilers in different places.\n# In that case you might choose to not commit this file and let MPLAB X recreate this file\n# for each user. The disadvantage of not commiting this file is that you must run MPLAB X at\n# least once so the file gets created and the project can be built. Finally, you can also\n# avoid using this file at all if you are only building from the command line with make.\n# You can invoke make with the values of the macros:\n# $ makeMP_CC=\"/opt/microchip/mplabc30/v3.30c/bin/pic30-gcc\" ... \n#\nPATH_TO_IDE_BIN=/opt/microchip/mplabx/v3.60/mplab_ide/platform/../mplab_ide/modules/../../bin/\n# Adding MPLAB X bin directory to path.\nPATH:=/opt/microchip/mplabx/v3.60/mplab_ide/platform/../mplab_ide/modules/../../bin/:$(PATH)\n# Path to java used to run MPLAB X when this makefile was created\nMP_JAVA_PATH=\"/opt/microchip/mplabx/v3.60/sys/java/jre1.8.0_121/bin/\"\nOS_CURRENT=\"$(shell uname" -"require File.dirname(__FILE__) + '/options'\nrequire File.dirname(__FILE__) + '/manifest'\nrequire File.dirname(__FILE__) + '/spec'\nrequire File.dirname(__FILE__) + '/generated_attribute'\n\nmodule Rails\n # Rails::Generator is a code generation platform tailored for the Rails\n # web application framework. Generators are easily invoked within Rails\n # applications to add and remove components such as models and controllers.\n # New generators are easy to create and may be distributed as RubyGems,\n # tarballs, or Rails plugins for inclusion system-wide, per-user, \n # or per-application.\n #\n # For actual examples see the rails_generator/generators directory in the\n # Rails source (or the +railties+ directory if you have frozen the Rails\n # source in your application).\n #\n # Generators may subclass other generators to provide variations that\n # require little or no new logic but replace the template files.\n #\n # For a RubyGem, put your generator class and templates in the +lib+\n # directory. For a Rails plugin, make a +generators+ directory at the \n # root of your plugin.\n #\n # The layout of generator files can be seen in the built-in \n # +controller+ generator:\n # \n # generators/\n # components/\n # controller/\n # controller_generator.rb\n # templates/\n # controller.rb\n # functional_test.rb\n # helper.rb\n # view.html.erb\n #\n # The directory name (+controller+)" -"---\nlayout: \"docs\"\npage_title: \"State\"\nsidebar_current: \"docs-state-purpose\"\ndescription: |-\n Terraform must store state about your managed infrastructure and configuration. This state is used by Terraform to map real world resources to your configuration, keep track of metadata, and to improve performance for large infrastructures.\n---\n\n# Purpose of Terraform State\n\nState is a necessary requirement for Terraform to function. It is often\nasked if it is possible for Terraform to work without state, or for Terraform\nto not use state and just inspect cloud resources on every run. This page\nwill help explain why Terraform state is required.\n\nAs you'll see from the reasons below, state is required. And in the scenarios\nwhere Terraform may be able to get away without state, doing so would require\nshifting massive amounts of complexity from one place (state) to another place\n(the replacement concept).\n\n## Mapping to the Real World\n\nTerraform requires some sort of database to map Terraform config to the real\nworld. When you have a resource `resource \"aws_instance\" \"foo\"` in your\nconfiguration, Terraform uses this map to know that instance `i-abcd1234`\nis that resource.\n\nFor some providers like AWS, Terraform could theoretically use something like\nAWS tags. Early prototypes of" -"module Vine where\r\nimport Rumpus\r\n\r\nstart :: Start\r\nstart = do\r\n\r\n let nMax = 100\r\n let branch 0 = return ()\r\n branch n = do\r\n let hue = fromIntegral n / fromIntegral nMax\r\n [x,y,z,w] <- replicateM 4 (randomRange (0,1))\r\n child <- spawnChild $ do\r\n myShape ==> Cube\r\n myPose ==> positionRotation (V3 0 0.4 0)\r\n (axisAngle (V3 x y z) w)\r\n mySize ==> V3 0.1 0.4 0.1\r\n myColor ==> colorHSL hue 0.8 0.8\r\n myUpdate ==> do\r\n now <- (*0.1) <$> getNow\r\n --setSize (V3 0.1 (sin now) 0.1)\r\n setRotation (V3 x y z) (sin now * w)\r\n lift $ inEntity child $ branch (n - 1)\r\n branch nMax\r\n return ()" -"/*\n * Copyright IBM Corporation, 2012\n * Contributor: Frank Filz \n *\n *\n * This software is a server that implements the NFS protocol.\n *\n *\n * This program 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 3 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 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 Street, Fifth Floor, Boston, MA 02110-1301 USA\n *\n *\n */\n\n#include \"multilock.h\"\n#include \"assert.h\"\n\n/* command line syntax */\n\nchar options[] = \"ekdqfsp:h?x:\";\nchar usage[] =\n\t\"Usage: ml_console [-p port] [-s] [-f] [-q] [-x script] [-d]\\n\" \"\\n\"\n\t\" -p port - specify the port to listen to clients on\\n\"\n\t\" -s -" -"\" Vim syntax file\n\" Language:\tHTML/OS by Aestiva\n\" Maintainer:\tJason Rust \n\" URL:\t\thttp://www.rustyparts.com/vim/syntax/htmlos.vim\n\" Info:\t\thttp://www.rustyparts.com/scripts.php\n\" Last Change:\t2003 May 11\n\"\n\n\" For version 5.x: Clear all syntax items\n\" For version 6.x: Quit when a syntax file was already loaded\nif version < 600\n syntax clear\nelseif exists(\"b:current_syntax\")\n finish\nendif\n\nif !exists(\"main_syntax\")\n let main_syntax = 'htmlos'\nendif\n\nif version < 600\n so :p:h/html.vim\nelse\n runtime! syntax/html.vim\n unlet b:current_syntax\nendif\n\nsyn cluster htmlPreproc add=htmlosRegion\n\nsyn case ignore\n\n\" Function names\nsyn keyword\thtmlosFunctions\texpand sleep getlink version system ascii getascii syslock sysunlock cr lf clean postprep listtorow split listtocol coltolist rowtolist tabletolist\tcontained\nsyn keyword\thtmlosFunctions\tcut \\display cutall cutx cutallx length reverse lower upper proper repeat left right middle trim trimleft trimright count countx locate locatex replace replacex replaceall replaceallx paste pasteleft pasteleftx pasteleftall pasteleftallx pasteright pasterightall pasterightallx chopleft chopleftx chopright choprightx format concat\tcontained\nsyn keyword\thtmlosFunctions\tgoto exitgoto\tcontained\nsyn keyword\thtmlosFunctions\tlayout cols rows row items getitem putitem switchitems gettable delrow delrows delcol delcols append merge fillcol fillrow filltable pastetable getcol getrow fillindexcol insindexcol dups nodups maxtable mintable maxcol mincol maxrow minrow avetable avecol averow mediantable mediancol medianrow producttable productcol" -"/*\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#include \"libavcodec/mathops.h\"\n\n#include \n\nint main(void)\n{\n unsigned u;\n\n for(u=0; u<65536; u++) {\n unsigned s = u*u;\n unsigned root = ff_sqrt(s);\n unsigned root_m1 = ff_sqrt(s-1);\n if (s && root != u) {\n fprintf(stderr, \"ff_sqrt failed at %u with %u\\n\", s, root);\n return 1;\n }\n if (u && root_m1 != u - 1) {\n fprintf(stderr, \"ff_sqrt failed at %u with %u\\n\", s, root);\n return 1;" -"#! /usr/bin/env tclsh\n# -*- tcl -*-\n\n# @@ Meta Begin\n# Application nnsd 1.0.1\n# Meta platform tcl\n# Meta summary Nano Name Service Demon\n# Meta description This application is a simple demon on top\n# Meta description of the nano name service facilities\n# Meta subject {name service} server demon\n# Meta require {Tcl 8.4}\n# Meta require comm\n# Meta require logger\n# Meta require interp\n# Meta require nameserv::common\n# Meta require nameserv::server\n# Meta author Andreas Kupries\n# Meta license BSD\n# @@ Meta End\n\npackage provide nnsd 1.0.1\n\n# nnsd - Nano Name Service Demon\n# ==== = =======================\n#\n# Use cases\n# ---------\n# \n# (1)\tRun a simple trusted name service on some host.\n#\t\n# Command syntax\n# --------------\n#\n# Ad 1) nnsd ?-localonly BOOL? ?-port PORT?\n#\n# Run the server. If no port is specified the default port 38573\n# is used to listen for client. The option -localonly determines\n# what connections are acceptable, local only (default), or\n# remote connections as well. Local connections are whose\n# originating from the same host which is running the server.\n# Remote connections come from other hosts." -"# Compiled by Solar Designer\n12345\nabc123\npassword\npasswd\n123456\nnewpass\nnotused\nHockey\ninternet\nasshole\nMaddock\n12345678\nnewuser\ncomputer\nInternet\nMickey\nqwerty\nfiction\nCowboys\nJordan\nHatton\ntest\nMichael\nou812\norange\n1234\nBeavis\n123\ntigger\nSoccer\nshadow\nPurple\nSports\ndragon\nmichael\nwheeling\nmustang\nMonkey\nQwerty\nSchool\nSnoopy\nVikings\njennifer\nmoney\nJustin\nmickey\n0246\na1b2c3\nchris\ndavid\nfoobar\nRobert\nbuster\nharley\njordan\nstupid\n*\napple\nfred\n123abc\nAmanda\nDakota\nsummer\nsunshine\nandrew\nhello\nmaggie\nmonday\npascal\npatrick\nDallas\nJessica\nNicole\nSendit\nSmokey\nbaseball\ndaniel\ndiamond\njoshua\nmichelle\nmike\nsilver\n1q2w3e\nFriends\nGeorge\nShadow\nSummer\nbandit\ncoffee\nfalcon\nfuckyou\npepper\nrichard\nthomas\nundead\n!@#$%\nAndrew\nBuster\nCowboy\nEagles\nElwood\nMaster\nNathan\nchangeme\ncharlie\ngolf\ngreen\nlinda\nmerlin\nmonkey\nnite\nsecret\nsoccer\nsteve\n1234567\nApples\nDragon\nFlower\nMustang\nPepper\ngeorge\nguest\nhockey\njames\nkoko\nmatthew\npookie\nrobert\nxxx\nDolphin\nKiller\nMiller\nPackers\nTigger\nalex\ncanada\njohn\nmaster\nChicago\nKitten\nPolaris\nSpanky\nTennis\nThomas\nTweety\nhammer\nletmein\nmagic\nmurphy\nscooter\nservice\nsnoopy\nsophie\nthx1138\ntiger\nAshley\nBasket\nGinger\nNirvana\nTeacher\nYellow\nblue\ndave\nhunter\nsarah\nthursday\nwelcome\nBandit\nVolley\naaaaaa\nashley\nbear\nboomer\ncalvin\ndallas\nfriday\nhappy\njason\nmadison\nmartin\nmother\nnicole\npurple\nranger\n123go\nAirhead\nBraves\nSparky\nangela\nbrandy\ncindy\ndakota\ndonald\nfootball\nncc1701" -"#!/bin/sh\n#\n# HITACHI VANTARA PROPRIETARY AND CONFIDENTIAL\n# \n# Copyright 2002 - ${copyright.year} Hitachi Vantara. All rights reserved.\n# \n# NOTICE: All information including source code contained herein is, and\n# remains the sole property of Hitachi Vantara and its licensors. The intellectual\n# and technical concepts contained herein are proprietary and confidential\n# to, and are trade secrets of Hitachi Vantara and may be covered by U.S. and foreign\n# patents, or patents in process, and are protected by trade secret and\n# copyright laws. The receipt or possession of this source code and/or related\n# information does not convey or imply any rights to reproduce, disclose or\n# distribute its contents, or to manufacture, use, or sell anything that it\n# may describe, in whole or in part. Any reproduction, modification, distribution,\n# or public display of this information without the express written authorization\n# from Hitachi Vantara is strictly prohibited and in violation of applicable laws and\n# international treaties. Access to the source code contained herein is strictly\n# prohibited to anyone except those individuals and entities who have executed\n# confidentiality and non-disclosure agreements or other agreements with Hitachi Vantara,\n# explicitly covering such" -" 'e13a9d',\n self::KEY_DESCRIPTION_BACKGROUND_COLOR => '9b45e4',\n ],\n [\n self::KEY_NAME_BACKGROUND_COLOR => '222831',\n self::KEY_DESCRIPTION_BACKGROUND_COLOR => '393e46',\n ],\n [\n self::KEY_NAME_BACKGROUND_COLOR => 'da2d2d',\n self::KEY_DESCRIPTION_BACKGROUND_COLOR => '9d0b0b',\n ],\n [\n self::KEY_NAME_BACKGROUND_COLOR => '6f9a8d',\n self::KEY_DESCRIPTION_BACKGROUND_COLOR => '1f6650',\n ],\n [\n self::KEY_NAME_BACKGROUND_COLOR => 'd1274b',\n self::KEY_DESCRIPTION_BACKGROUND_COLOR => '3d0e1e',\n ],\n [\n self::KEY_NAME_BACKGROUND_COLOR => '71a95a',\n self::KEY_DESCRIPTION_BACKGROUND_COLOR => '007944',\n ],\n [\n self::KEY_NAME_BACKGROUND_COLOR => 'e3b04b',\n self::KEY_DESCRIPTION_BACKGROUND_COLOR => '2b2b28',\n ],\n [\n self::KEY_NAME_BACKGROUND_COLOR => 'f6ad7b',\n self::KEY_DESCRIPTION_BACKGROUND_COLOR => 'be7575',\n ],\n [\n self::KEY_NAME_BACKGROUND_COLOR => 'a34a28',\n self::KEY_DESCRIPTION_BACKGROUND_COLOR => '211717',\n ],\n [\n self::KEY_NAME_BACKGROUND_COLOR => 'fc7fb2',\n self::KEY_DESCRIPTION_BACKGROUND_COLOR => '45454d',\n ],\n ];\n\n}" -"// Copyright (c) 2015 RAMBLER&Co\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#import \"ModuleAssemblyBase.h\"\n\n@implementation ModuleAssemblyBase\n\n@end" -".equ SYS_DUP3, 0x18\n.equ SYS_EXECVE, 0xdd\n.equ SYS_EXIT, 0x5d\n\n.equ STDIN, 0x0\n.equ STDOUT, 0x1\n.equ STDERR, 0x2\n\n_start:\n /* dup3(sockfd, STDIN, 0) ... */\n mov x0, x12\n mov x2, 0\n mov x1, STDIN\n mov x8, SYS_DUP3\n svc 0\n mov x1, STDOUT\n mov x8, SYS_DUP3\n svc 0\n mov x1, STDERR\n mov x8, SYS_DUP3\n svc 0\n\n /* execve('/system/bin/sh', NULL, NULL) */\n adr x0, shell\n mov x2, 0\n str x0, [sp, 0]\n str x2, [sp, 8]\n mov x1, sp\n mov x8, SYS_EXECVE\n svc 0\n\nexit:\n mov x0, 0\n mov x8, SYS_EXIT\n svc 0\n\n.balign 4\nshell:\n.word 0x00000000\n.word 0x00000000\n.word 0x00000000\n.word 0x00000000\nend:" -"/*\n * Copyright (C) 2017 Google 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#ifndef CORE_MOCK_CONNECTION_H\n#define CORE_MOCK_CONNECTION_H\n\n#include \"core/cc/connection.h\"\n\n#include \n\n#include \n#include \n#include \n#include \n\n#include \n\nnamespace core {\nnamespace test {\n\nclass MockConnection : public Connection {\n public:\n MockConnection() : read_pos(0u), out_limit(-1) {}\n\n virtual size_t send(const void* data, size_t size) override {\n if (out_limit >= 0) {\n const auto limit = static_cast(out_limit);\n if (out.size() + size > limit) {\n size = limit > out.size() ? limit - out.size() : 0u;\n }\n }\n out.insert(out.end(), (char*)data, (char*)data + size);\n return size;\n }\n\n virtual size_t recv(void* data, size_t size) override {\n if (read_pos + size > in.size()) {\n size = in.size() >" -"graph [\n node_count 115\n edge_count 228\n\n node_data size float\n node_data label string\n\n node [\n id 1\n degree 2\n size 1\n label \"waiting_P3\"\n ]\n node [\n id 2\n degree 2\n size 1\n label \"releasing_P3\"\n ]\n node [\n id 3\n degree 2\n size 1\n label \"init_P3\"\n ]\n node [\n id 4\n degree 2\n size 1\n label \"ready_to_consume\"\n ]\n node [\n id 5\n degree 2\n size 1\n label \"ready_to_receive\"\n ]\n node [\n id 6\n degree 2\n size 1\n label \"waiting_P2\"\n ]\n node [\n id 7\n degree 2\n size 1\n label \"releasing_P2\"\n ]\n node [\n id 8\n degree 2\n size 1\n label \"init_P2\"\n ]\n node [\n id 9\n degree 2\n size 1\n label \"waiting_P1\"\n ]\n node [\n id 10\n degree 2\n size 1\n label \"releasing_P1\"\n ]\n node [\n id 11\n degree 2\n size 1\n label \"init_P1\"\n ]\n node [\n id 12\n degree 2\n size 1\n label \"ready_to_send\"\n ]\n node [\n id 13\n degree 2\n size 1\n label \"ready_to_produce\"\n ]\n node [\n id 14\n degree 6\n size 1\n label \"ext_P1\"\n ]\n node [\n id 15\n degree 4\n size 1\n label \"norm_P1\"\n ]\n node [\n id 16\n degree 6\n size 1\n label \"basic_P1\"\n ]\n node [\n id 17\n degree 4\n size 1\n label \"R2_off_P1\"\n ]\n node" -"# Copyright 2019 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# NOTE: This file is auto generated by the elixir code generator program.\n# Do not edit this file manually.\n\ndefmodule GoogleApi.ToolResults.V1beta3.Model.Environment do\n @moduledoc \"\"\"\n An Environment represents the set of test runs (Steps) from the parent Execution that are configured with the same set of dimensions (Model, Version, Locale, and Orientation). Multiple such runs occur particularly because of features like sharding (splitting up a test suite to run in parallel across devices) and reruns (running a test multiple times to check for different outcomes).\n\n ## Attributes\n\n * `completionTime` (*type:* `GoogleApi.ToolResults.V1beta3.Model.Timestamp.t`, *default:* `nil`) - Output only. The time when the Environment status was set to" -"/*\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.apache.tomee.jul.handler.rotating;\n\nimport java.util.concurrent.ExecutorService;\nimport java.util.concurrent.Executors;\nimport java.util.concurrent.ThreadFactory;\nimport java.util.concurrent.TimeUnit;\nimport java.util.concurrent.atomic.AtomicInteger;\nimport java.util.logging.LogManager;\n\n// Note: don't touch this class while not needed to avoid to trigger the executor service init\n// mainly there to avoid all handlers to have their own threads\nclass BackgroundTaskRunner {\n private static final ExecutorService EXECUTOR_SERVICE;\n private static final boolean SYNCHRONOUS;\n\n static {\n final LogManager logManager = LogManager.getLogManager();\n SYNCHRONOUS = Boolean.parseBoolean(getProperty(logManager, BackgroundTaskRunner.class.getName() + \".synchronous\"));\n if (SYNCHRONOUS) {" -"/*\n * mISDNisar.c ISAR (Siemens PSB 7110) specific functions\n *\n * Author Karsten Keil (keil@isdn4linux.de)\n *\n * Copyright 2009 by Karsten Keil \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 * 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., 675 Mass Ave, Cambridge, MA 02139, USA.\n *\n */\n\n/* define this to enable static debug messages, if you kernel supports\n * dynamic debugging, you should use debugfs for this\n */\n/* #define DEBUG */\n\n#include \n#include \n#include \n#include \n#include \n#include \"isar.h\"\n\n#define ISAR_REV\t\"2.1\"\n\nMODULE_AUTHOR(\"Karsten Keil\");\nMODULE_LICENSE(\"GPL v2\");\nMODULE_VERSION(ISAR_REV);\n\n#define DEBUG_HW_FIRMWARE_FIFO\t0x10000\n\nstatic const u8 faxmodulation_s[] = \"3,24,48,72,73,74,96,97,98,121,122,145,146\";\nstatic const u8 faxmodulation[] = {3, 24," -"#!/usr/bin/python\n# Copyright 2012 BrewPi\n# This file is part of BrewPi.\n\n# BrewPi 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# BrewPi 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 BrewPi. If not, see .\n\nfrom __future__ import print_function\nimport sys\n\nfrom BrewPiUtil import printStdErr\nfrom BrewPiUtil import logMessage\nfrom autoSerial import find_serial_numbers\n\n# Check needed software dependencies to nudge users to fix their setup\nif sys.version_info < (2, 7):\n printStdErr(\"Sorry, requires Python 2.7.\")\n sys.exit(1)\n\n# standard libraries\nimport time\nimport socket\nimport os\nimport getopt\nfrom pprint import pprint\nimport shutil\nimport traceback\nimport urllib\nfrom distutils.version import LooseVersion\nfrom serial import SerialException\n\n# load non standard packages, exit when they are not installed\ntry:\n import" -"init();\n $instance->handleRequest();\n }\n\n function init() {\n $applicationHelper\n = ApplicationHelper::instance();\n $applicationHelper->init();\n }\n\n function handleRequest() {\n $request = new Request();\n $app_c = \\woo\\base\\ApplicationRegistry::appController();\n while( $cmd = $app_c->getCommand( $request ) ) {\n $cmd->execute( $request );\n }\n \\woo\\domain\\ObjectWatcher::instance()->performOperations();\n $this->invokeView( $app_c->getView( $request ) );\n }\n\n function invokeView( $target ) {\n include( \"woo/view/$target.php\" );\n exit;\n }\n}\nController::run();\n?>" -"/* -*- Mode:C++; c-file-style:\"gnu\"; indent-tabs-mode:nil; -*- */\n/*\n * Copyright (c) 2007 INRIA\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 * 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 * Author: Mathieu Lacage \n */\n#ifndef UDP_SOCKET_IMPL_H\n#define UDP_SOCKET_IMPL_H\n\n#include \n#include \n#include \"ns3/callback.h\"\n#include \"ns3/traced-callback.h\"\n#include \"ns3/socket.h\"\n#include \"ns3/ptr.h\"\n#include \"ns3/ipv4-address.h\"\n#include \"ns3/udp-socket.h\"\n#include \"ns3/ipv4-interface.h\"\n#include \"icmpv4.h\"\n\nnamespace ns3 {\n\nclass Ipv4EndPoint;\nclass Ipv6EndPoint;\nclass Node;\nclass Packet;\nclass UdpL4Protocol;\nclass Ipv6Header;\nclass Ipv6Interface;\n\n/**\n * \\ingroup socket\n * \\ingroup udp\n *\n * \\brief A sockets interface to UDP\n * \n * This class subclasses ns3::UdpSocket, and provides a" -"#pragma once\n#include \"stdafx.h\"\n\n/** \\file\nSample buffer that resamples from input clock rate to output sample rate */\n\n/* blip_buf 1.1.0 */\n#ifndef BLIP_BUF_H \n#define BLIP_BUF_H\n\n#if defined(_MSC_VER)\n #define EXPORT __declspec(dllexport)\n#else\n #define EXPORT \n#endif \n\n#ifdef __cplusplus\n\textern \"C\" {\n#endif\n\n/** First parameter of most functions is blip_t*, or const blip_t* if nothing\nis changed. */\ntypedef struct blip_t blip_t;\n\n/** Creates new buffer that can hold at most sample_count samples. Sets rates\nso that there are blip_max_ratio clocks per sample. Returns pointer to new\nbuffer, or NULL if insufficient memory. */\nEXPORT blip_t* blip_new( int sample_count );\n\n/** Sets approximate input clock rate and output sample rate. For every\nclock_rate input clocks, approximately sample_rate samples are generated. */\nEXPORT void blip_set_rates( blip_t*, double clock_rate, double sample_rate );\n\nenum { /** Maximum clock_rate/sample_rate ratio. For a given sample_rate,\nclock_rate must not be greater than sample_rate*blip_max_ratio. */\nblip_max_ratio = 1 << 20 };\n\n/** Clears entire buffer. Afterwards, blip_samples_avail() == 0. */\nEXPORT void blip_clear( blip_t* );\n\n/** Adds positive/negative delta into buffer at specified clock time. */\nEXPORT void blip_add_delta( blip_t*, unsigned int clock_time, int delta );\n\n/** Same as blip_add_delta(), but uses faster, lower-quality synthesis. */\nvoid" -"/*\r\n LUFA Library\r\n Copyright (C) Dean Camera, 2010.\r\n\r\n dean [at] fourwalledcubicle [dot] com\r\n www.lufa-lib.org\r\n*/\r\n\r\n/*\r\n Copyright 2010 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 disclaim 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 Board specific Dataflash commands header for the AT45DB642D as mounted on the Atmel STK526.\r\n *\r\n * Board specific Dataflash commands header for the AT45DB642D as mounted" -"/* ----------------------------------------------------------------------------\n * Copyright CEA/DAM/DIF (2007)\n * contributeur : Thomas LEIBOVICI thomas.leibovici@cea.fr\n *\n * This program 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 3 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 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 Street, Fifth Floor, Boston, MA 02110-1301 USA\n * \n * ---------------------------------------\n */\n\n#ifndef CONFPARSER_H\n#define CONFPARSER_H\n\n#include \n#include \n#include \n#include \n#include \"gsh_list.h\"\n\n/**\n * @brief Configuration parser data structures\n * and linkage betweek the parser, analyse.c and config_parsing.c\n */\n\n/*\n * Parse tree node.\n */\n\n/* Config nodes are either terminals or non-terminals.\n * BLOCK and STMT are non-terminals.\n * ROOT is" -"/* Copyright (C) 2004-2018 Free Software Foundation, Inc.\n This file is part of the GNU C Library.\n\n The GNU C 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 The GNU C 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 the GNU C Library; if not, see\n . */\n\n#include \n#include \n\n/* Remove message queue named NAME. */\nint\nmq_unlink (const char *name)\n{\n __set_errno (ENOSYS);\n return -1;\n}\nstub_warning (mq_unlink)" -"/*\n * msgbox.c -- implements the message box and info box\n *\n * ORIGINAL AUTHOR: Savio Lam (lam836@cs.cuhk.hk)\n * MODIFIED FOR LINUX KERNEL CONFIG BY: William Roadcap (roadcapw@cfw.com)\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 * 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\n * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.\n */\n\n#include \"dialog.h\"\n\n/*\n * Display a message box. Program will pause and display an \"OK\" button\n * if the parameter 'pause' is non-zero.\n */\nint dialog_msgbox(const char *title, const char *prompt, int height, int width,\n int pause)\n{\n\tint i, x, y, key = 0;\n\tWINDOW" -"/**\n * Copyright (c) 2010-present Abixen Systems. 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.abixen.platform.common.domain.model.enumtype;\n\n\npublic enum RoleType {\n\n ROLE_ADMIN(\"ROLE_ADMIN\"), ROLE_USER(\"ROLE_USER\");\n\n private final String name;\n\n public String getName() {\n return name;\n }\n\n private RoleType(String name) {\n this.name = name;\n }\n}" -"/*\n * fs/cifs/smb2file.c\n *\n * Copyright (C) International Business Machines Corp., 2002, 2011\n * Author(s): Steve French (sfrench@us.ibm.com),\n * Pavel Shilovsky ((pshilovsky@samba.org) 2012\n *\n * This library is free software; you can redistribute it and/or modify\n * it under the terms of the GNU Lesser General Public License as published\n * by the Free Software Foundation; either version 2.1 of the License, or\n * (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\n * the GNU Lesser General Public License for more details.\n *\n * You should have received a copy of the GNU Lesser General Public License\n * along with this library; if not, write to the Free Software\n * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n */\n#include \n#include \n#include \n#include \n#include \n#include \"cifsfs.h\"\n#include \"cifspdu.h\"\n#include \"cifsglob.h\"\n#include \"cifsproto.h\"\n#include \"cifs_debug.h\"\n#include \"cifs_fs_sb.h\"\n#include \"cifs_unicode.h\"\n#include \"fscache.h\"\n#include \"smb2proto.h\"\n\nvoid\nsmb2_set_oplock_level(struct cifsInodeInfo *cinode, __u32 oplock)\n{\n\toplock &= 0xFF;\n\tif (oplock == SMB2_OPLOCK_LEVEL_NOCHANGE)\n\t\treturn;\n\tif (oplock ==" -"Model:\npredict \"Class = +1\" if score > -1\nscore =\t-2 * x2\n\t\t\t-2 * x30\n\t\t\t-2 * x33\nAccuracy: 0.63811\nConfusion Matrix: \n2234\t1446\n3213\t5981\nPredictions: \n-1\n-1\n-1\n-1\n-1\n-1\n-1\n-1\n-1\n-1\n-1\n-1\n-1\n1\n1\n-1\n1\n-1\n-1\n1\n-1\n1\n1\n1\n1\n1\n1\n-1\n1\n1\n1\n1\n1\n-1\n-1\n1\n1\n1\n-1\n1\n1\n1\n-1\n1\n1\n1\n1\n1\n-1\n1\n1\n1\n-1\n1\n1\n-1\n-1\n1\n1\n1\n1\n-1\n-1\n1\n1\n1\n1\n1\n-1\n1\n1\n-1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n-1\n1\n1\n1\n-1\n1\n1\n1\n1\n1\n-1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n-1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n-1\n1\n-1\n1\n1\n1\n1\n-1\n1\n-1\n1\n1\n1\n1\n1\n1\n1\n-1\n1\n1\n1\n1\n-1\n1\n1\n-1\n1\n1\n-1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n-1\n1\n1\n-1\n1\n1\n1" -"/*\n * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab\n * Copyright (C) 2009-2011 - DIGITEO - Pierre Lando\n *\n * Copyright (C) 2012 - 2016 - Scilab Enterprises\n *\n * This file is hereby licensed under the terms of the GNU GPL v2.0,\n * pursuant to article 5.3.4 of the CeCILL v.2.1.\n * This file was originally licensed under the terms of the CeCILL v2.1,\n * and continues to be available under such terms.\n * For more information, see the COPYING file which you should have received\n * along with this program.\n */\n\npackage org.scilab.forge.scirenderer.ruler;\n\nimport org.scilab.forge.scirenderer.texture.Texture;\nimport org.scilab.forge.scirenderer.texture.TextureManager;\n\nimport java.text.DecimalFormat;\n\n/**\n * @author Pierre Lando\n */\npublic interface RulerSpriteFactory {\n\n /**\n * Return the texture for the given value.\n * @param value the value.\n * @param adaptedFormat an adapted number format for the given value.\n * @param textureManager {@link TextureManager} to use.\n * @return a positioned text entity for the given value.\n */\n Texture create(double value, DecimalFormat adaptedFormat, TextureManager textureManager);\n}" -"// Utilies for testing\n\nvar assert = require('assert');\nvar Buffer = require('buffer').Buffer;\nvar EventEmitter = require('events').EventEmitter;\nvar strtok = require('../lib/strtok');\nvar sys = require('sys');\n\n// A mock stream implementation that breaks up provided data into\n// random-sized chunks and emits 'data' events. This is used to simulate\n// data arriving with arbitrary packet boundaries.\nvar SourceStream = function(str, min, max) {\n EventEmitter.call(this);\n\n str = str || '';\n min = min || 1;\n max = max || str.length;\n\n var self = this;\n var buf = new Buffer(str, 'binary');\n\n var emitData = function() {\n var len = Math.min(\n min + Math.floor(Math.random() * (max - min)),\n buf.length\n );\n\n var b = buf.slice(0, len);\n\n if (len < buf.length) {\n buf = buf.slice(len, buf.length);\n process.nextTick(emitData);\n } else {\n process.nextTick(function() {\n self.emit('end')\n });\n }\n\n self.emit('data', b);\n };\n\n process.nextTick(emitData);\n};\nsys.inherits(SourceStream, EventEmitter);\nexports.SourceStream = SourceStream;\n\n// Stream to accept write() calls and track them in its own buffer rather\n// than dumping them to a file descriptor\nvar SinkStream = function(bufSz) {\n var self = this;\n\n bufSz = bufSz || 1024;\n var buf = new Buffer(bufSz);\n var bufOffset = 0;\n\n self.write = function() {\n var bl = (typeof arguments[0] === 'string') ?\n Buffer.byteLength(arguments[0], arguments[1]) :\n arguments[0].length;\n\n if" -"# How to Contribute\n\nCoreOS projects are [Apache 2.0 licensed](LICENSE) and accept contributions via\nGitHub pull requests. This document outlines some of the conventions on\ndevelopment workflow, commit message formatting, contact points and other\nresources to make it easier to get your contribution accepted.\n\n# Certificate of Origin\n\nBy contributing to this project you agree to the Developer Certificate of\nOrigin (DCO). This document was created by the Linux Kernel community and is a\nsimple statement that you, as a contributor, have the legal right to make the\ncontribution. See the [DCO](DCO) file for details.\n\n# Email and Chat\n\nThe project currently uses the general CoreOS email list and IRC channel:\n- Email: [coreos-dev](https://groups.google.com/forum/#!forum/coreos-dev)\n- IRC: #[coreos](irc://irc.freenode.org:6667/#coreos) IRC channel on freenode.org\n\nPlease avoid emailing maintainers found in the MAINTAINERS file directly. They\nare very busy and read the mailing lists.\n\n## Getting Started\n\n- Fork the repository on GitHub\n- Read the [README](README.md) for build and test instructions\n- Play with the project, submit bugs, submit patches!\n\n## Contribution Flow\n\nThis is a rough outline of what a contributor's workflow looks like:\n\n- Create a topic branch from where you want to base your work (usually master).\n- Make commits" -"---\npage_type: sample\ndescription: \"A file data scanner example. Typically, anti-virus filters are of this type.\"\nlanguages:\n- cpp\nproducts:\n- windows\n- windows-wdk\n---\n\n# Scanner File System Minifilter Driver\n\nThe Scanner minifilter is an example for developers who intend to write filters that examine data in files. Typically, antivirus products fall into this category.\n\n## Universal Windows Driver Compliant\n\nThis sample builds a Universal Windows Driver. It uses only APIs and DDIs that are included in OneCoreUAP.\n\n## Design and Operation\n\nThe Scanner minifilter comprises both kernel-mode and user-mode components. The kernel-mode component recognizes appropriate moments for scanning a file's data and passes it to the user-mode component for further validation. The user-mode component creates a number of threads that await validation requests and corresponding data from the kernel-mode component. After scanning the data for occurrences of a \"foul\" string, the user-mode component sends an appropriate response to the kernel-mode component.\n\nThe kernel-mode component scans files with specific extensions only. The file is first scanned on a successful open. If the file was opened with write access, it is scanned again before a close. Scanning is also performed on data that is about to be written to a" -"_init('googleshoppingapi/taxonomy');\n }\n\n /**\n * @param string $name\n *\n * @return $this\n */\n public function searchByName($name)\n {\n $this->addFieldToFilter('name', array('like' => '%' . $name . '%'));\n return $this;\n }\n\n /**\n * @param int $storeID\n *\n * @return $this\n */\n public function addLocaleFilter($storeID = 0)\n {\n $this->addFieldToFilter('lang', array('like' => $this->_getLanguage($storeID) . '%'));\n return $this;\n }\n\n /**\n * @param int $storeID\n *\n * @return mixed\n */\n private function _getLanguage($storeID = 0)\n {\n\n $langRaw = Mage::getStoreConfig(Mage_Core_Model_Locale::XML_PATH_DEFAULT_LOCALE, $storeID);\n if (empty($langRaw) || strpos($langRaw, '_') === false) {\n $langRaw = Mage_Core_Model_Locale::DEFAULT_LOCALE;\n }\n $langParts = explode('_', $langRaw);\n return $langParts[0];\n }\n}" -"configs:\n buildkitd-config:\n buildkitd.toml: |\n debug=true\n [gc]\n enabled=false\n [worker.oci]\n enabled=true\n gc=false\n gckeepstorage=1073741824\n [grpc]\n address = [ \"tcp://0.0.0.0:8080\" ]\n # debugAddress is address for attaching go profiles and debuggers.\n debugAddress = \"0.0.0.0:6060\"\n\nservices:\n buildkitd:\n version: v0\n serviceMesh: false\n image: \"moby/buildkit:v0.6.1\"\n ports:\n - 8080/http,buildkit,expose=false\n privileged: true\n configs:\n - buildkitd-config:/etc/buildkit\n containers:\n - name: registry\n image: \"registry:2\"\n env:\n - REGISTRY_HTTP_ADDR=0.0.0.0:80\n ports:\n - 80:80/tcp,registry,expose=false\n volume:\n - rio-registry:/var/lib/registry,persistent=${PERSISTENT}\n webhook:\n version: v0\n global_permissions:\n - \"* gitwatcher.cattle.io/gitwatchers\"\n - \"* gitwatcher.cattle.io/gitcommits\"\n - '* configmaps'\n - '* events'\n - get,list pods\n - create,get,list /pods/log\n - secrets\n image: rancher/gitwatcher:v0.4.5\n args:\n - gitwatcher\n - --listen-address\n - :8090\n imagePullPolicy: always\n ports:\n - 8090/http,http-webhook\n\ntemplate:\n envSubst: true\n questions:\n - variable: PERSISTENT\n description: \"Use PV to store registry data\"" -"16\n2\n52\n0\n8\n0\n79\n3\n5\n2\n26\n0\n24\n13\n36\n13\n46\n2\n0\n0\n45\n56\n25\n0\n49\n14\n9\n45\n62\n3\n15\n71\n41\n44\n56\n23\n0\n0\n0\n0\n0\n4\n2\n2\n34\n45\n0\n42\n0\n44\n79\n3\n2\n5\n90\n0\n3\n14\n0\n2\n26\n1\n14\n69\n28\n91\n0\n47\n0\n57\n14\n0\n41\n52\n12\n18\n57\n0\n75\n4\n80\n38\n18\n0\n3\n0\n4\n42\n8\n69\n0\n0\n0\n88\n11\n39\n39\n53\n36\n5\n2\n86\n45\n0\n2\n4\n2\n0\n0\n2\n88\n34\n2\n21\n42\n68\n15\n71\n0\n2\n8\n21\n38\n35\n0\n0\n32\n81\n1\n2\n0\n0\n4\n0\n2\n40\n0\n0\n88\n36\n71\n86\n0\n63\n0\n15\n30\n22\n2\n52\n68\n2\n33\n60\n48\n0\n19\n2\n19\n55\n2\n10\n45\n45\n20\n0\n22\n25\n13\n3\n46\n18\n0\n2\n0\n0\n2\n2\n3\n0\n0\n0\n35\n5\n24\n20\n56\n7\n0\n65\n76\n42\n22\n14\n22\n0\n2\n2\n5\n54" -"/*\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.apache.wicket.pageStore;\n\nimport java.security.SecureRandom;\nimport java.util.concurrent.CountDownLatch;\nimport java.util.concurrent.ExecutorService;\nimport java.util.concurrent.Executors;\n\nimport org.apache.wicket.MockPage;\nimport org.apache.wicket.mock.MockPageContext;\nimport org.apache.wicket.page.IManageablePage;\nimport org.junit.jupiter.api.Test;\n\n/**\n * Tests for {@link AsynchronousPageStore}\n */\npublic class AsynchronousDataStoreTest\n{\n\tprivate static final IPageStore WRAPPED_PAGE_STORE = new InMemoryPageStore(\"test\", Integer.MAX_VALUE);\n\n\t/** the data store under test */\n\tprivate static final IPageStore ASYNC_PAGE_STORE = new AsynchronousPageStore(WRAPPED_PAGE_STORE, 100);\n\n\t/** the used jsessionid's */\n\tprivate static final IPageContext[] CONTEXT = new IPageContext[] { createContext(\"s1\"), createContext(\"s2\"), createContext(\"s3\")};\n\n\t/**" -"from __future__ import print_function, unicode_literals, absolute_import\n\nclass Event(object):\n '''Represent events from the console.'''\n def __init__(self, console, input):\n pass\n\n def __repr__(self):\n '''Display an event for debugging.'''\n if self.type in ['KeyPress', 'KeyRelease']:\n chr = self.char\n if ord(chr) < ord(\"A\"):\n chr = \"?\"\n s = \"%s char='%s'%d keysym='%s' keycode=%d:%x state=%x keyinfo=%s\" % \\\n (self.type, chr, ord(self.char), self.keysym, self.keycode, self.keycode,\n self.state, self.keyinfo)\n elif self.type in ['Motion', 'Button']:\n s = '%s x=%d y=%d state=%x' % (self.type, self.x, self.y, self.state)\n elif self.type == 'Configure':\n s = '%s w=%d h=%d' % (self.type, self.width, self.height)\n elif self.type in ['FocusIn', 'FocusOut']:\n s = self.type\n elif self.type == 'Menu':\n s = '%s state=%x' % (self.type, self.state)\n else:\n s = 'unknown event type'\n return s\n\n\n# def __str__(self):\n# return \"('%s',%s,%s,%s)\"%(self.char,self.key,self.state,self.keyinfo)" -"#include \n#include \n#include \n\nusing namespace std;\n\nconst int HEIHGT = 100;\nconst int WIDTH = 2 * 100000;\n\nstruct Mirror {\n int a, b, c;\n\n Mirror(int a, int b, int c): a(a), b(b), c(c) {\n }\n\n bool operator<(const Mirror& o) const {\n return a < o.a;\n }\n};\n\nint getId(const vector& v, int x) {\n int i = upper_bound(v.begin(), v.end(), Mirror(x, x, x)) - v.begin();\n --i;\n if (i < 0 || x > v[i].b) {\n i = -1;\n }\n /*\n printf(\"getId(%p, %d) = (%d, %d, %d)\\n\", &v, x,\n i == -1 ? -1 : v[i].a,\n i == -1 ? -1 : v[i].b,\n i == -1 ? -1 : v[i].c);\n */\n return i;\n}\n\nint intdiv(int num, int den) {\n if (num % den == 0) {\n return num / den;\n } else {\n int ret = num / den;\n if (ret % 2 == 0) {\n ++ret;\n }\n return ret;\n }\n}\n\nint main() {\n char type;\n int h1, h2, n, a, b, c;\n vector up, down;\n\n scanf(\"%d%d%d\", &h1, &h2, &n);\n for (int i = 0; i < n; ++i) {\n scanf(\"%d %c%d%d\", &c, &type, &a, &b);\n if (type == 'T') {\n up.push_back(Mirror(2 * a, 2 *" -"/*\n This file is part of the iText (R) project.\n Copyright (c) 1998-2020 iText Group NV\n Authors: iText Software.\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 version 3\n as published by the Free Software Foundation with the addition of the\n following permission added to Section 15 as permitted in Section 7(a):\n FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY\n ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT\n OF THIRD PARTY RIGHTS\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 MERCHANTABILITY\n or FITNESS FOR A PARTICULAR PURPOSE.\n See the GNU Affero General Public License for more details.\n You should have received a copy of the GNU Affero General Public License\n along with this program; if not, see http://www.gnu.org/licenses or write to\n the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,\n Boston, MA, 02110-1301 USA, or download the license from the following URL:\n http://itextpdf.com/terms-of-use/\n\n The interactive user interfaces in modified source and object code versions\n of this program must display Appropriate Legal Notices, as" -"// Adler32.cs - Computes Adler32 data checksum of a data stream\n// Copyright (C) 2001 Mike Krueger\n//\n// This file was translated from java, it was part of the GNU Classpath\n// Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc.\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// 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\n// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n//\n// Linking this library statically or dynamically with other modules is\n// making a combined work based on this library. Thus, the terms and\n// conditions of the GNU" -"// -*- C++ -*-\n\n//=============================================================================\n/**\n * @file os_trace.h\n *\n * tracing\n *\n * $Id: os_trace.h 80826 2008-03-04 14:51:23Z wotte $\n *\n * @author Don Hinton \n * @author This code was originally in various places including ace/OS.h.\n */\n//=============================================================================\n\n#ifndef ACE_OS_INCLUDE_OS_TRACE_H\n#define ACE_OS_INCLUDE_OS_TRACE_H\n\n#include /**/ \"ace/pre.h\"\n\n#include /**/ \"ace/config-all.h\"\n\n#if !defined (ACE_LACKS_PRAGMA_ONCE)\n# pragma once\n#endif /* ACE_LACKS_PRAGMA_ONCE */\n\n#include \"ace/os_include/sys/os_types.h\"\n\n#if !defined (ACE_LACKS_TRACE_H)\n# include /**/ \n#endif /* !ACE_LACKS_TRACE_H */\n\n// Place all additions (especially function declarations) within extern \"C\" {}\n#ifdef __cplusplus\nextern \"C\"\n{\n#endif /* __cplusplus */\n\n#ifdef __cplusplus\n}\n#endif /* __cplusplus */\n\n#include /**/ \"ace/post.h\"\n#endif /* ACE_OS_INCLUDE_OS_TRACE_H */" -"/*\n Simple DirectMedia Layer\n Copyright (C) 1997-2020 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#ifndef SDL_mouse_c_h_\n#define SDL_mouse_c_h_\n\n#include \"SDL_mouse.h\"\n\ntypedef Uint32 SDL_MouseID;\n\nstruct SDL_Cursor\n{\n struct SDL_Cursor *next;\n void *driverdata;\n};\n\ntypedef struct\n{\n int last_x, last_y;\n Uint32 last_timestamp;\n Uint8 click_count;\n} SDL_MouseClickState;\n\ntypedef struct\n{\n /* Create a cursor from a surface */\n SDL_Cursor *(*CreateCursor) (SDL_Surface * surface, int hot_x, int hot_y);\n\n /* Create a system cursor" -"# Copyright (c) 2013-2014 Rackspace, 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\n# implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\"\"\"\nInterface to the Alembic migration process and environment.\n\nConcepts in this file are based on Quantum's Alembic approach.\n\nAvailable Alembic commands are detailed here:\nhttps://alembic.readthedocs.org/en/latest/api.html#module-alembic.command\n\"\"\"\n\nimport os\n\nfrom alembic import command as alembic_command\nfrom alembic import config as alembic_config\n\nfrom barbican.common import config\nfrom barbican.common import utils\n\nLOG = utils.getLogger(__name__)\n\n\nCONF = config.CONF\n\n\ndef init_config(sql_url=None):\n \"\"\"Initialize and return the Alembic configuration.\"\"\"\n sqlalchemy_url = sql_url or CONF.sql_connection\n if not sqlalchemy_url:\n raise RuntimeError(\"Please specify a SQLAlchemy-friendly URL to \"\n \"connect to the proper database, either through \"\n \"the CLI or the configuration file.\")\n\n if sqlalchemy_url and 'sqlite' in sqlalchemy_url:\n LOG.warning('!!! Limited support for" -"/*\n * This file is part of the TrinityCore Project. See AUTHORS file for Copyright information\n *\n * This program 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; either version 2 of the License, or (at your\n * option) any later version.\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 for\n * more details.\n *\n * You should have received a copy of the GNU General Public License along\n * with this program. If not, see .\n */\n\n#include \"ScriptMgr.h\"\n#include \"ScriptedCreature.h\"\n#include \"the_botanica.h\"\n\nenum Says\n{\n SAY_AGGRO = 0,\n SAY_20_PERCENT_HP = 1,\n SAY_KILL = 2,\n SAY_CAST_SACRIFICE = 3,\n SAY_50_PERCENT_HP = 4,\n SAY_CAST_HELLFIRE = 5,\n SAY_DEATH = 6,\n EMOTE_ENRAGE = 7\n};\n\nenum Spells\n{\n SPELL_SACRIFICE = 34661,\n SPELL_HELLFIRE = 34659,\n SPELL_ENRAGE = 34670\n};\n\nenum Events\n{\n EVENT_SACRIFICE = 1,\n EVENT_HELLFIRE = 2,\n EVENT_ENRAGE = 3\n};\n\nclass boss_thorngrin_the_tender : public CreatureScript\n{\n public: boss_thorngrin_the_tender() : CreatureScript(\"thorngrin_the_tender\") {" -"/**\n * Macros for metaprogramming\n * ExtendedC\n *\n * Copyright (C) 2012 Justin Spahr-Summers\n * Released under the MIT license\n */\n\n#ifndef EXTC_METAMACROS_H\n#define EXTC_METAMACROS_H\n\n\n/**\n * Executes one or more expressions (which may have a void type, such as a call\n * to a function that returns no value) and always returns true.\n */\n#define metamacro_exprify(...) \\\n ((__VA_ARGS__), true)\n\n/**\n * Returns a string representation of VALUE after full macro expansion.\n */\n#define metamacro_stringify(VALUE) \\\n metamacro_stringify_(VALUE)\n\n/**\n * Returns A and B concatenated after full macro expansion.\n */\n#define metamacro_concat(A, B) \\\n metamacro_concat_(A, B)\n\n/**\n * Returns the Nth variadic argument (starting from zero). At least\n * N + 1 variadic arguments must be given. N must be between zero and twenty,\n * inclusive.\n */\n#define metamacro_at(N, ...) \\\n metamacro_concat(metamacro_at, N)(__VA_ARGS__)\n\n/**\n * Returns the number of arguments (up to twenty) provided to the macro. At\n * least one argument must be provided.\n *\n * Inspired by P99: http://p99.gforge.inria.fr\n */\n#define metamacro_argcount(...) \\\n metamacro_at(20, __VA_ARGS__, 20, 19, 18, 17, 16, 15, 14, 13, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1)\n\n/**\n * Identical to #metamacro_foreach_cxt, except that no CONTEXT argument is\n * given. Only" -"#\n# Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved.\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# You should have received a copy of the GNU General Public License\n# along with this program; if not, write to the Free Software\n# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\n#\nimport os\nimport server_info\n\nfrom mysql.utilities.exception import MUTLibError\n\n_FORMATS = ['GRID','CSV','TAB','VERTICAL']\n\n\nclass test(server_info.test):\n \"\"\"check parameters for serverinfo\n This test executes a series of server_info tests using a variety of\n parameters. It uses the server_info test as a parent for setup and teardown\n methods.\n \"\"\"\n\n def check_prerequisites(self):\n return server_info.test.check_prerequisites(self)\n\n def setup(self):\n self.server3 = None\n return server_info.test.setup(self)\n\n def run(self):\n self.server1 = self.servers.get_server(0)\n self.res_fname = \"result.txt\"\n\n from_conn2 = \"--server=\" + self.build_connection_string(self.server2)" -"//! A map of all publicly exported items in a crate.\n\nuse std::{cmp::Ordering, fmt, hash::BuildHasherDefault, sync::Arc};\n\nuse base_db::CrateId;\nuse fst::{self, Streamer};\nuse indexmap::{map::Entry, IndexMap};\nuse rustc_hash::{FxHashMap, FxHasher};\nuse smallvec::SmallVec;\nuse syntax::SmolStr;\n\nuse crate::{\n db::DefDatabase,\n item_scope::ItemInNs,\n path::{ModPath, PathKind},\n visibility::Visibility,\n AssocItemId, ModuleDefId, ModuleId, TraitId,\n};\n\ntype FxIndexMap = IndexMap>;\n\n/// Item import details stored in the `ImportMap`.\n#[derive(Debug, Clone, Eq, PartialEq)]\npub struct ImportInfo {\n /// A path that can be used to import the item, relative to the crate's root.\n pub path: ModPath,\n /// The module containing this item.\n pub container: ModuleId,\n}\n\n/// A map from publicly exported items to the path needed to import/name them from a downstream\n/// crate.\n///\n/// Reexports of items are taken into account, ie. if something is exported under multiple\n/// names, the one with the shortest import path will be used.\n///\n/// Note that all paths are relative to the containing crate's root, so the crate name still needs\n/// to be prepended to the `ModPath` before the path is valid.\n#[derive(Default)]\npub struct ImportMap {\n map: FxIndexMap,\n\n /// List of keys stored in `map`, sorted lexicographically by their `ModPath`. Indexed by the\n /// values returned by" -"# Copyright (C) 2010-2016 JPEXS\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 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 .\nshapes = Shapes\nshapes.svg = SVG\nshapes.png = PNG\nshapes.bmp = BMP\nshapes.canvas = HTML5 Canvas\nshapes.swf = SWF\n\ntexts = Texts\ntexts.plain = Plain text\ntexts.formatted = Formatted text\ntexts.svg = SVG\n\nimages = Images\nimages.png_gif_jpeg = PNG/GIF/JPEG\nimages.png = PNG\nimages.jpeg = JPEG\nimages.bmp = BMP\n\nmovies = Movies\nmovies.flv = FLV (No audio)\n\nsounds = Sounds\nsounds.mp3_wav_flv = MP3/WAV/FLV\nsounds.flv = FLV (Audio only)\nsounds.mp3_wav = MP3/WAV\nsounds.wav = WAV\n\nscripts = Scripts\nscripts.as = ActionScript\nscripts.pcode = P-code\nscripts.pcode_hex" -"/* Copyright 2013 Ravenbrook Limited .\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\n * met:\n * \n * 1. Redistributions of source code must retain the above copyright\n * notice, this list of conditions and the following disclaimer.\n * \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 LIMITED\n * TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\n * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n * NEGLIGENCE OR OTHERWISE) ARISING IN ANY" -"/*\n Copyright (c) 2007-2015 Contributors as noted in the AUTHORS file\n\n This file is part of libzmq, the ZeroMQ core engine in C++.\n\n libzmq is free software; you can redistribute it and/or modify it under\n the terms of the GNU Lesser General Public License (LGPL) as published\n by the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n\n As a special exception, the Contributors give you permission to link\n this library with independent modules to produce an executable,\n regardless of the license terms of these independent modules, and to\n copy and distribute the resulting executable under terms of your choice,\n provided that you also meet, for each linked independent module, the\n terms and conditions of the license of that module. An independent\n module is a module which is not derived from or based on this library.\n If you modify this library, you must extend this exception to your\n version of the library.\n\n libzmq 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 Lesser General Public\n License for more details.\n\n You should have" -"---\ntitle: Error del compilador CS1731\nms.date: 07/20/2015\nf1_keywords:\n- CS1731\nhelpviewer_keywords:\n- CS1731\nms.assetid: 267b32aa-a692-4a54-8654-0540ee36c0a0\nms.openlocfilehash: 0bc3ef2e80b930e9ed6e02299313f8898a51e03d\nms.sourcegitcommit: 5b475c1855b32cf78d2d1bbb4295e4c236f39464\nms.translationtype: MT\nms.contentlocale: es-ES\nms.lasthandoff: 09/24/2020\nms.locfileid: \"91191091\"\n---\n# Error del compilador CS1731\n\nNo se puede convertir 'expresi\u00f3n' a delegado porque algunos de los tipos de valor devuelto del bloque no se pueden convertir impl\u00edcitamente al tipo de valor devuelto del delegado. \n \n Este error se genera cuando una expresi\u00f3n lambda o un m\u00e9todo an\u00f3nimo tiene un tipo de valor devuelto que no es compatible con el tipo de valor devuelto del delegado. \n \n## Para corregir este error \n \n1. Cambie el tipo de valor devuelto del delegado o la expresi\u00f3n. \n \n## Ejemplo \n\n El c\u00f3digo siguiente genera el error CS1731. \n \n```csharp \nclass CS1731 \n{ \n delegate double D(); \n D d = () => { return \"Who knows the real sword of Gryffindor?\"; }; \n} \n```" -"// Copyright 2015 PingCAP, 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// See the License for the specific language governing permissions and\n// limitations under the License.\n\npackage domain\n\nimport (\n\t\"github.com/hanchuanchuan/goInception/util/mock\"\n\t\"github.com/hanchuanchuan/goInception/util/testleak\"\n\t. \"github.com/pingcap/check\"\n)\n\nvar _ = Suite(&testDomainCtxSuite{})\n\ntype testDomainCtxSuite struct {\n}\n\nfunc (s *testDomainCtxSuite) TestDomain(c *C) {\n\tdefer testleak.AfterTest(c)()\n\tctx := mock.NewContext()\n\n\tc.Assert(domainKey.String(), Not(Equals), \"\")\n\n\tBindDomain(ctx, nil)\n\tv := GetDomain(ctx)\n\tc.Assert(v, IsNil)\n\n\tctx.ClearValue(domainKey)\n\tv = GetDomain(ctx)\n\tc.Assert(v, IsNil)\n}" -"---\ntitle: Box shadow\nstatus: New release\nstatus_issue: https://github.com/github/design-systems/issues/269\n---\n\nBox shadows are used to make content appear elevated. They are typically applied to containers of content that users need to pay attention to or content that appears on top of (overlapping) other elements on the page (like a pop-over or modal).\n\n{:toc}\n\n## Default\n\nDefault shadows are mainly used on things that need to appear slightly elevated, like pricing cards or UI elements containing important information.\n\n```html\n
    \n .box-shadow\n
    \n```\n\nThese types of shadows are typically applied to elements with borders, like [`Box`](/styleguide/css/styles/core/components/box).\n\n```html\n
    \n
    \n
    \n

    Organization

    \n
    \n
    \n

    \n Taxidermy live-edge mixtape, keytar tumeric locavore meh selvage deep v letterpress vexillologist lo-fi tousled church-key thundercats. Brooklyn bicycle rights tousled, marfa actually.\n

    \n
    \n
    \n \n
    \n
    \n
    \n```\n\n## Medium\n\nMedium box shadows are more diffused and slightly larger than small box shadows.\n\n```html\n
    \n .box-shadow-medium\n
    \n```\n\nMedium box shadows are typically used on editorialized content that needs to appear elevated. Most of the time, the elements using this level of" -"# 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\nfrom __future__ import with_statement\n\nimport collections\nimport errno\nimport filecmp\nimport os.path\nimport re\nimport tempfile\nimport sys\n\n\n# A minimal memoizing decorator. It'll blow up if the args aren't immutable,\n# among other \"problems\".\nclass memoize(object):\n def __init__(self, func):\n self.func = func\n self.cache = {}\n def __call__(self, *args):\n try:\n return self.cache[args]\n except KeyError:\n result = self.func(*args)\n self.cache[args] = result\n return result\n\n\nclass GypError(Exception):\n \"\"\"Error class representing an error, which is to be presented\n to the user. The main entry point will catch and display this.\n \"\"\"\n pass\n\n\ndef ExceptionAppend(e, msg):\n \"\"\"Append a message to the given exception's message.\"\"\"\n if not e.args:\n e.args = (msg,)\n elif len(e.args) == 1:\n e.args = (str(e.args[0]) + ' ' + msg,)\n else:\n e.args = (str(e.args[0]) + ' ' + msg,) + e.args[1:]\n\n\ndef FindQualifiedTargets(target, qualified_list):\n \"\"\"\n Given a list of qualified targets, return the qualified targets for the\n specified |target|.\n \"\"\"\n return [t for t in qualified_list if ParseQualifiedTarget(t)[1] == target]\n\n\ndef ParseQualifiedTarget(target):\n # Splits a qualified target into a build file, target name" -"// Copyright (c) 2019 WSO2 Inc. (http://www.wso2.org) All Rights Reserved.\n//\n// WSO2 Inc. licenses this file to you under the Apache License,\n// Version 2.0 (the \"License\"); you may not use this file except\n// 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\ntype Person record {\n string name;\n int age;\n};\n\nPerson person = {name: \"John Doe\", age: 25};\n\nfunction testLength() returns int {\n return person.length();\n}\n\nfunction testGet(string key) returns anydata {\n return person.get(key);\n}\n\nfunction testEntries() returns map<[string, anydata]> {\n return person.entries();\n}\n\nfunction testRemove(string key) returns anydata {\n Person anotherPerson = {name: \"Jane Doe\", age: 30};\n return anotherPerson.remove(key);\n}\n\nfunction testRemoveAll() {\n Person anotherPerson = {name: \"Jane Doe\", age: 30};\n anotherPerson.removeAll();\n}\n\nfunction testHasKey(string key) returns boolean {\n return person.hasKey(key);\n}\n\nfunction testHasKey2() returns [boolean, boolean] {\n Person anotherPerson = {name:" -"/*\n * Copyright 2014-2016 Nippon Telegraph and Telephone Corporation.\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 * Note: this file originally auto-generated by mib2c using\n * : mib2c.column_defines.conf 7011 2002-05-08 05:42:47Z hardaker $\n */\n#ifndef IFTABLE_COLUMNS_H\n#define IFTABLE_COLUMNS_H\n\n/* column number definitions for table ifTable */\n#define COLUMN_IFINDEX\t\t1\n#define COLUMN_IFDESCR\t\t2\n#define COLUMN_IFTYPE\t\t3\n#define COLUMN_IFMTU\t\t4\n#define COLUMN_IFSPEED\t\t5\n#define COLUMN_IFPHYSADDRESS\t\t6\n#define COLUMN_IFADMINSTATUS\t\t7\n#define COLUMN_IFOPERSTATUS\t\t8\n#define COLUMN_IFLASTCHANGE\t\t9\n#define COLUMN_IFINOCTETS\t\t10\n#define COLUMN_IFINUCASTPKTS\t\t11\n#define COLUMN_IFINNUCASTPKTS\t\t12\n#define COLUMN_IFINDISCARDS\t\t13\n#define COLUMN_IFINERRORS\t\t14\n#define COLUMN_IFINUNKNOWNPROTOS\t\t15\n#define COLUMN_IFOUTOCTETS\t\t16\n#define COLUMN_IFOUTUCASTPKTS\t\t17\n#define COLUMN_IFOUTNUCASTPKTS\t\t18\n#define COLUMN_IFOUTDISCARDS\t\t19\n#define COLUMN_IFOUTERRORS\t\t20\n#define COLUMN_IFOUTQLEN\t\t21\n#define COLUMN_IFSPECIFIC\t\t22\n#endif /* IFTABLE_COLUMNS_H" -"var offset = 0;\n\nexports.local = function(year, month, day, hours, minutes, seconds, milliseconds) {\n var date = new Date();\n date.setFullYear(year, month, day);\n date.setHours(hours || 0, offset + (minutes || 0), seconds || 0, milliseconds || 0);\n return date;\n};\n\nexports.utc = function(year, month, day, hours, minutes, seconds, milliseconds) {\n var date = new Date();\n date.setUTCFullYear(year, month, day);\n date.setUTCHours(hours || 0, minutes || 0, seconds || 0, milliseconds || 0);\n return date;\n};\n\nexports.zone = function(tzOffset, scope) {\n return function() {\n var o = Date.prototype.getTimezoneOffset;\n try {\n // Note: assumes the dates are not in DST.\n offset = -tzOffset - new Date(0).getTimezoneOffset();\n Date.prototype.getTimezoneOffset = function() { return offset; };\n scope.apply(this, arguments);\n } finally {\n offset = 0;\n Date.prototype.getTimezoneOffset = o;\n }\n };\n};" -"from db import Database\nfrom metadata import MetadataPlugin, MetadataPluginConfig\nfrom typing import Optional, List, IO\nimport gzip\nimport shutil\nimport tempfile\n\n\nclass GzipPlugin(MetadataPlugin):\n \"\"\" Can be used to automatically extract gzip contents before running\n Yara on them. This plugin will look for all files that end with .gz,\n and add extract them to disk before further processing.\n \"\"\"\n\n is_filter = True\n\n def __init__(self, db: Database, config: MetadataPluginConfig) -> None:\n super().__init__(db, config)\n self.tmpfiles: List[IO[bytes]] = []\n\n def filter(self, orig_name: str, file_path: str) -> Optional[str]:\n tmp = tempfile.NamedTemporaryFile()\n self.tmpfiles.append(tmp)\n if orig_name.endswith(\".gz\"):\n with gzip.open(file_path, \"rb\") as f_in:\n with open(tmp.name, \"wb\") as f_out:\n shutil.copyfileobj(f_in, f_out)\n return tmp.name\n\n return file_path\n\n def clean(self):\n for tmp in self.tmpfiles:\n tmp.close()\n self.tmpfiles = []" -"{\n \"cells\": [\n {\n \"cell_type\": \"markdown\",\n \"metadata\": {},\n \"source\": [\n \"# Boolean Generator\\n\",\n \"This notebook will show how to use the boolean generator to generate a boolean combinational function. The function that is implemented is a 2-input XOR.\"\n ]\n },\n {\n \"cell_type\": \"markdown\",\n \"metadata\": {},\n \"source\": [\n \"### Step 1: Download the `logictools` overlay\"\n ]\n },\n {\n \"cell_type\": \"code\",\n \"execution_count\": 1,\n \"metadata\": {\n \"collapsed\": true\n },\n \"outputs\": [],\n \"source\": [\n \"from pynq.overlays.logictools import LogicToolsOverlay\\n\",\n \"\\n\",\n \"logictools_olay = LogicToolsOverlay('logictools.bit')\"\n ]\n },\n {\n \"cell_type\": \"markdown\",\n \"metadata\": {},\n \"source\": [\n \"### Step 2: Specify the boolean function of a 2-input XOR \\n\",\n \"The logic is applied to the on-board pushbuttons and LED, pushbuttons **PB0** and **PB3** are set as inputs and LED **LD2** is set as an output\"\n ]\n },\n {\n \"cell_type\": \"code\",\n \"execution_count\": 2,\n \"metadata\": {\n \"collapsed\": true\n },\n \"outputs\": [],\n \"source\": [\n \"function = ['LD2 = PB3 ^ PB0']\"\n ]\n },\n {\n \"cell_type\": \"markdown\",\n \"metadata\": {},\n \"source\": [\n \"### Step 3: Instantiate and setup of the boolean generator object. \\n\",\n \"The logic function defined in the previous step is setup using the `setup()` method \"\n ]\n },\n {\n \"cell_type\": \"code\",\n \"execution_count\": 3,\n \"metadata\": {\n \"collapsed\": true\n },\n \"outputs\": [],\n \"source\": [" -"/*\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 * Compatibility libm for table generation files\n */\n\n#ifndef AVUTIL_TABLEGEN_H\n#define AVUTIL_TABLEGEN_H\n\n#include \n\n// we lack some functions on all host platforms, and we don't care about\n// performance and/or strict ISO C semantics as it's performed at build time\nstatic inline double ff_cbrt(double x)\n{\n return x < 0 ? -pow(-x, 1.0 / 3.0) : pow(x, 1.0 / 3.0);" -"//\n// ZLAlbumListController.swift\n// ZLPhotoBrowser\n//\n// Created by long on 2020/8/18.\n//\n// Copyright (c) 2020 Long Zhang \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." -"#!/usr/bin/python3\r\n# -*- coding: utf-8 -*-\r\n\r\n\"\"\"\r\nExtAnalysis - Browser Extension Analysis Framework\r\nCopyright (C) 2019 - 2020 Tuhinshubhra\r\n\r\nThis program is free software: you can redistribute it and/or modify\r\nit under the terms of the GNU Affero General Public License as published\r\nby the Free Software Foundation, either version 3 of the License, or\r\n(at your option) any later version.\r\n\r\nThis program is distributed in the hope that it will be useful,\r\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\r\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\r\nGNU Affero General Public License for more details.\r\n\r\nYou should have received a copy of the GNU Affero General Public License\r\nalong with this program. If not, see .\r\n\"\"\"\r\n\r\nimport os\r\nimport logging\r\nimport traceback\r\nimport argparse\r\nimport webbrowser\r\nfrom flask import Flask, request, render_template, redirect, url_for, send_from_directory\r\nfrom werkzeug.utils import secure_filename\r\nimport core.core as core\r\nimport core.analyze as analysis\r\nimport core.helper as helper\r\nimport core.settings as settings\r\nfrom flask_wtf.csrf import CSRFProtect\r\n\r\nparser = argparse.ArgumentParser(prog='extanalysis.py', add_help=False)\r\nparser.add_argument('-h', '--host', help='Host to run ExtAnalysis on. Default host is 127.0.0.1')\r\nparser.add_argument('-p', '--port', help='Port to run ExtAnalysis on. Default port is 13337')\r\nparser.add_argument('-v', '--version', action='store_true', help='Shows version and quits')\r\nparser.add_argument('-u', '--update'," -"/*\n * This file is part of the MicroPython project, http://micropython.org/\n *\n * The MIT License (MIT)\n *\n * Copyright (c) 2013, 2014 Damien P. George\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" -"// Copyright (C) 2019 tribe29 GmbH - License: GNU General Public License v2\n// This file is part of Checkmk (https://checkmk.com). It is subject to the terms and\n// conditions defined in the file COPYING, which is part of this source code package.\n\n// Windows Agent Version Data\n\n#pragma once\n#if !defined(version_h__)\n#define version_h__\n\n#include \"wnx_version.h\"\n#define CHECK_MK_VERSION CMK_WIN_AGENT_VERSION\n\n#define STRINGIZE2(s) #s\n#define STRINGIZE(s) STRINGIZE2(s)\n\n// This FILE version, normally no changes\n#define VERSION_MAJOR 2\n#define VERSION_MINOR 1\n#define VERSION_REVISION 0\n#define VERSION_BUILD 0\n\n#define VER_FILE_VERSION \\\n VERSION_MAJOR, VERSION_MINOR, VERSION_REVISION, VERSION_BUILD\n#define VER_FILE_VERSION_STR \\\n STRINGIZE(VERSION_MAJOR) \\\n \".\" STRINGIZE(VERSION_MINOR) \".\" STRINGIZE( \\\n VERSION_REVISION) \".\" STRINGIZE(VERSION_BUILD)\n\n#define VER_PRODUCT_VERSION_STR CMK_WIN_AGENT_VERSION\n\n//#define VER_FILE_DESCRIPTION_STR \"Description\"\n//#define VER_PRODUCTNAME_STR \"c_version_binary\"\n//#define VER_PRODUCT_VERSION VER_FILE_VERSION\n//#define VER_ORIGINAL_FILENAME_STR VER_PRODUCTNAME_STR \".exe\"\n//#define VER_INTERNAL_NAME_STR VER_ORIGINAL_FILENAME_STR\n//#define VER_COPYRIGHT_STR \"Copyright (C) 2019\"\n\n#ifdef _DEBUG\n#define VER_VER_DEBUG VS_FF_DEBUG\n#else\n#define VER_VER_DEBUG 0\n#endif\n\n#define VER_FILEOS VOS_NT_WINDOWS32\n#define VER_FILEFLAGS VER_VER_DEBUG\n#define VER_FILETYPE VFT_APP\n\n#endif // version_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\n// Package elgamal implements ElGamal encryption, suitable for OpenPGP,\n// as specified in \"A Public-Key Cryptosystem and a Signature Scheme Based on\n// Discrete Logarithms,\" IEEE Transactions on Information Theory, v. IT-31,\n// n. 4, 1985, pp. 469-472.\n//\n// This form of ElGamal embeds PKCS#1 v1.5 padding, which may make it\n// unsuitable for other protocols. RSA should be used in preference in any\n// case.\npackage elgamal // import \"golang.org/x/crypto/openpgp/elgamal\"\n\nimport (\n\t\"crypto/rand\"\n\t\"crypto/subtle\"\n\t\"errors\"\n\t\"io\"\n\t\"math/big\"\n)\n\n// PublicKey represents an ElGamal public key.\ntype PublicKey struct {\n\tG, P, Y *big.Int\n}\n\n// PrivateKey represents an ElGamal private key.\ntype PrivateKey struct {\n\tPublicKey\n\tX *big.Int\n}\n\n// Encrypt encrypts the given message to the given public key. The result is a\n// pair of integers. Errors can result from reading random, or because msg is\n// too large to be encrypted to the public key.\nfunc Encrypt(random io.Reader, pub *PublicKey, msg []byte) (c1, c2 *big.Int, err error) {\n\tpLen := (pub.P.BitLen() + 7) / 8" -"\"\"\"Mutual exclusion -- for use with module sched\n\nA mutex has two pieces of state -- a 'locked' bit and a queue.\nWhen the mutex is not locked, the queue is empty.\nOtherwise, the queue contains 0 or more (function, argument) pairs\nrepresenting functions (or methods) waiting to acquire the lock.\nWhen the mutex is unlocked while the queue is not empty,\nthe first queue entry is removed and its function(argument) pair called,\nimplying it now has the lock.\n\nOf course, no multi-threading is implied -- hence the funny interface\nfor lock, where a function is called once the lock is aquired.\n\"\"\"\nfrom warnings import warnpy3k\nwarnpy3k(\"the mutex module has been removed in Python 3.0\", stacklevel=2)\ndel warnpy3k\n\nfrom collections import deque\n\nclass mutex:\n def __init__(self):\n \"\"\"Create a new mutex -- initially unlocked.\"\"\"\n self.locked = 0\n self.queue = deque()\n\n def test(self):\n \"\"\"Test the locked bit of the mutex.\"\"\"\n return self.locked\n\n def testandset(self):\n \"\"\"Atomic test-and-set -- grab the lock if it is not set,\n return True if it succeeded.\"\"\"\n if not self.locked:\n self.locked = 1\n return True\n else:\n return False\n\n def lock(self, function, argument):\n \"\"\"Lock a mutex, call the function with supplied argument\n when it is acquired. If the mutex" -"class Service::MqttPub < Service\n self.title = 'MQTT publish'\n\n string :broker, :port, :topic, :clientid, :user\n password :pass\n boolean :retain\n\n require 'mqtt'\n\n def receive_push\n\n # Optional - use m2m.io public broker if not specified\n broker = data['broker'].to_s\n if broker == ''\n broker = 'q.m2m.io'\n end\n\n # Optional - use standard MQTT port if not specified\n port = data['port'].to_i\n if data['port'].to_s == ''\n port = 1883\n end\n\n if data['topic'].to_s == ''\n raise_config_error \"Invalid topic. Try github// .\"\n end\n\n # Optional - generate random epoch for ID if not specified\n clientid = data['clientid'].to_s\n if clientid == ''\n # Random ID doesn't make sense, but use prefix like MQTT::generate_client_id\n clientid = 'github_' + Time.now.to_i.to_s\n end\n\n # Optional, specify nil if not specified (per http://rubydoc.info/gems/mqtt/MQTT/Client)\n user = data['user'].to_s\n if user == ''\n user = nil\n end\n\n # Optional, specify nil if not specified\n pass = data['pass'].to_s\n if pass == ''\n pass = nil\n end\n\n # Handle specifying a username or a password, but not both\n if user != nil and pass == nil\n raise_config_error \"You specified a username without a password.\"\n end\n\n if pass != nil and user == nil\n raise_config_error \"You specified a password without a username.\"\n end\n\n begin\n # Connect to the broker, publish" -"/**\n * Copyright (c) 2013-2020 Contributors to the Eclipse Foundation\n *\n *

    See the NOTICE file distributed with this work for additional information regarding copyright\n * ownership. All rights reserved. This program and the accompanying materials are made available\n * under the terms of the Apache License, Version 2.0 which accompanies this distribution and is\n * available at http://www.apache.org/licenses/LICENSE-2.0.txt\n */\npackage org.locationtech.geowave.datastore.filesystem;\n\nimport java.io.Closeable;\nimport org.locationtech.geowave.core.store.DataStoreOptions;\nimport org.locationtech.geowave.core.store.metadata.AdapterIndexMappingStoreImpl;\nimport org.locationtech.geowave.core.store.metadata.AdapterStoreImpl;\nimport org.locationtech.geowave.core.store.metadata.DataStatisticsStoreImpl;\nimport org.locationtech.geowave.core.store.metadata.IndexStoreImpl;\nimport org.locationtech.geowave.core.store.metadata.InternalAdapterStoreImpl;\nimport org.locationtech.geowave.datastore.filesystem.operations.FileSystemOperations;\nimport org.locationtech.geowave.mapreduce.BaseMapReduceDataStore;\n\npublic class FileSystemDataStore extends BaseMapReduceDataStore implements Closeable {\n public FileSystemDataStore(\n final FileSystemOperations operations,\n final DataStoreOptions options) {\n super(\n new IndexStoreImpl(operations, options),\n new AdapterStoreImpl(operations, options),\n new DataStatisticsStoreImpl(operations, options),\n new AdapterIndexMappingStoreImpl(operations, options),\n operations,\n options,\n new InternalAdapterStoreImpl(operations));\n }\n\n @Override\n public void close() {\n ((FileSystemOperations) baseOperations).close();\n }\n}" -"// Copyright (c) 2019 SAP SE or an SAP affiliate company. All rights reserved. This file is licensed under the Apache Software License, v. 2 except as noted otherwise in the LICENSE file\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 backupbucket\n\nimport (\n\textensionshandler \"github.com/gardener/gardener/extensions/pkg/handler\"\n\textensionspredicate \"github.com/gardener/gardener/extensions/pkg/predicate\"\n\n\tcorev1 \"k8s.io/api/core/v1\"\n\t\"sigs.k8s.io/controller-runtime/pkg/controller\"\n\t\"sigs.k8s.io/controller-runtime/pkg/handler\"\n\t\"sigs.k8s.io/controller-runtime/pkg/manager\"\n\t\"sigs.k8s.io/controller-runtime/pkg/predicate\"\n\t\"sigs.k8s.io/controller-runtime/pkg/source\"\n\n\textensionsv1alpha1 \"github.com/gardener/gardener/pkg/apis/extensions/v1alpha1\"\n)\n\nconst (\n\t// FinalizerName is the backupbucket controller finalizer.\n\tFinalizerName = \"extensions.gardener.cloud/backupbucket\"\n\t// ControllerName is the name of the controller\n\tControllerName = \"backupbucket_controller\"\n)\n\n// AddArgs are arguments for adding a BackupBucket controller to a manager.\ntype AddArgs struct {\n\t// Actuator is a BackupBucket actuator.\n\tActuator Actuator\n\t// ControllerOptions are the controller options used for creating a controller." -"#pragma once\r\n\r\nnamespace SipServer {\r\n\r\n/**\r\n * \u5904\u7406\u63a5\u6536\u7684\u6d88\u606f\uff0c\u89e3\u6790\u53ca\u5e94\u7b54\u3002\u53d1\u9001message\u8bf7\u6c42(\u67e5\u8be2\u76ee\u5f55\u3001\u4e91\u53f0\u63a7\u5236)\r\n */\r\nclass CSipMessage\r\n{\r\npublic:\r\n\r\n /**\r\n * \u5904\u7406Message\u4e8b\u4ef6\r\n */\r\n void OnMessage(eXosip_event_t *osipEvent);\r\n\r\n /**\r\n * \u76ee\u5f55\u67e5\u8be2\r\n */\r\n void QueryDirtionary();\r\n\r\n /**\r\n * \u8bbe\u5907\u72b6\u6001\u67e5\u8be2\r\n * @param devID[in] \u8bbe\u5907id\r\n */\r\n void QueryDeviceStatus(string devID);\r\n\r\n /**\r\n * \u8bbe\u5907\u4fe1\u606f\u67e5\u8be2\u8bf7\u6c42\r\n * @param devID[in] \u8bbe\u5907id\r\n */\r\n void QueryDeviceInfo(string devID);\r\n\r\n /**\r\n * \u6587\u4ef6\u76ee\u5f55\u68c0\u7d22\u8bf7\u6c42\r\n * @param devID[in] \u8bbe\u5907id\r\n */\r\n void QueryRecordInfo(string devID, string strStartTime, string strEndTime);\r\n\r\n /**\r\n * \u79fb\u52a8\u8bbe\u5907\u4f4d\u7f6e\u67e5\u8be2\r\n * @param devID[in] \u8bbe\u5907id\r\n */\r\n void QueryMobilePosition(string devID);\r\n\r\n /**\r\n * \u4e91\u53f0\u63a7\u5236\r\n * @param strDevCode[in] \u8bbe\u5907\u7f16\u7801\r\n * @param nInOut[in] \u955c\u5934\u653e\u5927\u7f29\u5c0f 0:\u505c\u6b62 1:\u7f29\u5c0f 2:\u653e\u5927\r\n * @param nUpDown[in] \u955c\u5934\u4e0a\u79fb\u4e0b\u79fb 0:\u505c\u6b62 1:\u4e0a\u79fb 2:\u4e0b\u79fb\r\n * @param nLeftRight[in] \u955c\u5934\u5de6\u79fb\u53f3\u79fb 0:\u505c\u6b62 1:\u5de6\u79fb 2:\u53f3\u79fb\r\n * @param cMoveSpeed[in] \u955c\u5934\u7f29\u653e\u901f\u5ea6\r\n * @param cMoveSpeed[in] \u955c\u5934\u79fb\u52a8\u901f\u5ea6\r\n */\r\n void DeviceControl(string strDevCode,\r\n int nInOut = 0, int nUpDown = 0, int nLeftRight = 0, \r\n uint8_t cInOutSpeed = 0X1, uint8_t cMoveSpeed = 0XFF);\r\n\r\n};\r\n\r\n};" -"// RUN: %clang_cc1 -fmodules -std=c++14 %s -verify\n// expected-no-diagnostics\n\n#pragma clang module build A\nmodule A {}\n#pragma clang module contents\n#pragma clang module begin A\ntemplate struct A {\n friend A operator+(const A&, const A&) { return {}; }\n template friend void func_1(const A&, const T2 &) {}\n};\n#pragma clang module end\n#pragma clang module endbuild\n\n#pragma clang module build B\nmodule B {}\n#pragma clang module contents\n#pragma clang module begin B\n#pragma clang module import A\ninline void f() { A a; }\n#pragma clang module end\n#pragma clang module endbuild\n\n#pragma clang module build C\nmodule C {}\n#pragma clang module contents\n#pragma clang module begin C\n#pragma clang module import A\ninline void g() { A a; }\n#pragma clang module end\n#pragma clang module endbuild\n\n#pragma clang module import A\n#pragma clang module import B\n#pragma clang module import C\n\nvoid h() {\n A a;\n a + a;\n func_1(a, 0);\n}" -"/**\n * https://github.com/apocas/dockerode/blob/master/lib/util.js\n * Parse the given repo tag name (as a string) and break it out into repo/tag pair.\n * // if given the input http://localhost:8080/woot:latest\n * {\n * repository: 'http://localhost:8080/woot',\n * tag: 'latest'\n * }\n * @param {String} input Input e.g: 'repo/foo', 'ubuntu', 'ubuntu:latest'\n * @return {Object} input parsed into the repo and tag.\n */\n\nfunction parseRepoTag (input) {\n var separatorPos\n var digestPos = input.indexOf('@')\n var colonPos = input.lastIndexOf(':')\n // @ symbol is more important\n if (digestPos >= 0) {\n separatorPos = digestPos\n } else if (colonPos >= 0) {\n separatorPos = colonPos\n } else {\n // no colon nor @\n return {\n repository: input\n }\n }\n\n // last colon is either the tag (or part of a port designation)\n var tag = input.slice(separatorPos + 1)\n\n // if it contains a / its not a tag and is part of the url\n if (tag.indexOf('/') === -1) {\n return {\n repository: input.slice(0, separatorPos),\n tag\n }\n }\n\n return {\n repository: input\n }\n}\n\nexport default parseRepoTag" -"\n\n\n\nbody {\n\tmargin: 0;\n\tcolor: black;\n\tbackground-color: white;\n\tfont-family: verdana, arial, sans-serif;\n\tfont-size: 10px;\n}\npre { \n\tfont-family: \"Courier New\", Courier, mono; \n\tfont-size: 11px; \n\tline-height: normal; \n\tcolor: black;\n\tborder: 1px solid silver;\n\tpadding: 17px;\n}\na\n{\n\tcolor: red;\n\ttext-decoration: none\n}\n\na:hover\n{\n\tcolor: fuchsia;\n\ttext-decoration: none;\n}\n\n\n.mainText {\n\tvertical-align: top;\n\ttext-align: right;\n\tpadding-right: 20px;\n}\n.linkList {\n\tvertical-align: top;\n\tfont-style: normal;\n\tcolor: #999999;\n\tpadding-left: 5px;\n}\n.descList {\n\tvertical-align: top;\n\tfont-style: normal;\n\tcolor: #000000;\n\tpadding-left: 20px;\n\tpadding-bottom: 30px;\n\twidth: 200px;\n}\n.libName {\n\tfont-size: 16px;\n\tfont-weight: bold;\n}\n.indexheader,\n.header {\n\tfont-size: 12px;\n\tcolor: gray;\n\ttext-align: right;\n\tpadding: 20px;\n\twidth: 126px;\n\tfont-weight: normal;\n}\n.methodName {\n\tfont-size: 24px;\n\tvertical-align: top;\n\tfont-weight: bold;\n\tcolor: red;\n\tpadding-left: 20px;\n\tpadding-bottom: 30px;\n}\n.mainTextName {\n\tvertical-align: top;\n\tpadding-right: 20px;\n\ttext-align: right;\n\tpadding-top: 5px;\n}\n.colored {\n\tcolor: #999999;\n}\n.indextext {\n\tvertical-align: top;\n\ttext-align: left;\n\tpadding-right: 20px;\n\tpadding-left: 20px;\n}\n.indexheader {\n\tfont-weight: bold;\n\twidth: auto;\n\theight: auto;\n}\n.code_style {\n\tfont-size: 8px;\n}\n\n.hide\n{\n\tdisplay: none;\n}" -"/*\n * Copyright (c) 2007, Cameron Rich\n * \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 notice, \n * this list of conditions and the following disclaimer in the documentation \n * and/or other materials provided with the distribution.\n * * Neither the name of the axTLS project 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\n * \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n * A PARTICULAR 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;" -"/*\n * Copyright 2014-2015 Jason Woods.\n *\n * This file is a modification of code from Logstash Forwarder.\n * Copyright 2012-2013 Jordan Sissel and contributors.\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 main\n\nimport (\n\t\"github.com/driskell/log-courier/lc-lib/core\"\n\t\"github.com/driskell/log-courier/lc-lib/registrar\"\n\t\"testing\"\n\t\"time\"\n)\n\nfunc newTestStdinRegistrar() (*core.Pipeline, *StdinRegistrar) {\n\tpipeline := core.NewPipeline()\n\treturn pipeline, newStdinRegistrar(pipeline)\n}\n\nfunc newEventSpool(offset int64) []*core.EventDescriptor {\n\t// Prepare an event spool with single event of specified offset\n\treturn []*core.EventDescriptor{\n\t\t&core.EventDescriptor{\n\t\t\tStream: nil,\n\t\t\tOffset: offset,\n\t\t\tEvent: []byte{},\n\t\t},\n\t}\n}\n\nfunc TestStdinRegistrarWait(t *testing.T) {\n\tp, r := newTestStdinRegistrar()\n\n\t// Start the stdin registrar\n\tgo func() {\n\t\tr.Run()\n\t}()\n\n\tc := r.Connect()\n\tc.Add(registrar.NewAckEvent(newEventSpool(13)))\n\tc.Send()\n\n\tr.Wait(13)\n\n\twait := make(chan int)\n\tgo func() {\n\t\tp.Wait()\n\t\twait <- 1" -" 'Yao ', 'Yu ', 'Chong ', 'Xi ', 'Xi ', 'Jiu ', 'Yu ', 'Yu ', 'Xing ', 'Ju ', 'Jiu ', 'Xin ', 'She ', 'She ', 'Yadoru ', 'Jiu ',\n 0x10 => 'Shi ', 'Tan ', 'Shu ', 'Shi ', 'Tian ', 'Dan ', 'Pu ', 'Pu ', 'Guan ', 'Hua ', 'Tan ', 'Chuan ', 'Shun ', 'Xia ', 'Wu ', 'Zhou ',\n 0x20 => 'Dao ', 'Gang ', 'Shan ', 'Yi ', null, 'Pa ', 'Tai ', 'Fan ', 'Ban ', 'Chuan ', 'Hang ', 'Fang ', 'Ban ', 'Que ', 'Hesaki ', 'Zhong ',\n 0x30 => 'Jian ', 'Cang ', 'Ling ', 'Zhu ', 'Ze ', 'Duo ', 'Bo ', 'Xian ', 'Ge ', 'Chuan ', 'Jia ', 'Lu ', 'Hong ', 'Pang ', 'Xi ', null,\n 0x40 => 'Fu ', 'Zao ', 'Feng ', 'Li ', 'Shao ', 'Yu ', 'Lang ', 'Ting ', null, 'Wei ', 'Bo ', 'Meng ', 'Nian ', 'Ju ', 'Huang ', 'Shou ',\n 0x50 => 'Zong ', 'Bian ', 'Mao ', 'Die ', null, 'Bang ', 'Cha ', 'Yi ', 'Sao ', 'Cang ', 'Cao ', 'Lou ', 'Dai ', 'Sori '," -"/*\n * Copyright (C) the libgit2 contributors. All rights reserved.\n *\n * This file is part of libgit2, distributed under the GNU GPL v2 with\n * a Linking Exception. For full terms see the included COPYING file.\n */\n#ifndef INCLUDE_sys_git_credential_h__\n#define INCLUDE_sys_git_credential_h__\n\n#include \"git2/common.h\"\n#include \"git2/credential.h\"\n\n/**\n * @file git2/sys/cred.h\n * @brief Git credentials low-level implementation\n * @defgroup git_credential Git credentials low-level implementation\n * @ingroup Git\n * @{\n */\nGIT_BEGIN_DECL\n\n/**\n * The base structure for all credential types\n */\nstruct git_credential {\n\tgit_credential_t credtype; /**< A type of credential */\n\n\t/** The deallocator for this type of credentials */\n\tvoid GIT_CALLBACK(free)(git_credential *cred);\n};\n\n/** A plaintext username and password */\nstruct git_credential_userpass_plaintext {\n\tgit_credential parent; /**< The parent credential */\n\tchar *username; /**< The username to authenticate as */\n\tchar *password; /**< The password to use */\n};\n\n/** Username-only credential information */\nstruct git_credential_username {\n\tgit_credential parent; /**< The parent credential */\n\tchar username[1]; /**< The username to authenticate as */\n};\n\n/**\n * A ssh key from disk\n */\nstruct git_credential_ssh_key {\n\tgit_credential parent; /**< The parent credential */\n\tchar *username; /**< The username to authenticate as */\n\tchar *publickey; /**< The path to a public key" -"/*\n * (C) Copyright IBM Corp. 2018, 2020.\n *\n * Licensed under the Apache License, Version 2.0 (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 distributed under the License is distributed on\n * an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations under the License.\n */\npackage com.ibm.watson.discovery.v1.model;\n\nimport com.ibm.cloud.sdk.core.service.model.GenericModel;\n\n/** The deleteCredentials options. */\npublic class DeleteCredentialsOptions extends GenericModel {\n\n protected String environmentId;\n protected String credentialId;\n\n /** Builder. */\n public static class Builder {\n private String environmentId;\n private String credentialId;\n\n private Builder(DeleteCredentialsOptions deleteCredentialsOptions) {\n this.environmentId = deleteCredentialsOptions.environmentId;\n this.credentialId = deleteCredentialsOptions.credentialId;\n }\n\n /** Instantiates a new builder. */\n public Builder() {}\n\n /**\n * Instantiates a new builder with required properties.\n *\n * @param environmentId the environmentId\n * @param credentialId the credentialId\n */\n public Builder(String environmentId, String credentialId) {\n this.environmentId = environmentId;\n this.credentialId = credentialId;\n }\n\n /**\n * Builds a DeleteCredentialsOptions.\n *\n * @return the deleteCredentialsOptions\n */\n public DeleteCredentialsOptions build() {" -"# This properties file is used to create a PropertyResourceBundle\n# It contains Locale specific strings used in Swing\n# Currently, the following components need this for support:\n#\n# ColorChooser\n# FileChooser\n# OptionPane\n#\n# When this file is read in, the strings are put into the\n# defaults table. This is an implementation detail of the current\n# workings of Swing. DO NOT DEPEND ON THIS.\n# This may change in future versions of Swing as we improve localization\n# support.\n#\n# MNEMONIC NOTE:\n# Many of strings in this file are used by widgets that have a\n# mnemonic, for example:\n# ColorChooser.rgbNameTextAndMnemonic=R&GB\n#\n# Indicates that the tab in the ColorChooser for RGB colors will have\n# the text 'RGB', further the mnemonic character will be 'g' and that\n# a decoration will be provided under the 'G'. This will typically\n# look like: RGB\n# -\n#\n# One important thing to remember is that the mnemonic MUST exist in\n# the String, if it does not exist you should add text that makes it\n# exist. This will typically take the form 'XXXX (M)' where M is the\n# character for the" -"//\n// OAuthViewController.swift\n// UberRides\n//\n// Copyright \u00a9 2015 Uber Technologies, Inc. All rights reserved.\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\nimport UIKit\n\n// MARK:" -"/*\n * Wazuh app - React component for show search and filter\n * Copyright (C) 2015-2020 Wazuh, Inc.\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 * Find more information about this on the LICENSE file.\n */\n\nexport { BaseHandler } from './base-handler';\nexport { queryObject, IConjuntions, IOperator, QInterpreter } from './q-interpreter';\nexport { qSuggests, } from './q-handler';\nexport { SuggestHandler } from './suggest-handler';\nexport { IWzSuggestItem } from '../wz-search-bar';\nexport { filtersToObject, IFilter} from './filters-to-object';" -"#region License\n\n/*\n * Copyright \u00a9 2002-2011 the original author or authors.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n#endregion\n\n#region Imports\n\nusing System;\n\nusing Spring.Expressions;\nusing Spring.Util;\n\n#endregion\n\nnamespace Spring.Validation\n{\n ///

    \n /// Validates that required value is not empty.\n /// \n /// \n ///

    \n /// This validator uses following rules to determine if target value is valid:\n /// \n /// \n /// \n /// \n /// \n /// \n /// \n /// \n /// \n /// \n /// \n /// \n /// \n /// \n /// \n ///
    Target Valid Value
    A .Not or an empty string.
    A .Not and not .
    One of the number types.Not" -"/*\n * Copyright (c) 2000 - 2001, 2003 Kungliga Tekniska H\u00f6gskolan\n * (Royal Institute of Technology, Stockholm, Sweden).\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 * 1. Redistributions of source code must retain the above copyright\n * notice, this list of conditions and the following disclaimer.\n *\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 * 3. Neither the name of the Institute 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 INSTITUTE AND CONTRIBUTORS ``AS IS'' AND\n * 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 INSTITUTE OR CONTRIBUTORS BE LIABLE\n * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n * DAMAGES (INCLUDING, BUT" -"/* Copyright (c) Microsoft Corporation. All rights reserved. */\n\n#include \"sll.h\"\n\n\ntypedef struct _LIST_ENTRY {\n struct _LIST_ENTRY *Flink;\n struct _LIST_ENTRY *Blink;\n} LIST_ENTRY, *PLIST_ENTRY;\n\nPLIST_ENTRY create(int length) {\n/* int i; */\n PLIST_ENTRY head, tmp;\n\n head = NULL;\n/* for(i = 0; i < length; i++) { */\n tmp = (PLIST_ENTRY)malloc(sizeof(LIST_ENTRY));\n tmp->Flink = head;\n head = tmp;\n/* } */\n return head;\n}\n\nvoid traverse(PLIST_ENTRY head) {\n PLIST_ENTRY tmp = head;\n\n while(tmp != NULL) {\n tmp = tmp->Flink ;\n }\n}\n\nvoid destroy(PLIST_ENTRY head) {\n PLIST_ENTRY t, c = head;\n\n/* while(c != NULL) { */\n t = c;\n c = c->Flink;\n free(t);\n}\n\nvoid main(void) {\n int length = 10;\n PLIST_ENTRY head;\n head = create(length);\n traverse(head);\n destroy(head);\n return;\n}" -".. include:: defs.rst\n\nOptimal control with |casadi|\n=============================\n\n\n|casadi| can be used to solve *optimal control problems* (OCP) using a variety of methods, including direct (a.k.a. *discretize-then-optimize*) and indirect (a.k.a. *optimize-then-discretize*) methods, all-at-once (e.g. collocation) methods and shooting-methods requiring embedded solvers of initial value problems in ODE or DAE. As a user, you are in general expected to *write your own OCP solver* and |casadi| aims as making this as easy as possible by providing powerful high-level building blocks. Since you are writing the solver yourself (rather than calling an existing \"black-box\" solver), a basic understanding of how to solve OCPs is indispensable. Good, self-contained introductions to numerical optimal control can be found in the recent textbooks by Biegler [#f4]_ or Betts [#f5]_ or Moritz Diehl's `lecture notes on numerical optimal control `_.\n\nA simple test problem\n---------------------\n\nTo illustrate some of the methods, we will consider the following test problem,\nnamely driving a *Van der Pol* oscillator to the origin, while trying to\nminimize a quadratic cost:\n\n.. math::\n :label: vdp\n\n \\begin{array}{lc}\n \\begin{array}{l}\n \\text{minimize:} \\\\\n x(\\cdot) \\in \\mathbb{R}^2, \\, u(\\cdot) \\in \\mathbb{R}\n \\end{array}\n \\quad \\displaystyle \\int_{t=0}^{T}{(x_0^2 + x_1^2 + u^2) \\, dt}\n \\\\\n \\\\\n \\text{subject to:} \\\\\n \\\\\n \\begin{array}{ll}" -"# Copyright 2020 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# Dockerfile for running a specific benchmark for a specific fuzzer.\n#\n# This Dockerfile adds essential files into the runner image, regardless of\n# whether it was built from `benchmark-runner/Dockerfile` or a custom\n# `runner.Dockerfile`.\n#\n# The benchmark/fuzzer pair is defined by build arguments. To specify them, pass\n# the following arguments to docker build:\n#\n# $ docker build \\\n# --build-arg benchmark=afl \\\n# --build-arg fuzzer=freetype2-2017 \\\n# ...\n\nARG fuzzer\nARG benchmark\n\n# We use Docker's multi-stage build feature to create a minimal runner image,\n# separate from the sometimes bulky builder images.\n\n# We take the already built" -"---\ntitle: IRC meeting summary for 2018-04-12\npermalink: /en/meetings/2018/04/12/\nname: 2018-04-12-meeting\ntype: meetings\nlayout: page\nlang: en\nversion: 1\n---\n{% include toc.html %}\n{% include references.md %}\n\n- [Link to this week logs](https://botbot.me/freenode/bitcoin-core-dev/2018-04-12/?msg=98918663&page=4)\n- [Meeting minutes by meetbot](http://www.erisian.com.au/meetbot/bitcoin-core-dev/2018/bitcoin-core-dev.2018-04-12-19.01.html)\n\n---\n\nTopics discussed during this weekly meeting included what pull requests\nmembers of the project would like reviewers to focus on during the\nupcoming week, whether or not to break compatibility with an odd and\nrarely used feature in the wallet (IsMine bare multisig), how to safely\nimprove multiwallet support, and how to deal with some unsupported\nsoftware when upgrading the build environment for Bitcoin Core's\nreproducible binary releases.\n\n## High priority for review\n\n*Background:* each meeting, Bitcoin Core developers discuss which Pull\nRequests (PRs) the meeting participants think most need review in the\nupcoming week. Some of these PRs are related to code that contributors\nespecially want to see in the next release; others are PRs that are\nblocking further work or which require significant maintenance (rebasing)\nto keep in a pending state. Any capable reviewers are encouraged to\nvisit the project's list of [current high-priority\nPRs](https://github.com/bitcoin/bitcoin/projects/8).\n\n*Discussion:* The following PRs were suggested for attention this week:\n\n1. **Build tx" -"# coding: utf-8\n\n\"\"\"\n Azure Blockchain Workbench REST API\n\n The Azure Blockchain Workbench REST API is a Workbench extensibility point, which allows developers to create and manage blockchain applications, manage users and organizations within a consortium, integrate blockchain applications into services and platforms, perform transactions on a blockchain, and retrieve transactional and contract data from a blockchain. # noqa: E501\n\n OpenAPI spec version: v1\n \n Generated by: https://github.com/swagger-api/swagger-codegen.git\n\"\"\"\n\n\nfrom __future__ import absolute_import\n\nimport re # noqa: F401\n\n# python 2 and python 3 compatibility library\nimport six\n\nfrom swagger_client.api_client import ApiClient\n\n\nclass CapabilitiesApi(object):\n \"\"\"NOTE: This class is auto generated by the swagger code generator program.\n\n Do not edit the class manually.\n Ref: https://github.com/swagger-api/swagger-codegen\n \"\"\"\n\n def __init__(self, api_client=None):\n if api_client is None:\n api_client = ApiClient()\n self.api_client = api_client\n\n def can_create_contract(self, workflow_id, **kwargs): # noqa: E501\n \"\"\" # noqa: E501\n\n Checks if user can modify user role mappings # noqa: E501\n This method makes a synchronous HTTP request by default. To make an\n asynchronous HTTP request, please pass async=True\n >>> thread = api.can_create_contract(workflow_id, async=True)\n >>> result = thread.get()\n\n :param async bool\n :param int workflow_id: The id of the application (required)\n :return: bool\n If the method is called asynchronously,\n returns the request thread." -"#!/bin/bash -e\n\n# Copyright 2016 tsuru 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\nstatus=0\nfor f in `git ls-files | xargs grep -L \"Copyright\" | grep \".go\" | grep -v vendor/`\ndo\n echo $f\n status=1\ndone\n\nif [ $status != 0 ]\nthen\n exit $status\nfi\n\ntofix=\naddallyears=\nwhile [ \"${1-}\" != \"\" ]; do\n case $1 in\n \"-f\" | \"--fix\")\n tofix=true\n ;;\n \"--all\")\n addallyears=true\n ;;\n esac\n shift\ndone\n\noldIFS=$IFS\nIFS=$(echo -en \"\\n\\b\")\n\nfunction join_space { \n IFS=\" \"\n echo \"$*\"\n}\n\nfor f in $(git ls-files | grep -v vendor/ | grep -v check-license.sh | xargs -I{} bash -c '(egrep -Ho \"Copyright [0-9 ]+\" {})')\ndo\n IFS=\":\" read file copyright <<< \"$f\"\n IFS=\" \" read copy year <<< \"$copyright\"\n if [ -z $addallyears ]; then\n expectedYears=`git log --diff-filter=A --follow --format=%ad --date=format:%Y -1 -- $file`\n else\n expectedYears=$(join_space $(git log --follow --format=%ad --date=format:%Y -- $file | sort | uniq))\n fi\n if [[ $year != $expectedYears ]];\n then\n echo \"$file - Copyright $year, created: $expectedYears\"\n if [ -z \"$tofix\" ]; then\n status=1\n else\n sed -E -i \"\" \"s/Copyright [0-9 ]+/Copyright ${expectedYears} /g\" $file\n fi\n fi" -"/*\n * html-delegate.cc\n * Copyright 2018 John Lindgren and Ren\u00e9 J.V. Bertin\n *\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions are met:\n *\n * 1. Redistributions of source code must retain the above copyright notice,\n * this list of conditions, and the following disclaimer.\n *\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 * provided with the distribution.\n *\n * This software is provided \"as is\" and without any warranty, express or\n * implied. In no event shall the authors be liable for any damages arising from\n * the use of this software.\n */\n\n#include \"html-delegate.h\"\n\n#include \n#include \n#include \n\n#include \n\nstatic void init_text_document (QTextDocument & doc, const QStyleOptionViewItem & option)\n{\n doc.setHtml (option.text);\n doc.setDocumentMargin (audqt::sizes.TwoPt);\n doc.setDefaultFont (option.font);\n}\n\nvoid HtmlDelegate::paint (QPainter * painter, const QStyleOptionViewItem & option_,\n const QModelIndex & index) const\n{\n QStyleOptionViewItem option = option_;\n initStyleOption (& option, index);\n\n QTextDocument doc;\n init_text_document (doc, option);\n\n QStyle * style = option.widget ? option.widget->style () : qApp->style ();\n QAbstractTextDocumentLayout::PaintContext ctx;\n\n // Painting item without text\n option.text =" -"//\n// Copyright 2017 Jeff Bush\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#pragma once\n\n#include \n#include \n\nusing namespace librender;\n\nconst float kShadowBias = 0.2;\n\n#define ENABLE_SHADOW 1\n#define USE_LAMBERTIAN 1\n\nstruct OutputUniforms\n{\n Matrix fMVPMatrix;\n Matrix fNormalMatrix;\n Vec3 fLightVector;\n float fAmbient;\n float fDirectional;\n Matrix fLightMatrix;\n};\n\n//\n// The Output shader interpolates normals across the surface of the triangle\n// and computes the dot product at each pixel\n//\nclass OutputShader : public Shader\n{\npublic:\n OutputShader()\n :\tShader(6, 12)\n {\n }\n\n void shadeVertices(vecf16_t *outParams, const vecf16_t *inAttribs, const void *_uniforms,\n vmask_t) const override\n {\n const OutputUniforms *uniforms = static_cast(_uniforms);\n\n // Multiply by mvp matrix\n vecf16_t coord[4];\n for (int i = 0;" -"code = $code;\n }\n public function getCode()\n {\n return $this->code;\n }\n /**\n * @param Google_Service_Compute_SslCertificatesScopedListWarningData\n */\n public function setData($data)\n {\n $this->data = $data;\n }\n /**\n * @return Google_Service_Compute_SslCertificatesScopedListWarningData\n */\n public function getData()\n {\n return $this->data;\n }\n public function setMessage($message)\n {\n $this->message = $message;\n }\n public function getMessage()\n {\n return $this->message;\n }\n}" -"/* @flow */\n\nimport { remove, isDef } from 'shared/util'\n\nexport default {\n create (_: any, vnode: VNodeWithData) {\n registerRef(vnode)\n },\n update (oldVnode: VNodeWithData, vnode: VNodeWithData) {\n if (oldVnode.data.ref !== vnode.data.ref) {\n registerRef(oldVnode, true)\n registerRef(vnode)\n }\n },\n destroy (vnode: VNodeWithData) {\n registerRef(vnode, true)\n }\n}\n\nexport function registerRef (vnode: VNodeWithData, isRemoval: ?boolean) {\n const key = vnode.data.ref\n if (!isDef(key)) return\n\n const vm = vnode.context\n const ref = vnode.componentInstance || vnode.elm\n const refs = vm.$refs\n if (isRemoval) {\n if (Array.isArray(refs[key])) {\n remove(refs[key], ref)\n } else if (refs[key] === ref) {\n refs[key] = undefined\n }\n } else {\n if (vnode.data.refInFor) {\n if (!Array.isArray(refs[key])) {\n refs[key] = [ref]\n } else if (refs[key].indexOf(ref) < 0) {\n // $flow-disable-line\n refs[key].push(ref)\n }\n } else {\n refs[key] = ref\n }\n }\n}" -"// Licensed to Cloudera, Inc. under one\n// or more contributor license agreements. See the NOTICE file\n// distributed with this work for additional information\n// regarding copyright ownership. Cloudera, Inc. 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\nimport * as ko from 'knockout';\n\nimport apiHelper from 'api/apiHelper';\nimport huePubSub from 'utils/huePubSub';\nimport { ASSIST_DOC_HIGHLIGHT_EVENT } from 'ko/components/assist/events';\n\nconst TEMPLATE_NAME = 'context-document-details';\n\n// prettier-ignore\nexport const DOCUMENT_CONTEXT_TEMPLATE = `\n